diff --git a/app/Http/Controllers/DemoRequestController.php b/app/Http/Controllers/DemoRequestController.php new file mode 100644 index 0000000..21adf0a --- /dev/null +++ b/app/Http/Controllers/DemoRequestController.php @@ -0,0 +1,35 @@ +validate([ + 'name' => 'required|string|max:255', + 'email' => 'required|email|max:255', + 'country' => 'required|string|max:255', + 'website' => 'nullable|string|max:500', + 'inquiry_type' => 'required|in:product,service', + 'project_type' => 'required|in:new,running', + 'message' => 'nullable|string|max:2000', + 'phone' => 'required|string|max:30', + 'preferred_date' => 'required|date', + 'preferred_time' => 'required|string', + ]); + + Mail::to('charles@devappsolutions.ph') + ->cc('charles@devappsolutions.ph') + ->send(new DemoRequestMail($validated)); + + return response()->json([ + 'success' => true, + 'message' => 'Demo request submitted successfully! We will get back to you shortly.', + ]); + } +} diff --git a/app/Mail/DemoRequestMail.php b/app/Mail/DemoRequestMail.php new file mode 100644 index 0000000..fd78753 --- /dev/null +++ b/app/Mail/DemoRequestMail.php @@ -0,0 +1,42 @@ +data = $data; + } + + public function envelope(): Envelope + { + return new Envelope( + subject: 'New Demo Request from ' . $this->data['name'] . ' — NNT ERP', + ); + } + + public function content(): Content + { + return new Content( + markdown: 'emails.demo-request', + with: ['data' => $this->data], + ); + } + + public function attachments(): array + { + return []; + } +} diff --git a/app/Models/User.php b/app/Models/User.php index 245e791..a7bbb4f 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -305,4 +305,21 @@ class User extends Authenticatable implements MustVerifyEmail $vendorRole->givePermissionTo($permissions); } } + + /** + * Laratrust compatibility shim. + * + * Legacy Blade modules (Fleet, Bookings, Documents, DoubleEntry, AIDocument) + * use $user->isAbleTo('permission') from the Laratrust package. + * This bridges to Spatie's hasPermissionTo() so the old controllers work + * without modifying 170+ permission checks across 5 modules. + */ + public function isAbleTo(string $permission, $guardName = null): bool + { + try { + return $this->hasPermissionTo($permission, $guardName); + } catch (\Spatie\Permission\Exceptions\PermissionDoesNotExist $e) { + return false; + } + } } diff --git a/docs/PLAN-asset-management.md b/docs/PLAN-asset-management.md new file mode 100644 index 0000000..94db81b --- /dev/null +++ b/docs/PLAN-asset-management.md @@ -0,0 +1,218 @@ +# PLAN: Asset Management Module — Enterprise Edition + +## Status: Backend scaffold complete ✅, Frontend + P0 enterprise upgrades pending + +--- + +## Already Built (Scaffold) + +| Component | Count | Status | +|-----------|-------|--------| +| Database tables | 8 | ✅ Migrated | +| Models | 7 | ✅ With relationships | +| Controllers | 8 | ✅ Full CRUD + logic | +| Routes | 30 | ✅ Registered | +| Permissions | 16 | ✅ Seeded | +| Sidebar menu | 7 sections | ✅ | +| Artisan commands | 2 stubs | ✅ | + +--- + +## Phase A — P0 Enterprise Upgrades (Backend) + +### A1. Partial-Year Depreciation Conventions +**Problem:** Current engine assumes depreciation starts on the 1st. Real companies acquire assets mid-month. + +**Solution:** Add `depreciation_convention` field to `assets` table: +- `full_month` — Depreciate full month of acquisition (current behavior) +- `mid_month` — Half depreciation in first and last month +- `mid_quarter` — Half depreciation in quarter of acquisition +- `actual_days` — Pro-rate based on exact days + +**Files:** +- [MODIFY] Migration: Add `depreciation_convention` enum to `assets` +- [MODIFY] `Asset.php` — Add to fillable +- [NEW] `DepreciationService.php` — Full calculation engine with convention support + +--- + +### A2. Asset Transfers Between Locations +**Problem:** No way to move assets between branches/locations with audit trail. + +**Solution:** New `asset_transfers` table and controller. + +**Schema: `asset_transfers`** +| Column | Type | Notes | +|--------|------|-------| +| id | bigint PK | | +| asset_id | FK→assets | | +| transfer_number | string | Auto: TRF-2026-05-001 | +| from_location | string | | +| to_location | string | | +| from_assigned_to | FK→users nullable | | +| to_assigned_to | FK→users nullable | | +| transfer_date | date | | +| reason | text nullable | | +| status | enum | pending, completed, rejected | +| approved_by | FK→users nullable | | +| created_by | int | | + +**Files:** +- [NEW] Migration for `asset_transfers` +- [NEW] `AssetTransfer.php` model +- [NEW] `AssetTransferController.php` +- [MODIFY] Routes + menu + +--- + +### A3. Document Attachments +**Problem:** No way to attach receipts, purchase orders, manuals, photos. + +**Solution:** New `asset_documents` table. + +**Schema: `asset_documents`** +| Column | Type | Notes | +|--------|------|-------| +| id | bigint PK | | +| asset_id | FK→assets | | +| title | string | | +| file_path | string | | +| file_type | string | pdf, jpg, etc. | +| file_size | int | bytes | +| uploaded_by | FK→users | | +| created_by | int | | + +**Files:** +- [NEW] Migration for `asset_documents` +- [NEW] `AssetDocument.php` model +- [MODIFY] `AssetController::show()` — include documents +- Documents managed inline on asset detail page (no separate menu item) + +--- + +### A4. Depreciation Suspension/Resumption +**Problem:** When an asset is under extended maintenance, depreciation should pause. + +**Solution:** Add `is_depreciation_suspended` boolean + `suspension_reason` to `assets`. +- `DepreciationService` skips assets where `is_depreciation_suspended = true` +- Suspension/resumption logged in audit trail + +**Files:** +- [MODIFY] Migration: Add 2 fields to `assets` +- [MODIFY] `Asset.php` — Add to fillable +- [MODIFY] `DepreciationService.php` — Skip suspended assets + +--- + +### A5. Depreciation Service (Full Engine) +**The core calculation engine implementing all methods + conventions.** + +```php +class DepreciationService { + // Calculate monthly depreciation for a single asset + public function calculateMonthly(Asset $asset, Carbon $forDate): float + + // Run depreciation for all active assets for a given month + public function runMonthly(Carbon $forMonth, bool $dryRun = false): array + + // Create journal entry for depreciation + private function postJournalEntry(Asset $asset, float $amount, Carbon $date): JournalEntry + + // Handle partial-year conventions + private function applyConvention(Asset $asset, float $fullAmount, Carbon $date): float + + // Declining balance with auto-switch to straight-line + private function decliningBalance(Asset $asset): float + + // Units of production + private function unitsOfProduction(Asset $asset, float $unitsThisMonth): float +} +``` + +--- + +## Phase B — Frontend React Pages + +### B1. Dashboard (`Dashboard.tsx`) +- Stat cards: Total Assets, Active, Checked Out, Under Maintenance, Total Book Value +- Assets by Category pie chart +- Upcoming Maintenance list +- Expiring Warranties/Insurance alerts +- Recent Assignments + +### B2. Assets (`Assets/Index.tsx`, `Create.tsx`, `Edit.tsx`, `Show.tsx`) +- Index: Filterable table (status, category, search), pagination +- Create: Form with category auto-fill for depreciation defaults +- Show: Tabbed detail page (Overview, Depreciation Schedule, Maintenance, Assignments, Insurance, Documents) +- Edit: Same as create, with locked financial fields + +### B3. Categories (`Categories/Index.tsx`) +- Table with GL account mapping +- Inline create/edit dialog + +### B4. Assignments (`Assignments/Index.tsx`) +- History table with check-out/check-in status +- Checkout dialog, Checkin dialog + +### B5. Depreciation (`Depreciation/Index.tsx`, `Show.tsx`) +- Index: All assets with depreciation summary +- Show: Full depreciation schedule timeline for single asset +- Run Depreciation button (with dry-run preview) + +### B6. Maintenance (`Maintenance/Index.tsx`, `Create.tsx`) +- Filterable table by status/priority +- Create form with recurring schedule option +- Complete action with auto-next-schedule + +### B7. Disposal (`Disposal/Index.tsx`, `Create.tsx`) +- Table with gain/loss highlighting +- Create form with auto-calculated gain/loss + +--- + +## Phase C — Artisan Commands (Full Implementation) + +### C1. `assets:depreciate` +- Process all active, non-suspended assets +- Support `--month=2026-05`, `--dry-run`, `--asset-id=5` +- Create depreciation records + journal entries +- Output summary table + +### C2. `assets:warranty-check` +- Find assets with warranty expiring in 30 days +- Find insurance policies expiring in 30 days +- Find overdue maintenance +- Log alerts (notification system integration later) + +--- + +## Implementation Order + +| Step | Agent | Work | Depends On | +|------|-------|------|------------| +| 1 | database-architect | P0 migrations (transfers, documents, asset fields) | — | +| 2 | backend-specialist | Models, DepreciationService, updated controllers | Step 1 | +| 3 | backend-specialist | Artisan commands (full implementation) | Step 2 | +| 4 | frontend-specialist | All React pages (~12 pages) | Step 2 | +| 5 | All | Build verification + route check | Steps 1-4 | + +--- + +## Verification + +```bash +# Type safety +npx tsc --noEmit + +# Build +npm run build + +# Routes +php artisan route:list --name=asset-management + +# Depreciation dry run +php artisan assets:depreciate --dry-run + +# Warranty check +php artisan assets:warranty-check +``` diff --git a/docs/PLAN-blade-module-menus.md b/docs/PLAN-blade-module-menus.md new file mode 100644 index 0000000..1de335d --- /dev/null +++ b/docs/PLAN-blade-module-menus.md @@ -0,0 +1,376 @@ +# PLAN: Blade Module Menu Integration + React Rewrite Roadmap + +## Objective +Make all 5 missing Blade-based modules (Fleet, Bookings, AIDocument, Documents, DoubleEntry) visible in the React sidebar, then plan their full React/Inertia migration. + +--- + +## Critical Findings from Audit + +### Permission Format Mismatch +> [!WARNING] +> **Two different permission formats co-exist in the database:** +> - **New modules** (Account, HRM, Warehouse): kebab-case → `manage-customers`, `manage-warehouse` +> - **Old Blade modules** (Fleet, Bookings, etc.): space-separated → `fleet manage`, `bookings manage`, `doubleentry manage` +> +> The `company-menu.ts` `permission` field must match the EXACT string stored in the database. The frontend receives raw permission strings from `$user->getAllPermissions()->pluck('name')`. + +### Route Availability +All 5 modules have valid named routes already registered in Laravel and available via Ziggy: + +| Module | Dashboard Route | Route Name | +|--------|----------------|------------| +| Fleet | `GET /dashboard/fleet` | `fleet.dashboard` | +| Bookings | `GET /bookings/bookings-dashboard` | `bookings.dashboard` | +| AIDocument | `ANY /aidocument` | `aidocument.index` | +| Documents | `GET /documents/document` | `documents.index` | +| DoubleEntry | `GET /doubleentry/journal-entry` | `journal-entry.index` | + +### Rendering Concern +> [!IMPORTANT] +> All 5 modules use `return view('module::blade-view')`. When navigating from the React sidebar to a Blade page, the page will load as a **full page reload** (not an Inertia SPA transition). This is expected behavior for hybrid Blade/Inertia apps — the Blade pages will render with their own layout, not the React sidebar layout. +> +> **User experience impact:** Clicking Fleet in the sidebar will briefly flash white and load the old Blade layout. The back button will return to the React layout. + +--- + +## OPTION A: Quick Menu Registration (5 files) + +### Phase 1: Fleet Module + +#### [NEW] `packages/workdo/Fleet/src/Resources/js/menus/company-menu.ts` + +**Permission used:** `fleet manage` (space-separated, matches DB) +**Route:** `fleet.dashboard` + +```typescript +import { Truck, Users, Car, Fuel, Wrench, BookOpen, Calendar } from 'lucide-react'; + +export const fleetCompanyMenu = (t: (key: string) => string) => [ + { + title: t('Fleet Dashboard'), + href: route('fleet.dashboard'), + permission: 'fleet manage', + parent: 'dashboard', + order: 50, + }, + { + title: t('Fleet'), + icon: Truck, + permission: 'fleet manage', + order: 2100, + children: [ + { + title: t('Dashboard'), + href: route('fleet.dashboard'), + permission: 'fleet manage', + }, + { + title: t('Vehicles'), + href: route('vehicle.index'), + permission: 'vehicle manage', + }, + { + title: t('Drivers'), + href: route('driver.index'), + permission: 'driver manage', + }, + { + title: t('Bookings'), + href: route('booking.index'), + permission: 'booking manage', + }, + { + title: t('Fuel Logs'), + href: route('fuel.index'), + permission: 'fuel manage', + }, + { + title: t('Maintenance'), + href: route('maintenance.index'), + permission: 'maintenance manage', + }, + { + title: t('Logbook'), + href: route('logbook.index'), + permission: 'logbook manage', + }, + ], + }, +]; +``` + +--- + +### Phase 2: Bookings Module + +#### [NEW] `packages/workdo/Bookings/src/Resources/js/menus/company-menu.ts` + +**Permission used:** `bookings manage` (space-separated, matches DB) +**Route:** `bookings.dashboard` + +```typescript +import { CalendarCheck, Users, Clock, Package, Sparkles } from 'lucide-react'; + +export const bookingsCompanyMenu = (t: (key: string) => string) => [ + { + title: t('Bookings Dashboard'), + href: route('bookings.dashboard'), + permission: 'bookings manage', + parent: 'dashboard', + order: 55, + }, + { + title: t('Bookings'), + icon: CalendarCheck, + permission: 'bookings manage', + order: 2200, + children: [ + { + title: t('Dashboard'), + href: route('bookings.dashboard'), + permission: 'bookings manage', + }, + { + title: t('Appointments'), + href: route('booking-appointments.index'), + permission: 'bookings appointments manage', + }, + { + title: t('Customers'), + href: route('booking-customers.index'), + permission: 'bookingcustomers manage', + }, + { + title: t('Staff'), + href: route('booking-staff.index'), + permission: 'booking staffs manage', + }, + { + title: t('Packages'), + href: route('booking-package.index'), + permission: 'bookings package manage', + }, + { + title: t('Extra Services'), + href: route('bookings-extra-services.index'), + permission: 'bookings extra services manage', + }, + ], + }, +]; +``` + +--- + +### Phase 3: AIDocument Module + +#### [NEW] `packages/workdo/AIDocument/src/Resources/js/menus/company-menu.ts` + +**Permission used:** `ai document manage` (space-separated, matches DB) +**Route:** `aidocument.index` + +```typescript +import { FileText, History } from 'lucide-react'; + +export const aiDocumentCompanyMenu = (t: (key: string) => string) => [ + { + title: t('AI Document'), + icon: FileText, + permission: 'ai document manage', + order: 2300, + children: [ + { + title: t('Templates'), + href: route('aidocument.index'), + permission: 'ai document manage', + }, + { + title: t('History'), + href: route('aidocument.document.history'), + permission: 'document history manage', + }, + ], + }, +]; +``` + +--- + +### Phase 4: Documents Module + +#### [NEW] `packages/workdo/Documents/src/Resources/js/menus/company-menu.ts` + +**Permission used:** `documents manage` (space-separated, matches DB) +**Route:** `documents.index` + +```typescript +import { FileStack, FolderOpen } from 'lucide-react'; + +export const documentsCompanyMenu = (t: (key: string) => string) => [ + { + title: t('Documents'), + icon: FileStack, + permission: 'documents manage', + order: 2400, + children: [ + { + title: t('All Documents'), + href: route('documents.index'), + permission: 'documents manage', + }, + { + title: t('Document Types'), + href: route('documents-type.index'), + permission: 'documents type manage', + }, + ], + }, +]; +``` + +--- + +### Phase 5: DoubleEntry Module + +#### [NEW] `packages/workdo/DoubleEntry/src/Resources/js/menus/company-menu.ts` + +**Permission used:** `doubleentry manage` (space-separated, matches DB) +**Route:** `journal-entry.index` + +```typescript +import { BookOpen, FileSpreadsheet, TrendingUp, Scale, BarChart3 } from 'lucide-react'; + +export const doubleEntryCompanyMenu = (t: (key: string) => string) => [ + { + title: t('Double Entry'), + icon: BookOpen, + permission: 'doubleentry manage', + order: 1250, + children: [ + { + title: t('Journal Entries'), + href: route('journal-entry.index'), + permission: 'journalentry manage', + }, + { + title: t('Ledger'), + href: route('report.ledger'), + permission: 'report ledger', + }, + { + title: t('Balance Sheet'), + href: route('report.balance.sheet'), + permission: 'report balance sheet', + }, + { + title: t('Profit & Loss'), + href: route('report.profit.loss'), + permission: 'report profit loss', + }, + { + title: t('Trial Balance'), + href: route('report.trial.balance'), + permission: 'report trial balance', + }, + ], + }, +]; +``` + +--- + +## OPTION A: Vite Config Check + +#### [VERIFY] `vite.config.js` or `vite.config.ts` + +The glob pattern in `menu.ts` is: +```typescript +import.meta.glob('../../../packages/workdo/*/src/Resources/js/menus/*.ts', { eager: true }) +``` + +> [!IMPORTANT] +> New `company-menu.ts` files will be automatically detected by the existing Vite glob. No changes needed to `menu.ts` or `vite.config` — just create the file, run `npm run build`, and it will appear. + +--- + +## OPTION A: Execution Checklist + +| Step | Action | Files | +|------|--------|-------| +| 1 | Create Fleet company-menu.ts | `packages/workdo/Fleet/src/Resources/js/menus/company-menu.ts` | +| 2 | Create Bookings company-menu.ts | `packages/workdo/Bookings/src/Resources/js/menus/company-menu.ts` | +| 3 | Create AIDocument company-menu.ts | `packages/workdo/AIDocument/src/Resources/js/menus/company-menu.ts` | +| 4 | Create Documents company-menu.ts | `packages/workdo/Documents/src/Resources/js/menus/company-menu.ts` | +| 5 | Create DoubleEntry company-menu.ts | `packages/workdo/DoubleEntry/src/Resources/js/menus/company-menu.ts` | +| 6 | Run `npm run build` | Frontend assets | +| 7 | Deploy to production | `git push` + server `git pull && npm run build` | +| 8 | Verify all 5 modules appear in sidebar | Browser console check | +| 9 | Test each link loads the Blade page | Manual navigation | + +--- + +## OPTION B: Full React/Inertia Rewrite (Future Roadmap) + +### Priority Order + +| Priority | Module | Effort | Reason | +|----------|--------|--------|--------| +| P1 | **DoubleEntry** | Medium (3 controllers) | Core accounting, high-value reports | +| P2 | **Documents** | Medium (3 controllers) | Document management, cross-module | +| P3 | **Fleet** | High (19 controllers) | Large module, many CRUD views | +| P4 | **Bookings** | High (10 controllers) | Complex UI (kanban, calendar) | +| P5 | **AIDocument** | Medium (3 controllers) | AI integration, template-heavy | + +### Per-Module Rewrite Steps + +For EACH module, the React rewrite would involve: + +1. **Create Inertia Pages** in `packages/workdo/{Module}/src/Resources/js/Pages/` +2. **Convert Controllers** from `return view()` to `return Inertia::render()` +3. **Migrate Blade Components** to React/shadcn components +4. **Update DataTables** to use React Table or TanStack Table +5. **Test All CRUD** operations through the new React interface +6. **Remove Blade Views** once verified + +### Estimated Effort + +| Module | Blade Views | React Pages Needed | Estimated Time | +|--------|------------|-------------------|----------------| +| DoubleEntry | ~12 views | ~8 pages | 2-3 days | +| Documents | ~8 views | ~5 pages | 1-2 days | +| Fleet | ~30+ views | ~15 pages | 4-5 days | +| Bookings | ~15 views | ~10 pages | 3-4 days | +| AIDocument | ~6 views | ~4 pages | 1-2 days | + +**Total estimated: ~12-16 days for complete React migration** + +--- + +## Verification Plan + +### Option A Verification +```bash +# After creating all 5 menu files: +npm run build + +# Check console for new modules: +# "Loading Module: Fleet from ..." +# "Loading Module: Bookings from ..." +# "Loading Module: AIDocument from ..." +# "Loading Module: Documents from ..." +# "Loading Module: DoubleEntry from ..." + +# Verify sidebar shows 27 items (was 22) +# Click each menu item → should load Blade page +``` + +### Option B Verification (per module) +```bash +# After converting a module: +php artisan route:list --name={module} +npm run build +# Navigate to each page → should render React layout +# Test CRUD operations +# Verify Blade views are no longer used +``` diff --git a/docs/PLAN-dashboard-report-align.md b/docs/PLAN-dashboard-report-align.md new file mode 100644 index 0000000..b0f8db7 --- /dev/null +++ b/docs/PLAN-dashboard-report-align.md @@ -0,0 +1,108 @@ +# PLAN: Align Dashboard to Journal Entries (Option A) + +## Goal +Make the Account Dashboard pull revenue/expense/profit figures from the same journal entry data as the P&L report, creating a **single source of truth**. + +--- + +## Phase 1: Backend — Refactor `DashboardController::companyDashboard()` + +### [MODIFY] `packages/workdo/Account/src/Http/Controllers/DashboardController.php` + +**Current logic (lines 42-132):** +```php +$totalRevenue = Revenue::where('created_by', $creatorId)->sum('amount'); // ❌ Only manual revenue +$totalExpense = Expense::where('created_by', $creatorId)->sum('amount'); // ❌ Only manual expense +$netProfit = $totalRevenue - $totalExpense; // ❌ Incomplete +``` + +**New logic:** +```php +// Use journal entry data (same source as P&L) +$totalRevenue = getJournalCategoryTotal('revenue', $startDate, $endDate); // ✅ All revenue +$totalExpense = getJournalCategoryTotal('expenses', $startDate, $endDate); // ✅ All expenses +$netProfit = $totalRevenue - $totalExpense; // ✅ Correct +``` + +**Specific changes:** +1. Add `$startDate` / `$endDate` from request (default: current fiscal year Jan 1 → today) +2. Create private helper `getJournalCategoryTotal(string $categoryType, string $startDate, string $endDate): float` + - Queries `AccountCategory` → `AccountType` → `ChartOfAccount` → `JournalEntryItem` (same as `FinancialReportController::getAccountBalance()`) + - Returns absolute total for all accounts in the given category +3. Add monthly revenue/expense chart data from journal entries (6-month lookback) +4. Keep existing `CustomerPayment` / `VendorPayment` totals (those are correct — they track cash flow) +5. Keep `recentRevenues` and `recentExpenses` as-is (useful activity feed) +6. Pass `period`, `startDate`, `endDate` to frontend + +**New props passed to frontend:** +```php +'stats' => [ + 'total_clients' => $totalClients, + 'total_vendors' => $totalVendors, + 'total_revenue' => $totalRevenue, // From journal entries + 'total_expense' => $totalExpense, // From journal entries + 'net_profit' => $netProfit, // From journal entries + 'total_customer_payment' => $totalCustomerPayments, // Keep + 'total_vendor_payment' => $totalVendorPayments, // Keep +], +'period' => $period, // NEW +'monthlyRevenue' => $monthlyRevenue, // NEW: journal-based +'monthlyExpense' => $monthlyExpense, // NEW: journal-based +'monthlyCustomerPayments' => ..., // Keep +'monthlyVendorPayments' => ..., // Keep +'recentRevenues' => ..., // Keep +'recentExpenses' => ..., // Keep +``` + +--- + +## Phase 2: Frontend — Add Period Selector + Revenue/Expense Stats + +### [MODIFY] `packages/workdo/Account/src/Resources/js/Pages/Dashboard/CompanyDashboard.tsx` + +**Changes:** +1. Add period selector tabs: `This Month` | `This Quarter` | `This Year` | `All Time` +2. Add 2 new stat cards: **Total Revenue** (journal-based) + **Total Expense** (journal-based) + **Net Profit** +3. Replace the 2 charts with journal-based Revenue vs Expense monthly comparison chart +4. Keep Customer/Vendor payment charts and recent activity feeds +5. Update TypeScript interface for new props + +**New stat card layout (8 cards in 2 rows):** +``` +Row 1: [Total Revenue ✅] [Total Expense ✅] [Net Profit ✅] [Clients] +Row 2: [Vendors] [Customer Payments] [Vendor Payments] [Journal Entries] +``` + +--- + +## Phase 3: Staff Dashboard + +### [MODIFY] `DashboardController::staffDashboard()` +Same fix: replace `Revenue::sum()` / `Expense::sum()` with journal-based aggregation for `monthly_revenue` / `monthly_expense` stats. + +--- + +## Verification + +| Test | Expected Result | +|------|----------------| +| Dashboard `total_revenue` = P&L `totalIncome` for same date range | ✅ Match | +| Dashboard `total_expense` = P&L `totalExpense` for same date range | ✅ Match | +| Dashboard `net_profit` = P&L `netProfit` for same date range | ✅ Match | +| Posting a Sales Invoice → dashboard revenue increases | ✅ Reflected | +| Recording manual Revenue → dashboard revenue increases | ✅ Reflected | +| Period selector switches between month/quarter/year/all | ✅ Reloads correctly | + +--- + +## Files Changed + +| File | Change | +|------|--------| +| `Account/Http/Controllers/DashboardController.php` | Refactor stats to use journal entries | +| `Account/Resources/js/Pages/Dashboard/CompanyDashboard.tsx` | Add period selector, revenue/expense/profit stats | + +## Files NOT Changed +- `FinancialReportController.php` — Already correct +- `JournalService.php` — Already correct +- Vendor/Client dashboards — They don't show revenue/expense P&L data diff --git a/docs/PLAN-demo-announcement-bar.md b/docs/PLAN-demo-announcement-bar.md new file mode 100644 index 0000000..b021ffa --- /dev/null +++ b/docs/PLAN-demo-announcement-bar.md @@ -0,0 +1,214 @@ +# Announcement Bar — "Book a Demo" with Contact Form Popup (v2 — FINAL) + +## Background + +Create a **non-dismissible** pinned announcement bar at the very top of the ERP header. Visible **only for super admin** (`auth.user.type === 'superadmin'`) accounts. Uses **NNT branding** for the ERP/SME messaging. + +Clicking the CTA opens a large modal with: +- **Left Panel (40%):** Calendar view (month grid, time slot selector) +- **Right Panel (60%):** Booking confirmation form (matching the provided screenshot) + +On submission, email sent **to `charles@devappsolutions.ph`** (primary + CC). + +--- + +## Confirmed Requirements + +| Question | Answer | +|----------|--------| +| Where to show? | All pages, but **only for super admin** (`type === 'superadmin'`) | +| Dismissible? | **No** — always locked/visible | +| Email recipient | Primary = `charles@devappsolutions.ph`, CC = same | +| Calendar type | Calendar-style month view → select date → select time slot → show booking form | +| Branding | **NNT branding** for ERP SME messaging | + +--- + +## User Flow + +``` +1. Super admin sees announcement bar pinned at top of every page +2. Clicks "Book a Demo" button +3. Modal opens → Left side shows calendar (month grid) +4. User selects a date → time slots appear below calendar +5. User selects a time slot → Right side shows "Confirm booking" form +6. Form pre-fills: selected date, time, timezone (Asia/Manila), duration (30 min) +7. User fills: Name*, Email*, Country*, Website, Inquiry type*, Project type*, Message, Phone* +8. Clicks "Book event" → sends email → shows success +``` + +--- + +## Proposed Changes + +### Frontend — Announcement Bar Component + +#### [NEW] `resources/js/components/announcement-bar.tsx` + +A sticky gradient bar pinned above the header. + +**Behavior:** +- Only renders when `auth.user?.type === 'superadmin'` +- Non-dismissible (no close button) +- Contains: animated icon + "NNT ERP — Book a FREE 30-Minute Demo Call" + CTA button +- CTA opens the `DemoBookingModal` + +**Design:** +- Full-width gradient bar (uses primary brand color) +- Subtle shimmer/pulse animation on the CTA +- Height: ~40px, compact but noticeable + +--- + +### Frontend — Demo Booking Modal Component + +#### [NEW] `resources/js/components/demo-booking-modal.tsx` + +Large dialog (`max-w-5xl`) using existing Shadcn `Dialog` component. + +**Left Panel (40%) — Calendar & Time Selection:** +- Month calendar grid (react-day-picker already installed) +- Past dates disabled +- When date selected → show available 30-min time slots below +- Time slots: 9:00 AM to 5:00 PM (Asia/Manila), 30-min intervals +- Selected slot gets highlighted + +**Right Panel (60%) — Confirm Booking Form:** +Shown after date + time are selected. Matches the screenshot: + +| Section | Content | +|---------|---------| +| Header | "Confirm booking:" with × close | +| Title | "NNT ERP — Book a 30-Minute FREE Demo Call" | +| Meta | 🧑 With: NNT Design | +| Meta | 📅 When: [Selected date & time] | +| Meta | 🌐 Timezone: Asia/Manila | +| Meta | ⏱ Duration: 30 minutes | +| Divider | — | +| Field | Your name* | +| Field | Your email* | +| Field | Which country are you based in?* | +| Field | What is your business website? (optional) | +| Field | What would you like to explore?* (radio: Product Inquiry / Service Inquiry) | +| Field | Is this a new project or running setup?* (radio: New Project / Running Setup) | +| Field | Anything specific to share before the call? (textarea, optional) | +| Field | Best way to reach for faster communication?* (phone input with PH flag) | +| Button | "Book event" (full-width, dark) | + +**Submission:** +- `axios.post('/demo-request', formData)` +- Loading spinner on submit button +- Success → green confirmation message, modal auto-closes after 3s +- Error → inline validation errors + +--- + +### Frontend — Layout Integration + +#### [MODIFY] `resources/js/layouts/authenticated-layout.tsx` + +- Import `AnnouncementBar` +- Render `` as the **first child** inside ``, before `
` +- The component itself handles the super admin visibility check + +--- + +### Backend — Controller + +#### [NEW] `app/Http/Controllers/DemoRequestController.php` + +```php +class DemoRequestController extends Controller +{ + public function store(Request $request) + { + $validated = $request->validate([ + 'name' => 'required|string|max:255', + 'email' => 'required|email|max:255', + 'country' => 'required|string|max:255', + 'website' => 'nullable|string|max:500', + 'inquiry_type' => 'required|in:product,service', + 'project_type' => 'required|in:new,running', + 'message' => 'nullable|string|max:2000', + 'phone' => 'required|string|max:30', + 'preferred_date' => 'required|date', + 'preferred_time' => 'required|string', + ]); + + Mail::to('charles@devappsolutions.ph') + ->cc('charles@devappsolutions.ph') + ->send(new DemoRequestMail($validated)); + + return response()->json(['success' => true, 'message' => 'Demo request submitted']); + } +} +``` + +--- + +### Backend — Mailable + +#### [NEW] `app/Mail/DemoRequestMail.php` + +- Extends `Mailable` +- Uses Markdown email template +- Passes all form data to the view +- Subject: "New Demo Request from [name] — NNT ERP" + +--- + +### Backend — Email Template + +#### [NEW] `resources/views/emails/demo-request.blade.php` + +Professional markdown email with: +- Booking details (date, time, timezone, duration) +- Contact info (name, email, phone, country, website) +- Inquiry details (product/service, new/running) +- Optional message +- Clean formatting + +--- + +### Backend — Route + +#### [MODIFY] `routes/web.php` + +```php +// Demo Request (super admin only) +Route::post('/demo-request', [DemoRequestController::class, 'store']) + ->middleware(['auth']) + ->name('demo-request.store'); +``` + +--- + +## File Summary + +| File | Action | Purpose | +|------|--------|---------| +| `resources/js/components/announcement-bar.tsx` | NEW | Pinned gradient bar, super admin only | +| `resources/js/components/demo-booking-modal.tsx` | NEW | Calendar + booking form modal | +| `resources/js/layouts/authenticated-layout.tsx` | MODIFY | Add announcement bar to layout | +| `app/Http/Controllers/DemoRequestController.php` | NEW | Handle form POST + send email | +| `app/Mail/DemoRequestMail.php` | NEW | Email mailable class | +| `resources/views/emails/demo-request.blade.php` | NEW | Email template | +| `routes/web.php` | MODIFY | Add POST route | + +--- + +## Verification Plan + +### Automated Tests +- `npm run build` — TypeScript compiles without errors +- Test POST endpoint via dev tools + +### Manual Verification +1. Login as super admin → announcement bar visible on all pages +2. Login as non-super-admin → announcement bar NOT visible +3. Click "Book a Demo" → modal with calendar opens +4. Select date → time slots appear +5. Select time → booking form appears with correct date/time prefilled +6. Fill all required fields → submit → success toast +7. Check inbox → email received at `charles@devappsolutions.ph` +8. Test mobile responsive (stacked layout) diff --git a/docs/PLAN-demo-seeders.md b/docs/PLAN-demo-seeders.md new file mode 100644 index 0000000..690c28e --- /dev/null +++ b/docs/PLAN-demo-seeders.md @@ -0,0 +1,255 @@ +# PLAN: ERP-Wide Demo Data Seeders + +## Objective +Add Laravel seeders with realistic demo data to every ERP module, following the established `DemoContext` pattern used by existing seeders. All seeders must be **idempotent**, use **`firstOrCreate`/guard checks**, and integrate into the `DemoDashboardSeeder` orchestration pipeline. + +--- + +## Current State Assessment + +### ✅ Modules WITH Demo Seeders (Already Done) + +| Module | Demo Seeders | Status | +|--------|-------------|--------| +| **Account** | 8 seeders (Vendors, Customers, BankAccounts, CoA, Revenue, Expense, etc.) | ✅ Complete | +| **HRM** | 38 seeders (Employees, Attendance, Leaves, Awards, Promotions, etc.) | ✅ Complete | +| **Lead/CRM** | 19 seeders (Pipelines, Leads, Deals, Tasks, Calls, Emails) | ✅ Complete | +| **Taskly/Projects** | 5 seeders (Projects, Milestones, Tasks, Bugs, Activity) | ✅ Complete | +| **ProductService** | 4 seeders (Categories, Taxes, Units, Items) | ✅ Complete | +| **POS** | 1 seeder (POS transactions) | ✅ Complete | +| **Payroll** | Inline in DemoDashboardSeeder (Components, PayGroups, Structures) | ✅ Complete | +| **SkillsMatrix** | DemoSkillsMatrixSeeder | ✅ Complete | +| **CertTracker** | DemoCertTrackerSeeder | ✅ Complete | +| **Engagement** | DemoEngagementSeeder | ✅ Complete | +| **Utilization** | DemoUtilizationSeeder | ✅ Complete | +| **PropertyManagement** | DemoPropertyManagementSeeder | ✅ Complete | +| **DoubleEntry** | DemoDoubleEntrySeeder (journals linked to transactions) | ✅ Complete | +| **Core** | Warehouses, Transfers, Users, Staff, Login History, Helpdesk, Orders | ✅ Complete | + +### ❌ Modules WITHOUT Demo Seeders (Need Work) + +| Module | Models/Entities | Complexity | Priority | +|--------|----------------|------------|----------| +| **Hospital** | 12 models (Doctors, Patients, Appointments, Beds, Labs, Surgeries, Ambulance, Medicines, Visitors, Wards, MedicalRecords) | High | P1 | +| **CoilManufacturing** | 13 entities (Items, Profiles, Machines, Coils, Remnants, FinishedGoods, SalesOrders, JobOrders, ProductionRuns, Outputs, StockMovements) | High | P1 | +| **Fleet** | 19 entities (Drivers, Vehicles, VehicleTypes, Licenses, FuelTypes, Bookings, Maintenances, Insurances, Payments, Logbooks, etc.) | High | P2 | +| **Bookings** | 7 migrations (Packages, BusinessHours, ExtraServices, Appointments, Customers, Staff, Duration) | Medium | P2 | +| **Warehouse (Extended)** | 5 models (Receipts, ReceiptItems, StockMovements, Transfers, TransferItems) | Medium | P1 | + +### ⏭️ Modules That DON'T Need Demo Seeders + +| Module | Reason | +|--------|--------| +| **AIAssistant** | Config/API-driven, no data models | +| **AIDocument** | Config/API-driven, no data models | +| **AIForecasting** | Config/API-driven, no data models | +| **AIHub** | Orchestrator, no own data models | +| **CustomField** | Schema extension, populated by other modules | +| **Documents** | File storage, no structured demo data | +| **LandingPage** | Frontend CMS, has its own page seeders | +| **Stripe / Paypal** | Payment gateway config, no demo data needed | + +--- + +## Architecture: Seeder Pipeline + +``` +DatabaseSeeder.run() + └─ DemoDashboardSeeder.run($userId) + ├─ activateModules($userId) ← Add new modules here + ├─ runPackageSeeders($userId) ← Add new package seeders here + ├─ DemoContext.hydrate() ← Extend with new IDs + │ + ├─ ... existing seeders ... + │ + ├─ [NEW] DemoHospitalSeeder ← Step 13 + ├─ [NEW] DemoCoilMfgSeeder ← Step 14 + ├─ [NEW] DemoFleetSeeder ← Step 15 + ├─ [NEW] DemoBookingsSeeder ← Step 16 + └─ [NEW] DemoWarehouseExtSeeder ← Step 17 +``` + +--- + +## Implementation Plan + +### Phase 1: Context Extension (Foundation) + +#### [MODIFY] `database/seeders/DemoContext.php` +- Add new arrays: `$doctorIds`, `$patientIds`, `$vehicleIds`, `$driverIds`, `$coilIds`, `$machineIds`, `$warehouseReceiptIds` +- Add helper methods: `randomDoctor()`, `randomPatient()`, `randomVehicle()`, `randomDriver()` +- Extend `hydrate()` to populate new IDs from existing data + +#### [MODIFY] `database/seeders/DemoDashboardSeeder.php` +- Add new modules to `activateModules()` array: `Hospital`, `CoilManufacturing`, `Fleet`, `Bookings`, `Warehouse` +- Add new seeder calls in `runPackageSeeders()` with guard checks +- Add orchestration calls after existing ones + +--- + +### Phase 2: Hospital Module (P1) — 12 Models + +#### [NEW] `database/seeders/DemoHospitalSeeder.php` + +**Data Plan:** +1. **Wards** (4): ICU, General Ward, Pediatrics Ward, Maternity Ward +2. **Beds** (16): 4 per ward, mixed availability status +3. **Doctors** (8): Various specializations (already in Hospital DemoDataSeeder but not integrated into pipeline) +4. **Patients** (15): Demographics, varied conditions +5. **Appointments** (20): Past/current/future, linked to doctors & patients +6. **Medical Records** (12): Diagnosis, treatment notes, linked to patients +7. **Lab Tests** (10): Blood work, X-rays, urinalysis, linked to patients +8. **Surgeries** (5): Scheduled/completed, linked to doctors & patients +9. **Medicines** (20): Common medications with dosage info +10. **Ambulance** (3): Vehicles with status +11. **Ambulance Calls** (8): Emergency dispatch records +12. **Visitors** (15): Linked to patients, with check-in/out times + +**Dependencies:** Uses `$ctx->userId` for `created_by`, references HRM employees as potential doctors. + +> [!IMPORTANT] +> Hospital already has a `DemoDataSeeder.php` that uses raw `DB::table()->insert()` with hardcoded `created_by => 2`. We need to **refactor** it to accept `DemoContext` and use dynamic IDs, then integrate it. + +--- + +### Phase 3: CoilManufacturing Module (P1) — 13 Models + +#### [MODIFY] `packages/workdo/CoilManufacturing/src/Database/Seeders/CoilManufacturingDemoSeeder.php` + +**Refactor Plan:** Existing seeder auto-resolves company user. Needs to accept `DemoContext` instead. + +**Data Plan:** +1. **MfgItems** (10): Raw material items (aluminum coils, steel, copper) +2. **MfgProfiles** (8): Extrusion profiles (T-bar, C-channel, angles) +3. **MfgMachines** (4): CNC, Press Brake, Shear, Rolling Mill +4. **MfgCoils** (6): Raw coil inventory with lengths/weights +5. **MfgRemnants** (4): Leftover pieces from cutting +6. **MfgFinishedGoods** (8): Completed products ready for delivery +7. **MfgSalesOrders** (5): Customer orders with line items +8. **MfgSalesOrderItems** (12): Line items for sales orders +9. **MfgJobOrders** (6): Production jobs linked to sales orders +10. **MfgProductionRuns** (4): Actual runs with start/end timestamps +11. **MfgProductionOutputs** (8): Output records per production run +12. **MfgStockMovements** (15): Full audit trail of material flow + +**Dependencies:** Uses `$ctx->productIds` for raw material mapping, `$ctx->clientIds` for sales orders. + +--- + +### Phase 4: Fleet Module (P2) — 19 Models + +#### [NEW] `database/seeders/DemoFleetSeeder.php` + +**Data Plan:** +1. **VehicleTypes** (5): Sedan, SUV, Truck, Van, Motorcycle +2. **FuelTypes** (3): Gasoline, Diesel, Electric +3. **Vehicles** (8): With plate numbers, mileage, status +4. **Drivers** (6): Linked to HRM employees where possible +5. **Licenses** (6): Driver licenses with expiry dates +6. **Fleet Customers** (5): External fleet customers +7. **Bookings** (12): Vehicle reservations with date ranges +8. **Maintenances** (8): Scheduled/completed maintenance records +9. **MaintenanceTypes** (5): Oil change, Tire rotation, Engine check, etc. +10. **Insurances** (8): Vehicle insurance policies +11. **Fuel/Recurring** (10): Fuel logs with costs +12. **FleetPayments** (6): Payment records +13. **Logbooks** (15): Trip logs with mileage + +**Dependencies:** Uses `$ctx->employeeIds` to link drivers to employees. + +--- + +### Phase 5: Bookings Module (P2) — 7 Tables + +#### [NEW] `database/seeders/DemoBookingsSeeder.php` + +**Data Plan:** +1. **BusinessHours** (7): Mon-Sun operating hours +2. **Staff** (5): Bookable staff members +3. **Packages** (4): Service packages (Basic, Standard, Premium, VIP) +4. **ExtraServices** (6): Add-on services +5. **Customers** (8): Booking customers +6. **Appointments** (15): Past/future bookings with varied statuses +7. **Duration** (4): 30min, 1hr, 2hr, half-day slots + +**Dependencies:** Uses `$ctx->staffIds` for bookable staff. + +--- + +### Phase 6: Warehouse Extended (P1) — 5 Models + +#### [NEW] `database/seeders/DemoWarehouseExtSeeder.php` + +**Data Plan:** +1. **WarehouseReceipts** (6): Goods received notes linked to purchase invoices +2. **WarehouseReceiptItems** (18): 3 items per receipt +3. **WarehouseStockMovements** (20): IN/OUT/TRANSFER movements with audit trail +4. **WarehouseTransfers** (4): Inter-warehouse transfers +5. **WarehouseTransferItems** (12): Items per transfer + +**Dependencies:** Uses `$ctx->warehouseIds`, `$ctx->productIds`, `$ctx->purchaseInvoiceIds`. + +--- + +## Seeder Design Rules + +> [!WARNING] +> All seeders MUST follow these rules. No exceptions. + +1. **Idempotent**: Use `firstOrCreate()` or check `->doesntExist()` before inserting +2. **Dynamic IDs**: Accept `DemoContext` — never hardcode user IDs (`created_by => 2` is FORBIDDEN) +3. **Realistic Dates**: Use `Carbon::now()->subDays(rand(...))` for natural-looking timelines +4. **Referential Integrity**: All foreign keys must reference IDs from `DemoContext` +5. **Guard Against Missing Data**: If required dependencies are empty, `return` early without errors +6. **Filipino Context**: Use Filipino names, Philippine addresses, PHP currency where applicable +7. **No Raw SQL**: Use Eloquent models or `DB::table()->insert()` with proper timestamps + +--- + +## File Summary + +| Action | File | Description | +|--------|------|-------------| +| MODIFY | `database/seeders/DemoContext.php` | Add new ID arrays + helper methods | +| MODIFY | `database/seeders/DemoDashboardSeeder.php` | Orchestrate new seeders | +| NEW | `database/seeders/DemoHospitalSeeder.php` | Hospital demo data (12 tables) | +| MODIFY | `packages/.../CoilManufacturing/.../CoilManufacturingDemoSeeder.php` | Refactor to use DemoContext | +| NEW | `database/seeders/DemoFleetSeeder.php` | Fleet demo data (19 tables) | +| NEW | `database/seeders/DemoBookingsSeeder.php` | Bookings demo data (7 tables) | +| NEW | `database/seeders/DemoWarehouseExtSeeder.php` | Warehouse extended data (5 tables) | + +--- + +## Verification Plan + +### Automated Tests +```bash +# Clean test: full seeder run from scratch +php artisan migrate:fresh --seed + +# Incremental: run only the dashboard seeder on existing data +php artisan db:seed --class=DemoDashboardSeeder + +# Individual module test +php artisan db:seed --class=DemoHospitalSeeder +php artisan db:seed --class=DemoFleetSeeder +php artisan db:seed --class=DemoBookingsSeeder +``` + +### Manual Verification +- Navigate to each module dashboard and confirm data renders +- Verify foreign key relationships (click into detail views) +- Run seeder twice to confirm idempotency (no duplicates) +- Test on fresh database (`migrate:fresh --seed`) + +--- + +## Execution Order + +1. **Phase 1**: DemoContext + DemoDashboardSeeder updates (foundation) +2. **Phase 2**: Hospital seeder (refactor existing + extend) +3. **Phase 6**: Warehouse Extended seeder (highest business priority) +4. **Phase 3**: CoilManufacturing seeder (refactor existing) +5. **Phase 4**: Fleet seeder (new) +6. **Phase 5**: Bookings seeder (new) +7. **Verify**: Full `migrate:fresh --seed` test diff --git a/docs/PLAN-doubleentry-compat.md b/docs/PLAN-doubleentry-compat.md new file mode 100644 index 0000000..bbea8bc --- /dev/null +++ b/docs/PLAN-doubleentry-compat.md @@ -0,0 +1,247 @@ +# Merge DoubleEntry into Account Package + +## Background + +The DoubleEntry module is a child module of Account (`parent_module: ["Account"]`). It provides: +1. **Journal Entries** — CRUD (but Account already has `JournalEntry` + `JournalEntryItem` models) +2. **Financial Reports** — Ledger, Balance Sheet, Profit & Loss, Trial Balance (Account does NOT have these) +3. **Sidebar menu** — "Double Entry" with 5 items + +Since DoubleEntry IS accounting, we'll **absorb its unique functionality into Account** and **retire the DoubleEntry package**. + +--- + +## What Each Package Already Has + +### Account Package ✅ (keep) +| Feature | Controller | React Pages | Models | +|---------|-----------|-------------|--------| +| Dashboard | `DashboardController` | 4 dashboards | — | +| Chart of Accounts | `ChartOfAccountController` | CRUD (4 pages) | `ChartOfAccount` | +| Bank Accounts | `BankAccountController` | CRUD (4 pages) | `BankAccount` | +| Bank Transactions | `BankTransactionController` | Index | `BankTransaction` | +| Bank Transfers | `BankTransferController` | CRUD (4 pages) | `BankTransfer` | +| Customers | `CustomerController` | CRUD (4 pages) | `Customer` | +| Vendors | `VendorController` | CRUD (4 pages) | `Vendor` | +| Customer Payments | `CustomerPaymentController` | Create/Index/View | `CustomerPayment` | +| Vendor Payments | `VendorPaymentController` | Create/Index/View | `VendorPayment` | +| Revenue | `RevenueController` | CRUD | `Revenue` | +| Expense | `ExpenseController` | CRUD | `Expense` | +| Debit Notes | `DebitNoteController` | Create/Index/View | `DebitNote` | +| Credit Notes | `CreditNoteController` | Create/Index/View | `CreditNote` | +| Reports | `ReportsController` | Invoice/Bill Aging, Tax, Customer/Vendor Balance | via `ReportService` | +| System Setup | `AccountTypeController` | Account Types, Expense/Revenue Categories | `AccountType`, `AccountCategory` | +| Journal Entries | — (model only) | — (no pages) | `JournalEntry`, `JournalEntryItem` | + +### DoubleEntry Package 🔴 (retire) +| Feature | Controller | React Pages | Status | +|---------|-----------|-------------|--------| +| Journal Entries | `JournalEntryController` | Index, Create, Edit, View | ⚠️ Uses old schema | +| Ledger Report | `ReportController::ledgerReport` | Ledger.tsx | 🆕 Account doesn't have | +| Balance Sheet | `ReportController::balanceSheet` | BalanceSheet.tsx | 🆕 Account doesn't have | +| Profit & Loss | `ReportController::profitLoss` | ProfitLoss.tsx | 🆕 Account doesn't have | +| Trial Balance | `ReportController::trialBalance` | TrialBalance.tsx | 🆕 Account doesn't have | + +--- + +## What Needs to Move + +### ✅ Already duplicated (skip) +- `JournalEntry` model → Account already has `Workdo\Account\Models\JournalEntry` +- `JournalItem` model → Account already has `Workdo\Account\Models\JournalEntryItem` + +### 🆕 Unique to DoubleEntry (must migrate) + +| Asset | Source Location | Target Location | +|-------|----------------|----------------| +| **Journal CRUD Controller** | `DoubleEntry/JournalEntryController.php` | Rewrite in Account package using Account models | +| **Journal CRUD Pages (4)** | `DoubleEntry/Pages/JournalEntries/*.tsx` | Move to `Account/Pages/JournalEntries/*.tsx` | +| **Financial Reports Controller** | `DoubleEntry/ReportController.php` | Rewrite as `Account/FinancialReportController.php` using Account models | +| **Financial Reports Pages (4)** | `DoubleEntry/Pages/Reports/*.tsx` | Move to `Account/Pages/Reports/*.tsx` | +| **Sidebar Menu Items** | `DoubleEntry/menus/company-menu.ts` | Merge into `Account/menus/company-menu.ts` | +| **Permissions** | `journalentry manage/create/edit/delete/show`, `report ledger/balance sheet/profit loss/trial balance` | Add to Account permission seeder | + +--- + +## Proposed Changes + +### Phase 1 — New JournalEntry Controller in Account + +#### [NEW] `Account/src/Http/Controllers/JournalEntryController.php` + +Rewrite DoubleEntry's `JournalEntryController` to use Account's own models: +- Replace `Workdo\DoubleEntry\Entities\JournalEntry` → `Workdo\Account\Models\JournalEntry` +- Replace `Workdo\DoubleEntry\Entities\JournalItem` → `Workdo\Account\Models\JournalEntryItem` +- Replace `Workdo\Account\Entities\ChartOfAccount` → `Workdo\Account\Models\ChartOfAccount` +- Remove `AccountUtility::addTransactionLines()` (deprecated flow) +- Remove `BankAccount::where('chart_account_id', ...)` → use `gl_account_id` +- Remove `chart_of_account_parents` join → use `parent_account_id` self-join +- Map column names: `code` → `account_code`, `name` → `account_name`, `parent` → `parent_account_id` +- Render to `Account/JournalEntries/*` instead of `DoubleEntry/JournalEntries/*` + +**Methods:** `index`, `create`, `store`, `show`, `edit`, `update`, `destroy`, `journalDestroy`, `accountDestroy`, `setting` + +--- + +### Phase 2 — New Financial Reports Controller in Account + +#### [NEW] `Account/src/Http/Controllers/FinancialReportController.php` + +Completely rewrite the 4 report methods against the modern schema: + +| Method | Query Pattern (new schema) | +|--------|--------------------------| +| `ledgerReport()` | `JournalEntryItem` joined with `ChartOfAccount`, grouped by account, filtered by date | +| `balanceSheet()` | `JournalEntryItem` aggregated by `AccountCategory` (Assets, Liabilities, Equity) via `AccountType` | +| `profitLoss()` | `JournalEntryItem` aggregated by `AccountCategory` (Revenue, Expenses) via `AccountType` | +| `trialBalance()` | `JournalEntryItem` totals per `ChartOfAccount`, all categories | + +**Key simplification:** The old ReportController was 2183 lines because it navigated a 4-layer hierarchy (`Type → SubType → Parent → Account`). The new schema is cleaner: `AccountCategory → AccountType → ChartOfAccount`, so reports become ~300-400 lines. + +Renders to `Account/Reports/Ledger`, `Account/Reports/BalanceSheet`, `Account/Reports/ProfitLoss`, `Account/Reports/TrialBalance`. + +--- + +### Phase 3 — Move & Adapt React Pages + +#### [MOVE] Journal Entry Pages (4 files) +``` +DoubleEntry/Pages/JournalEntries/Index.tsx → Account/Pages/JournalEntries/Index.tsx +DoubleEntry/Pages/JournalEntries/Create.tsx → Account/Pages/JournalEntries/Create.tsx +DoubleEntry/Pages/JournalEntries/Edit.tsx → Account/Pages/JournalEntries/Edit.tsx +DoubleEntry/Pages/JournalEntries/View.tsx → Account/Pages/JournalEntries/View.tsx +``` + +Update Inertia page references from `DoubleEntry/JournalEntries/*` → `Account/JournalEntries/*` + +#### [MOVE] Financial Report Pages (4 files) +``` +DoubleEntry/Pages/Reports/Ledger.tsx → Account/Pages/Reports/Ledger.tsx +DoubleEntry/Pages/Reports/BalanceSheet.tsx → Account/Pages/Reports/BalanceSheet.tsx +DoubleEntry/Pages/Reports/ProfitLoss.tsx → Account/Pages/Reports/ProfitLoss.tsx +DoubleEntry/Pages/Reports/TrialBalance.tsx → Account/Pages/Reports/TrialBalance.tsx +``` + +> [!IMPORTANT] +> These React pages may need prop adjustments since the new controller will pass data in a different structure than the old one. Review each page's expected props. + +--- + +### Phase 4 — Update Account Routes + +#### [MODIFY] `Account/src/Routes/web.php` + +Add journal entry and financial report routes: + +```php +// Journal Entries +Route::prefix('account/journal-entries')->name('account.journal-entries.')->group(function () { + Route::resource('/', JournalEntryController::class); + Route::post('/account/destroy', [JournalEntryController::class, 'accountDestroy'])->name('account.destroy'); + Route::delete('/journal/destroy/{item_id}', [JournalEntryController::class, 'journalDestroy'])->name('journal.destroy'); + Route::post('/setting/store', [JournalEntryController::class, 'setting'])->name('setting.store'); +}); + +// Financial Reports +Route::prefix('account/financial-reports')->name('account.financial-reports.')->group(function () { + Route::get('/ledger/{account?}', [FinancialReportController::class, 'ledgerReport'])->name('ledger'); + Route::get('/balance-sheet', [FinancialReportController::class, 'balanceSheet'])->name('balance-sheet'); + Route::get('/profit-loss', [FinancialReportController::class, 'profitLoss'])->name('profit-loss'); + Route::get('/trial-balance', [FinancialReportController::class, 'trialBalance'])->name('trial-balance'); +}); +``` + +--- + +### Phase 5 — Update Account Sidebar Menu + +#### [MODIFY] `Account/src/Resources/js/menus/company-menu.ts` + +Add to the existing Accounting menu children: + +```typescript +{ + title: t('Journal Entries'), + href: route('account.journal-entries.index'), + permission: 'journalentry manage', +}, +{ + title: t('Financial Reports'), + permission: 'report ledger', + children: [ + { title: t('Ledger'), href: route('account.financial-reports.ledger'), permission: 'report ledger' }, + { title: t('Balance Sheet'), href: route('account.financial-reports.balance-sheet'), permission: 'report balance sheet' }, + { title: t('Profit & Loss'), href: route('account.financial-reports.profit-loss'), permission: 'report profit loss' }, + { title: t('Trial Balance'), href: route('account.financial-reports.trial-balance'), permission: 'report trial balance' }, + ], +}, +``` + +--- + +### Phase 6 — Seed Permissions + +#### [MODIFY] Account permission seeder + +Add the DoubleEntry permissions to Account's seeder: +- `journalentry manage`, `journalentry create`, `journalentry edit`, `journalentry delete`, `journalentry show` +- `report ledger`, `report balance sheet`, `report profit loss`, `report trial balance` +- `doubleentry manage` + +--- + +### Phase 7 — Disable DoubleEntry Module + +#### [MODIFY] `packages/workdo/DoubleEntry/module.json` + +Set `"is_enable": 0` or remove the module from `modules_statuses.json` to prevent it loading. We keep the package directory intact as a backup but stop it from registering routes/menus. + +> [!WARNING] +> Do NOT delete the DoubleEntry package yet. Disable it first, verify everything works, then delete in a future cleanup pass. + +--- + +## File Summary + +| Action | File | Phase | +|--------|------|-------| +| 🆕 NEW | `Account/Http/Controllers/JournalEntryController.php` | 1 | +| 🆕 NEW | `Account/Http/Controllers/FinancialReportController.php` | 2 | +| 📋 MOVE | 4 JournalEntry React pages → Account | 3 | +| 📋 MOVE | 4 Financial Report React pages → Account | 3 | +| ✏️ MODIFY | `Account/Routes/web.php` | 4 | +| ✏️ MODIFY | `Account/menus/company-menu.ts` | 5 | +| ✏️ MODIFY | Account permission seeder | 6 | +| ✏️ MODIFY | `DoubleEntry/module.json` (disable) | 7 | +| **Total** | **~12 files** | | + +--- + +## Verification Plan + +### Phase-by-Phase Testing +1. **After Phase 1–4:** Navigate to `/account/journal-entries` → Index page loads +2. **After Phase 1–4:** Create a journal entry → saves to `journal_entries` + `journal_entry_items` +3. **After Phase 2–4:** Navigate to `/account/financial-reports/trial-balance` → report loads +4. **After Phase 2–4:** Navigate to Balance Sheet, P&L, Ledger → all render +5. **After Phase 5:** Sidebar shows Journal Entries + Financial Reports under "Accounting" +6. **After Phase 7:** Disable DoubleEntry → `/doubleentry/*` routes return 404 +7. **Build test:** `npm run build` → no TS errors + +### Data Integrity +- Existing `journal_entries` and `journal_entry_items` data is preserved (same tables) +- No migration needed (using existing Account tables) + +--- + +## Estimated Complexity + +| Phase | Effort | Notes | +|-------|--------|-------| +| Phase 1 | Medium | Rewrite JournalEntryController (~300 lines) | +| Phase 2 | **High** | Rewrite FinancialReportController from scratch (~400 lines) | +| Phase 3 | Low | Copy + adjust Inertia page references | +| Phase 4 | Low | Add routes | +| Phase 5 | Low | Add menu items | +| Phase 6 | Low | Seed permissions | +| Phase 7 | Low | Flip module off | diff --git a/eerp.sql b/eerp.sql new file mode 100644 index 0000000..c519333 --- /dev/null +++ b/eerp.sql @@ -0,0 +1,28615 @@ +-- phpMyAdmin SQL Dump +-- version 5.2.2 +-- https://www.phpmyadmin.net/ +-- +-- Host: localhost +-- Generation Time: May 01, 2026 at 02:14 PM +-- Server version: 10.11.11-MariaDB +-- PHP Version: 8.0.30 + +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: `nnte_worksuiteerp` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `account_categories` +-- + +CREATE TABLE `account_categories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `code` varchar(255) NOT NULL, + `type` enum('assets','liabilities','equity','revenue','expenses') NOT NULL, + `description` text DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `account_categories` +-- + +INSERT INTO `account_categories` (`id`, `name`, `code`, `type`, `description`, `is_active`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Assets', 'AST', 'assets', 'Resources owned by the company', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Liabilities', 'LIB', 'liabilities', 'Debts and obligations of the company', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'Equity', 'EQT', 'equity', 'Owner\'s equity in the company', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Revenue', 'REV', 'revenue', 'Income generated from business operations', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'Expenses', 'EXP', 'expenses', 'Costs incurred in business operations', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 'Assets', 'AST', 'assets', 'Resources owned by the company', 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(7, 'Liabilities', 'LIB', 'liabilities', 'Debts and obligations of the company', 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(8, 'Equity', 'EQT', 'equity', 'Owner\'s equity in the company', 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(9, 'Revenue', 'REV', 'revenue', 'Income generated from business operations', 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(10, 'Expenses', 'EXP', 'expenses', 'Costs incurred in business operations', 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `account_types` +-- + +CREATE TABLE `account_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `category_id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `code` varchar(255) NOT NULL, + `normal_balance` enum('debit','credit') NOT NULL, + `description` text DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `is_system_type` tinyint(1) NOT NULL DEFAULT 0, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `account_types` +-- + +INSERT INTO `account_types` (`id`, `category_id`, `name`, `code`, `normal_balance`, `description`, `is_active`, `is_system_type`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 'Current Assets', 'CA', 'debit', 'Assets expected to be converted to cash within one year', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 1, 'Fixed Assets', 'FA', 'debit', 'Long-term tangible assets', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 1, 'Other Assets', 'OA', 'debit', 'Other miscellaneous assets', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 2, 'Current Liabilities', 'CL', 'credit', 'Debts due within one year', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 2, 'Long-term Liabilities', 'LTL', 'credit', 'Debts due after one year', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 3, 'Share Capital', 'SC', 'credit', 'Owner\'s investment in the business', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 3, 'Retained Earnings', 'RE', 'credit', 'Accumulated profits retained in business', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 4, 'Sales Revenue', 'SR', 'credit', 'Income from sales of goods or services', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 4, 'Other Income', 'OI', 'credit', 'Miscellaneous income', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 5, 'Cost of Goods Sold', 'COGS', 'debit', 'Direct costs of producing goods sold', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, 5, 'Operating Expenses', 'OE', 'debit', 'Expenses from normal business operations', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, 5, 'Administrative Expenses', 'AE', 'debit', 'General administrative costs', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(13, 5, 'Financial Expenses', 'FE', 'debit', 'Interest and financial costs', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 5, 'Tax Expenses', 'TE', 'debit', 'Tax-related expenses', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, 5, 'Other Expenses', 'OX', 'debit', 'Miscellaneous expenses', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(16, 6, 'Current Assets', 'CA', 'debit', 'Assets expected to be converted to cash within one year', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(17, 6, 'Fixed Assets', 'FA', 'debit', 'Long-term tangible assets', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(18, 6, 'Other Assets', 'OA', 'debit', 'Other miscellaneous assets', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(19, 7, 'Current Liabilities', 'CL', 'credit', 'Debts due within one year', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(20, 7, 'Long-term Liabilities', 'LTL', 'credit', 'Debts due after one year', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(21, 8, 'Share Capital', 'SC', 'credit', 'Owner\'s investment in the business', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(22, 8, 'Retained Earnings', 'RE', 'credit', 'Accumulated profits retained in business', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(23, 9, 'Sales Revenue', 'SR', 'credit', 'Income from sales of goods or services', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(24, 9, 'Other Income', 'OI', 'credit', 'Miscellaneous income', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(25, 10, 'Cost of Goods Sold', 'COGS', 'debit', 'Direct costs of producing goods sold', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(26, 10, 'Operating Expenses', 'OE', 'debit', 'Expenses from normal business operations', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(27, 10, 'Administrative Expenses', 'AE', 'debit', 'General administrative costs', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(28, 10, 'Financial Expenses', 'FE', 'debit', 'Interest and financial costs', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(29, 10, 'Tax Expenses', 'TE', 'debit', 'Tax-related expenses', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(30, 10, 'Other Expenses', 'OX', 'debit', 'Miscellaneous expenses', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `acknowledgments` +-- + +CREATE TABLE `acknowledgments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `document_id` bigint(20) UNSIGNED DEFAULT NULL, + `status` enum('pending','acknowledged') NOT NULL DEFAULT 'pending', + `acknowledgment_note` text DEFAULT NULL, + `acknowledged_at` timestamp NULL DEFAULT NULL, + `assigned_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `acknowledgments` +-- + +INSERT INTO `acknowledgments` (`id`, `employee_id`, `document_id`, `status`, `acknowledgment_note`, `acknowledged_at`, `assigned_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 8, 1, 'acknowledged', 'I have thoroughly reviewed and understood all company policies outlined in the employee handbook document.', '2025-09-21 19:50:49', 10, 2, 2, '2025-09-20 09:32:49', '2025-09-21 19:50:49'), +(2, 10, 2, 'acknowledged', 'Safety guidelines and emergency procedures have been carefully read and acknowledged for workplace compliance.', '2025-09-25 17:02:49', 12, 2, 2, '2025-09-25 10:47:49', '2025-09-25 17:02:49'), +(3, 12, 3, 'pending', 'Currently reviewing the leave application procedures and will provide acknowledgment within the specified timeframe.', NULL, 14, 2, 2, '2025-09-30 15:02:49', '2025-09-30 15:02:49'), +(4, 14, 4, 'acknowledged', 'Performance review guidelines are clear and comprehensive, providing excellent framework for evaluation processes.', '2025-10-06 18:44:49', 16, 2, 2, '2025-10-05 11:37:49', '2025-10-06 18:44:49'), +(5, 16, 5, 'pending', 'Workplace safety manual requires additional clarification on section three regarding emergency evacuation procedures.', NULL, 18, 2, 2, '2025-10-10 13:27:49', '2025-10-10 13:27:49'), +(6, 18, 6, 'acknowledged', 'Expense reimbursement policy has been reviewed and all procedures are understood for future claims.', '2025-10-17 07:57:49', 20, 2, 2, '2025-10-15 15:52:49', '2025-10-17 07:57:49'), +(7, 20, 7, 'acknowledged', 'Remote work agreement terms are acceptable and I commit to maintaining productivity standards.', '2025-10-21 03:27:49', 22, 2, 2, '2025-10-20 09:07:49', '2025-10-21 03:27:49'), +(8, 22, 8, 'pending', 'New employee onboarding materials are being reviewed and acknowledgment will be provided shortly.', NULL, 24, 2, 2, '2025-10-25 12:42:49', '2025-10-25 12:42:49'), +(9, 24, 9, 'acknowledged', 'IT security procedures are comprehensive and I understand all password and data protection requirements.', '2025-11-01 16:54:49', 26, 2, 2, '2025-10-30 16:57:49', '2025-11-01 16:54:49'), +(10, 26, 10, 'acknowledged', 'Benefits enrollment guide provides clear instructions for health insurance and retirement plan selections.', '2025-11-05 06:14:49', 8, 2, 2, '2025-11-04 10:12:49', '2025-11-05 06:14:49'), +(11, 8, 11, 'acknowledged', 'Disciplinary action policy framework is well-structured and provides fair progressive discipline procedures.', '2025-11-09 21:23:49', 10, 2, 2, '2025-11-09 11:32:49', '2025-11-09 21:23:49'), +(12, 10, 12, 'pending', 'Training development plan requires more time for thorough review of career advancement pathways.', NULL, 12, 2, 2, '2025-11-14 14:47:49', '2025-11-14 14:47:49'), +(13, 12, 13, 'acknowledged', 'Emergency response protocol is detailed and covers all necessary safety procedures for workplace incidents.', '2025-11-20 17:20:49', 14, 2, 2, '2025-11-19 11:02:49', '2025-11-20 17:20:49'), +(14, 14, 14, 'pending', 'Confidentiality agreement terms need legal review before providing final acknowledgment and acceptance.', NULL, 16, 2, 2, '2025-11-24 13:37:49', '2025-11-24 13:37:49'), +(15, 16, 15, 'acknowledged', 'Payroll processing manual is comprehensive and clearly explains salary calculations and deduction procedures.', '2025-12-01 04:08:49', 18, 2, 2, '2025-11-29 15:27:49', '2025-12-01 04:08:49'), +(16, 18, 16, 'pending', 'Quality assurance standards document is extensive and requires additional time for complete understanding.', NULL, 20, 2, 2, '2025-12-04 08:52:49', '2025-12-04 08:52:49'), +(17, 20, 17, 'acknowledged', 'Travel expense policy guidelines are clear and provide excellent framework for business trip reimbursements.', '2025-12-11 06:08:49', 22, 2, 2, '2025-12-09 13:07:49', '2025-12-11 06:08:49'), +(18, 22, 18, 'pending', 'Performance improvement plan template needs discussion with supervisor before final acknowledgment can be provided.', NULL, 24, 2, 2, '2025-12-14 16:42:49', '2025-12-14 16:42:49'), +(19, 24, 19, 'acknowledged', 'Equipment usage agreement terms are reasonable and I accept responsibility for company property care.', '2025-12-20 08:28:49', 26, 2, 2, '2025-12-19 09:57:49', '2025-12-20 08:28:49'), +(20, 26, 20, 'pending', 'Health insurance enrollment options require consultation with family before making final benefit selections.', NULL, 8, 2, 2, '2025-12-24 12:12:49', '2025-12-24 12:12:49'), +(21, 8, 21, 'acknowledged', 'Workplace harassment policy is comprehensive and provides clear reporting procedures for incident management.', '2025-12-31 14:24:49', 10, 2, 2, '2025-12-29 14:32:49', '2025-12-31 14:24:49'), +(22, 10, 22, 'pending', 'Professional development fund guidelines need clarification regarding conference attendance approval processes and procedures.', NULL, 12, 2, 2, '2026-01-03 10:47:49', '2026-01-03 10:47:49'), +(23, 12, 23, 'acknowledged', 'Data protection guidelines are thorough and I understand all compliance requirements for information security.', '2026-01-09 12:08:49', 14, 2, 2, '2026-01-08 14:02:49', '2026-01-09 12:08:49'), +(24, 14, 24, 'acknowledged', 'Flexible work schedule policy provides excellent work-life balance options with clear core hours requirements.', '2026-01-14 07:49:49', 16, 2, 2, '2026-01-13 15:37:49', '2026-01-14 07:49:49'), +(25, 16, 25, 'acknowledged', 'Retirement plan guide is detailed and provides comprehensive information about contribution matching and investment options.', '2026-01-19 23:02:49', 18, 2, 2, '2026-01-18 08:27:49', '2026-01-19 23:02:49'), +(26, 18, 26, 'pending', 'Vendor management policy requires additional review of contract negotiation procedures before final acknowledgment.', NULL, 20, 2, 2, '2026-01-23 12:52:49', '2026-01-23 12:52:49'), +(27, 20, 27, 'acknowledged', 'Innovation initiative guidelines are inspiring and provide excellent framework for employee idea submission processes.', '2026-01-28 21:53:49', 22, 2, 2, '2026-01-28 17:07:49', '2026-01-28 21:53:49'), +(28, 22, 28, 'pending', 'Environmental sustainability plan is comprehensive but needs discussion regarding individual employee responsibility implementation.', NULL, 24, 2, 2, '2026-02-02 09:42:49', '2026-02-02 09:42:49'), +(29, 24, 29, 'acknowledged', 'Customer service standards are well-defined and provide clear guidelines for maintaining service excellence.', '2026-02-08 09:10:49', 26, 2, 2, '2026-02-07 11:57:49', '2026-02-08 09:10:49'), +(30, 26, 30, 'acknowledged', 'Business continuity plan is thorough and provides comprehensive disaster recovery procedures for operational resilience.', '2026-02-12 17:26:49', 8, 2, 2, '2026-02-12 15:12:49', '2026-02-12 17:26:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `activity_log` +-- + +CREATE TABLE `activity_log` ( + `id` bigint(20) UNSIGNED NOT NULL, + `log_name` varchar(255) DEFAULT NULL, + `description` text NOT NULL, + `subject_type` varchar(255) DEFAULT NULL, + `subject_id` bigint(20) UNSIGNED DEFAULT NULL, + `event` varchar(255) DEFAULT NULL, + `causer_type` varchar(255) DEFAULT NULL, + `causer_id` bigint(20) UNSIGNED DEFAULT NULL, + `batch_uuid` char(36) DEFAULT NULL, + `attribute_changes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`attribute_changes`)), + `properties` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`properties`)), + `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 `activity_log` +-- + +INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `event`, `causer_type`, `causer_id`, `batch_uuid`, `attribute_changes`, `properties`, `created_at`, `updated_at`) VALUES +(1, 'products', 'Product Service Item \"Paracetamol 158mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 78, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":78,\"name\":\"Paracetamol 158mg\",\"sku\":\"MED-136K59\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"119.90\",\"purchase_price\":\"27.49\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(2, 'products', 'Product Service Item \"Ibuprofen 277mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 79, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":79,\"name\":\"Ibuprofen 277mg\",\"sku\":\"MED-VPPJJI\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"191.49\",\"purchase_price\":\"32.40\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(3, 'products', 'Product Service Item \"Amoxicillin 104mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 80, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":80,\"name\":\"Amoxicillin 104mg\",\"sku\":\"MED-8DZQQC\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"162.66\",\"purchase_price\":\"21.74\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(4, 'products', 'Product Service Item \"Cetirizine 235mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 81, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":81,\"name\":\"Cetirizine 235mg\",\"sku\":\"MED-OVPACR\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"171.33\",\"purchase_price\":\"39.56\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(5, 'products', 'Product Service Item \"Losartan 264mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 82, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":82,\"name\":\"Losartan 264mg\",\"sku\":\"MED-1KYBKZ\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"79.13\",\"purchase_price\":\"18.81\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(6, 'products', 'Product Service Item \"Amlodipine 195mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 83, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":83,\"name\":\"Amlodipine 195mg\",\"sku\":\"MED-U4SILN\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"114.73\",\"purchase_price\":\"25.02\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(7, 'products', 'Product Service Item \"Metformin 243mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 84, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":84,\"name\":\"Metformin 243mg\",\"sku\":\"MED-V0OYXX\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"169.73\",\"purchase_price\":\"28.64\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(8, 'products', 'Product Service Item \"Omeprazole 290mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 85, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":85,\"name\":\"Omeprazole 290mg\",\"sku\":\"MED-H1FM8V\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"192.07\",\"purchase_price\":\"28.55\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(9, 'products', 'Product Service Item \"Simvastatin 290mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 86, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":86,\"name\":\"Simvastatin 290mg\",\"sku\":\"MED-IBVEZR\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"176.95\",\"purchase_price\":\"34.44\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(10, 'products', 'Product Service Item \"Azithromycin 427mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 87, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":87,\"name\":\"Azithromycin 427mg\",\"sku\":\"MED-JUFRWR\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"116.80\",\"purchase_price\":\"22.31\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(11, 'products', 'Product Service Item \"Expired generic antibiotic\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 88, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":88,\"name\":\"Expired generic antibiotic\",\"sku\":\"DEAD-VUTEJT\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"150.00\",\"purchase_price\":\"50.00\",\"min_stock_level\":10,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(12, 'purchase', 'Purchase Invoice #P-TEST-DEAD was created', 'App\\Models\\PurchaseInvoice', 11, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":11,\"invoice_number\":\"P-TEST-DEAD\",\"invoice_date\":\"2026-01-25T16:00:00.000000Z\",\"due_date\":\"2026-02-01T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"10000.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"10000.00\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"10000.00\",\"status\":\"posted\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(13, 'warehouse', 'Warehouse Stock Movement #1 was created', 'Workdo\\Warehouse\\Models\\WarehouseStockMovement', 1, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":1,\"product_id\":88,\"warehouse_id\":17,\"quantity\":\"200.00\",\"type\":\"in\",\"reason\":\"Purchase Receipt\",\"reference_type\":\"App\\\\Models\\\\PurchaseInvoice\",\"reference_id\":11,\"description\":\"Received Dead Stock\",\"created_by\":2,\"workspace_id\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(14, 'purchase', 'Purchase Invoice #P-TEST-KAUGJ-0 was created', 'App\\Models\\PurchaseInvoice', 12, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":12,\"invoice_number\":\"P-TEST-KAUGJ-0\",\"invoice_date\":\"2026-04-06T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"2720.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2720.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2720.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(15, 'sales', 'Sales Invoice #S-TEST-URIUJ-0 was created', 'App\\Models\\SalesInvoice', 11, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":11,\"invoice_number\":\"S-TEST-URIUJ-0\",\"invoice_date\":\"2026-04-18T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"4796.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"4796.00\",\"paid_amount\":\"0.00\",\"balance_amount\":\"4796.00\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(16, 'purchase', 'Purchase Invoice #P-TEST-EQKWK-1 was created', 'App\\Models\\PurchaseInvoice', 13, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":13,\"invoice_number\":\"P-TEST-EQKWK-1\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":16,\"subtotal\":\"2398.20\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2398.20\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2398.20\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(17, 'sales', 'Sales Invoice #S-TEST-S8HGQ-1 was created', 'App\\Models\\SalesInvoice', 12, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":12,\"invoice_number\":\"S-TEST-S8HGQ-1\",\"invoice_date\":\"2026-04-18T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":17,\"subtotal\":\"325.32\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"325.32\",\"paid_amount\":\"0.00\",\"balance_amount\":\"325.32\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(18, 'purchase', 'Purchase Invoice #P-TEST-GD2CN-2 was created', 'App\\Models\\PurchaseInvoice', 14, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":14,\"invoice_number\":\"P-TEST-GD2CN-2\",\"invoice_date\":\"2026-04-26T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":17,\"subtotal\":\"2204.16\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2204.16\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2204.16\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(19, 'sales', 'Sales Invoice #S-TEST-5PUOZ-2 was created', 'App\\Models\\SalesInvoice', 13, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":13,\"invoice_number\":\"S-TEST-5PUOZ-2\",\"invoice_date\":\"2026-04-15T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":16,\"subtotal\":\"678.92\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"678.92\",\"paid_amount\":\"0.00\",\"balance_amount\":\"678.92\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(20, 'purchase', 'Purchase Invoice #P-TEST-WYIVO-3 was created', 'App\\Models\\PurchaseInvoice', 15, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":15,\"invoice_number\":\"P-TEST-WYIVO-3\",\"invoice_date\":\"2026-04-09T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"413.28\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"413.28\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"413.28\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(21, 'sales', 'Sales Invoice #S-TEST-CHTAX-3 was created', 'App\\Models\\SalesInvoice', 14, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":14,\"invoice_number\":\"S-TEST-CHTAX-3\",\"invoice_date\":\"2026-04-05T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"650.64\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"650.64\",\"paid_amount\":\"0.00\",\"balance_amount\":\"650.64\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(22, 'purchase', 'Purchase Invoice #P-TEST-MZYLI-4 was created', 'App\\Models\\PurchaseInvoice', 16, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":16,\"invoice_number\":\"P-TEST-MZYLI-4\",\"invoice_date\":\"2026-04-11T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"1434.84\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1434.84\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1434.84\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(23, 'sales', 'Sales Invoice #S-TEST-P4FSK-4 was created', 'App\\Models\\SalesInvoice', 15, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":15,\"invoice_number\":\"S-TEST-P4FSK-4\",\"invoice_date\":\"2026-04-13T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"350.40\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"350.40\",\"paid_amount\":\"0.00\",\"balance_amount\":\"350.40\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(24, 'purchase', 'Purchase Invoice #P-TEST-VHCOV-5 was created', 'App\\Models\\PurchaseInvoice', 17, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":17,\"invoice_number\":\"P-TEST-VHCOV-5\",\"invoice_date\":\"2026-04-16T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":127,\"warehouse_id\":16,\"subtotal\":\"1136.52\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1136.52\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1136.52\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(25, 'sales', 'Sales Invoice #S-TEST-UKMLN-5 was created', 'App\\Models\\SalesInvoice', 16, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":16,\"invoice_number\":\"S-TEST-UKMLN-5\",\"invoice_date\":\"2026-04-29T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":16,\"subtotal\":\"4076.60\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"4076.60\",\"paid_amount\":\"0.00\",\"balance_amount\":\"4076.60\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(26, 'purchase', 'Purchase Invoice #P-TEST-R1EHZ-6 was created', 'App\\Models\\PurchaseInvoice', 18, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":18,\"invoice_number\":\"P-TEST-R1EHZ-6\",\"invoice_date\":\"2026-04-02T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":16,\"subtotal\":\"1145.60\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1145.60\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1145.60\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(27, 'sales', 'Sales Invoice #S-TEST-EJTRJ-6 was created', 'App\\Models\\SalesInvoice', 17, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":17,\"invoice_number\":\"S-TEST-EJTRJ-6\",\"invoice_date\":\"2026-04-12T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":17,\"subtotal\":\"192.07\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"192.07\",\"paid_amount\":\"0.00\",\"balance_amount\":\"192.07\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(28, 'purchase', 'Purchase Invoice #P-TEST-O3HYW-7 was created', 'App\\Models\\PurchaseInvoice', 19, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":19,\"invoice_number\":\"P-TEST-O3HYW-7\",\"invoice_date\":\"2026-04-07T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"600.48\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"600.48\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"600.48\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(29, 'sales', 'Sales Invoice #S-TEST-Y3C9G-7 was created', 'App\\Models\\SalesInvoice', 18, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":18,\"invoice_number\":\"S-TEST-Y3C9G-7\",\"invoice_date\":\"2026-04-26T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"382.98\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"382.98\",\"paid_amount\":\"0.00\",\"balance_amount\":\"382.98\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(30, 'purchase', 'Purchase Invoice #P-TEST-VLHHX-8 was created', 'App\\Models\\PurchaseInvoice', 20, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":20,\"invoice_number\":\"P-TEST-VLHHX-8\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"245.41\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"245.41\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"245.41\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(31, 'sales', 'Sales Invoice #S-TEST-3ZGT1-8 was created', 'App\\Models\\SalesInvoice', 19, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":19,\"invoice_number\":\"S-TEST-3ZGT1-8\",\"invoice_date\":\"2026-04-09T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":17,\"subtotal\":\"768.28\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"768.28\",\"paid_amount\":\"0.00\",\"balance_amount\":\"768.28\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(32, 'purchase', 'Purchase Invoice #P-TEST-HDPWS-9 was created', 'App\\Models\\PurchaseInvoice', 21, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":21,\"invoice_number\":\"P-TEST-HDPWS-9\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"998.76\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"998.76\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"998.76\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(33, 'sales', 'Sales Invoice #S-TEST-5NQGD-9 was created', 'App\\Models\\SalesInvoice', 20, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":20,\"invoice_number\":\"S-TEST-5NQGD-9\",\"invoice_date\":\"2026-04-01T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":16,\"subtotal\":\"395.65\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"395.65\",\"paid_amount\":\"0.00\",\"balance_amount\":\"395.65\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(34, 'purchase', 'Purchase Invoice #P-TEST-IMLRF-10 was created', 'App\\Models\\PurchaseInvoice', 22, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":22,\"invoice_number\":\"P-TEST-IMLRF-10\",\"invoice_date\":\"2026-04-11T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"700.56\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"700.56\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"700.56\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(35, 'sales', 'Sales Invoice #S-TEST-XC8LX-10 was created', 'App\\Models\\SalesInvoice', 21, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":21,\"invoice_number\":\"S-TEST-XC8LX-10\",\"invoice_date\":\"2026-04-07T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"2997.50\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2997.50\",\"paid_amount\":\"0.00\",\"balance_amount\":\"2997.50\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(36, 'purchase', 'Purchase Invoice #P-TEST-CMLON-11 was created', 'App\\Models\\PurchaseInvoice', 23, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":23,\"invoice_number\":\"P-TEST-CMLON-11\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"1582.40\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1582.40\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1582.40\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(37, 'sales', 'Sales Invoice #S-TEST-VLY3Z-11 was created', 'App\\Models\\SalesInvoice', 22, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":22,\"invoice_number\":\"S-TEST-VLY3Z-11\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":17,\"subtotal\":\"114.73\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"114.73\",\"paid_amount\":\"0.00\",\"balance_amount\":\"114.73\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(38, 'purchase', 'Purchase Invoice #P-TEST-9YF47-12 was created', 'App\\Models\\PurchaseInvoice', 24, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":24,\"invoice_number\":\"P-TEST-9YF47-12\",\"invoice_date\":\"2026-04-27T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":17,\"subtotal\":\"326.10\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"326.10\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"326.10\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(39, 'sales', 'Sales Invoice #S-TEST-IDK9Z-12 was created', 'App\\Models\\SalesInvoice', 23, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":23,\"invoice_number\":\"S-TEST-IDK9Z-12\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"191.49\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"191.49\",\"paid_amount\":\"0.00\",\"balance_amount\":\"191.49\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(40, 'purchase', 'Purchase Invoice #P-TEST-T4EIL-13 was created', 'App\\Models\\PurchaseInvoice', 25, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":25,\"invoice_number\":\"P-TEST-T4EIL-13\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":16,\"subtotal\":\"1859.76\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1859.76\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1859.76\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(41, 'sales', 'Sales Invoice #S-TEST-QS2WZ-13 was created', 'App\\Models\\SalesInvoice', 24, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":24,\"invoice_number\":\"S-TEST-QS2WZ-13\",\"invoice_date\":\"2026-04-15T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":17,\"subtotal\":\"169.73\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"169.73\",\"paid_amount\":\"0.00\",\"balance_amount\":\"169.73\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(42, 'purchase', 'Purchase Invoice #P-TEST-LTFLC-14 was created', 'App\\Models\\PurchaseInvoice', 26, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":26,\"invoice_number\":\"P-TEST-LTFLC-14\",\"invoice_date\":\"2026-04-25T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"1621.91\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1621.91\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1621.91\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(43, 'sales', 'Sales Invoice #S-TEST-N5TD2-14 was created', 'App\\Models\\SalesInvoice', 25, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":25,\"invoice_number\":\"S-TEST-N5TD2-14\",\"invoice_date\":\"2026-04-07T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":17,\"subtotal\":\"5995.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5995.00\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5995.00\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(44, 'purchase', 'Purchase Invoice #P-TEST-PTO0I-15 was created', 'App\\Models\\PurchaseInvoice', 27, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":27,\"invoice_number\":\"P-TEST-PTO0I-15\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":127,\"warehouse_id\":16,\"subtotal\":\"685.20\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"685.20\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"685.20\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(45, 'sales', 'Sales Invoice #S-TEST-EFILE-15 was created', 'App\\Models\\SalesInvoice', 26, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":26,\"invoice_number\":\"S-TEST-EFILE-15\",\"invoice_date\":\"2026-04-08T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"5035.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5035.80\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5035.80\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(46, 'purchase', 'Purchase Invoice #P-TEST-IWR6V-16 was created', 'App\\Models\\PurchaseInvoice', 28, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":28,\"invoice_number\":\"P-TEST-IWR6V-16\",\"invoice_date\":\"2026-04-25T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":16,\"subtotal\":\"2175.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2175.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2175.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(47, 'sales', 'Sales Invoice #S-TEST-YTUJJ-16 was created', 'App\\Models\\SalesInvoice', 27, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":27,\"invoice_number\":\"S-TEST-YTUJJ-16\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":16,\"subtotal\":\"316.52\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"316.52\",\"paid_amount\":\"0.00\",\"balance_amount\":\"316.52\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(48, 'purchase', 'Purchase Invoice #P-TEST-48HEE-17 was created', 'App\\Models\\PurchaseInvoice', 29, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":29,\"invoice_number\":\"P-TEST-48HEE-17\",\"invoice_date\":\"2026-04-01T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"2650.52\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2650.52\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2650.52\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(49, 'sales', 'Sales Invoice #S-TEST-L1DNU-17 was created', 'App\\Models\\SalesInvoice', 28, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":28,\"invoice_number\":\"S-TEST-L1DNU-17\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"192.07\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"192.07\",\"paid_amount\":\"0.00\",\"balance_amount\":\"192.07\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(50, 'purchase', 'Purchase Invoice #P-TEST-QL0WL-18 was created', 'App\\Models\\PurchaseInvoice', 30, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":30,\"invoice_number\":\"P-TEST-QL0WL-18\",\"invoice_date\":\"2026-04-14T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":17,\"subtotal\":\"669.30\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"669.30\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"669.30\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(51, 'sales', 'Sales Invoice #S-TEST-UD5IU-18 was created', 'App\\Models\\SalesInvoice', 29, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":29,\"invoice_number\":\"S-TEST-UD5IU-18\",\"invoice_date\":\"2026-04-03T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"5395.50\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5395.50\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5395.50\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(52, 'purchase', 'Purchase Invoice #P-TEST-C07UK-19 was created', 'App\\Models\\PurchaseInvoice', 31, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":31,\"invoice_number\":\"P-TEST-C07UK-19\",\"invoice_date\":\"2026-04-25T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"1869.64\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1869.64\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1869.64\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(53, 'sales', 'Sales Invoice #S-TEST-MAZYJ-19 was created', 'App\\Models\\SalesInvoice', 30, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":30,\"invoice_number\":\"S-TEST-MAZYJ-19\",\"invoice_date\":\"2026-04-27T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"350.40\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"350.40\",\"paid_amount\":\"0.00\",\"balance_amount\":\"350.40\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(54, 'purchase', 'Purchase Invoice #P-TEST-MD0P9-20 was created', 'App\\Models\\PurchaseInvoice', 32, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":32,\"invoice_number\":\"P-TEST-MD0P9-20\",\"invoice_date\":\"2026-04-17T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"2008.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2008.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2008.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(55, 'sales', 'Sales Invoice #S-TEST-RSETD-20 was created', 'App\\Models\\SalesInvoice', 31, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":31,\"invoice_number\":\"S-TEST-RSETD-20\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"2877.60\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2877.60\",\"paid_amount\":\"0.00\",\"balance_amount\":\"2877.60\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(56, 'purchase', 'Purchase Invoice #P-TEST-R80MC-21 was created', 'App\\Models\\PurchaseInvoice', 33, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":33,\"invoice_number\":\"P-TEST-R80MC-21\",\"invoice_date\":\"2026-04-15T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":16,\"subtotal\":\"3085.68\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"3085.68\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"3085.68\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(57, 'sales', 'Sales Invoice #S-TEST-B0ZBJ-21 was created', 'App\\Models\\SalesInvoice', 32, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":32,\"invoice_number\":\"S-TEST-B0ZBJ-21\",\"invoice_date\":\"2026-04-05T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"3836.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"3836.80\",\"paid_amount\":\"0.00\",\"balance_amount\":\"3836.80\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(58, 'purchase', 'Purchase Invoice #P-TEST-WFG0T-22 was created', 'App\\Models\\PurchaseInvoice', 34, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":34,\"invoice_number\":\"P-TEST-WFG0T-22\",\"invoice_date\":\"2026-04-13T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":16,\"subtotal\":\"2007.90\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2007.90\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2007.90\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(59, 'sales', 'Sales Invoice #S-TEST-9LB4E-22 was created', 'App\\Models\\SalesInvoice', 33, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":33,\"invoice_number\":\"S-TEST-9LB4E-22\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":17,\"subtotal\":\"79.13\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"79.13\",\"paid_amount\":\"0.00\",\"balance_amount\":\"79.13\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(60, 'purchase', 'Purchase Invoice #P-TEST-OBNMN-23 was created', 'App\\Models\\PurchaseInvoice', 35, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":35,\"invoice_number\":\"P-TEST-OBNMN-23\",\"invoice_date\":\"2026-04-16T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"1383.22\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1383.22\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1383.22\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(61, 'sales', 'Sales Invoice #S-TEST-HQMG8-23 was created', 'App\\Models\\SalesInvoice', 34, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":34,\"invoice_number\":\"S-TEST-HQMG8-23\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":16,\"subtotal\":\"344.19\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"344.19\",\"paid_amount\":\"0.00\",\"balance_amount\":\"344.19\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(62, 'purchase', 'Purchase Invoice #P-TEST-1Q8IV-24 was created', 'App\\Models\\PurchaseInvoice', 36, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":36,\"invoice_number\":\"P-TEST-1Q8IV-24\",\"invoice_date\":\"2026-04-20T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"870.09\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"870.09\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"870.09\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(63, 'sales', 'Sales Invoice #S-TEST-L6BEU-24 was created', 'App\\Models\\SalesInvoice', 35, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":35,\"invoice_number\":\"S-TEST-L6BEU-24\",\"invoice_date\":\"2026-04-14T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"513.99\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"513.99\",\"paid_amount\":\"0.00\",\"balance_amount\":\"513.99\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(64, 'purchase', 'Purchase Invoice #P-TEST-X5MDB-25 was created', 'App\\Models\\PurchaseInvoice', 37, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":37,\"invoice_number\":\"P-TEST-X5MDB-25\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":16,\"subtotal\":\"1515.36\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1515.36\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1515.36\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(65, 'sales', 'Sales Invoice #S-TEST-PBHAH-25 was created', 'App\\Models\\SalesInvoice', 36, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":36,\"invoice_number\":\"S-TEST-PBHAH-25\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":17,\"subtotal\":\"5995.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5995.00\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5995.00\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'); +INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `event`, `causer_type`, `causer_id`, `batch_uuid`, `attribute_changes`, `properties`, `created_at`, `updated_at`) VALUES +(66, 'purchase', 'Purchase Invoice #P-TEST-062VQ-26 was created', 'App\\Models\\PurchaseInvoice', 38, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":38,\"invoice_number\":\"P-TEST-062VQ-26\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"2034.26\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2034.26\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2034.26\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(67, 'sales', 'Sales Invoice #S-TEST-IDZXP-26 was created', 'App\\Models\\SalesInvoice', 37, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":37,\"invoice_number\":\"S-TEST-IDZXP-26\",\"invoice_date\":\"2026-04-04T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":17,\"subtotal\":\"884.75\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"884.75\",\"paid_amount\":\"0.00\",\"balance_amount\":\"884.75\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(68, 'purchase', 'Purchase Invoice #P-TEST-LCQAB-27 was created', 'App\\Models\\PurchaseInvoice', 39, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":39,\"invoice_number\":\"P-TEST-LCQAB-27\",\"invoice_date\":\"2026-04-07T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"1317.44\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1317.44\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1317.44\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(69, 'sales', 'Sales Invoice #S-TEST-OAMCR-27 was created', 'App\\Models\\SalesInvoice', 38, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":38,\"invoice_number\":\"S-TEST-OAMCR-27\",\"invoice_date\":\"2026-04-05T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"382.98\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"382.98\",\"paid_amount\":\"0.00\",\"balance_amount\":\"382.98\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(70, 'purchase', 'Purchase Invoice #P-TEST-M20G0-28 was created', 'App\\Models\\PurchaseInvoice', 40, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":40,\"invoice_number\":\"P-TEST-M20G0-28\",\"invoice_date\":\"2026-04-25T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"1846.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1846.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1846.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(71, 'sales', 'Sales Invoice #S-TEST-ADDFX-28 was created', 'App\\Models\\SalesInvoice', 39, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":39,\"invoice_number\":\"S-TEST-ADDFX-28\",\"invoice_date\":\"2026-04-17T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":17,\"subtotal\":\"350.40\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"350.40\",\"paid_amount\":\"0.00\",\"balance_amount\":\"350.40\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(72, 'purchase', 'Purchase Invoice #P-TEST-TFLTM-29 was created', 'App\\Models\\PurchaseInvoice', 41, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":41,\"invoice_number\":\"P-TEST-TFLTM-29\",\"invoice_date\":\"2026-04-07T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"2369.65\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2369.65\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2369.65\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(73, 'sales', 'Sales Invoice #S-TEST-NKNE2-29 was created', 'App\\Models\\SalesInvoice', 40, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":40,\"invoice_number\":\"S-TEST-NKNE2-29\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"5635.30\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5635.30\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5635.30\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(74, 'purchase', 'Purchase Invoice #P-TEST-JZBZE-30 was created', 'App\\Models\\PurchaseInvoice', 42, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":42,\"invoice_number\":\"P-TEST-JZBZE-30\",\"invoice_date\":\"2026-04-03T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"2201.76\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2201.76\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2201.76\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(75, 'sales', 'Sales Invoice #S-TEST-KFLHX-30 was created', 'App\\Models\\SalesInvoice', 41, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":41,\"invoice_number\":\"S-TEST-KFLHX-30\",\"invoice_date\":\"2026-04-14T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"5755.20\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5755.20\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5755.20\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(76, 'purchase', 'Purchase Invoice #P-TEST-XYSCK-31 was created', 'App\\Models\\PurchaseInvoice', 43, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":43,\"invoice_number\":\"P-TEST-XYSCK-31\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"2426.94\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2426.94\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2426.94\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(77, 'sales', 'Sales Invoice #S-TEST-QWYRO-31 was created', 'App\\Models\\SalesInvoice', 42, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":42,\"invoice_number\":\"S-TEST-QWYRO-31\",\"invoice_date\":\"2026-04-12T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"229.46\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"229.46\",\"paid_amount\":\"0.00\",\"balance_amount\":\"229.46\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(78, 'purchase', 'Purchase Invoice #P-TEST-DJLMZ-32 was created', 'App\\Models\\PurchaseInvoice', 44, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":44,\"invoice_number\":\"P-TEST-DJLMZ-32\",\"invoice_date\":\"2026-04-20T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"577.29\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"577.29\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"577.29\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(79, 'sales', 'Sales Invoice #S-TEST-ABQNU-32 was created', 'App\\Models\\SalesInvoice', 43, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":43,\"invoice_number\":\"S-TEST-ABQNU-32\",\"invoice_date\":\"2026-04-04T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":16,\"subtotal\":\"116.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"116.80\",\"paid_amount\":\"0.00\",\"balance_amount\":\"116.80\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(80, 'purchase', 'Purchase Invoice #P-TEST-0KPSS-33 was created', 'App\\Models\\PurchaseInvoice', 45, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":45,\"invoice_number\":\"P-TEST-0KPSS-33\",\"invoice_date\":\"2026-04-14T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"3441.72\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"3441.72\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"3441.72\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(81, 'sales', 'Sales Invoice #S-TEST-MLDI8-33 was created', 'App\\Models\\SalesInvoice', 44, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":44,\"invoice_number\":\"S-TEST-MLDI8-33\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"856.65\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"856.65\",\"paid_amount\":\"0.00\",\"balance_amount\":\"856.65\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(82, 'purchase', 'Purchase Invoice #P-TEST-P4UOE-34 was created', 'App\\Models\\PurchaseInvoice', 46, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":46,\"invoice_number\":\"P-TEST-P4UOE-34\",\"invoice_date\":\"2026-04-02T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"206.91\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"206.91\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"206.91\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(83, 'sales', 'Sales Invoice #S-TEST-FBAAO-34 was created', 'App\\Models\\SalesInvoice', 45, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":45,\"invoice_number\":\"S-TEST-FBAAO-34\",\"invoice_date\":\"2026-04-13T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":16,\"subtotal\":\"856.65\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"856.65\",\"paid_amount\":\"0.00\",\"balance_amount\":\"856.65\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(84, 'purchase', 'Purchase Invoice #P-TEST-OFRVZ-35 was created', 'App\\Models\\PurchaseInvoice', 47, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":47,\"invoice_number\":\"P-TEST-OFRVZ-35\",\"invoice_date\":\"2026-04-21T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"1198.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1198.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1198.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(85, 'sales', 'Sales Invoice #S-TEST-ZCC5I-35 was created', 'App\\Models\\SalesInvoice', 46, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":46,\"invoice_number\":\"S-TEST-ZCC5I-35\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":17,\"subtotal\":\"2637.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2637.80\",\"paid_amount\":\"0.00\",\"balance_amount\":\"2637.80\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(86, 'purchase', 'Purchase Invoice #P-TEST-LZXZ7-36 was created', 'App\\Models\\PurchaseInvoice', 48, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":48,\"invoice_number\":\"P-TEST-LZXZ7-36\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"446.20\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"446.20\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"446.20\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(87, 'sales', 'Sales Invoice #S-TEST-HOKNG-36 was created', 'App\\Models\\SalesInvoice', 47, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":47,\"invoice_number\":\"S-TEST-HOKNG-36\",\"invoice_date\":\"2026-04-08T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":16,\"subtotal\":\"650.64\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"650.64\",\"paid_amount\":\"0.00\",\"balance_amount\":\"650.64\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(88, 'purchase', 'Purchase Invoice #P-TEST-COLGK-37 was created', 'App\\Models\\PurchaseInvoice', 49, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":49,\"invoice_number\":\"P-TEST-COLGK-37\",\"invoice_date\":\"2026-04-02T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"357.39\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"357.39\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"357.39\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(89, 'sales', 'Sales Invoice #S-TEST-VAA16-37 was created', 'App\\Models\\SalesInvoice', 48, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":48,\"invoice_number\":\"S-TEST-VAA16-37\",\"invoice_date\":\"2026-04-29T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":16,\"subtotal\":\"678.92\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"678.92\",\"paid_amount\":\"0.00\",\"balance_amount\":\"678.92\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(90, 'purchase', 'Purchase Invoice #P-TEST-CPFZZ-38 was created', 'App\\Models\\PurchaseInvoice', 50, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":50,\"invoice_number\":\"P-TEST-CPFZZ-38\",\"invoice_date\":\"2026-04-06T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"1044.62\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1044.62\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1044.62\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(91, 'sales', 'Sales Invoice #S-TEST-JOQ6L-38 was created', 'App\\Models\\SalesInvoice', 49, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":49,\"invoice_number\":\"S-TEST-JOQ6L-38\",\"invoice_date\":\"2026-04-05T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"5635.30\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5635.30\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5635.30\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(92, 'purchase', 'Purchase Invoice #P-TEST-ZIN6L-39 was created', 'App\\Models\\PurchaseInvoice', 51, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":51,\"invoice_number\":\"P-TEST-ZIN6L-39\",\"invoice_date\":\"2026-04-21T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"2610.96\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2610.96\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2610.96\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(93, 'sales', 'Sales Invoice #S-TEST-IGAOR-39 was created', 'App\\Models\\SalesInvoice', 50, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":50,\"invoice_number\":\"S-TEST-IGAOR-39\",\"invoice_date\":\"2026-04-17T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":16,\"subtotal\":\"342.66\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"342.66\",\"paid_amount\":\"0.00\",\"balance_amount\":\"342.66\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(94, 'purchase', 'Purchase Invoice #P-TEST-ZTNVA-40 was created', 'App\\Models\\PurchaseInvoice', 52, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":52,\"invoice_number\":\"P-TEST-ZTNVA-40\",\"invoice_date\":\"2026-04-03T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":127,\"warehouse_id\":16,\"subtotal\":\"770.85\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"770.85\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"770.85\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(95, 'sales', 'Sales Invoice #S-TEST-7D8QC-40 was created', 'App\\Models\\SalesInvoice', 51, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":51,\"invoice_number\":\"S-TEST-7D8QC-40\",\"invoice_date\":\"2026-04-17T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"2398.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2398.00\",\"paid_amount\":\"0.00\",\"balance_amount\":\"2398.00\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(96, 'purchase', 'Purchase Invoice #P-TEST-0IHAA-41 was created', 'App\\Models\\PurchaseInvoice', 53, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":53,\"invoice_number\":\"P-TEST-0IHAA-41\",\"invoice_date\":\"2026-04-09T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"1401.99\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1401.99\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1401.99\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(97, 'sales', 'Sales Invoice #S-TEST-A23OM-41 was created', 'App\\Models\\SalesInvoice', 52, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":52,\"invoice_number\":\"S-TEST-A23OM-41\",\"invoice_date\":\"2026-04-17T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"325.32\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"325.32\",\"paid_amount\":\"0.00\",\"balance_amount\":\"325.32\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(98, 'purchase', 'Purchase Invoice #P-TEST-DFOEK-42 was created', 'App\\Models\\PurchaseInvoice', 54, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":54,\"invoice_number\":\"P-TEST-DFOEK-42\",\"invoice_date\":\"2026-04-27T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"1918.66\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1918.66\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1918.66\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(99, 'sales', 'Sales Invoice #S-TEST-LIDWK-42 was created', 'App\\Models\\SalesInvoice', 53, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":53,\"invoice_number\":\"S-TEST-LIDWK-42\",\"invoice_date\":\"2026-04-20T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":17,\"subtotal\":\"162.66\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"162.66\",\"paid_amount\":\"0.00\",\"balance_amount\":\"162.66\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(100, 'purchase', 'Purchase Invoice #P-TEST-WANLC-43 was created', 'App\\Models\\PurchaseInvoice', 55, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":55,\"invoice_number\":\"P-TEST-WANLC-43\",\"invoice_date\":\"2026-04-06T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"810.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"810.00\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"810.00\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(101, 'sales', 'Sales Invoice #S-TEST-EDUQO-43 was created', 'App\\Models\\SalesInvoice', 54, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":54,\"invoice_number\":\"S-TEST-EDUQO-43\",\"invoice_date\":\"2026-04-20T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":16,\"subtotal\":\"162.66\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"162.66\",\"paid_amount\":\"0.00\",\"balance_amount\":\"162.66\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(102, 'purchase', 'Purchase Invoice #P-TEST-MGZTW-44 was created', 'App\\Models\\PurchaseInvoice', 56, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":56,\"invoice_number\":\"P-TEST-MGZTW-44\",\"invoice_date\":\"2026-04-01T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":127,\"warehouse_id\":16,\"subtotal\":\"2818.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2818.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2818.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(103, 'sales', 'Sales Invoice #S-TEST-QS1RC-44 was created', 'App\\Models\\SalesInvoice', 55, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":55,\"invoice_number\":\"S-TEST-QS1RC-44\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"382.98\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"382.98\",\"paid_amount\":\"0.00\",\"balance_amount\":\"382.98\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(104, 'purchase', 'Purchase Invoice #P-TEST-F5PBT-45 was created', 'App\\Models\\PurchaseInvoice', 57, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":57,\"invoice_number\":\"P-TEST-F5PBT-45\",\"invoice_date\":\"2026-04-29T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"3271.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"3271.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"3271.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(105, 'sales', 'Sales Invoice #S-TEST-0XUFS-45 was created', 'App\\Models\\SalesInvoice', 56, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":56,\"invoice_number\":\"S-TEST-0XUFS-45\",\"invoice_date\":\"2026-04-27T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":16,\"subtotal\":\"5515.40\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5515.40\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5515.40\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(106, 'purchase', 'Purchase Invoice #P-TEST-JAPOQ-46 was created', 'App\\Models\\PurchaseInvoice', 58, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":58,\"invoice_number\":\"P-TEST-JAPOQ-46\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":17,\"subtotal\":\"1517.08\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1517.08\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1517.08\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(107, 'sales', 'Sales Invoice #S-TEST-LKCEF-46 was created', 'App\\Models\\SalesInvoice', 57, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":57,\"invoice_number\":\"S-TEST-LKCEF-46\",\"invoice_date\":\"2026-04-06T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"848.65\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"848.65\",\"paid_amount\":\"0.00\",\"balance_amount\":\"848.65\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(108, 'purchase', 'Purchase Invoice #P-TEST-VHFMB-47 was created', 'App\\Models\\PurchaseInvoice', 59, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":59,\"invoice_number\":\"P-TEST-VHFMB-47\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"1369.62\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1369.62\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1369.62\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(109, 'sales', 'Sales Invoice #S-TEST-KTGIR-47 was created', 'App\\Models\\SalesInvoice', 58, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":58,\"invoice_number\":\"S-TEST-KTGIR-47\",\"invoice_date\":\"2026-04-23T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":17,\"subtotal\":\"584.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"584.00\",\"paid_amount\":\"0.00\",\"balance_amount\":\"584.00\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:40.000000Z\",\"updated_at\":\"2026-05-01T13:49:40.000000Z\"}}', '2026-05-01 21:49:40', '2026-05-01 21:49:40'), +(110, 'purchase', 'Purchase Invoice #P-TEST-F13F1-48 was created', 'App\\Models\\PurchaseInvoice', 60, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":60,\"invoice_number\":\"P-TEST-F13F1-48\",\"invoice_date\":\"2026-04-23T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":16,\"subtotal\":\"2769.35\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2769.35\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2769.35\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:40.000000Z\",\"updated_at\":\"2026-05-01T13:49:40.000000Z\"}}', '2026-05-01 21:49:40', '2026-05-01 21:49:40'), +(111, 'sales', 'Sales Invoice #S-TEST-IQEQ6-48 was created', 'App\\Models\\SalesInvoice', 59, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":59,\"invoice_number\":\"S-TEST-IQEQ6-48\",\"invoice_date\":\"2026-04-21T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"678.92\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"678.92\",\"paid_amount\":\"0.00\",\"balance_amount\":\"678.92\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:40.000000Z\",\"updated_at\":\"2026-05-01T13:49:40.000000Z\"}}', '2026-05-01 21:49:40', '2026-05-01 21:49:40'), +(112, 'purchase', 'Purchase Invoice #P-TEST-8A8SK-49 was created', 'App\\Models\\PurchaseInvoice', 61, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":61,\"invoice_number\":\"P-TEST-8A8SK-49\",\"invoice_date\":\"2026-04-09T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":127,\"warehouse_id\":17,\"subtotal\":\"2916.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2916.00\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2916.00\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:40.000000Z\",\"updated_at\":\"2026-05-01T13:49:40.000000Z\"}}', '2026-05-01 21:49:40', '2026-05-01 21:49:40'), +(113, 'sales', 'Sales Invoice #S-TEST-ZOWE9-49 was created', 'App\\Models\\SalesInvoice', 60, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":60,\"invoice_number\":\"S-TEST-ZOWE9-49\",\"invoice_date\":\"2026-04-16T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":16,\"subtotal\":\"957.45\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"957.45\",\"paid_amount\":\"0.00\",\"balance_amount\":\"957.45\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:40.000000Z\",\"updated_at\":\"2026-05-01T13:49:40.000000Z\"}}', '2026-05-01 21:49:40', '2026-05-01 21:49:40'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `add_ons` +-- + +CREATE TABLE `add_ons` ( + `id` bigint(20) UNSIGNED NOT NULL, + `module` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `monthly_price` decimal(8,2) NOT NULL, + `yearly_price` decimal(8,2) NOT NULL, + `image` varchar(255) DEFAULT NULL, + `is_enable` tinyint(1) NOT NULL DEFAULT 0, + `for_admin` tinyint(1) NOT NULL DEFAULT 0, + `package_name` varchar(255) NOT NULL, + `priority` 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; + +-- +-- Dumping data for table `add_ons` +-- + +INSERT INTO `add_ons` (`id`, `module`, `name`, `monthly_price`, `yearly_price`, `image`, `is_enable`, `for_admin`, `package_name`, `priority`, `created_at`, `updated_at`) VALUES +(1, 'Taskly', 'Project', 0.00, 0.00, NULL, 1, 0, 'taskly', 10, '2026-03-14 05:59:47', '2026-05-01 21:51:38'), +(2, 'Account', 'Accounting', 0.00, 0.00, NULL, 1, 0, 'account', 20, '2026-03-14 05:59:50', '2026-05-01 21:51:38'), +(3, 'DoubleEntry', 'Double Entry', 0.00, 0.00, NULL, 1, 0, 'double-entry', 25, '2026-03-14 05:59:52', '2026-05-01 21:51:38'), +(4, 'Hrm', 'HRM', 0.00, 0.00, NULL, 1, 0, 'hrm', 30, '2026-03-14 05:59:56', '2026-05-01 21:51:38'), +(5, 'SkillsMatrix', 'Skills Matrix', 0.00, 0.00, NULL, 1, 0, 'skills-matrix', 31, '2026-03-14 06:13:56', '2026-05-01 21:51:38'), +(6, 'CertTracker', 'Certification Tracker', 0.00, 0.00, NULL, 1, 0, 'cert-tracker', 32, '2026-03-14 06:13:56', '2026-05-01 21:51:38'), +(7, 'Engagement', 'Engagement Manager', 0.00, 0.00, NULL, 1, 0, 'engagement', 33, '2026-03-14 06:13:56', '2026-05-01 21:51:38'), +(8, 'Utilization', 'Utilization Tracker', 0.00, 0.00, NULL, 1, 0, 'utilization', 34, '2026-03-14 06:13:56', '2026-05-01 21:51:38'), +(9, 'Payroll', 'Payroll', 0.00, 0.00, NULL, 1, 0, 'payroll', 35, '2026-03-14 06:00:06', '2026-05-01 21:51:38'), +(10, 'Pos', 'POS', 0.00, 0.00, NULL, 1, 0, 'pos', 50, '2026-03-14 06:00:08', '2026-05-01 21:51:38'), +(11, 'Lead', 'CRM', 0.00, 0.00, NULL, 1, 0, 'lead', 40, '2026-03-14 06:00:09', '2026-05-01 21:51:38'), +(12, 'PropertyManagement', 'Property Management', 0.00, 0.00, NULL, 1, 0, 'property-management', 35, '2026-03-14 09:38:50', '2026-05-01 21:51:38'), +(13, 'Hospital', 'Hospital Management', 0.00, 0.00, NULL, 1, 0, 'Hospital', 0, '2026-04-23 14:40:30', '2026-05-01 21:51:38'), +(14, 'ProductService', 'Product & Service', 0.00, 0.00, NULL, 1, 0, 'product-service', 0, '2026-04-27 14:42:29', '2026-05-01 21:51:38'), +(15, 'AIHub', 'AI Hub', 0.00, 0.00, NULL, 1, 0, 'aihub', 0, '2026-04-27 14:42:33', '2026-05-01 21:51:38'), +(16, 'AIDocument', 'AI Document', 0.00, 0.00, NULL, 1, 0, 'aidocument', 410, '2026-04-27 14:42:49', '2026-05-01 21:51:38'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ai_forecasts` +-- + +CREATE TABLE `ai_forecasts` ( + `id` bigint(20) UNSIGNED NOT NULL, + `module` varchar(50) NOT NULL, + `forecast_type` varchar(50) NOT NULL, + `summary` text NOT NULL, + `detailed_analysis` longtext NOT NULL, + `metrics_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`metrics_json`)), + `workspace` int(11) NOT NULL DEFAULT 0, + `generated_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; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ai_forecast_history` +-- + +CREATE TABLE `ai_forecast_history` ( + `id` bigint(20) UNSIGNED NOT NULL, + `forecast_id` bigint(20) UNSIGNED NOT NULL, + `prompt` text NOT NULL, + `response` longtext NOT NULL, + `tokens_used` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `ai_prompt_histories` +-- + +CREATE TABLE `ai_prompt_histories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `template_id` varchar(255) DEFAULT NULL, + `doc_name` varchar(255) DEFAULT NULL, + `model` varchar(255) DEFAULT NULL, + `creativity` varchar(255) DEFAULT NULL, + `max_tokens` varchar(255) DEFAULT NULL, + `max_results` varchar(255) DEFAULT NULL, + `prompt` longtext DEFAULT NULL, + `language` varchar(255) DEFAULT NULL, + `prompt_fields` text DEFAULT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` varchar(255) 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 `ai_prompt_responses` +-- + +CREATE TABLE `ai_prompt_responses` ( + `id` bigint(20) UNSIGNED NOT NULL, + `template_id` varchar(255) DEFAULT NULL, + `history_prompt_id` varchar(255) DEFAULT NULL, + `used_words` varchar(255) DEFAULT NULL, + `content` longtext DEFAULT NULL, + `created_by` varchar(255) 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 `ai_templates` +-- + +CREATE TABLE `ai_templates` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `icon` varchar(255) DEFAULT NULL, + `description` longtext DEFAULT NULL, + `template_code` varchar(255) NOT NULL, + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1=>active,0=>deactive', + `professional` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1=>yes,0=>no', + `slug` varchar(255) NOT NULL, + `category_id` varchar(255) NOT NULL, + `type` varchar(255) NOT NULL DEFAULT '1' COMMENT '1=>original,0=>custom', + `form_fields` varchar(5000) DEFAULT NULL, + `is_tone` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1=>active,0=>deactive', + `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 `ai_templates` +-- + +INSERT INTO `ai_templates` (`id`, `name`, `icon`, `description`, `template_code`, `status`, `professional`, `slug`, `category_id`, `type`, `form_fields`, `is_tone`, `created_at`, `updated_at`) VALUES +(1, 'Article Generator', 'article-generator.png', 'Compose an excellent article using a given title and outline', 'KPAQQ', 1, 0, 'article-generator', '1', '1', '{\"field\":[{\"label\":\"Article Title\",\"placeholder\":\"e.g. Amazing culture of india\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Focus Keywords (comma seperated)\",\"placeholder\":\"e.g. brazil, canada, india\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(2, 'Content Rewriter', 'content-rewriter.png', 'Enhance content by rewriting it with greater creativity, interest, and engagement', 'WCZGL', 1, 0, 'content-rewriter', '1', '1', '{\"field\":[{\"label\":\"What would you like to rewrite?\",\"placeholder\":\"e.g. Enter your text to rewrite\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(3, 'Paragraph Generator', 'paragraph-generator.png', 'Paragraphs that are flawlessly arranged, simple to read, and packed with words that convince', 'JXRZB', 1, 0, 'paragraph-generator', '1', '1', '{\"field\":[{\"label\":\"Paragraph Description\",\"placeholder\":\"e.g. Lime or lemon what is better?\",\"field_type\":\"textarea\",\"field_name\":\"title\"},{\"label\":\"Focus Keywords (comma seperated)\",\"placeholder\":\"e.g. fruit, lime\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(4, 'Talking Points', 'talking-points.png', 'Compose concise, straightforward, and informative subheadings for your article', 'VFWSQ', 1, 0, 'talking-points', '1', '1', '{\"field\":[{\"label\":\"Article Title\",\"placeholder\":\"e.g. 10 ways to create websites\",\"field_type\":\"textarea\",\"field_name\":\"title\"},{\"label\":\"Subheading Description\",\"placeholder\":\"e.g. Why you should create a website\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(5, 'Pros & Cons', 'pros-and-cons.png', 'Outline the pros and cons of a product, service, or website in your blog post', 'OPYAB', 1, 0, 'pros-and-cons', '1', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. iPhone, Samsung\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. Explain what kind of cell phone you can to compare\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(6, 'Blog Titles', 'blog-titles.png', 'With this tool, you can come up with catchy blog titles that people want to read', 'WGKYP', 1, 0, 'blog-titles', '2', '1', '{\"field\":[{\"label\":\"What is your blog post is about?\",\"placeholder\":\"e.g. Describe your blog post\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(7, 'Blog Section', 'blog-section.png', 'Write a few paragraphs about one of your article\'s subheadings', 'EEKZF', 1, 0, 'blog-section', '2', '1', '{\"field\":[{\"label\":\"Title of your blog article\",\"placeholder\":\"e.g. 5 best places to visit in Spain\",\"field_type\":\"textarea\",\"field_name\":\"title\"},{\"label\":\"Subheadings\",\"placeholder\":\"e.g. Barcelona, San Sebastian, Madrid\",\"field_type\":\"textarea\",\"field_name\":\"subheadings\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(8, 'Blog Ideas', 'blog-ideas.png', 'Article/blog thoughts that you can use to create more traffic, leads, and deals for your business', 'KDGOX', 1, 0, 'blog-ideas', '2', '1', '{\"field\":[{\"label\":\"What is your blog post is about?\",\"placeholder\":\"e.g. 5 best places to visit in Spain\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(9, 'Blog Intros', 'blog-intros.png', 'Introductions to articles/blogs that are appealing to the readers', 'TZTYR', 1, 0, 'blog-intros', '2', '1', '{\"field\":[{\"label\":\"Blog Post Title\",\"placeholder\":\"e.g. 5 best places to visit in Spain\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"What is your blog post is about?\",\"placeholder\":\"e.g. describe your blog article\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(10, 'Blog Conclusion', 'blog-conclusion.png', 'Create powerful conclusion that will make a reader take action.', 'ZGUKM', 1, 0, 'blog-conclusion', '2', '1', '{\"field\":[{\"label\":\"Blog Post Title\",\"placeholder\":\"e.g. 5 best places to visit in Spain\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"What is your blog post is about?\",\"placeholder\":\"e.g. describe your blog article\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(11, 'Summarize Text', 'summarize-text.png', 'Shorten any text into a concise and easily understandable summary', 'OMMEI', 1, 0, 'summarize-text', '1', '1', '{\"field\":[{\"label\":\"What would you like to summarize?\",\"placeholder\":\"e.g. Enter your text to summarize\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(12, 'Product Description', 'product-description.png', 'Craft a compelling product description highlighting its value and why it is worth investing in', 'HXLNA', 1, 0, 'product-description', '1', '1', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Honda\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Aliens\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(13, 'Startup Name Generator', 'startup-idea.png', 'Generate unique, imaginative, and attention-grabbing names for your startup effortlessly and swiftly', 'DJSVM', 1, 0, 'startup-name-generator', '1', '1', '{\"field\":[{\"label\":\"Seed words\",\"placeholder\":\"e.g. flow, app, tech\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"},{\"label\":\"Startup Description\",\"placeholder\":\"e.g. Explain what your statrup idea is about\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(14, 'Product Name Generator', 'product-name-generator.png', 'Generate innovative product names using provided word examples', 'IXKBE', 1, 0, 'product-name-generator', '1', '1', '{\"field\":[{\"label\":\"Seed words\",\"placeholder\":\"e.g. fast, healthy, compact\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. Provide product details\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(15, 'Meta Description', 'meta-description.png', 'Based on a description, create a meta description optimized for SEO', 'JCDIK', 1, 0, 'meta-description', '3', '1', '{\"field\":[{\"label\":\"Website Name\",\"placeholder\":\"e.g. Amazon, Google\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Website Description\",\"placeholder\":\"e.g. Describe what your website or business do\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"e.g. cloud services, databases\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(16, 'FAQs', 'questions.png', 'Make a list of frequently asked questions based on the description of your product', 'SZAUF', 1, 0, 'faqs', '3', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. Amazon, Google\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. Describe what your website or business do\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(17, 'FAQ Answers', 'questions.png', 'Create original responses to frequently asked questions (FAQs) about your website or business', 'BFENK', 1, 0, 'faq-answers', '3', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. Amazon, Google\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"What is the question you are generating answers for?\",\"placeholder\":\"e.g. How to use this product?\",\"field_type\":\"text_box\",\"field_name\":\"question\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. Describe what your website or business do\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(18, 'Testimonials / Reviews', 'reply-to-review.png', 'User testimonials to be used to add social proof to your website', 'XLGPP', 1, 0, 'testimonials', '3', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. Amazon, Google\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. Describe what your website or business do\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(19, 'Facebook Ads', 'facebook.png', 'Compose Facebook promotions that draw in your crowd and convey a high transformation rate', 'CTMNI', 1, 0, 'facebook-ads', '4', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. VR, Toy\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Freelances, Developers\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(20, 'Video Descriptions', 'video-tags.png', 'Create engaging YouTube descriptions to get viewers to your video', 'ZLKSP', 1, 0, 'video-descriptions', '5', '1', '{\"field\":[{\"label\":\"What is the title of your video?\",\"placeholder\":\"e.g. start earning money online\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(21, 'Video Titles', 'video-tags.png', 'Create a catchy YouTube video title to grab people\'s attention', 'OJIOV', 1, 0, 'video-titles', '5', '1', '{\"field\":[{\"label\":\"What is your video about?\",\"placeholder\":\"e.g. Provide description of your video, provide as many details as possible\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(22, 'Youtube Tags Generator', 'youTube.png', 'Create YouTube tags and keywords optimized for SEO for your video', 'ECNVU', 1, 0, 'youtube-tags-generator', '5', '1', '{\"field\":[{\"label\":\"Enter your video title or keyword\",\"placeholder\":\"e.g. cloud\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(23, 'Instagram Captions', 'instagram.png', 'Use eye-catching captions for your Instagram pictures to attract attention', 'EOASR', 1, 0, 'instagram-captions', '4', '1', '{\"field\":[{\"label\":\"What is your instragram post about?\",\"placeholder\":\"e.g. start earning money online\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(24, 'Instagram Hashtags Generator', 'instagram.png', 'Detect the most effective hashtags for your Instagram posts', 'IEMBM', 1, 0, 'instagram-hashtags', '4', '1', '{\"field\":[{\"label\":\"Enter a keyword\",\"placeholder\":\"e.g. makeup\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(25, 'Social Media Post (Personal)', 'social-media-post-personal.png', 'Write a personal social media post that can be shared on any platform', 'CKOHL', 1, 0, 'social-post-personal', '4', '1', '{\"field\":[{\"label\":\"What is this post about?\",\"placeholder\":\"e.g. I got fluent in Spanish in 1 week\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(26, 'Social Media Post (Business)', 'social-media-post-business.png', 'Write a post about your company for any social media platform', 'ABWGU', 1, 0, 'social-post-business', '4', '1', '{\"field\":[{\"label\":\"Company name\",\"placeholder\":\"e.g. XYZ\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Provide company description\",\"placeholder\":\"e.g. XYZ is a leading toy making company\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"What is the post about?\",\"placeholder\":\"e.g. we released a new version of kids favorite toy\",\"field_type\":\"textarea\",\"field_name\":\"post\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(27, 'Facebook Headlines', 'facebook.png', 'To make your Facebook ads stand out, write headlines that are enticing and convincing', 'HJYJZ', 1, 0, 'facebook-headlines', '4', '1', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Toy\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Parents\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(28, 'Google Ads Headlines', 'google.png', 'Using Google Ads, promote your product with catchy 30-character headlines', 'SGZTW', 1, 0, 'google-headlines', '4', '1', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Toy\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Parents\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(29, 'Google Ads Description', 'google.png', 'Create a Google Ads description that stands out and brings in leads', 'YQAFG', 1, 0, 'google-ads', '4', '1', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Toy\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Parents\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(30, 'Problem-Agitate-Solution', 'problem-agitate-solution.png', 'For your business, develop one of the most efficient copywriting formulas', 'BGXJE', 1, 0, 'problem-agitate-solution', '3', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. VR, Toy\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Freelances, Developers\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(31, 'Academic Essay', 'academic-essay.png', 'Generate well-crafted academic essays for a wide range of subjects in mere seconds', 'SXQBT', 1, 0, 'academic-essay', '1', '1', '{\"field\":[{\"label\":\"Essay Title\",\"placeholder\":\"e.g. Amazing cuisine culture of Mexico\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Focus Keywords (comma seperated)\",\"placeholder\":\"e.g. taco, sangria, paella\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(32, 'Welcome Email', 'welcome-email.png', 'Make welcome emails for your customers', 'RLXGB', 1, 0, 'email-welcome', '6', '1', '{\"field\":[{\"label\":\"Your Company/Product Name\",\"placeholder\":\"e.g. Creative Minds\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Describe your product or company\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(33, 'Cold Email', 'cold-email.png', 'Using AI, create professional cold emails', 'RDJEZ', 1, 0, 'email-cold', '6', '1', '{\"field\":[{\"label\":\"Your Company/Product Name\",\"placeholder\":\"e.g. Creative Minds\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Describe your product or company\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(34, 'Follow-Up Email', 'follow-up-email.png', 'With only a few clicks, you can create a professional email follow-up', 'XVNNQ', 1, 0, 'email-follow-up', '6', '1', '{\"field\":[{\"label\":\"Your Company/Product Name\",\"placeholder\":\"e.g. Creative Minds\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Describe your product or company\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Following up after\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"event\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(35, 'Creative Stories', 'creative-stories.png', 'Utilize AI to generate imaginative stories based on input text', 'PAKMF', 1, 0, 'creative-stories', '1', '1', '{\"field\":[{\"label\":\"What is your story is about?\",\"placeholder\":\"Provide as much details as possible for creating a story tale\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(36, 'Grammar Checker', 'grammar-checker.png', 'Ensure the content is error-free and lacks any mistakes', 'OORHD', 1, 0, 'grammar-checker', '1', '1', '{\"field\":[{\"label\":\"Include your text here to check\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(37, 'Summarize for 2nd Grader', 'summarize-for-2nd-grader.png', 'Simplify complex content into a summary suitable for a 2nd grade child', 'SGJLU', 1, 0, '2nd-grader', '1', '1', '{\"field\":[{\"label\":\"Include your text to summarize\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(38, 'Video Scripts', 'video-tags.png', 'Create scripts for your videos quickly and begin filming', 'WISHV', 1, 0, 'video-scripts', '5', '1', '{\"field\":[{\"label\":\"What is your video about?\",\"placeholder\":\"Provide description of what your video is about, provide all details\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(39, 'Amazon Product Description', 'amazon.png', 'Amazon product descriptions that appear on the first page of search results', 'WISTT', 1, 0, 'amazon-product', '7', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. Amazing cuisine culture of Mexico\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Focus Keywords (comma seperated)\",\"placeholder\":\"e.g. taco, sangria, paella\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(40, 'Article Rewriter ', 'article-rewriter.png', 'Copy an article, paste it in to the program, and with just one click you\'ll have an entirely different article to read.', 'ABCDE', 1, 0, 'article-rewriter', '1', '1', '{\"field\":[{\"label\":\"what is your artical about?\",\"placeholder\":\"what is your artical about?\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"Keywords\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(41, 'Content Rephrase ', 'content-rephrase.png', 'Rewrite your content in a different tone and manner to appeal to diverse readers', 'ABCDF', 1, 0, 'Content-Rephrase', '1', '1', '{\"field\":[{\"label\":\"What would you like to rewrite?\",\"placeholder\":\"What would you like to rewrite?\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"Keywords\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(42, 'Text Extender', 'text-extender.png', 'Make shorter sentences more interesting and descriptive', 'ABCDG', 1, 0, 'Text-Extender', '1', '1', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"Describe your content here...\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"Keywords\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(43, 'Content Shorten', 'content-shorten.png', 'To appeal to various readers, condense your content in a distinct tone and manner', 'ABCDH', 1, 0, 'Content-Shorten', '1', '1', '{\"field\":[{\"label\":\"Content\",\"placeholder\":\"Describe your content here...\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"Keywords\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(44, 'Quora Answers', 'quora-answers.png', 'Answers to Quora questions that will establish you as an expert', 'ABCDI', 1, 0, 'Quora-Answers', '1', '1', '{\"field\":[{\"label\":\"Question\",\"placeholder\":\"Question\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Information\",\"placeholder\":\"Information\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(45, 'Bullet Point Answers', 'bullet-point-answers.png', 'Precise and detailed bullet points that answer your consumers\' questions in a timely and helpful manner.', 'ABCDJ', 1, 0, 'Bullet-Point', '1', '1', '{\"field\":[{\"label\":\"Question\",\"placeholder\":\"Question\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(46, 'Definition', 'definition.png', 'A definition for a term, phrase, or acronym that your target customers frequently use', 'ABCDK', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Keyword\",\"placeholder\":\"Keyword\",\"field_type\":\"text_box\",\"field_name\":\"keyword\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(47, 'Answers', 'answers.png', 'Quick, high-quality responses to your audience\'s questions and concerns', 'ABCDL', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Question\",\"placeholder\":\"Question\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(48, 'Questions', 'questions.png', 'A tool for generating polls and inquiries that involve and involve the audience', 'ABCDM', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Content\",\"placeholder\":\"Content\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(49, 'Passive to Active Voice', 'passive-to-active-voice.png', 'Simple and easy method for changing passive statements into active sentences', 'ABCDN', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Content\",\"placeholder\":\"Content\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(50, 'Rewrite With Keywords', 'rewrite-with-keywords.png', 'Improve your search engine rankings by rewriting your existing content with more keywords', 'ABCDO', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"What would you like to rewrite?\",\"placeholder\":\"Enter your content to rewrite\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"e.g lemon,fruit\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(51, 'Grammar Correction', 'Grammar Correction.png', 'Check the grammar and correct the sentences with the AI tool', 'ABCDP', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Text\",\"placeholder\":\"Enter your content\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(52, 'Company Vision', 'company-vision.png', 'A vision that attracts the right people, clients, and employees.', 'ABCDQ', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Company Name\",\"placeholder\":\"Company Name\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Company Information\",\"placeholder\":\"Company Information\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(53, 'Company Mission', 'company-mission.png', 'a statement of your company\'s goals and purpose that is both precise and brief', 'ABCDR', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Company Name\",\"placeholder\":\"Company Name\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Company Information\",\"placeholder\":\"Company Information\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(54, 'Company Bios', 'company-bios.png', 'A concise company bio that will assist you in connecting with your intended audience', 'ABCDS', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Company Name\",\"placeholder\":\"Company Name\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Company Information\",\"placeholder\":\"Company Information\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(55, 'Emails', 'emails.png', 'Emails with a polished appearance that helps you engage leads and customers', 'ABCDT', 1, 0, 'Definition', '6', '1', '{\"field\":[{\"label\":\"Recipient\",\"placeholder\":\"Recipient\",\"field_type\":\"text_box\",\"field_name\":\"recipient\"},{\"label\":\"Recipient Position\",\"placeholder\":\"Recipient Position\",\"field_type\":\"text_box\",\"field_name\":\"recipient_position\"},{\"label\":\"Description\",\"placeholder\":\"Description\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(56, 'Emails V2', 'emails-v2.png', 'Better results through personalised email outreach to your target prospects', 'ABCDU', 1, 0, 'Definition', '6', '1', '{\"field\":[{\"label\":\"From\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"from\"},{\"label\":\"To\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"to\"},{\"label\":\"Goal\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"goal\"},{\"label\":\"Description\",\"placeholder\":\"Description\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(57, 'Email Subject Lines', 'email-subject-lines.png', 'Effective email subject lines that boost open rates', 'ABCDU', 1, 0, 'Definition', '6', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Email Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(58, 'Email Content', 'email-content.png', 'Effective email content for crafting a polished email body', 'ABCDV', 1, 0, 'Definition', '6', '1', '{\"field\":[{\"label\":\"Email Content Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(59, 'Google Ad Titles', 'google.png', 'Creating advertisements with catchy and distinctive titles that encourage people to click on your ads and make purchases from your website', 'ABCDW', 1, 0, 'Definition', '4', '1', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"Product Description\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(60, 'Twitter Tweets', 'twitter.png', 'Create relevant and trending tweets with AI', 'ABCDX', 1, 0, 'Definition', '6', '4', '{\"field\":[{\"label\":\"Topic\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(61, 'LinkedIn Posts', 'linkedIn.png', 'Inspiring posts for LinkedIn that will help you establish authority and trust in your industry', 'ABCDY', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Topic\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(62, 'App and SMS Notifications', 'app-and-SMS-notifications.png', 'Notifications that keep users coming back to your apps, websites, and mobile devices for more', 'ABCDZ', 1, 0, 'Definition', '3', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(63, 'LinkedIn Ad Descriptions', 'linkedIn.png', 'Ad descriptions that highlight your product with professionalism and impact', 'ABCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Honda\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Aliens\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(64, 'LinkedIn Ad Headlines', 'linkedIn.png', 'High-converting, click-worthy, and attention-grabbing headlines for LinkedIn ads', 'ABCDB', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Honda\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Aliens\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(65, 'YouTube Outlines', 'youTube.png', 'Video outlines that are extremely engaging and simple to create', 'ABCDC', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"What is your video about?\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(66, 'Twitter thread', 'twitter.png', 'Create interesting Twitter threads from a description', 'ABCDD', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(67, 'Social post caption', 'social-post-caption.png', 'Create attention-grabbing captions for social media posts', 'EBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(68, 'you tube intro', 'youTube.png', 'Make a speedy and infectious short clasp for your YouTube video', 'FBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(69, 'Video tags', 'video-tags.png', 'Based on the title of the video, create video tags for it', 'GBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), +(70, 'Article outlines', 'article-outlines.png', 'Decide on the subject of your essay or thesis', 'HBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"What is your blog is artical? \",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(71, 'SEO Meta Tags (Blog Post)', 'meta-description.png', 'A set of meta titles and meta description tags that are optimized to improve your blog\'s search engine rankings', 'IBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Blog Title\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Blog Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Search Term\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(72, 'SEO Meta Tags (Homepage)', 'meta-description.png', 'A set of meta titles and meta description tags that are optimized to improve your home page\'s search rankings', 'JBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Website Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Website Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Search Term/Keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(73, 'SEO Meta Tags (Product Page)', 'meta-description.png', 'A set of meta titles and meta description tags that are optimized to improve your product page\'s search rankings', 'KBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Company Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"company_name\"},{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Product/Service Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Search Term/Keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(74, 'Amazon Product Titles', 'amazon.png', 'Titles for your product that will help it stand out from the crowd of competitors', 'LBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(75, 'Amazon Product Features', 'amazon.png', 'Benefits and highlights of your items that will make them powerful to customers', 'MBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(76, 'Advertisement idea', 'advertisement-idea.png', 'Create imaginative ad descriptions for a service or product', 'NBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(77, 'Startup Idea', 'startup-idea.png', 'Obtain thoughts on the subjects you have suggested for business startup ideas', 'OBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(78, 'Job Description Generator', 'Job-description-generator.png', 'Build up precise and descriptive job descriptions for the job post', 'PBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(79, 'Resume', 'resume.png', 'Bring a resume with AI that is well-written and strategically organised', 'QBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(80, 'Food Recipe', 'food-recipe.png', 'In one sitting, get ideas for quick and delicious meal recipes', 'RBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(81, 'Creative poetry', 'creative-poetry.png', 'Write poetry that expresses your feelings regarding', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(82, 'Progress Report', 'progress-report.png', 'Get accurate and comprehensive progress reports for your business', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(83, 'Fictional Story Idea', 'fictional-story-idea.png', 'Create fictitious stories with the characters based on the topics you\'ve chosen', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(84, 'Webinar Title ideas', 'webinar-title-ideas.png', 'With this tool, you can come up with catchy webinar titles that people want to listen', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(85, 'Snapchat Ad Title', 'snapcha.png', 'Creating advertisements with catchy and distinctive titles that encourage people to click on your ads and make purchases from your website', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(86, 'Shopify Product Description', 'shopify.png', 'Shopify product descriptions that appear on the first page of search results', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(87, 'Personal Bio', 'personal-bio.png', 'A concise personal bio that will assist you in connecting with your intended people', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(88, 'Pinterest caption', 'pinterest.png', 'Use eye-catching captions for your Pinterest pictures to attract attention', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(89, 'Pinterest Pin Title', 'pinterest.png', 'With this tool, you can come up with catchy pin titles that people want to read', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(90, 'Pinterest bio', 'pinterest.png', 'A concise Pinterest bio that will assist you in connecting with your intended followers', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(91, 'Reply to review', 'reply-to-review.png', 'Communicate with informative and approachable replies to the reviews', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(92, 'Slogan Generator', 'slogan-generator.png', 'Generate clear, concise, and branded slogans with the help of AI', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(93, 'TikTok Bio', 'tiktok.png', 'A concise TikTok bio that will assist you in connecting with your followers', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(94, 'Cover Letter', 'cover-letter.png', 'Create cover letters that are tailored, confident, and focused', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(95, 'Presonal Intro', 'presonal-intro.png', 'Create appealing and concise personal introductions', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(96, 'Motivational Quote', 'motivational-quote.png', 'Generate engaging and memorable motivational quotes on various topics', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(97, 'Motivational Speech', 'motivational-speech.png', 'Generate engaging and memorable motivational speeches on various topics', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(98, 'Generate wishes', 'generate-wishes.png', 'Bring on positive compliments, and felicitations with AI', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Relation for whom?\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"relation\"},{\"label\":\"Occasion\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"occasion\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(99, 'Bid on project', 'bid-on-project.png', 'Quick selection of vendors for subcontracting the project, or products that are required for a project', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ai_template_categories` +-- + +CREATE TABLE `ai_template_categories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1=>active,0=>deactive', + `created_by` varchar(255) 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 `ai_template_categories` +-- + +INSERT INTO `ai_template_categories` (`id`, `name`, `status`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'content', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(2, 'blog', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(3, 'Website', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(4, 'Social Media', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(5, 'Video', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(6, 'email', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), +(7, 'other', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ai_template_languages` +-- + +CREATE TABLE `ai_template_languages` ( + `id` bigint(20) UNSIGNED NOT NULL, + `language` varchar(255) NOT NULL, + `code` varchar(255) NOT NULL, + `flag` varchar(255) DEFAULT NULL, + `status` 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 `ai_template_languages` +-- + +INSERT INTO `ai_template_languages` (`id`, `language`, `code`, `flag`, `status`, `created_at`, `updated_at`) VALUES +(1, 'Arabic', 'ar-AE', 'ae.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(2, 'Chinese (Mandarin)', 'cmn-CN', 'cn.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(3, 'Croatian (Croatia)', 'hr-HR', 'hr.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(4, 'Czech (Czech Republic)', 'cs-CZ', 'cz.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(5, 'Danish (Denmark)', 'da-DK', 'dk.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(6, 'Dutch (Netherlands)', 'nl-NL', 'nl.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(7, 'English (USA)', 'en-US', 'us.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(8, 'Estonian (Estonia)', 'et-EE', 'ee.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(9, 'Finnish (Finland)', 'fi-FI', 'fi.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(10, 'French (France)', 'fr-FR', 'fr.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(11, 'German (Germany)', 'de-DE', 'de.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(12, 'Greek (Greece)', 'el-GR', 'gr.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(13, 'Hebrew (Israel)', 'he-IL', 'il.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(14, 'Hindi (India)', 'hi-IN', 'in.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(15, 'Hungarian (Hungary)', 'hu-HU', 'hu.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(16, 'Icelandic (Iceland)', 'is-IS', 'is.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(17, 'Indonesian (Indonesia)', 'id-ID', 'id.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(18, 'Italian (Italy)', 'it-IT', 'it.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(19, 'Japanese (Japan)', 'ja-JP', 'jp.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(20, 'Korean (South Korea)', 'ko-KR', 'kr.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(21, 'Malay (Malaysia)', 'ms-MY', 'my.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(22, 'Norwegian (Norway)', 'nb-NO', 'no.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(23, 'Polish (Poland)', 'pl-PL', 'pl.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(24, 'Portuguese (Portugal)', 'pt-PT', 'pt.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(25, 'Russian (Russia)', 'ru-RU', 'ru.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(26, 'Spanish (Spain)', 'es-ES', 'es.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(27, 'Swedish (Sweden)', 'sv-SE', 'se.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(28, 'Turkish (Turkey)', 'tr-TR', 'tr.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(29, 'Portuguese (Brazil)', 'pt-BR', 'br.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(30, 'Romanian (Romania)', 'ro-RO', 'ro.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(31, 'Vietnamese (Vietnam)', 'vi-VN', 'vn.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(32, 'Swahili (Kenya)', 'sw-KE', 'ke.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(33, 'Slovenian (Slovenia)', 'sl-SI', 'si.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ai_template_prompts` +-- + +CREATE TABLE `ai_template_prompts` ( + `id` bigint(20) UNSIGNED NOT NULL, + `template_id` varchar(255) DEFAULT NULL, + `key` varchar(255) DEFAULT NULL, + `value` longtext DEFAULT NULL, + `created_by` varchar(255) 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 `ai_template_prompts` +-- + +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(1, '1', 'en-US', 'Write a complete article on this topic:\n\n ##title## \n\nUse following keywords in the article:\n ##keywords## \n\nTone of voice of the article must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(2, '1', 'ar-AE', 'اكتب مقالة حول هذا الموضوع:\\n\\n\"##title## \"\\n\\nاستخدم الكلمات الأساسية التالية في المقالة:\\n\"##keywords## \"\\n\\nيجب أن تكون نغمة صوت المقالة:\\n\"##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(3, '1', 'cmn-CN', '写一篇关于这个主题的文章:\\n\\n\" ##title## \"\\n\\n在文章中使用以下关键字:\\n\" ##keywords## \"\\n\\n文章的语气必须是:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(4, '1', 'hr-HR', 'Napišite članak na ovu temu:\\n\\n\" ##title## \"\\n\\nKoristite sljedeće ključne riječi u članku:\\n\" ##keywords## \"\\n\\nTon glasa u članku mora biti:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(5, '1', 'cs-CZ', 'Napište článek na toto téma:\\n\\n\" ##title## \"\\n\\nV článku použijte následující klíčová slova:\\n\" ##keywords## \"\\n\\nTón hlasu článku musí být:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(6, '1', 'da-DK', 'Skriv en artikel om dette emne:\\n\\n\" ##title## \"\\n\\nBrug følgende søgeord i artiklen:\\n\" ##keywords## \"\\n\\nTone i artiklen skal være:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(7, '1', 'nl-NL', 'Schrijf een artikel over dit onderwerp:\\n\\n\" ##title## \"\\n\\nGebruik de volgende trefwoorden in het artikel:\\n\" ##keywords## \"\\n\\nDe toon van het artikel moet zijn:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(8, '1', 'et-EE', 'Kirjutage sellel teemal artikkel:\\n\\n\" ##title## \"\\n\\nKasutage artiklis järgmisi märksõnu:\\n\" ##keywords## \"\\n\\nArtikli hääletoon peab olema:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(9, '1', 'fi-FI', 'Kirjoita artikkeli tästä aiheesta:\\n\\n\" ##title## \"\\n\\nKäytä artikkelissa seuraavia avainsanoja:\\n\" ##keywords## \"\\n\\nArtikkelin äänensävyn on oltava:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(10, '1', 'fr-FR', 'Ecrire un article sur ce sujet :\\n\\n\" ##title## \"\\n\\nUtilisez les mots clés suivants dans l article :\\n\" ##keywords## \"\\n\\nLe ton de la voix de l article doit être :\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(11, '1', 'de-DE', 'Schreiben Sie einen Artikel zu diesem Thema:\\n\\n\" ##title## \"\\n\\nVerwenden Sie folgende Schlüsselwörter im Artikel:\\n\" ##keywords## \"\\n\\nTonfall des Artikels muss sein:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(12, '1', 'el-GR', 'Γράψτε ένα άρθρο για αυτό το θέμα:\\n\\n\" ##title## \"\\n\\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στο άρθρο:\\n\" ##keywords## \"\\n\\nΟ τόνος της φωνής του άρθρου πρέπει να είναι:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(13, '1', 'he-IL', 'כתוב מאמר בנושא זה:\\n\\n\" ##title## \"\\n\\nהשתמש במילות המפתח הבאות במאמר:\\n\" ##keywords## \"\\n\\nטון הדיבור של המאמר חייב להיות:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(14, '1', 'hi-IN', 'इस विषय पर एक लेख लिखें:\\n\\n\" ##title## \"\\n\\nलेख में निम्नलिखित कीवर्ड का प्रयोग करें:\\n\" ##keywords## \"\\n\\nलेख का स्वर इस प्रकार होना चाहिए:\\n\" ##tone_language##\"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(15, '1', 'hu-HU', 'Írjon cikket erről a témáról:\\n\\n\" ##title## \"\\n\\nHasználja a következő kulcsszavakat a cikkben:\\n\" ##keywords## \"\\n\\nA cikk hangnemének a következőnek kell lennie:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(16, '1', 'is-IS', 'Skrifaðu grein um þetta efni:\\n\\n\" ##title## \"\\n\\nNotaðu eftirfarandi leitarorð í greininni:\\n\" ##keywords## \"\\n\\nTónn í greininni verður að vera:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(17, '1', 'id-ID', 'Tulis artikel tentang topik ini:\\n\\n\" ##title## \"\\n\\nGunakan kata kunci berikut dalam artikel:\\n\" ##keywords## \"\\n\\nNada suara artikel harus:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(18, '1', 'it-IT', 'Scrivi un articolo su questo argomento:\\n\\n\" ##title## \"\\n\\nUsa le seguenti parole chiave nell articolo:\\n\" ##keywords## \"\\n\\nIl tono di voce dell articolo deve essere:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(19, '1', 'ja-JP', 'このトピックに関する記事を書いてください:\\n\\n\" ##title## \"\\n\\n記事では次のキーワードを使用してください:\\n\" ##keywords## \"\\n\\n記事の口調は次のようにする必要があります:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(20, '1', 'ko-KR', '이 주제에 대한 기사 쓰기:\\n\\n\" ##title## \"\\n\\n문서에서 다음 키워드를 사용하십시오:\\n\" ##keywords## \"\\n\\n기사의 어조는 다음과 같아야 합니다:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(21, '1', 'ms-MY', 'Tulis artikel tentang topik ini:\\n\\n\" ##title## \"\\n\\nGunakan kata kunci berikut dalam artikel:\\n\" ##keywords## \"\\n\\nNada suara artikel mestilah:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(22, '1', 'nb-NO', 'Skriv en artikkel om dette emnet:\\n\\n\" ##title## \"\\n\\nBruk følgende nøkkelord i artikkelen:\\n\" ##keywords## \"\\n\\nTone i artikkelen må være:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(23, '1', 'pl-PL', 'Napisz artykuł na ten temat:\\n\\n\" ##title## \"\\n\\nUżyj w artykule następujących słów kluczowych:\\n\" ##keywords## \"\\n\\nTon wypowiedzi artykułu musi być:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(24, '1', 'pt-PT', 'Escreva um artigo sobre este tópico:\\n\\n\" ##title## \"\\n\\nUse as seguintes palavras-chave no artigo:\\n\" ##keywords## \"\\n\\nTom de voz do artigo deve ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(25, '1', 'ru-RU', 'Напишите статью на эту тему:\\n\\n\" ##title## \"\\n\\nИспользуйте в статье следующие ключевые слова:\\n\" ##keywords## \"\\n\\nТон озвучивания статьи должен быть:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(26, '1', 'es-ES', 'Escribe un artículo sobre este tema:\\n\\n\" ##title## \"\\n\\nUtilice las siguientes palabras clave en el artículo:\\n\" ##keywords## \"\\n\\nEl tono de voz del artículo debe ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(27, '1', 'sv-SE', 'Skriv en artikel om detta ämne:\\n\\n\" ##title## \"\\n\\nAnvänd följande nyckelord i artikeln:\\n\" ##keywords## \"\\n\\nTonfallet för artikeln måste vara:\\n\" ##tone_language## \"\\n\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(28, '1', 'tr-TR', 'Bu konuda bir makale yaz:\\n\\n\" ##title## \"\\n\\nMakalede şu anahtar kelimeleri kullanın:\\n\" ##keywords## \"\\n\\nYazının ses tonu şöyle olmalıdır:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(29, '1', 'pt-BR', 'Escreva um artigo sobre este tópico:\\n\\n\" ##title## \"\\n\\nUse as seguintes palavras-chave no artigo:\\n\" ##keywords## \"\\n\\nTom de voz do artigo deve ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(30, '1', 'ro-RO', 'Scrieți un articol complet pe acest subiect:\\n\\n\" ##title## \"\\n\\nFolosiți următoarele cuvinte cheie în articol:\\n\" ##keywords## \"\\n\\nTonul vocii al articolului trebuie să fie:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(31, '1', 'vi-VN', 'Viết một bài hoàn chỉnh về chủ đề này:\\n\\n\" ##title## \"\\n\\nSử dụng các từ khóa sau trong bài viết:\\n\" ##keywords## \"\\n\\nGiọng điệu của bài viết phải là:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(32, '1', 'sw-KE', 'Andika makala kamili kuhusu mada hii:\\n\\n\" ##title## \"\\n\\nTumia manenomsingi yafuatayo katika makala:\\n\" ##keywords## \"\\n\\nToni ya sauti ya makala lazima iwe:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(33, '1', 'sl-SI', 'Napišite celoten članek o tej temi:\\n\\n\" ##title## \"\\n\\n članku uporabite naslednje ključne besede:\\n\" ##keywords## \"\\n\\nTon glasu članka mora biti:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(34, '2', 'en-US', 'Improve and rewrite the text in a creative and smart way:\\n\\n\" ##title## \"\\n\\n Tone of voice of the result must be:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(35, '2', 'ar-AE', 'اتحسين وإعادة كتابة النص بطريقة إبداعية وذكية:\\n\\n\"##title## \"\\n\\nيجب أن تكون نبرة صوت النتيجة:\\n\"##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(36, '2', 'cmn-CN', '以创造性和聪明的方式改进和重写文本:\\n\\n\"##title## \"\\n\\n 结果的语气必须是:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(37, '2', 'hr-HR', 'Poboljšajte i prepišite tekst na kreativan i pametan način:\\n\\n\" ##title## \"\\n\\n Ton glasa rezultata mora biti:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(38, '2', 'cs-CZ', 'Vylepšete a přepište text kreativním a chytrým způsobem:\\n\\n\" ##title## \"\\n\\n Tón hlasu výsledku musí být:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(39, '2', 'da-DK', 'Forbedre og omskriv teksten på en kreativ og smart måde:\\n\\n\" ##title## \"\\n\\n Tonen i resultatet skal være:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(40, '2', 'nl-NL', 'Verbeter en herschrijf de tekst op een creatieve en slimme manier:\\n\\n\" ##title## \"\\n\\n Tone of voice van het resultaat moet zijn:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(41, '2', 'et-EE', 'Täiustage ja kirjutage teksti loominguliselt ja nutikalt ümber:\\n\\n\" ##title## \"\\n\\n Tulemuse hääletoon peab olema:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(42, '2', 'fi-FI', 'Paranna ja kirjoita tekstiä uudelleen luovalla ja älykkäällä tavalla:\\n\\n\" ##title## \"\\n\\n Tuloksen äänensävyn on oltava:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(43, '2', 'fr-FR', 'Améliorez et réécrivez le texte de manière créative et intelligente :\\n\\n\" ##title## \"\\n\\n Le ton de la voix du résultat doit être :\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(44, '2', 'de-DE', 'Verbessern und überarbeiten Sie den Text auf kreative und intelligente Weise:\\n\\n\" ##title## \"\\n\\n Tonfall des Ergebnisses muss sein:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(45, '2', 'el-GR', 'Βελτιώστε και ξαναγράψτε το κείμενο με δημιουργικό και έξυπνο τρόπο:\\n\\n\" ##title## \"\\n\\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(46, '2', 'he-IL', 'שפר ושכתב את הטקסט בצורה יצירתית וחכמה:\\n\\n\" ##title## \"\\n\\n גוון הקול של התוצאה חייב להיות:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(47, '2', 'hi-IN', 'रचनात्मक और स्मार्ट तरीके से टेक्स्ट को सुधारें और फिर से लिखें:\\n\\n\" ##title## \"\\n\\n परिणाम की आवाज़ का स्वर होना चाहिए:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(48, '2', 'hu-HU', 'Javítsa és írja át a szöveget kreatív és okos módon:\\n\\n\" ##title## \"\\n\\n Az eredmény hangszínének a következőnek kell lennie:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(49, '2', 'is-IS', 'Bættu og endurskrifaðu textann á skapandi og snjallan hátt:\\n\\n\" ##title## \"\\n\\n Röddtónn niðurstöðunnar verður að vera:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(50, '2', 'id-ID', 'Tingkatkan dan tulis ulang teks dengan cara yang kreatif dan cerdas:\\n\\n\" ##title## \"\\n\\n Nada suara hasil harus:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(51, '2', 'it-IT', 'Migliora e riscrivi il testo in modo creativo e intelligente:\\n\\n\" ##title## \"\\n\\n Il tono di voce del risultato deve essere:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(52, '2', 'ja-JP', '創造的かつスマートな方法でテキストを改善および書き直します:\\n\\n\" ##title## \"\\n\\n 結果の声の調子:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(53, '2', 'ko-KR', '창의적이고 스마트한 방식으로 텍스트를 개선하고 다시 작성:\\n\\n\" ##title## \"\\n\\n 결과의 음성 톤은 다음과 같아야 합니다.\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(54, '2', 'ms-MY', 'Tingkatkan dan tulis semula teks dengan cara yang kreatif dan pintar:\\n\\n\" ##title## \"\\n\\n Nada suara hasil carian mestilah:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(55, '2', 'nb-NO', 'Forbedre og omskriv teksten på en kreativ og smart måte:\\n\\n\" ##title## \"\\n\\n Tonen til resultatet må være:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(56, '2', 'pl-PL', 'Popraw i przepisz tekst w kreatywny i inteligentny sposób:\\n\\n\" ##title## \"\\n\\n Ton głosu wyniku musi być:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(57, '2', 'pt-PT', 'Melhorar e reescrever o texto de forma criativa e inteligente:\\n\\n\" ##title## \"\\n\\n Tom de voz do resultado deve ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(58, '2', 'ru-RU', 'Улучшите и перепишите текст творчески и по-умному:\\n\\n\" ##title## \"\\n\\n Тон голоса результата должен быть:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(59, '2', 'es-ES', 'Mejora y reescribe el texto de forma creativa e inteligente:\\n\\n\" ##title## \"\\n\\n El tono de voz del resultado debe ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(60, '2', 'sv-SE', 'Förbättra och skriv om texten på ett kreativt och smart sätt:\\n\\n\" ##title## \"\\n\\n Tonen i resultatet måste vara:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(61, '2', 'tr-TR', 'Metni yaratıcı ve akıllı bir şekilde iyileştirin ve yeniden yazın:\\n\\n\" ##title## \"\\n\\n Sonucun ses tonu şöyle olmalıdır:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(62, '2', 'pt-BR', 'Melhorar e reescrever o texto de forma criativa e inteligente:\\n\\n\" ##title## \"\\n\\n Tom de voz do resultado deve ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(63, '2', 'ro-RO', 'Îmbunătățiți și rescrieți textul într-un mod creativ și inteligent:\\n\\n\" ##title## \"\\n\\n Tonul vocii rezultatului trebuie să fie:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(64, '2', 'vi-VN', 'Cải thiện và viết lại văn bản một cách sáng tạo và thông minh:\\n\\n\" ##title## \"\\n\\n Giọng điệu của kết quả phải là:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(65, '2', 'sw-KE', 'Boresha na uandike upya maandishi kwa njia ya kibunifu na ya busara:\\n\\n\" ##title## \"\\n\\n Toni ya sauti ya matokeo lazima iwe:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(66, '2', 'sl-SI', 'Izboljšajte in prepišite besedilo na kreativen in pameten način:\\n\\n\" ##title## \"\\n\\n Ton glasu rezultata mora biti:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(67, '3', 'en-US', 'Write a large and meaningful paragraph on this topic:\\n\\n ##title## \\n\\nUse following keywords in the paragraph:\\n ##keywords## \\n\\nTone of voice of the paragraph must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(68, '3', 'ar-AE', 'اكتب فقرة كبيرة وذات مغزى حول هذا الموضوع:\\n\\n ##title##\\n\\nاستخدم الكلمات الأساسية التالية في الفقرة:\\n ##keywords## \\n\\nيجب أن تكون نغمة الصوت في الفقرة:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(69, '3', 'cmn-CN', '就此主题写一段有意义的长篇大论:\\n\\n ##title## \\n\\n在段落中使用以下关键字:\\n ##keywords## \\n\\n段落的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(70, '3', 'hr-HR', 'Napišite veliki i smisleni odlomak o ovoj temi:\\n\\n ##title## \\n\\nKoristite sljedeće ključne riječi u odlomku:\\n ##keywords## \\n\\nTon glasa odlomka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(71, '3', 'cs-CZ', 'Napište velký a smysluplný odstavec na toto téma:\\n\\n ##title## \\n\\nV odstavci použijte následující klíčová slova:\\n ##keywords## \\n\\nTón hlasu odstavce musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(72, '3', 'da-DK', 'Skriv et stort og meningsfuldt afsnit om dette emne:\\n\\n ##title## \\n\\nBrug følgende nøgleord i afsnittet:\\n ##keywords## \\n\\nTone i afsnittet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(73, '3', 'nl-NL', 'Schrijf een grote en zinvolle paragraaf over dit onderwerp:\\n\\n ##title## \\n\\nGebruik de volgende trefwoorden in de alinea:\\n ##keywords## \\n\\nDe toon van de alinea moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(74, '3', 'et-EE', 'Kirjutage sellel teemal suur ja sisukas lõik:\\n\\n ##title## \\n\\nKasutage lõigus järgmisi märksõnu:\\n ##keywords## \\n\\nLõigu hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(75, '3', 'fi-FI', 'Kirjoita tästä aiheesta suuri ja merkityksellinen kappale:\\n\\n ##title## \\n\\nKäytä kappaleessa seuraavia avainsanoja:\\n ##keywords## \\n\\nKappaleen äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(76, '3', 'fr-FR', 'Écrivez un paragraphe long et significatif sur ce sujet :\\n\\n ##title## \\n\\nUtilisez les mots clés suivants dans le paragraphe :\\n ##keywords## \\n\\nLe ton de la voix du paragraphe doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(77, '3', 'de-DE', 'Schreiben Sie einen großen und aussagekräftigen Absatz zu diesem Thema:\\n\\n ##title## \\n\\nVerwenden Sie folgende Schlüsselwörter im Absatz:\\n ##keywords## \\n\\nTonlage des Absatzes muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(78, '3', 'el-GR', 'Γράψτε μια μεγάλη και ουσιαστική παράγραφο για αυτό το θέμα:\\n\\n ##title## \\n\\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στην παράγραφο:\\n ##keywords## \\n\\nΟ τόνος της φωνής της παραγράφου πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(79, '3', 'he-IL', 'כתוב פסקה גדולה ומשמעותית בנושא זה:\\n\\n ##title## \\n\\nהשתמש במילות המפתח הבאות בפסקה:\\n ##keywords## \\n\\nטון הדיבור של הפסקה חייב להיות:\\n ##tone_language##\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(80, '3', 'hi-IN', 'इस विषय पर एक बड़ा और सार्थक पैराग्राफ लिखें:\\n\\n ##title## \\n\\nपैराग्राफ में निम्नलिखित कीवर्ड का प्रयोग करें:\\n ##keywords## \\n\\nपैराग्राफ की आवाज़ का स्वर होना चाहिए:\\n ##tone_language##\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(81, '3', 'hu-HU', 'Írj egy nagy és értelmes bekezdést erről a témáról:\\n\\n ##title## \\n\\nHasználja a következő kulcsszavakat a bekezdésben:\\n ##keywords## \\n\\nA bekezdés hangszínének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(82, '3', 'is-IS', 'Skrifaðu stóra og þýðingarmikla málsgrein um þetta efni:\\n\\n ##title## \\n\\nNotaðu eftirfarandi leitarorð í málsgreininni:\\n ##keywords## \\n\\nTónn málsgreinarinnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(83, '3', 'id-ID', 'Tulis paragraf yang besar dan bermakna tentang topik ini:\\n\\n ##title## \\n\\nGunakan kata kunci berikut dalam paragraf:\\n ##keywords## \\n\\nNada suara paragraf harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(84, '3', 'it-IT', 'Scrivi un paragrafo ampio e significativo su questo argomento:\\n\\n ##title## \\n\\nUsare le seguenti parole chiave nel paragrafo:\\n ##keywords## \\n\\nIl tono di voce del paragrafo deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(85, '3', 'ja-JP', 'このトピックについて大きくて意味のある段落を書いてください:\\n\\n ##title## \\n\\n段落内で次のキーワードを使用してください:\\n ##keywords## \\n\\n段落の口調は次のようにする必要があります:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(86, '3', 'ko-KR', '이 주제에 대해 크고 의미 있는 단락 작성:\\n\\n ##title## \\n\\n단락에서 다음 키워드를 사용하십시오:\\n ##keywords## \\n\\n문단의 어조는 다음과 같아야 합니다.\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(87, '3', 'ms-MY', 'Tulis perenggan yang besar dan bermakna tentang topik ini:\\n\\n ##title## \\n\\nGunakan kata kunci berikut dalam perenggan:\\n ##keywords## \\n\\nNada suara perenggan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(88, '3', 'nb-NO', 'Skriv et stort og meningsfullt avsnitt om dette emnet:\\n\\n ##title## \\n\\nBruk følgende nøkkelord i avsnittet:\\n ##keywords## \\n\\nTone i avsnittet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(89, '3', 'pl-PL', 'Napisz duży i znaczący akapit na ten temat:\\n\\n ##title## \\n\\nUżyj następujących słów kluczowych w akapicie:\\n ##keywords## \\n\\nTon głosu akapitu musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(90, '3', 'pt-PT', 'Escreva um parágrafo grande e significativo sobre este tópico:\\n\\n ##title## \\n\\nUse as seguintes palavras-chave no parágrafo:\\n ##keywords## \\n\\nTom de voz do parágrafo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(91, '3', 'ru-RU', 'Напишите большой и осмысленный абзац на эту тему:\\n\\n ##title## \\n\\nИспользуйте следующие ключевые слова в абзаце:\\n ##keywords## \\n\\nТон абзаца должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(92, '3', 'es-ES', 'Escribe un párrafo extenso y significativo sobre este tema:\\n\\n ##title## \\n\\nUtilice las siguientes palabras clave en el párrafo:\\n ##keywords## \\n\\nEl tono de voz del párrafo debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(93, '3', 'sv-SE', 'Skriv ett stort och meningsfullt stycke om detta ämne:\\n\\n ##title## \\n\\nAnvänd följande nyckelord i stycket:\\n ##keywords## \\n\\nTonfallet i stycket måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(94, '3', 'tr-TR', 'Bu konu hakkında geniş ve anlamlı bir paragraf yaz:\\n\\n ##title## \\n\\nParagrafta şu anahtar sözcükleri kullanın:\\n ##keywords## \\n\\nParagrafın ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(95, '3', 'pt-BR', 'Escreva um parágrafo grande e significativo sobre este tópico:\\n\\n ##title## \\n\\nUse as seguintes palavras-chave no parágrafo:\\n ##keywords## \\n\\nTom de voz do parágrafo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(96, '3', 'ro-RO', 'Scrieți un paragraf mare și semnificativ pe acest subiect:\\n\\n ##title## \\n\\nFolosiți următoarele cuvinte cheie în paragraf:\\n ##keywords## \\n\\nTonul vocii al paragrafului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(97, '3', 'vi-VN', 'Viết một đoạn văn lớn và có ý nghĩa về chủ đề này:\\n\\n ##title## \\n\\nSử dụng các từ khóa sau trong đoạn văn:\\n ##keywords## \\n\\nGiọng điệu của đoạn phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(98, '3', 'sw-KE', 'Andika aya kubwa na yenye maana juu ya mada hii:\\n\\n ##title## \\n\\nTumia manenomsingi yafuatayo katika aya:\\n ##keywords## \\n\\nToni ya sauti ya aya lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(99, '3', 'sl-SI', 'Napišite velik in smiseln odstavek o tej temi:\\n\\n ##title## \\n\\nV odstavku uporabite naslednje ključne besede:\\n ##keywords## \\n\\nTon glasu odstavka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(100, '3', 'th-TH', 'เขียนย่อหน้าใหญ่และมีความหมายในหัวข้อนี้:\\n\\n ##title## \\n\\nใช้คำหลักต่อไปนี้ในย่อหน้า:\\n ##keywords## \\n\\nน้ำเสียงของย่อหน้าต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(101, '3', 'uk-UA', 'Напишіть великий і змістовний абзац на цю тему:\\n\\n ##title## \\n\\nВикористовуйте такі ключові слова в абзаці:\\n ##keywords## \\n\\nТон абзацу має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(102, '3', 'lt-LT', 'Parašykite didelę ir prasmingą pastraipą šia tema:\\n\\n ##title## \\n\\nPastraipoje naudokite šiuos raktinius žodžius:\\n ##keywords## \\n\\nPastraipos balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(103, '3', 'bg-BG', 'Напишете голям и смислен параграф по тази тема:\\n\\n ##title## \\n\\nИзползвайте следните ключови думи в параграфа:\\n ##keywords## \\n\\nТонът на гласа на абзаца трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(104, '4', 'en-US', 'Write short, simple and informative talking points for:\\n\\n ##title## \\n\\nAnd also similar talking points for subheadings:\\n ##keywords## \\n\\nTone of voice of the paragraph must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(105, '4', 'ar-AE', 'اكتب نقاط حديث قصيرة وبسيطة وغنية بالمعلومات من أجل:\\n\\n ##title## \\n\\nونقاط الحديث المشابهة للعناوين الفرعية:\\n ##keywords## \\n\\nيجب أن تكون نغمة الصوت في الفقرة:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(106, '4', 'cmn-CN', '为以下内容编写简短、简单且信息丰富的谈话要点:\\n\\n ##title## \\n\\n以及副标题的类似谈话要点:\\n ##keywords## \\n\\n段落的语气必须是 :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(107, '4', 'hr-HR', 'Napišite kratke, jednostavne i informativne teme za:\\n\\n ##title## \\n\\nI također slične teme za podnaslove:\\n ##keywords## \\n\\nTon glasa odlomka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(108, '4', 'cs-CZ', 'Napište krátké, jednoduché a informativní body pro:\\n\\n ##title## \\n\\nA také podobná témata pro podnadpisy:\\n ##keywords## \\n\\nTón hlasu odstavce musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(109, '4', 'da-DK', 'Skriv korte, enkle og informative talepunkter til:\\n\\n ##title## \\n\\nOg også lignende talepunkter for underoverskrifter:\\n ##keywords## \\n\\nTonefaldet i afsnittet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(110, '4', 'nl-NL', 'Schrijf korte, eenvoudige en informatieve gespreksonderwerpen voor:\\n\\n ##title## \\n\\nEn ook gelijkaardige gespreksonderwerpen voor tussenkopjes:\\n ##keywords## \\n\\nDe toon van de alinea moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(111, '4', 'et-EE', 'Kirjutage lühikesed, lihtsad ja informatiivsed jutupunktid:\\n\\n ##title## \\n\\nJa ka sarnased jutupunktid alapealkirjade jaoks:\\n ##keywords## \\n\\nLõigu hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(112, '4', 'fi-FI', 'Kirjoita lyhyitä, yksinkertaisia ja informatiivisia puheenaiheita:\\n\\n ##title## \\n\\nJa myös samanlaisia puheenaiheita alaotsikoille:\\n ##keywords## \\n\\nKappaleen äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(113, '4', 'fr-FR', 'Rédigez des points de discussion courts, simples et informatifs pour :\\n\\n ##title## \\n\\nEt également des points de discussion similaires pour les sous-titres :\\n ##keywords## \\n\\nLe ton de la voix du paragraphe doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(114, '4', 'de-DE', 'Schreiben Sie kurze, einfache und informative Gesprächsthemen für:\\n\\n ##title## \\n\\nUnd auch ähnliche Gesprächsthemen für Unterüberschriften:\\n ##keywords## \\n\\nTonlage des Absatzes muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(115, '4', 'el-GR', 'Γράψτε σύντομα, απλά και κατατοπιστικά σημεία ομιλίας για:\\n\\n ##title## \\n\\nΚαι επίσης παρόμοια σημεία συζήτησης για υποτίτλους:\\n ##keywords## \\n\\nΟ τόνος της φωνής της παραγράφου πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(116, '4', 'he-IL', 'כתוב נקודות דיבור קצרות, פשוטות ואינפורמטיביות עבור:\\n\\n ##title## \\n\\nוגם נקודות דיבור דומות עבור כותרות משנה:\\n ##keywords## \\n\\nטון הדיבור של הפסקה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(117, '4', 'hi-IN', 'के लिए संक्षिप्त, सरल और जानकारीपूर्ण चर्चा बिंदु लिखें:\\n\\n ##title## \\n\\nऔर उपशीर्षक के लिए समान चर्चा बिंदु:\\n ##keywords## \\n\\nपैराग्राफ की आवाज़ का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(118, '4', 'hu-HU', 'Írjon rövid, egyszerű és informatív beszédpontokat:\\n\\n ##title## \\n\\nÉs hasonló beszédpontok az alcímekhez:\\n ##keywords## \\n\\nA bekezdés hangszínének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(119, '4', 'is-IS', 'Skrifaðu stutta, einfalda og upplýsandi umræðupunkta fyrir:\\n\\n ##title## \\n\\nOg líka svipaðar umræður fyrir undirfyrirsagnir:\\n ##keywords## \\n\\nTónn málsgreinarinnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(120, '4', 'id-ID', 'Tulis poin pembicaraan singkat, sederhana dan informatif untuk:\\n\\n ##title## \\n\\nDan juga poin pembicaraan serupa untuk subjudul:\\n ##keywords## \\n\\nNada suara paragraf harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(121, '4', 'it-IT', 'Scrivi punti di discussione brevi, semplici e informativi per:\\n\\n ##title## \\n\\nE anche punti di discussione simili per i sottotitoli:\\n ##keywords## \\n\\nIl tono di voce del paragrafo deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(122, '4', 'ja-JP', '短く、シンプルで有益な論点を書いてください:\\n\\n ##title## \\n\\n小見出しにも同様の要点があります:\\n ##keywords## \\n\\n段落の口調は次のようにする必要があります:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(123, '4', 'ko-KR', '다음에 대한 짧고 간단하며 유익한 요점을 작성하십시오:\\n\\n ##title## \\n\\n또한 부제목에 대한 유사한 논점:\\n ##keywords## \\n\\n문단의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(124, '4', 'ms-MY', 'Tulis perkara perbualan yang pendek, ringkas dan bermaklumat untuk:\\n\\n ##title## \\n\\nDan juga perkara yang serupa untuk tajuk kecil:\\n ##keywords## \\n\\nNada suara perenggan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(125, '4', 'nb-NO', 'Skriv korte, enkle og informative samtalepunkter for:\\n\\n ##title## \\n\\nOg også lignende samtalepunkter for underoverskrifter:\\n ##keywords## \\n\\nTone i avsnittet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(126, '4', 'pl-PL', 'Napisz krótkie, proste i pouczające przemówienia dla:\\n\\n ##title## \\n\\nA także podobne uwagi do podtytułów:\\n ##keywords## \\n\\nTon głosu akapitu musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(127, '4', 'pt-PT', 'Escreva pontos de conversa curtos, simples e informativos para:\\n\\n ##title## \\n\\nE também pontos de discussão semelhantes para subtítulos:\\n ##keywords## \\n\\nTom de voz do parágrafo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(128, '4', 'ru-RU', 'Напишите короткие, простые и информативные тезисы для:\\n\\n ##title## \\n\\nА также аналогичные темы для подзаголовков:\\n ##keywords## \\n\\nТон абзаца должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(129, '4', 'es-ES', 'Escribe puntos de conversación breves, sencillos e informativos para:\\n\\n ##title## \\n\\nY también puntos de conversación similares para los subtítulos:\\n ##keywords## \\n\\nEl tono de voz del párrafo debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(130, '4', 'sv-SE', 'Skriv korta, enkla och informativa samtalspunkter för:\\n\\n ##title## \\n\\nOch även liknande diskussionspunkter för underrubriker:\\n ##keywords## \\n\\nTonfallet i stycket måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(131, '4', 'tr-TR', 'Skriv korta, enkla och informativa samtalspunkter för:\\n\\n ##title## \\n\\nOch även liknande diskussionspunkter för underrubriker:\\n ##keywords## \\n\\nTonfallet i stycket måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(132, '4', 'pt-BR', 'Escreva pontos de conversa curtos, simples e informativos para:\\n\\n ##title## \\n\\nE também pontos de discussão semelhantes para subtítulos:\\n ##keywords## \\n\\nTom de voz do parágrafo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(133, '4', 'ro-RO', 'Scrieți puncte de discuție scurte, simple și informative pentru:\\n\\n ##title## \\n\\nȘi, de asemenea, puncte de discuție similare pentru subtitluri:\\n ##keywords## \\n\\nTonul vocii al paragrafului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(134, '4', 'vi-VN', 'Viết luận điểm ngắn gọn, đơn giản và nhiều thông tin cho:\\n\\n ##title## \\n\\nVà cả những luận điểm tương tự cho các tiêu đề phụ:\\n ##keywords## \\n\\nGiọng điệu của đoạn phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(135, '4', 'sw-KE', 'Andika vidokezo vifupi, rahisi na vya kuelimisha vya:\\n\\n ##title## \\n\\nNa pia hoja sawa za mazungumzo kwa vichwa vidogo:\\n ##keywords## \\n\\nToni ya sauti ya aya lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(136, '4', 'sl-SI', 'Napišite kratke, preproste in informativne teme za:\\n\\n ##title## \\n\\nIn tudi podobne teme za podnaslove:\\n ##keywords## \\n\\nTon glasu odstavka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(137, '4', 'th-TH', 'เขียนประเด็นการพูดคุยที่สั้น เรียบง่าย และให้ข้อมูลสำหรับ:\\n\\n ##title## \\n\\nและประเด็นการพูดคุยที่คล้ายกันสำหรับหัวข้อย่อย:\\n ##keywords## \\n\\nน้ำเสียงของย่อหน้าต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(138, '4', 'uk-UA', 'Напишіть короткі, прості та інформативні теми для:\\n\\n ##title## \\n\\nА також подібні теми для підзаголовків:\\n ##keywords## \\n\\nТон абзацу має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(139, '4', 'lt-LT', 'Parašykite trumpus, paprastus ir informatyvius pokalbio taškus:\\n\\n ##title## \\n\\nIr taip pat panašių pokalbių temų paantraštėms:\\n ##keywords## \\n\\nPastraipos balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(140, '4', 'bg-BG', 'Напишете кратки, прости и информативни точки за разговор за:\\n\\n ##title## \\n\\nИ също подобни теми за подзаглавия:\\n ##keywords## \\n\\nТонът на гласа на абзаца трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(141, '5', 'en-US', 'Write pros and cons of these products:\\n\\n ##title## \\n\\nUse following product description:\\n ##keywords## \\n\\nTone of voice of the pros and cons must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(142, '5', 'ar-AE', 'اكتب إيجابيات وسلبيات هذه المنتجات:\\n\\n ##title## \\n\\nاستخدم وصف المنتج التالي:\\n ##keywords## \\n\\nيجب أن تكون نغمة الإيجابيات والسلبيات:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(143, '5', 'cmn-CN', '写下这些产品的优缺点:\\n\\n ##title## \\n\\n使用以下产品描述:\\n ##keywords## \\n\\n正反的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(144, '5', 'hr-HR', 'Napišite prednosti i nedostatke ovih proizvoda:\\n\\n ##title## \\n\\nKoristite sljedeći opis proizvoda:\\n ##keywords## \\n\\nTon glasa za i protiv mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(145, '5', 'cs-CZ', 'Napište výhody a nevýhody těchto produktů:\\n\\n ##title## \\n\\nPoužijte následující popis produktu:\\n ##keywords## \\n\\nTón hlasu pro a proti musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(146, '5', 'da-DK', 'Skriv fordele og ulemper ved disse produkter:\\n\\n ##title## \\n\\nBrug følgende produktbeskrivelse:\\n ##keywords## \\n\\nTone af fordele og ulemper skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(147, '5', 'nl-NL', 'Schrijf de voor- en nadelen van deze producten op:\\n\\n ##title## \\n\\nGebruik de volgende productbeschrijving:\\n ##keywords## \\n\\nDe toon van de voor- en nadelen moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(148, '5', 'et-EE', 'Kirjutage nende toodete plussid ja miinused:\\n\\n ##title## \\n\\nKasutage järgmist tootekirjeldust:\\n ##keywords## \\n\\nPusside ja miinuste hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(149, '5', 'fi-FI', 'Kirjoita näiden tuotteiden hyvät ja huonot puolet:\\n\\n ##title## \\n\\nKäytä seuraavaa tuotekuvausta:\\n ##keywords## \\n\\nPussien ja haittojen äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(150, '5', 'fr-FR', 'Écrivez les avantages et les inconvénients de ces produits :\\n\\n ##title## \\n\\nUtilisez la description de produit suivante :\\n ##keywords## \\n\\nLe ton de la voix des pour et des contre doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(151, '5', 'de-DE', 'Schreiben Sie Vor- und Nachteile dieser Produkte auf:\\n\\n ##title## \\n\\nFolgende Produktbeschreibung verwenden:\\n ##keywords## \\n\\nTonfall der Vor- und Nachteile muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(152, '5', 'el-GR', 'Γράψτε τα πλεονεκτήματα και τα μειονεκτήματα αυτών των προϊόντων:\\n\\n ##title## \\n\\nΧρησιμοποιήστε την ακόλουθη περιγραφή προϊόντος:\\n ##keywords## \\n\\nΟ τόνος της φωνής των πλεονεκτημάτων και των μειονεκτημάτων πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(153, '5', 'he-IL', 'כתוב יתרונות וחסרונות של המוצרים האלה:\\n\\n ##title## \\n\\nהשתמש בתיאור המוצר הבא:\\n ##keywords## \\n\\nטון הדיבור של היתרונות והחסרונות חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(154, '5', 'hi-IN', 'इन उत्पादों के फायदे और नुकसान लिखें:\\n\\n ##title## \\n\\nनिम्न उत्पाद विवरण का उपयोग करें:\\n ##keywords## \\n\\n पक्ष और विपक्ष की आवाज़ का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(155, '5', 'hu-HU', 'Írja le ezeknek a termékeknek előnyeit és hátrányait:\\n\\n ##title## \\n\\nHasználja a következő termékleírást:\\n ##keywords## \\n\\nAz előnyök és hátrányok hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(156, '5', 'is-IS', 'Skrifaðu kosti og galla þessara vara:\\n\\n ##title## \\n\\nNotaðu eftirfarandi vörulýsingu:\\n ##keywords## \\n\\nTónn fyrir kosti og galla verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(157, '5', 'id-ID', 'Tulis pro dan kontra dari produk ini:\\n\\n ##title## \\n\\nGunakan deskripsi produk berikut:\\n ##keywords## \\n\\nNada suara pro dan kontra harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(158, '5', 'it-IT', 'Scrivi pro e contro di questi prodotti:\\n\\n ##title## \\n\\nUsa la seguente descrizione del prodotto:\\n ##keywords## \\n\\nIl tono di voce dei pro e dei contro deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(159, '5', 'ja-JP', 'これらの製品の長所と短所を書いてください:\\n\\n ##title## \\n\\n次の製品説明を使用してください:\\n ##keywords## \\n\\n賛成派と反対派の口調は次のとおりでなければなりません:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(160, '5', 'ko-KR', '이 제품의 장단점을 작성하십시오:\\n\\n ##title## \\n\\n다음 제품 설명을 사용하십시오:\\n ##keywords## \\n\\n장단점의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(161, '5', 'ms-MY', 'Tulis kebaikan dan keburukan produk ini:\\n\\n ##title## \\n\\nGunakan penerangan produk berikut:\\n ##keywords## \\n\\nNada suara kebaikan dan keburukan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(162, '5', 'nb-NO', 'Skriv fordeler og ulemper med disse produktene:\\n\\n ##title## \\n\\nBruk følgende produktbeskrivelse:\\n ##keywords## \\n\\nTone for fordeler og ulemper må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(163, '5', 'pl-PL', 'Napisz wady i zalety tych produktów:\\n\\n ##title## \\n\\nUżyj następującego opisu produktu:\\n ##keywords## \\n\\nTon głosu za i przeciw musi być następujący:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(164, '5', 'pt-PT', 'Escreva prós e contras destes produtos:\\n\\n ##title## \\n\\nUse a seguinte descrição do produto:\\n ##keywords## \\n\\nTom de voz dos prós e contras deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(165, '5', 'ru-RU', 'Напишите плюсы и минусы этих продуктов:\\n\\n ##title## \\n\\nИспользуйте следующее описание продукта:\\n ##keywords## \\n\\nТон озвучивания плюсов и минусов должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(166, '5', 'es-ES', 'Escriba pros y contras de estos productos:\\n\\n ##title## \\n\\nUtilice la siguiente descripción del producto:\\n ##keywords## \\n\\nEl tono de voz de los pros y los contras debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(167, '5', 'sv-SE', 'Skriv för- och nackdelar med dessa produkter:\\n\\n ##title## \\n\\nAnvänd följande produktbeskrivning:\\n ##keywords## \\n\\nTonfall för för- och nackdelar måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(168, '5', 'tr-TR', 'Bu ürünlerin artılarını ve eksilerini yazın:\\n\\n ##title## \\n\\nAşağıdaki ürün açıklamasını kullanın:\\n ##keywords## \\n\\nSes tonu artıları ve eksileri şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(169, '5', 'pt-BR', 'Escreva prós e contras destes produtos:\\n\\n ##title## \\n\\nUse a seguinte descrição do produto:\\n ##keywords## \\n\\nTom de voz dos prós e contras deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(170, '5', 'ro-RO', 'Scrieți argumentele pro și contra acestor produse:\\n\\n ##title## \\n\\nUtilizați următoarea descriere a produsului:\\n ##keywords## \\n\\nTonul vocii argumentelor pro și contra trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(171, '5', 'vi-VN', 'Viết ưu và nhược điểm của những sản phẩm này:\\n\\n ##title## \\n\\nSử dụng mô tả sản phẩm sau:\\n ##keywords## \\n\\nGiọng điệu của những ưu và nhược điểm phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(172, '5', 'sw-KE', 'Andika faida na hasara za bidhaa hizi:\\n\\n ##title## \\n\\nTumia maelezo ya bidhaa yafuatayo:\\n ##keywords## \\n\\nToni ya sauti ya faida na hasara lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(173, '5', 'sl-SI', 'Napišite prednosti in slabosti teh izdelkov:\\n\\n ##title## \\n\\nUporabi naslednji opis izdelka:\\n ##keywords## \\n\\nTon glasu prednosti in slabosti mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(174, '5', 'th-TH', 'เขียนข้อดีข้อเสียของผลิตภัณฑ์เหล่านี้:\\n\\n ##title## \\n\\nใช้คำอธิบายผลิตภัณฑ์ต่อไปนี้:\\n ##keywords## \\n\\nเสียงของข้อดีและข้อเสียต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(175, '5', 'uk-UA', 'Напишіть плюси та мінуси цих продуктів:\\n\\n ##title## \\n\\nВикористовуйте такий опис продукту:\\n ##keywords## \\n\\nТон голосу плюсів і мінусів має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(176, '5', 'lt-LT', 'Parašykite šių produktų privalumus ir trūkumus:\\n\\n ##title## \\n\\nNaudokite šį produkto aprašymą:\\n ##keywords## \\n\\nPrivalumai ir trūkumai turi būti tokie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(177, '5', 'bg-BG', 'Напишете плюсовете и минусите на тези продукти:\\n\\n ##title## \\n\\nИзползвайте следното описание на продукта:\\n ##keywords## \\n\\nТонът на гласа на плюсовете и минусите трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(178, '6', 'en-US', 'Generate 10 catchy blog titles for:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(179, '6', 'ar-AE', 'قم بإنشاء 10 عناوين مدونة جذابة لـ:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(180, '6', 'cmn-CN', '为以下内容生成 10 个吸引人的博客标题:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(181, '6', 'hr-HR', 'Generiraj 10 privlačnih naslova bloga za:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(182, '6', 'cs-CZ', 'Vygenerujte 10 chytlavých názvů blogů pro:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(183, '6', 'da-DK', 'Generer 10 fængende blogtitler til:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(184, '6', 'nl-NL', 'Genereer 10 pakkende blogtitels voor:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(185, '6', 'et-EE', 'Loo 10 meeldejäävat ajaveebi pealkirja:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(186, '6', 'fi-FI', 'Luo 10 tarttuvaa blogiotsikkoa:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(187, '6', 'fr-FR', 'Générez 10 titres de blog accrocheurs pour :\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(188, '6', 'de-DE', 'Generiere 10 einprägsame Blog-Titel für:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(189, '6', 'el-GR', 'Δημιουργήστε 10 εντυπωσιακούς τίτλους ιστολογίου για:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(190, '6', 'he-IL', 'צור 10 כותרות בלוג קליטות עבור:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(191, '6', 'hi-IN', '10 आकर्षक ब्लॉग शीर्षक उत्पन्न करें:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(192, '6', 'hu-HU', 'Generálj 10 fülbemászó blogcímet a következőhöz:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(193, '6', 'is-IS', 'Búðu til 10 grípandi bloggtitla fyrir:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(194, '6', 'id-ID', 'Hasilkan 10 judul blog menarik untuk:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(195, '6', 'it-IT', 'Genera 10 titoli di blog accattivanti per:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(196, '6', 'ja-JP', 'キャッチーなブログ タイトルを 10 個生成します:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(197, '6', 'ko-KR', '다음에 대한 10개의 눈길을 끄는 블로그 제목 생성:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(198, '6', 'ms-MY', 'Jana 10 tajuk blog yang menarik untuk:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(199, '6', 'nb-NO', 'Generer 10 fengende bloggtitler for:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(200, '6', 'pl-PL', 'Wygeneruj 10 chwytliwych tytułów blogów dla:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(201, '6', 'pt-PT', 'Gerar 10 títulos de blog cativantes para:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(202, '6', 'ru-RU', 'Создайте 10 броских заголовков блога для:\\n\\n ##description## \\п\\п', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(203, '6', 'es-ES', 'Generar 10 títulos de blog pegadizos para:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(204, '6', 'sv-SE', 'Generera 10 catchy bloggtitlar för:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(205, '6', 'tr-TR', '10 akılda kalıcı blog başlığı oluşturun:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(206, '6', 'pt-BR', 'Gerar 10 títulos de blog cativantes para:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(207, '6', 'ro-RO', 'Generează 10 titluri de blog atrăgătoare pentru:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(208, '6', 'vi-VN', 'Tạo 10 tiêu đề blog hấp dẫn cho:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(209, '6', 'sw-KE', 'Zalisha vichwa 10 vya blogu vya kuvutia vya:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(210, '6', 'sl-SI', 'Ustvari 10 privlačnih naslovov blogov za:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(211, '6', 'th-TH', 'สร้างชื่อบล็อกที่ดึงดูดใจ 10 ชื่อสำหรับ:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(212, '6', 'uk-UA', 'Створіть 10 привабливих назв блогу для:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(213, '6', 'lt-LT', 'Sukurkite 10 patrauklių tinklaraščio pavadinimų:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(214, '6', 'bg-BG', 'Генерирайте 10 закачливи заглавия на блогове за:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(215, '7', 'en-US', 'Write a full blog section with at least 5 large paragraphs about:\\n\\n ##title## \\n\\nSplit by subheadings:\\n ##subheadings## \\n\\nTone of voice of the paragraphs must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(216, '7', 'ar-AE', 'اكتب قسم مدونة كاملًا يحتوي على 5 فقرات كبيرة على الأقل حول:\\n\\n ##title## \\n\\nانقسام حسب العناوين الفرعية:\\n ##subheadings## \\n\\nيجب أن تكون نغمة صوت الفقرات:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(217, '7', 'cmn-CN', '写一个完整的博客部分,其中至少包含 5 个大段落:\\n\\n ##title## \\n\\n按副标题拆分:\\n ##subheadings## \\n\\n段落的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(218, '7', 'hr-HR', 'Napišite cijeli odjeljak bloga s najmanje 5 velikih odlomaka o:\\n\\n ##title## \\n\\nPodijeli po podnaslovima:\\n ##subheadings## \\n\\nTon glasa odlomaka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(219, '7', 'cs-CZ', 'Napište celou sekci blogu s alespoň 5 velkými odstavci o:\\n\\n ##title## \\n\\nRozdělit podle podnadpisů:\\n ##subheadings## \\n\\nTón hlasu odstavců musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(220, '7', 'da-DK', 'Skriv en komplet blogsektion med mindst 5 store afsnit om:\\n\\n ##title## \\n\\nOpdelt efter underoverskrifter:\\n ##subheadings## \\n\\nTonefaldet i afsnittene skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(221, '7', 'nl-NL', 'Schrijf een volledig bloggedeelte met minimaal 5 grote paragrafen over:\\n\\n ##title## \\n\\nGesplitst door subkoppen:\\n ##subheadings## \\n\\nDe toon van de alinea`s moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(222, '7', 'et-EE', 'Kirjutage terve blogijaotis vähemalt 5 suure lõiguga teemal:\\n\\n ##title## \\n\\nJagatud alampealkirjade järgi:\\n ##subheadings## \\n\\nLõigete hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(223, '7', 'fi-FI', 'Kirjoita koko blogiosio, jossa on vähintään 5 suurta kappaletta aiheesta:\\n\\n ##title## \\n\\nJaettu alaotsikoiden mukaan:\\n ##subheadings## \\n\\nKappaleiden äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(224, '7', 'fr-FR', 'Écrivez une section de blog complète avec au moins 5 grands paragraphes sur :\\n\\n ##title## \\n\\nDiviser par sous-titres :\\n ##subheadings## \\n\\nLe ton de la voix des paragraphes doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(225, '7', 'de-DE', 'Schreiben Sie einen vollständigen Blog-Abschnitt mit mindestens 5 großen Absätzen über:\\n\\n ##title## \\n\\nAufgeteilt nach Unterüberschriften:\\n ##subheadings## \\n\\nTonfall der Absätze muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(226, '7', 'el-GR', 'Γράψτε μια πλήρη ενότητα ιστολογίου με τουλάχιστον 5 μεγάλες παραγράφους σχετικά με:\\n\\n ##title## \\n\\nΔιαίρεση κατά υποτίτλους:\\n ##subheadings## \\n\\nΟ τόνος της φωνής των παραγράφων πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(227, '7', 'he-IL', 'כתוב מדור בלוג מלא עם לפחות 5 פסקאות גדולות על:\\n\\n ##title## \\n\\nפיצול לפי כותרות משנה:\\n ##subheadings## \\n\\nטון הדיבור של הפסקאות חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(228, '7', 'hi-IN', 'इस बारे में कम से कम 5 बड़े अनुच्छेदों के साथ एक पूर्ण ब्लॉग अनुभाग लिखें:\\n\\n ##title## \\n\\nउपशीर्षकों द्वारा विभाजित करें:\\n ##subheadings## \\n\\nपैराग्राफ की आवाज का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(229, '7', 'hu-HU', 'Írjon egy teljes blogrészt, legalább 5 nagy bekezdéssel erről:\\n\\n ##title## \\n\\nAlcímek szerint felosztva:\\n ##subheadings## \\n\\nA bekezdések hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(230, '7', 'is-IS', 'Skrifaðu heilan blogghluta með að minnsta kosti 5 stórum málsgreinum um:\\n\\n ##title## \\n\\nDeilt eftir undirfyrirsögnum:\\n ##subheadings## \\n\\nTónn málsgreina verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(231, '7', 'id-ID', 'Tulis bagian blog lengkap dengan setidaknya 5 paragraf besar tentang:\\n\\n ##title## \\n\\nDibagi berdasarkan subjudul:\\n ##subheadings## \\n\\nNada suara paragraf harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(232, '7', 'it-IT', 'Scrivi una sezione completa del blog con almeno 5 paragrafi di grandi dimensioni su:\\n\\n ##title## \\n\\nDiviso per sottotitoli:\\n ##subheadings## \\n\\nIl tono di voce dei paragrafi deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(233, '7', 'ja-JP', '次の内容について、少なくとも 5 つの大きな段落を含む完全なブログ セクションを作成します:\\n\\n ##title## \\n\\n小見出しで分割:\\n ##subheadings## \\n\\n段落の口調は次のようにする必要があります:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(234, '7', 'ko-KR', '다음에 대해 최소 5개의 큰 단락으로 전체 블로그 섹션을 작성하세요:\\n\\n ##title## \\n\\n하위 제목으로 분할:\\n ##subheadings## \\n\\n문단의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(235, '7', 'ms-MY', 'Tulis bahagian blog penuh dengan sekurang-kurangnya 5 perenggan besar tentang:\\n\\n ##title## \\n\\nPisah mengikut subtajuk:\\n ##subheadings## \\n\\nNada suara perenggan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(236, '7', 'nb-NO', 'Skriv en fullstendig bloggseksjon med minst 5 store avsnitt om:\\n\\n ##title## \\n\\nSplitt etter underoverskrifter:\\n ##subheadings## \\n\\nTone i avsnittene må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(237, '7', 'pl-PL', 'Napisz pełną sekcję bloga zawierającą co najmniej 5 dużych akapitów na temat:\\n\\n ##title## \\n\\nPodział według podtytułów:\\n ##subheadings## \\n\\nTon głosu akapitów musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(238, '7', 'pt-PT', 'Escreva uma seção de blog completa com pelo menos 5 parágrafos grandes sobre:\\n\\n ##title## \\n\\nDivisão por subtítulos:\\n ##subheadings## \\n\\nTom de voz dos parágrafos deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(239, '7', 'ru-RU', 'Напишите полный раздел блога, содержащий не менее 5 больших абзацев о:\\n\\n ##title## \\n\\nРазделить по подзаголовкам:\\n ##subheadings## \\n\\nТон озвучивания абзацев должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(240, '7', 'es-ES', 'Escribe una sección de blog completa con al menos 5 párrafos extensos sobre:\\n\\n ##title## \\n\\nDividir por subtítulos:\\n ##subheadings## \\n\\nEl tono de voz de los párrafos debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(241, '7', 'sv-SE', 'Skriv en fullständig bloggsektion med minst 5 stora stycken om:\\n\\n ##title## \\n\\nDela upp efter underrubriker:\\n ##subheadings## \\n\\nTonfallet i styckena måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(242, '7', 'tr-TR', 'Şununla ilgili en az 5 büyük paragraf içeren eksiksiz bir blog bölümü yazın:\\n\\n ##title## \\n\\nAlt başlıklara göre ayır:\\n ##subheadings## \\n\\nParagrafların ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(243, '7', 'pt-BR', 'Escreva uma seção de blog completa com pelo menos 5 parágrafos grandes sobre:\\n\\n ##title## \\n\\nDivisão por subtítulos:\\n ##subheadings## \\n\\nTom de voz dos parágrafos deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(244, '7', 'ro-RO', 'Scrieți o secțiune completă de blog cu cel puțin 5 paragrafe mari despre:\\n\\n ##title## \\n\\nDivizat după subtitluri:\\n ##subheadings## \\n\\nTonul de voce al paragrafelor trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(245, '7', 'vi-VN', 'Viết một mục blog đầy đủ với ít nhất 5 đoạn văn lớn về:\\n\\n ##title## \\n\\nChia theo tiêu đề phụ:\\n ##subheadings## \\n\\nGiọng điệu của đoạn văn phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(246, '7', 'sw-KE', 'Andika sehemu kamili ya blogu iliyo na angalau aya 5 kubwa kuhusu:\\n\\n ##title## \\n\\nGawanya kwa vichwa vidogo:\\n ##subheadings## \\n\\nToni ya sauti ya aya lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(247, '7', 'sl-SI', 'Napišite celoten razdelek spletnega dnevnika z vsaj 5 velikimi odstavki o:\\n\\n ##title## \\n\\nRazdeljeno po podnaslovih:\\n ##subheadings## \\n\\nTon glasu odstavkov mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(248, '7', 'th-TH', 'เขียนบล็อกแบบเต็มโดยมีย่อหน้าใหญ่อย่างน้อย 5 ย่อหน้าเกี่ยวกับ:\\n\\n ##title## \\n\\nแบ่งตามหัวข้อย่อย:\\n ##subheadings## \\n\\nเสียงของย่อหน้าต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(249, '7', 'uk-UA', 'Напишіть повний розділ блогу, щонайменше 5 великих абзаців про:\\n\\n ##title## \\n\\nРозділити за підзаголовками:\\n ##subheadings## \\n\\nТон абзаців має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(250, '7', 'lt-LT', 'Parašykite visą tinklaraščio skyrių su bent 5 didelėmis pastraipomis apie:\\n\\n ##title## \\n\\nPadalinta pagal paantraštes:\\n ##subheadings## \\n\\nPastraipų balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(251, '7', 'bg-BG', 'Напишете цял блог с поне 5 големи абзаца за:\\n\\n ##title## \\n\\nРазделени по подзаглавия:\\n ##subheadings## \\n\\nТонът на гласа на параграфите трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(252, '8', 'en-US', '\"Write interesting blog ideas and outline about:\\n\\n ##title## \\n\\n Tone of voice of the ideas must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(253, '8', 'ar-AE', 'اكتب أفكار مدونة ممتعة وحدد مخططًا تفصيليًا حول:\\n\\n ##title## \\n\\nيجب أن تكون نبرة صوت الأفكار:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(254, '8', 'cmn-CN', '写下有趣的博客想法和大纲:\\n\\n ##title## \\n\\n 想法的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(255, '8', 'hr-HR', 'Napišite zanimljive ideje za blog i skicirajte o:\\n\\n ##title## \\n\\n Ton glasa ideja mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(256, '8', 'cs-CZ', 'Pište zajímavé nápady na blog a přehled o:\\n\\n ##title## \\n\\n Tón hlasu nápadů musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(257, '8', 'da-DK', 'Skriv interessante blogideer og skitser om:\\n\\n ##title## \\n\\n Tonen i ideerne skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(258, '8', 'nl-NL', 'Schrijf interessante blogideeën en schets over:\\n\\n ##title## \\n\\n De toon van de ideeën moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(259, '8', 'et-EE', 'Kirjutage huvitavaid ajaveebi ideid ja kirjeldage:\\n\\n ##title## \\n\\n Ideede hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(260, '8', 'fi-FI', 'Kirjoita mielenkiintoisia blogiideoita ja hahmotelkaa aiheesta:\\n\\n ##title## \\n\\n Ideoiden äänensävyn tulee olla:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(261, '8', 'fr-FR', 'Rédigez des idées de blog intéressantes et décrivez :\\n\\n ##title## \\n\\n Le ton de la voix des idées doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(262, '8', 'de-DE', 'Schreiben Sie interessante Blog-Ideen und skizzieren Sie über:\\n\\n ##title## \\n\\n Tonfall der Ideen muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(263, '8', 'el-GR', 'Γράψτε ενδιαφέρουσες ιδέες ιστολογίου και περιγράψτε τα σχετικά:\\n\\n ##title## \\n\\n Ο τόνος της φωνής των ιδεών πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(264, '8', 'he-IL', 'כתוב רעיונות מעניינים לבלוג ותאר את:\\n\\n ##title## \\n\\n טון הדיבור של הרעיונות חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(265, '8', 'hi-IN', 'दिलचस्प ब्लॉग विचार लिखें और इसके बारे में रूपरेखा लिखें:\\n\\n ##title## \\n\\n विचारों का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(266, '8', 'hu-HU', 'Írjon érdekes blogötleteket és vázlatot erről:\\n\\n ##title## \\n\\n Az ötletek hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(267, '8', 'is-IS', 'Skrifaðu áhugaverðar blogghugmyndir og gerðu grein fyrir:\\n\\n ##title## \\n\\n Rödd hugmyndanna verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(268, '8', 'id-ID', 'Tulis ide blog yang menarik dan uraikan tentang:\\n\\n ##title## \\n\\n Nada suara ide harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(269, '8', 'it-IT', 'Scrivi interessanti idee per il blog e delinea su:\\n\\n ##title## \\n\\n Il tono di voce delle idee deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(270, '8', 'ja-JP', '興味深いブログのアイデアと概要を書きます:\\n\\n ##title## \\n\\n アイデアの口調は次のとおりでなければなりません:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(271, '8', 'ko-KR', '흥미로운 블로그 아이디어를 작성하고 다음에 대한 개요를 작성하세요:\\n\\n ##title## \\n\\n 아이디어의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(272, '8', 'ms-MY', 'Tulis idea blog yang menarik dan gariskan tentang:\\n\\n ##title## \\n\\n Nada suara idea mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(273, '8', 'nb-NO', 'Skriv interessante bloggideer og skisser om:\\n\\n ##title## \\n\\n Tonen til ideene må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(274, '8', 'pl-PL', 'Napisz ciekawe pomysły na bloga i zarys tematu:\\n\\n ##title## \\n\\n Ton głosu pomysłów musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(275, '8', 'pt-PT', 'Escreva ideias de blog interessantes e descreva sobre:\\n\\n ##title## \\n\\n Tom de voz das ideias deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(276, '8', 'ru-RU', 'Напишите интересные идеи для блога и расскажите о:\\n\\n ##title## \\n\\n Тон голоса идей должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(277, '8', 'es-ES', 'Escriba ideas de blog interesantes y esboce sobre:\\n\\n ##title## \\n\\n El tono de voz de las ideas debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(278, '8', 'sv-SE', 'Skriv intressanta bloggidéer och beskriv:\\n\\n ##title## \\n\\n Tonen i idéerna måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(279, '8', 'tr-TR', 'İlginç blog fikirleri yazın ve hakkında ana hatları çizin:\\n\\n ##title## \\n\\n Fikirlerin ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(280, '8', 'pt-BR', 'Escreva ideias de blog interessantes e descreva sobre:\\n\\n ##title## \\n\\n Tom de voz das ideias deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(281, '8', 'ro-RO', 'Scrie idei interesante de blog și schiță despre:\\n\\n ##title## \\n\\n Tonul vocii ideilor trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(282, '8', 'vi-VN', 'Viết ý tưởng blog thú vị và phác thảo về:\\n\\n ##title## \\n\\n Giọng điệu của các ý tưởng phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(283, '8', 'sw-KE', 'Andika mawazo ya kuvutia ya blogu na muhtasari kuhusu:\\n\\n ##title## \\n\\n Toni ya sauti ya mawazo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(284, '8', 'sl-SI', 'Napišite zanimive ideje za blog in orišite o:\\n\\n ##title## \\n\\n Ton glasu idej mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(285, '8', 'th-TH', 'เขียนแนวคิดและโครงร่างบล็อกที่น่าสนใจเกี่ยวกับ:\\n\\n ##title## \\n\\n น้ำเสียงของความคิดต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(286, '8', 'uk-UA', 'Напишіть цікаві ідеї для блогу та окресліть:\\n\\n ##title## \\n\\n Тон голосу ідей має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(287, '8', 'lt-LT', 'Parašykite įdomių tinklaraščio idėjų ir apibūdinkite apie:\\n\\n ##title## \\n\\n Idėjų balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(288, '8', 'bg-BG', 'Напишете интересни идеи за блог и очертайте:\\n\\n ##title## \\n\\n Тонът на гласа на идеите трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(289, '9', 'en-US', 'Write an interesting blog post intro about:\\n\\n ##description## \\n\\n Blog post title:\\n ##title## \\n\\nTone of voice of the blog intro must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(290, '9', 'ar-AE', 'اكتب مقدمة مدونة شيقة عن:\\n\\n ##description## \\n\\n عنوان منشور المدونة:\\n ##title## \\n\\nيجب أن تكون نغمة الصوت في مقدمة المدونة:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(291, '9', 'cmn-CN', '写一篇有趣的博客文章介绍:\\n\\n ##description## \\n\\n 博文标题:\\n ##title## \\n\\n博客介绍的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(292, '9', 'hr-HR', 'Napišite uvod u zanimljiv blog post o:\\n\\n ##description## \\n\\n Naslov posta na blogu:\\n ##title## \\n\\nTon glasa uvoda u blog mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(293, '9', 'cs-CZ', 'Napište zajímavý úvod do blogového příspěvku o:\\n\\n ##description## \\n\\n Název příspěvku na blogu:\\n ##title## \\n\\nTón hlasu úvodu blogu musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(294, '9', 'da-DK', 'Skriv et interessant blogindlæg om:\\n\\n ##description## \\n\\n Blogindlægs titel:\\n ##title## \\n\\nTone i blogintroen skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(295, '9', 'nl-NL', 'Schrijf een interessante blogpost-intro over:\\n\\n ##description## \\n\\n Titel blogpost:\\n ##title## \\n\\nDe toon van de blogintro moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(296, '9', 'et-EE', 'Kirjutage huvitav blogipostituse tutvustus teemal:\\n\\n ##description## \\n\\n Blogipostituse pealkiri:\\n ##title## \\n\\nBlogi sissejuhatuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(297, '9', 'fi-FI', 'Kirjoita mielenkiintoinen blogikirjoituksen esittely aiheesta:\\n\\n ##description## \\n\\n Blogiviestin otsikko:\\n ##title## \\n\\nBlogin johdannon äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(298, '9', 'fr-FR', 'Rédigez une introduction intéressante sur :\\n\\n ##description## \\n\\n Titre de larticle de blog :\\n ##title## \\n\\nLe ton de la voix de l intro du blog doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(299, '9', 'de-DE', 'Schreiben Sie eine interessante Einführung in einen Blog-Beitrag über:\\n\\n ##description## \\n\\n Titel des Blogposts:\\n ##title## \\n\\nTonlage des Blog-Intros muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(300, '9', 'el-GR', 'Γράψτε μια ενδιαφέρουσα εισαγωγή δημοσίευσης ιστολογίου σχετικά με:\\n\\n ##description## \\n\\n Τίτλος ανάρτησης ιστολογίου:\\n ##title## \\n\\nΟ τόνος της φωνής της εισαγωγής του ιστολογίου πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(301, '9', 'he-IL', 'כתוב מבוא פוסט מעניין בבלוג על:\\n\\n ##description## \\n\\n כותרת פוסט הבלוג:\\n ##title## \\n\\nטון הדיבור של ההקדמה לבלוג חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(302, '9', 'hi-IN', 'इस बारे में एक रोचक ब्लॉग पोस्ट परिचय लिखें:\\n\\n ##description## \\n\\n ब्लॉग पोस्ट शीर्षक:\\n ##title## \\n\\nब्लॉग के परिचय का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(303, '9', 'hu-HU', 'Írjon érdekes blogbejegyzést erről:\\n\\n ##description## \\n\\n Blogbejegyzés címe:\\n ##title## \\n\\nA blogbevezető hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(304, '9', 'is-IS', 'Skrifaðu áhugaverða bloggfærslu um:\\n\\n ##description## \\n\\n Titill bloggfærslu:\\n ##title## \\n\\nTónn í blogginngangi verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(305, '9', 'id-ID', 'Tulis pengantar postingan blog yang menarik tentang:\\n\\n ##description## \\n\\n Judul entri blog:\\n ##title## \\n\\nNada suara intro blog harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(306, '9', 'it-IT', 'Scrivi un`interessante introduzione al post del blog su:\\n\\n ##description## \\n\\n Titolo del post del blog:\\n ##title## \\n\\nIl tono di voce dell`introduzione del blog deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(307, '9', 'ja-JP', '興味深いブログ投稿の紹介を書いてください:\\n\\n ##description## \\n\\n ブログ記事のタイトル:\\n ##title## \\n\\nブログのイントロのトーンは次のようにする必要があります:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(308, '9', 'ko-KR', '다음에 대한 흥미로운 블로그 게시물 소개 작성:\\n\\n ##description## \\n\\n 블로그 게시물 제목:\\n ##title## \\n\\n블로그 소개의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(309, '9', 'ms-MY', 'Tulis intro catatan blog yang menarik tentang:\\n\\n ##description## \\n\\n Tajuk catatan blog:\\n ##title## \\n\\nNada suara intro blog mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(310, '9', 'nb-NO', 'Skriv en interessant introduksjon til blogginnlegg om:\\n\\n ##description## \\n\\n Tittel på blogginnlegg:\\n ##title## \\n\\nTone i bloggintroen må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(311, '9', 'pl-PL', 'Napisz interesujące wprowadzenie do wpisu na blogu na temat:\\n\\n ##description## \\n\\n Tytuł wpisu na blogu:\\n ##title## \\n\\nTon głosu we wstępie do bloga musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(312, '9', 'pt-PT', 'Escreva uma introdução de postagem de blog interessante sobre:\\n\\n ##description## \\n\\n Título da postagem do blog:\\n ##title## \\n\\nTom de voz da introdução do blog deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(313, '9', 'ru-RU', 'Напишите интересное введение в блог о:\\n\\n ##description## \\n\\n Заголовок сообщения в блоге:\\n ##title## \\n\\nТон озвучивания вступления блога должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(314, '9', 'es-ES', 'Escribe una introducción de blog interesante sobre:\\n\\n ##description## \\n\\n Título de la publicación del blog:\\n ##title## \\n\\nEl tono de voz de la intro del blog debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(315, '9', 'sv-SE', 'Skriv ett intressant blogginlägg om:\\n\\n ##description## \\n\\n Blogginläggets titel:\\n ##title## \\n\\nRöst i bloggintrot måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(316, '9', 'tr-TR', 'Şununla ilgili ilginç bir blog yazısı yaz:\\n\\n ##description## \\n\\n Blog gönderisi başlığı:\\n ##title## \\n\\nBlog girişinin ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(317, '9', 'pt-BR', 'Escreva uma introdução de postagem de blog interessante sobre:\\n\\n ##description## \\n\\n Título da postagem do blog:\\n ##title## \\n\\nTom de voz da introdução do blog deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(318, '9', 'ro-RO', 'Scrieți o prezentare interesantă pe blog despre:\\n\\n ##description## \\n\\n Titlul postării de blog:\\n ##title## \\n\\nTonul de voce al introducerii pe blog trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(319, '9', 'vi-VN', 'Viết một bài đăng blog thú vị giới thiệu về:\\n\\n ##description## \\n\\n Tiêu đề bài đăng trên blog:\\n ##title## \\n\\nGiọng nói của phần giới thiệu blog phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(320, '9', 'sw-KE', 'Andika utangulizi wa chapisho la kuvutia la blogu kuhusu:\\n\\n ##description## \\n\\n Jina la chapisho la blogu:\\n ##title## \\n\\nToni ya sauti ya utangulizi wa blogu lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(321, '9', 'sl-SI', 'Napišite zanimivo uvodno objavo v spletnem dnevniku o:\\n\\n ##description## \\n\\n Naslov objave v spletnem dnevniku:\\n ##title## \\n\\nTon glasu uvoda v spletni dnevnik mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(322, '9', 'th-TH', 'เขียนบทความแนะนำบล็อกที่น่าสนใจเกี่ยวกับ:\\n\\n ##description## \\n\\n ชื่อบล็อกโพสต์:\\n ##title## \\n\\nเสียงแนะนำบล็อกต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(323, '9', 'uk-UA', 'Напишіть цікаву вступну публікацію в блозі про:\\n\\n ##description## \\n\\n Назва допису в блозі:\\n ##title## \\n\\nТон вступу до блогу має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(324, '9', 'lt-LT', 'Parašykite įdomų tinklaraščio įrašą apie:\\n\\n ##description## \\n\\n Tinklaraščio įrašo pavadinimas:\\n ##title## \\n\\nTinklaraščio įžangos balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(325, '9', 'bg-BG', 'Напишете интересна интро публикация в блог за:\\n\\n ##description## \\n\\n Заглавие на публикацията в блога:\\n ##title## \\n\\nТонът на интрото на блога трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(326, '10', 'en-US', 'Write a blog article conclusion for:\\n\\n ##description## \\n\\n Blog article title:\\n ##title## \\n\\nTone of voice of the conclusion must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(327, '10', 'ar-AE', 'اكتب مقالاً ختامياً لـ:\\n\\n ##description## \\n\\n عنوان مقالة المدونة:\\n ##title## \\n\\n يجب أن تكون نغمة صوت الاستنتاج:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(328, '10', 'cmn-CN', '为以下内容写一篇博客文章结论:\\n\\n ##description## \\n\\n 博客文章标题:\\n ##title## \\n\\n结论的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(329, '10', 'hr-HR', 'Napišite zaključak članka na blogu za:\\n\\n ##description## \\n\\n Naslov članka na blogu:\\n ##title## \\n\\nTon glasa zaključka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(330, '10', 'cs-CZ', 'Napište závěr článku blogu pro:\\n\\n ##description## \\n\\n Název článku blogu:\\n ##title## \\n\\nTón hlasu závěru musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(331, '10', 'da-DK', 'Skriv en blogartikel konklusion for:\\n\\n ##description## \\n\\n Blogartikeltitel:\\n ##title## \\n\\nTone i konklusionen skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(332, '10', 'nl-NL', 'Schrijf een conclusie van een blogartikel voor:\\n\\n ##description## \\n\\n Titel blogartikel:\\n ##title## \\n\\nDe toon van de conclusie moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(333, '10', 'et-EE', 'Kirjutage blogiartikli järeldus:\\n\\n ##description## \\n\\n Blogi artikli pealkiri:\\n ##title## \\n\\nJärelduse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(334, '10', 'fi-FI', 'Kirjoita blogiartikkelin päätelmä:\\n\\n ##description## \\n\\n Blogiartikkelin otsikko:\\n ##title## \\n\\nJohtopäätöksen äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(335, '10', 'fr-FR', 'Rédigez une conclusion d\'article de blog pour :\n\n ##description## \n\n Titre de l\'article du blog :\n ##title## \n\nLe ton de la voix de la conclusion doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(336, '10', 'de-DE', 'Schreiben Sie einen Blogartikel-Abschluss für:\\n\\n ##description## \\n\\n Titel des Blog-Artikels:\\n ##title## \\n\\nTonfall der Schlussfolgerung muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(337, '10', 'el-GR', 'Γράψτε ένα συμπέρασμα άρθρου ιστολογίου για:\\n\\n ##description## \\n\\n Τίτλος άρθρου ιστολογίου:\\n ##title## \\n\\nΟ τόνος της φωνής του συμπεράσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(338, '10', 'he-IL', 'כתוב מסקנת מאמר בבלוג עבור:\\n\\n ##description## \\n\\n כותרת מאמר הבלוג:\\n ##title## \\n\\nטון הדיבור של המסקנה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(339, '10', 'hi-IN', 'इसके लिए एक ब्लॉग लेख निष्कर्ष लिखें:\\n\\n ##description## \\n\\n ब्लॉग लेख का शीर्षक:\\n ##title## \\n\\nनिष्कर्ष की आवाज़ का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(340, '10', 'hu-HU', 'Írjon blogcikk következtetést:\\n\\n ##description## \\n\\n Blog cikk címe:\\n ##title## \\n\\nA következtetés hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(341, '10', 'is-IS', 'Skrifaðu niðurstöðu blogggreinar fyrir:\\n\\n ##description## \\n\\n Titill blogggreinar:\\n ##title## \\n\\nTónn í niðurstöðunni verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(342, '10', 'id-ID', 'Tulis kesimpulan artikel blog untuk:\\n\\n ##description## \\n\\n Judul artikel blog:\\n ##title## \\n\\nNada suara kesimpulan harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(343, '10', 'it-IT', 'Scrivi la conclusione di un articolo di blog per:\\n\\n ##description## \\n\\n Titolo articolo blog:\\n ##title## \\n\\nIl tono di voce della conclusione deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(344, '10', 'ja-JP', '次のブログ記事の結論を書きます:\\n\\n ##description## \\n\\n ブログ記事のタイトル:\\n ##title## \\n\\n結論の口調は:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(345, '10', 'ko-KR', '다음에 대한 블로그 기사 결론 쓰기:\\n\\n ##description## \\n\\n 블로그 기사 제목:\\n ##title## \\n\\n결론의 어조는 다음과 같아야 합니다.\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(346, '10', 'ms-MY', '다음에 대한 블로그 기사 결론 쓰기:\\n\\n ##description## \\n\\n 블로그 기사 제목:\\n ##title## \\n\\n결론의 어조는 다음과 같아야 합니다.\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(347, '10', 'nb-NO', 'Skriv en bloggartikkelkonklusjon for:\\n\\n ##description## \\n\\n Bloggartikkeltittel:\\n ##title## \\n\\nTone i konklusjonen må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(348, '10', 'pl-PL', 'Napisz zakończenie artykułu na blogu dla:\\n\\n ##description## \\n\\n Tytuł artykułu na blogu:\\n ##title## \\n\\nTon wniosku musi być następujący:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(349, '10', 'pt-PT', 'Escreva uma conclusão de artigo de blog para:\\n\\n ##description## \\n\\n Título do artigo do blog:\\n ##title## \\n\\nTom de voz da conclusão deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(350, '10', 'ru-RU', 'Напишите вывод статьи в блоге для:\\n\\n ##description## \\n\\n Название статьи в блоге:\\n ##title## \\n\\nТон голоса заключения должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(351, '10', 'es-ES', 'Escribe la conclusión de un artículo de blog para:\\n\\n ##description## \\n\\n Título del artículo del blog:\\n ##title## \\n\\nEl tono de voz de la conclusión debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(352, '10', 'sv-SE', 'Skriv en bloggartikelavslutning för:\\n\\n ##description## \\n\\n Bloggartikeltitel:\\n ##title## \\n\\nTonfallet för slutsatsen måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(353, '10', 'tr-TR', 'Bir blog makalesi sonucu yaz:\\n\\n ##description## \\n\\n Blog makalesi başlığı:\\n ##title## \\n\\nSonuçtaki ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(354, '10', 'pt-BR', 'Escreva uma conclusão de artigo de blog para:\\n\\n ##description## \\n\\n Título do artigo do blog:\\n ##title## \\n\\nTom de voz da conclusão deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(355, '10', 'ro-RO', 'Scrieți o concluzie a unui articol de blog pentru:\\n\\n ##description## \\n\\n Titlul articolului de blog:\\n ##title## \\n\\nTonul de voce al concluziei trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(356, '10', 'vi-VN', 'Viết kết luận bài viết trên blog cho:\\n\\n ##description## \\n\\n Tiêu đề bài viết trên blog:\\n ##title## \\n\\nGiọng kết luận phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(357, '10', 'sw-KE', 'Andika hitimisho la makala ya blogu ya:\\n\\n ##description## \\n\\n Jina la makala ya blogu:\\n ##title## \\n\\nToni ya sauti ya hitimisho lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(358, '10', 'sl-SI', 'Napišite zaključek članka v blogu za:\\n\\n ##description## \\n\\n Naslov članka v blogu:\\n ##title## \\n\\nTon sklepa mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(359, '10', 'th-TH', 'เขียนสรุปบทความบล็อกสำหรับ:\\n\\n ##description## \\n\\n ชื่อบทความบล็อก:\\n ##title## \\n\\nเสียงสรุปต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(360, '10', 'uk-UA', 'Напишіть висновок статті в блозі для:\\n\\n ##description## \\n\\n Назва статті блогу:\\n ##title## \\n\\nТон висновку повинен бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(361, '10', 'lt-LT', 'Parašykite tinklaraščio straipsnio išvadą:\\n\\n ##description## \\n\\n Tinklaraščio straipsnio pavadinimas:\\n ##title## \\n\\nIšvados balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(362, '10', 'bg-BG', 'Генерирайте 10 закачливи заглавия на блогове за:\\n\\n ##description## \\n\\nНапишете заключение за статия в блог за:\\n\\n ##description## \\n\\n Заглавие на блог статия:\\n ##title## \\n\\nТонът на гласа на заключението трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(363, '11', 'en-US', 'Summarize this text in a short concise way:\\n\\n ##text## \\n\\nTone of summary must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(364, '11', 'ar-AE', 'لخص هذا النص بإيجاز قصير:\\n\\n ##text## \\n\\nيجب أن تكون نغمة التلخيص:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(365, '11', 'cmn-CN', '用简短的方式总结这段文字:\\n\\n ##text## \\n\\n摘要语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(366, '11', 'hr-HR', 'Ukratko sažeti ovaj tekst:\\n\\n ##text## \\n\\nTon sažetka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(367, '11', 'cs-CZ', 'Shrňte tento text krátkým výstižným způsobem:\\n\\n ##text## \\n\\nTón shrnutí musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(368, '11', 'da-DK', 'Opsummer denne tekst på en kort og præcis måde:\\n\\n ##text## \\n\\nTone i resumé skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(369, '11', 'nl-NL', 'Vat deze tekst kort en bondig samen:\\n\\n ##text## \\n\\nDe toon van de samenvatting moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(370, '11', 'et-EE', 'Tehke see tekst lühidalt kokkuvõtlikult:\\n\\n ##text## \\n\\nKokkuvõtte toon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(371, '11', 'fi-FI', 'Tee tämä teksti lyhyesti ytimekkäästi:\\n\\n ##text## \\n\\nYhteenvedon äänen tulee olla:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(372, '11', 'fr-FR', 'Résumez ce texte de manière courte et concise :\\n\\n ##text## \\n\\nLe ton du résumé doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(373, '11', 'de-DE', 'Fass diesen Text kurz und prägnant zusammen:\\n\\n ##text## \\n\\nTon der Zusammenfassung muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(374, '11', 'el-GR', 'Συνοψήστε αυτό το κείμενο με σύντομο και συνοπτικό τρόπο:\\n\\n ##text## \\n\\nΟ τόνος της σύνοψης πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(375, '11', 'he-IL', 'סכם את הטקסט הזה בצורה קצרה תמציתית:\\n\\n ##text## \\n\\nטון הסיכום חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(376, '11', 'hi-IN', 'इस पाठ को संक्षेप में संक्षेप में प्रस्तुत करें:\\n\\n ##text## \\n\\nसारांश का लहजा होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(377, '11', 'hu-HU', 'Összefoglalja ezt a szöveget röviden, tömören:\\n\\n ##text## \\n\\nAz összefoglaló hangjának a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(378, '11', 'is-IS', 'Dregðu saman þennan texta á stuttan hnitmiðaðan hátt:\\n\\n ##text## \\n\\nTónn yfirlits verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(379, '11', 'id-ID', 'Rangkum teks ini dengan cara yang singkat dan padat:\\n\\n ##text## \\n\\nNada ringkasan harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(380, '11', 'it-IT', 'Riassumi questo testo in modo breve e conciso:\\n\\n ##text## \\n\\nIl tono del riassunto deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(381, '11', 'ja-JP', 'このテキストを短く簡潔に要約してください:\\n\\n ##text## \\n\\n要約のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(382, '11', 'ko-KR', '이 텍스트를 짧고 간결하게 요약:\\n\\n ##text## \\n\\n요약 톤은 다음과 같아야 합니다.\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(383, '11', 'ms-MY', 'Ringkaskan teks ini dengan cara ringkas yang ringkas:\\n\\n ##text## \\n\\nNada ringkasan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(384, '11', 'nb-NO', 'Opsummer denne teksten på en kortfattet måte:\\n\\n ##text## \\n\\nTone i sammendraget må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(385, '11', 'pl-PL', 'Podsumuj ten tekst w zwięzły sposób:\\n\\n ##text## \\n\\nTon podsumowania musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(386, '11', 'pt-PT', 'Resuma este texto de forma curta e concisa:\\n\\n ##text## \\n\\nO tom do resumo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(387, '11', 'ru-RU', 'Кратко изложите этот текст:\\n\\n ##text## \\n\\nТон резюме должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(388, '11', 'es-ES', 'Resume este texto de forma breve y concisa:\\n\\n ##text## \\n\\nEl tono del resumen debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(389, '11', 'sv-SE', 'Sammanfatta den här texten på ett kortfattat sätt:\\n\\n ##text## \\n\\nTonen i sammanfattningen måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(390, '11', 'tr-TR', 'Bu metni kısa ve öz bir şekilde özetleyin:\\n\\n ##text## \\n\\nÖzetin tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(391, '11', 'pt-BR', 'Resuma este texto de forma curta e concisa:\\n\\n ##text## \\n\\nO tom do resumo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(392, '11', 'ro-RO', 'Rezumați acest text într-un mod scurt și concis:\\n\\n ##text## \\n\\nTonul rezumatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(393, '11', 'vi-VN', 'Tóm tắt văn bản này một cách ngắn gọn súc tích:\\n\\n ##text## \\n\\nGiọng tóm tắt phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(394, '11', 'sw-KE', 'Fanya muhtasari wa maandishi haya kwa njia fupi fupi:\\n\\n ##text## \\n\\nToni ya muhtasari lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(395, '11', 'sl-SI', 'Povzemite to besedilo na kratek jedrnat način:\\n\\n ##text## \\n\\nTon povzetka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(396, '11', 'th-TH', 'สรุปข้อความนี้อย่างสั้นกระชับ:\\n\\n ##text## \\n\\nเสียงสรุปต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(397, '11', 'uk-UA', 'Коротко викладіть цей текст:\\n\\n ##text## \\n\\nТон резюме має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(398, '11', 'lt-LT', 'Trumpai glaustai apibendrinkite šį tekstą:\\n\\n ##text## \\n\\nSantraukos tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(399, '11', 'bg-BG', 'Резюмирайте този текст по кратък стегнат начин:\\n\\n ##text## \\n\\nТонът на обобщението трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(400, '12', 'en-US', 'Write a long creative product description for: ##title## \\n\\nTarget audience is: ##audience## \\n\\nUse this description: ##description## \\n\\nTone of generated text must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(401, '12', 'ar-AE', 'اكتب وصفًا إبداعيًا طويلًا للمنتج لـ: ##title## \\n\\nالجمهور المستهدف هو: ##audience## \\n\\nاستخدم هذا الوصف:\". $description. \"\\n\\nيجب أن تكون نغمة النص الناتج:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(402, '12', 'cmn-CN', '为:写一个长的创意产品描述 ##title## \\n\\n目标受众是: ##audience## \\n\\n使用这个描述: ##description## \\n\\n生成文本的基调必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(403, '12', 'hr-HR', 'Napišite dugačak kreativni opis proizvoda za: ##title## \\n\\nCiljana publika je: ##audience## \\n\\nKoristite ovaj opis: ##description## \\n\\nTon generiranog teksta mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(404, '12', 'cs-CZ', 'Napište dlouhý popis kreativního produktu pro: ##title## \\n\\nCílové publikum je: ##audience## \\n\\nPoužijte tento popis: ##description## \\n\\nTón generovaného textu musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(405, '12', 'da-DK', 'Skriv en lang kreativ produktbeskrivelse til: ##title## \\n\\nMålgruppe er: ##audience## \\n\\nBrug denne beskrivelse: ##description## \\n\\nTone i genereret tekst skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(406, '12', 'nl-NL', 'Schrijf een lange creatieve productbeschrijving voor: ##title## \\n\\nDoelgroep is: ##audience## \\n\\nGebruik deze omschrijving: ##description## \\n\\nDe toon van gegenereerde tekst moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(407, '12', 'et-EE', 'Kirjutage pikk loominguline tootekirjeldus: ##title## \\n\\nSihtpublik on: ##audience## \\n\\nKasutage seda kirjeldust: ##description## \\n\\nLoodud teksti toon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(408, '12', 'fi-FI', 'Kirjoita pitkä luova tuotekuvaus: ##title## \\n\\nKohdeyleisö on: ##audience## \\n\\nKäytä tätä kuvausta: ##description## \\n\\nLuodun tekstin äänen tulee olla:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(409, '12', 'fr-FR', 'Rédigez une longue description de produit créative pour : ##title## \\n\\nLe public cible est : ##audience## \\n\\nUtilisez cette description : ##description## \\n\\nLe ton du texte généré doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(410, '12', 'de-DE', 'Schreiben Sie eine lange kreative Produktbeschreibung für: ##title## \\n\\nZielpublikum ist: ##audience## \\n\\nVerwenden Sie diese Beschreibung: ##description## \\n\\nTon des generierten Textes muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(411, '12', 'el-GR', 'Γράψτε μια μεγάλη περιγραφή δημιουργικού προϊόντος για: ##title## \\n\\nΤο κοινό-στόχος είναι: ##audience## \\n\\nΧρησιμοποιήστε αυτήν την περιγραφή: ##description## \\n\\nΟ τόνος του κειμένου που δημιουργείται πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(412, '12', 'he-IL', 'כתוב תיאור מוצר יצירתי ארוך עבור: ##title## \\n\\nקהל היעד הוא: ##audience## \\n\\nהשתמש בתיאור הזה: ##description## \\n\\nטון הטקסט שנוצר חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(413, '12', 'hi-IN', 'इसके लिए एक लंबा रचनात्मक उत्पाद विवरण लिखें: ##title## \\n\\nलक्षित दर्शक हैं: ##audience## \\n\\nइस विवरण का उपयोग करें: ##description## \\n\\nजनरेट किए गए टेक्स्ट का टोन होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(414, '12', 'hu-HU', 'Írjon hosszú kreatív termékleírást a következőhöz: ##title## \\n\\nA célközönség: ##audience## \\n\\nHasználja ezt a leírást: ##description## \\n\\nA generált szöveg hangjának a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(415, '12', 'is-IS', 'Skrifaðu langa skapandi vörulýsingu fyrir: ##title## \\n\\nMarkhópur er: ##audience## \\n\\nNotaðu þessa lýsingu: ##description## \\n\\nTónn texta sem myndast verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(416, '12', 'id-ID', 'Tulis deskripsi produk kreatif yang panjang untuk: ##title## \\n\\nTarget audiens adalah: ##audience## \\n\\nGunakan deskripsi ini: ##description## \\n\\nNada teks yang dihasilkan harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(417, '12', 'it-IT', 'Scrivi una lunga descrizione del prodotto creativo per: ##title## \\n\\nIl pubblico di destinazione è: ##audience## \\n\\nUsa questa descrizione: ##description## \\n\\nIl tono del testo generato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(418, '12', 'ja-JP', '次の製品の長いクリエイティブな説明を書いてください: ##title## \\n\\n対象者: ##audience## \\n\\nこの説明を使用してください: ##description## \\n\\n生成されたテキストのトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(419, '12', 'ko-KR', '다음에 대한 길고 창의적인 제품 설명 작성: ##title## \\n\\n대상은: ##audience## \\n\\n이 설명을 사용하십시오: ##description## \\n\\n생성된 텍스트의 톤은 다음과 같아야 합니다.\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(420, '12', 'ms-MY', 'Tulis penerangan produk kreatif yang panjang untuk: ##title## \\n\\nKhalayak sasaran ialah: ##audience## \\n\\nGunakan penerangan ini: ##description## \\n\\nNada teks yang dijana mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(421, '12', 'nb-NO', 'Skriv en lang kreativ produktbeskrivelse for: ##title## \\n\\nMålgruppen er: ##audience## \\n\\nBruk denne beskrivelsen: ##description## \\n\\nTone i generert tekst må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(422, '12', 'pl-PL', 'Napisz długi kreatywny opis produktu dla: ##title## \\n\\nDocelowi odbiorcy to: ##audience## \\n\\nUżyj tego opisu: ##description## \\n\\nTon generowanego tekstu musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(423, '12', 'pt-PT', 'Escreva uma longa descrição de produto criativo para: ##title## \\n\\nO público-alvo é: ##audience## \\n\\nUse esta descrição: ##description## \\n\\nO tom do texto gerado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(424, '12', 'ru-RU', 'Напишите длинное креативное описание продукта для: ##title## \\n\\nЦелевая аудитория: ##audience## \\n\\nИспользуйте это описание: ##description## \\n\\nТон генерируемого текста должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(425, '12', 'es-ES', 'Escriba una descripción de producto creativa larga para: ##title## \\n\\nEl público objetivo es: ##audience## \\n\\nUsar esta descripción: ##description## \\n\\nEl tono del texto generado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(426, '12', 'sv-SE', 'Skriv en lång kreativ produktbeskrivning för: ##title## \\n\\nMålgruppen är: ##audience## \\n\\nAnvänd denna beskrivning: ##description## \\n\\nTonen i genererad text måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(427, '12', 'tr-TR', 'Şunun için uzun bir yaratıcı ürün açıklaması yazın: ##title## \\n\\nHedef kitle: ##audience## \\n\\nBu açıklamayı kullanın: ##description## \\n\\nOluşturulan metnin tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(428, '12', 'pt-BR', 'Escreva uma longa descrição de produto criativo para: ##title## \\n\\nO público-alvo é: ##audience## \\n\\nUse esta descrição: ##description## \\n\\nO tom do texto gerado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(429, '12', 'ro-RO', 'Scrieți o descriere creativă lungă a produsului pentru: ##title## \\n\\nPublicul țintă este: ##audience## \\n\\nUtilizați această descriere: ##description## \\n\\nTonul textului generat trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(430, '12', 'vi-VN', 'Viết một đoạn mô tả sản phẩm sáng tạo dài cho: ##title## \\n\\nĐối tượng mục tiêu là: ##audience## \\n\\nSử dụng mô tả này: ##description## \\n\\nÂm của văn bản được tạo phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(431, '12', 'sw-KE', 'Andika maelezo marefu ya bidhaa ya ubunifu kwa: ##title## \\n\\nHadhira inayolengwa ni: ##audience## \\n\\nTumia maelezo haya: ##description## \\n\\nToni ya maandishi yanayozalishwa lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(432, '12', 'sl-SI', 'Napišite dolg ustvarjalni opis izdelka za: ##title## \\n\\nCiljna publika je: ##audience## \\n\\nUporabi ta opis: ##description## \\n\\nTon ustvarjenega besedila mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(433, '12', 'th-TH', 'เขียนคำอธิบายผลิตภัณฑ์ที่สร้างสรรค์แบบยาวสำหรับ: ##title## \\n\\nกลุ่มเป้าหมายคือ: ##audience## \\n\\nใช้คำอธิบายนี้:\" .$description. \"\\n\\nเสียงของข้อความที่สร้างขึ้นต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(434, '12', 'uk-UA', 'Напишіть довгий креативний опис продукту для: ##title## \\n\\nЦільова аудиторія: ##audience## \\n\\nВикористовуйте цей опис: ##description## \\n\\nТон створеного тексту має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(435, '12', 'lt-LT', 'Напишіть довгий креативний опис продукту для: ##title## \\n\\nЦільова аудиторія: ##audience## \\n\\nВикористовуйте цей опис: ##description## \\n\\nТон створеного тексту має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(436, '12', 'bg-BG', 'Напишете дълго творческо описание на продукта за: ##title## \\n\\nЦелевата аудитория е: ##audience## \\n\\nИзползвайте това описание: ##description## \\n\\nТонът на генерирания текст трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(437, '13', 'en-US', 'Generate cool, creative, and catchy names for startup description: ##description## \\n\\nSeed words: ##keywords## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(438, '13', 'ar-AE', 'أنشئ أسماء رائعة ومبتكرة وجذابة لوصف بدء التشغيل: ##description## \\n\\nكلمات المصدر: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(439, '13', 'cmn-CN', '为启动描述生成酷炫、有创意且朗朗上口的名称: ##description## \\n\\n种子词: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(440, '13', 'hr-HR', 'Generiraj cool, kreativna i privlačna imena za opis pokretanja: ##description## \\n\\nPočetne riječi: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(441, '13', 'cs-CZ', 'Vygenerujte skvělé, kreativní a chytlavé názvy pro popis spuštění: ##description## \\n\\nVýchozí slova: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(442, '13', 'da-DK', 'Generer seje, kreative og fængende navne til opstartsbeskrivelse: ##description## \\n\\nSeed ord: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(443, '13', 'nl-NL', 'Genereer coole, creatieve en pakkende namen voor opstartbeschrijving: ##description## \\n\\nZaalwoorden: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(444, '13', 'et-EE', 'Looge käivituskirjelduse jaoks lahedad, loomingulised ja meeldejäävad nimed: ##description## \\n\\nAlgussõnad: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(445, '13', 'fi-FI', 'Luo siistejä, luovia ja tarttuvia nimiä käynnistyksen kuvaukselle: ##description## \\n\\nSiemensanat: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(446, '13', 'fr-FR', 'Générez des noms sympas, créatifs et accrocheurs pour la description de démarrage : ##description## \\n\\nMots clés : ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(447, '13', 'de-DE', 'Erzeuge coole, kreative und einprägsame Namen für die Startup-Beschreibung: ##description## \\n\\nStartwörter: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(448, '13', 'el-GR', 'Δημιουργήστε όμορφα, δημιουργικά και ελκυστικά ονόματα για περιγραφή εκκίνησης: ##description## \\n\\nΔείτε λέξεις: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(449, '13', 'he-IL', 'ור שמות מגניבים, יצירתיים וקליטים לתיאור ההפעלה: ##description## \n\nמילות הזרע: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(450, '13', 'hi-IN', 'स्टार्टअप विवरण के लिए बढ़िया, रचनात्मक और आकर्षक नाम उत्पन्न करें: ##description## \n\nबीज शब्द: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(451, '13', 'hu-HU', 'Generál menő, kreatív és fülbemászó neveket az indítási leíráshoz: ##description## \n\nKezdőszavak: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(452, '13', 'is-IS', 'Búðu til flott, skapandi og grípandi nöfn fyrir ræsingarlýsingu: ##description## \n\n Fræorð: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(453, '13', 'id-ID', 'Hasilkan nama yang keren, kreatif, dan menarik untuk deskripsi startup: ##description## \n\nBenih kata: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(454, '13', 'it-IT', 'Genera nomi interessanti, creativi e accattivanti per la descrizione dell avvio: ##description## \n\nParole seme: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(455, '13', 'ja-JP', 'スタートアップの説明にクールでクリエイティブでキャッチーな名前を付けてください: ##description## \n\nシード ワード: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(456, '13', 'ko-KR', '스타트업 설명을 위한 멋지고 창의적이며 기억하기 쉬운 이름 생성: ##description## \n\n시드 단어: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(457, '13', 'ms-MY', 'Jana nama yang keren, kreatif dan menarik untuk penerangan permulaan: ##description## \n\nPerkataan benih: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(458, '13', 'nb-NO', 'Generer kule, kreative og fengende navn for oppstartsbeskrivelse: ##description## \n\nFrøord: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(459, '13', 'pl-PL', 'Wygeneruj fajne, kreatywne i chwytliwe nazwy dla opisu startowego: ##description## \n\nSłowa źródłowe: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(460, '13', 'pt-PT', 'Gerar nomes legais, criativos e atraentes para a descrição da inicialização: ##description## \n\nPalavras iniciais: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(461, '13', 'ru-RU', 'Создавайте крутые, креативные и запоминающиеся названия для описания стартапа: ##description## \n\nИсходные слова: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(462, '13', 'es-ES', 'Genera nombres geniales, creativos y pegadizos para la descripción de inicio: ##description## \n\nPalabras semilla: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(463, '13', 'sv-SE', 'Skapa coola, kreativa och catchy namn för startbeskrivning: ##description## \n\nFröord: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(464, '13', 'tr-TR', 'Başlangıç açıklaması için havalı, yaratıcı ve akılda kalıcı adlar oluşturun: ##description## \n\nÖz sözcükler: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(465, '13', 'pt-BR', 'Gerar nomes legais, criativos e atraentes para a descrição da inicialização: ##description## \n\nPalavras iniciais: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(466, '13', 'ro-RO', 'Generează nume interesante, creative și atrăgătoare pentru descrierea startup-ului: ##description## \n\nCuvinte semințe: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(467, '13', 'vi-VN', 'Tạo tên thú vị, sáng tạo và hấp dẫn cho phần mô tả công ty khởi nghiệp:##description## \n\nTừ giống: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(468, '13', 'sw-KE', 'Tengeneza majina mazuri, ya ubunifu na ya kuvutia kwa maelezo ya kuanza: ##description## \n\nManeno ya mbegu: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(469, '13', 'sl-SI', 'Ustvarite kul, kreativna in privlačna imena za opis zagona: ##description## \n\nSemenske besede: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(470, '13', 'th-TH', 'สร้างชื่อที่เจ๋ง สร้างสรรค์ และติดหูสำหรับคำอธิบายการเริ่มต้น: ##description## \n\nคำที่ใช้: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(471, '13', 'uk-UA', 'Створюйте круті, креативні та привабливі назви для опису запуску: ##description## \n\nПочаткові слова: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(472, '13', 'lt-LT', 'Generuokite šaunius, kūrybingus ir patrauklius paleidimo aprašymo pavadinimus:##description## \n\nPradiniai žodžiai: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(473, '13', 'bg-BG', 'Генерирайте страхотни, креативни и запомнящи се имена за описание при стартиране: ##description## \n\nСедлови думи: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(474, '14', 'en-US', 'Create creative product names: ##description## \n\nSeed words: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(475, '14', 'ar-AE', 'إنشاء أسماء المنتجات الإبداعية: ##description## \n\n كلمات المصدر: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(476, '14', 'cmn-CN', '创建有创意的产品名称: ##description## \n\n种子词:##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(477, '14', 'hr-HR', 'Stvorite kreativne nazive proizvoda: ##description## \n\nPočetne riječi: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(478, '14', 'cs-CZ', 'Vytvořit názvy kreativních produktů: ##description## \n\nVýchozí slova: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(479, '14', 'da-DK', 'Opret kreative produktnavne: ##description## \n\nSeed ord: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(480, '14', 'nl-NL', 'Creëer creatieve productnamen: ##description## \n\nZaalwoorden: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(481, '14', 'et-EE', 'Loo loomingulised tootenimed: ##description## \n\nAlgussõnad: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(482, '14', 'fi-FI', 'Luo luovia tuotenimiä: ##description## \n\nSiemensanat: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(483, '14', 'fr-FR', 'Créer des noms de produits créatifs : ##description## \n\nMots clés : ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(484, '14', 'de-DE', 'Kreative Produktnamen erstellen: ##description## \n\nStartwörter: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(485, '14', 'el-GR', 'Δημιουργία δημιουργικών ονομάτων προϊόντων: ##description## \n\nΔείτε λέξεις: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(486, '14', 'he-IL', 'צור שמות מוצרים יצירתיים: ##description## \n\nמילות הזרע: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(487, '14', 'hi-IN', 'रचनात्मक उत्पाद नाम बनाएँ: ##description## \n\nबीज शब्द:##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(488, '14', 'hu-HU', 'Kreatív terméknevek létrehozása: ##description## \n\nKiinduló szavak: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(489, '14', 'is-IS', 'Búa til skapandi vöruheiti: ##description## \n\nSeed orð: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(490, '14', 'id-ID', 'Buat nama produk kreatif: ##description## \n\nBenih kata: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(491, '14', 'it-IT', 'Crea nomi di prodotti creativi: ##description## \n\nParole iniziali: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(492, '14', 'ja-JP', 'クリエイティブな商品名を作成する: ##description## \n\nシード ワード: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(493, '14', 'ko-KR', '창의적인 제품 이름 만들기: ##description## \n\n시드 단어: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(494, '14', 'ms-MY', 'Buat nama produk kreatif: ##description## \n\nPerkataan benih: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(495, '14', 'nb-NO', 'Lag kreative produktnavn: ##description## \n\nSeed ord: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(496, '14', 'pl-PL', 'Utwórz kreatywne nazwy produktów: ##description## \n\nSłowa źródłowe: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(497, '14', 'pt-PT', 'Criar nomes de produtos criativos: ##description## \n\nPalavras iniciais: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(498, '14', 'ru-RU', 'Создайте креативные названия продуктов: ##description## \n\nИсходные слова: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(499, '14', 'es-ES', 'Crear nombres de productos creativos: ##description## \n\nPalabras semilla: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(500, '14', 'sv-SE', 'Skapa kreativa produktnamn: ##description## \n\nFröord: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(501, '14', 'tr-TR', 'Yaratıcı ürün adları oluşturun: ##description## \n\nÖz sözcükler: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(502, '14', 'pt-BR', 'Criar nomes de produtos criativos: ##description## \n\nPalavras iniciais: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(503, '14', 'ro-RO', 'Creați nume de produse creative: ##description## \n\nCuvinte semințe: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(504, '14', 'vi-VN', 'Tạo tên sản phẩm sáng tạo: ##description## \n\nTừ giống: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(505, '14', 'sw-KE', 'Unda majina ya ubunifu ya bidhaa: ##description## \n\nManeno ya mbegu: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(506, '14', 'sl-SI', 'Ustvarite ustvarjalna imena izdelkov: ##description## \n\nSemenske besede: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(507, '14', 'th-TH', 'สร้างชื่อผลิตภัณฑ์อย่างสร้างสรรค์:##description## \n\nคำที่ใช้: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(508, '14', 'uk-UA', 'Створіть творчі назви продуктів: ##description## \n\nПочаткові слова: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(509, '14', 'lt-LT', 'Sukurkite kūrybinius produktų pavadinimus: ##description## \n\nPradiniai žodžiai: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(510, '14', 'bg-BG', 'Създайте творчески имена на продукти: ##description## \n\nСедлови думи: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(511, '15', 'en-US', 'Write SEO meta description for:\n\n ##description## \n\nWebsite name is:\n ##title## \n\nSeed words:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(512, '15', 'ar-AE', 'اكتب وصف تعريف SEO لـ:\n\n ##description## \n\nاسم موقع الويب هو:\n ##title## \n\nكلمات المصدر:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(513, '15', 'cmn-CN', '为以下内容编写 SEO 元描述:\n\n ##description## \n\n 网站名称是:\n ##title## \n\n 种子词:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(514, '15', 'hr-HR', 'Napišite SEO meta opis za:\n\n ##description## \n\n Naziv web stranice je:\n ##title## \n\n Početne riječi:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(515, '15', 'cs-CZ', 'Zapsat SEO meta popis pro:\n\n ##description## \n\n Název webu je:\n ##title## \n\n Výchozí slova:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(516, '15', 'da-DK', 'Skriv SEO-metabeskrivelse for:\n\n ##description## \n\n Webstedets navn er:\n ##title## \n\n Frøord:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(517, '15', 'nl-NL', 'Schrijf SEO-metabeschrijving voor:\n\n ##description## \n\n Websitenaam is:\n ##title## \n\n Zaadwoorden:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(518, '15', 'et-EE', 'Kirjutage SEO metakirjeldus:\n\n ##description## \n\n Veebisaidi nimi on:\n ##title## \n\n Algsõnad:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(519, '15', 'fi-FI', 'Kirjoita hakukoneoptimoinnin metakuvaus kohteelle:\n\n ##description## \n\n Verkkosivuston nimi on:\n ##title## \n\n Alkusanat:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(520, '15', 'fr-FR', 'Ecrire une méta description SEO pour :\n\n ##description## \n\n Le nom du site Web est :\n ##title## \n\n Mots clés :\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(521, '15', 'de-DE', 'SEO-Metabeschreibung schreiben für:\n\n ##description## \n\n Website-Name ist:\n ##title## \n\n Ausgangswörter:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(522, '15', 'el-GR', 'Γράψτε μετα-περιγραφή SEO για:\n\n ##description## \n\n Το όνομα ιστότοπου είναι:\n ##title## \n\n Βασικές λέξεις:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(523, '15', 'he-IL', 'כתוב מטא תיאור SEO עבור:\n\n ##description## \n\n שם האתר הוא:\n ##title## \n\n מילות זרע:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(524, '15', 'hi-IN', 'इसके लिए SEO मेटा विवरण लिखें:\n\n ##description## \n\n वेबसाइट का नाम है:\n ##title## \n\n बीज शब्द:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(525, '15', 'hu-HU', 'Írjon SEO meta leírást:\n\n ##description## \n\n A webhely neve:\n ##title## \n\n Kezdőszavak:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(526, '15', 'is-IS', 'Skrifaðu SEO lýsilýsingu fyrir:\n\n ##description## \n\n Heiti vefsvæðis er:\n ##title## \n\n Fræorð:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(527, '15', 'id-ID', 'Tulis deskripsi meta SEO untuk:\n\n ##description## \n\n Nama situs web adalah:\n ##title## \n\n Kata bibit:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(528, '15', 'it-IT', 'Scrivi meta descrizione SEO per:\n\n ##description## \n\n Il nome del sito web è:\n ##title## \n\n Parole seme:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(529, '15', 'ja-JP', '以下の SEO メタ ディスクリプションを書き込みます:\n\n ##description## \n\n ウェブサイト名:\n ##title## \n\n シード ワード:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(530, '15', 'ko-KR', '다음에 대한 SEO 메타 설명 쓰기:\n\n ##description## \n\n 웹사이트 이름:\n ##title## \n\n 시드 단어:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(531, '15', 'ms-MY', 'Tulis perihalan meta SEO untuk:\n\n ##description## \n\n Nama tapak web ialah:\n ##title## \n\n Perkataan benih:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(532, '15', 'nb-NO', 'Skriv SEO-metabeskrivelse for:\n\n ##description## \n\n Nettstedets navn er:\n ##title## \n\n Frøord:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(533, '15', 'pl-PL', 'Napisz metaopis SEO dla:\n\n ##description## \n\n Nazwa witryny to:\n ##title## \n\n Słowa źródłowe:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(534, '15', 'pt-PT', 'Escreva a meta descrição de SEO para:\n\n ##description## \n\n O nome do site é:\n ##title## \n\n Palavras-chave:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(535, '15', 'ru-RU', 'Напишите мета-описание SEO для:\n\n ##description## \n\n Имя веб-сайта:\n ##title## \n\n Исходные слова:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(536, '15', 'es-ES', 'Escribir meta descripción SEO para:\n\n ##description## \n\n El nombre del sitio web es:\n ##title## \n\n Palabras semilla:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(537, '15', 'sv-SE', 'Skriv SEO-metabeskrivning för:\n\n ##description## \n\n Webbplatsens namn är:\n ##title## \n\n Fröord:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(538, '15', 'tr-TR', 'Şunun için SEO meta açıklaması yaz:\n\n ##description## \n\n Web sitesi adı:\n ##title## \n\n Çekirdek sözcükler:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(539, '15', 'pt-BR', 'Escreva a meta descrição de SEO para:\n\n ##description## \n\n O nome do site é:\n ##title## \n\n Palavras-chave:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(540, '15', 'ro-RO', 'Scrieți metadescriere SEO pentru:\n\n ##description## \n\nNumele site-ului este:\n ##title## \n\n nevoie de cuvinte:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(541, '15', 'vi-VN', 'Viết mô tả meta SEO cho:\n\n ##description## \n\nTên trang web là:\n ##title## \n\ncần từ:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(542, '15', 'sw-KE', 'Andika maelezo ya meta ya SEO ya:\n\n ##description## \n\nJina la tovuti ni:\n ##title## \n\nManeno ya mbegu:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(543, '15', 'sl-SI', 'Napišite meta opis SEO za:\n\n ##description## \n\nIme spletne strani je:\n ##title## \n\nSemenske besede:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(544, '15', 'th-TH', 'เขียนคำอธิบายเมตา SEO สำหรับ:\n\n ##description## \n\nชื่อเว็บไซต์คือ:\n ##title## \n\nคำเมล็ด:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(545, '15', 'uk-UA', 'Напишіть метаопис SEO для:\n\n ##description## \n\nНазва сайту:\n ##title## \n\nНасіннєві слова:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(546, '15', 'lt-LT', 'Parašykite SEO meta aprašymą:\n\n ##description## \n\nSvetainės pavadinimas yra:\n ##title## \n\nPradiniai žodžiai:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(547, '15', 'bg-BG', 'Напишете SEO мета описание за:\n\n ##description## \n\nИмето на уебсайта е:\n ##title## \n\nЗародишни думи:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(548, '16', 'en-US', 'Generate list of 10 frequently asked questions based on description:\n\n ##description## \n\n Product name:\n ##title## \n\n Tone of voice of the questions must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(549, '16', 'ar-AE', 'قم بإنشاء قائمة من 10 أسئلة متداولة بناءً على الوصف:\n\n ##description## \n\nاسم المنتج:\n ##title## \n\nيجب أن تكون نبرة صوت الأسئلة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(550, '16', 'cmn-CN', '根据描述生成 10 个常见问题列表:\n\n ##description## \n\n 产品名称:\n ##title## \n\n 提问的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(551, '16', 'hr-HR', 'Generiraj popis od 10 često postavljanih pitanja na temelju opisa:\n\n ##description## \n\n Naziv proizvoda:\n ##title## \n\n Ton glasa pitanja mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(552, '16', 'cs-CZ', 'Vygenerujte seznam 10 často kladených otázek na základě popisu:\n\n ##description## \n\n Název produktu:\n ##title## \n\n Tón hlasu otázek musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(553, '16', 'da-DK', 'Generer en liste med 10 ofte stillede spørgsmål baseret på beskrivelse:\n\n ##description## \n\n Produktnavn:\n ##title## \n\n Tonen i spørgsmålene skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(554, '16', 'nl-NL', 'Genereer een lijst met 10 veelgestelde vragen op basis van beschrijving:\n\n ##description## \n\n Productnaam:\n ##title## \n\n Tone of voice van de vragen moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(555, '16', 'et-EE', 'Loo kirjelduse põhjal 10 korduma kippuva küsimuse loend:\n\n ##description## \n\n Toote nimi:\n ##title## \n\n Küsimuste hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(556, '16', 'fi-FI', 'Luo luettelo 10 usein kysytystä kysymyksestä kuvauksen perusteella:\n\n ##description## \n\n Tuotteen nimi:\n ##title## \n\n Kysymysten äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(557, '16', 'fr-FR', 'Générer une liste de 10 questions fréquemment posées en fonction de la description :\n\n ##description## \n\n Nom du produit :\n ##title## \n\n Le ton de la voix des questions doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(558, '16', 'de-DE', 'Erzeuge eine Liste mit 10 häufig gestellten Fragen basierend auf der Beschreibung:\n\n ##description## \n\n Produktname:\n ##title## \n\n Tonfall der Fragen muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(559, '16', 'el-GR', 'Δημιουργία λίστας 10 συχνών ερωτήσεων με βάση την περιγραφή:\n\n ##description## \n\n Όνομα προϊόντος:\n ##title## \n\n Ο τόνος της φωνής των ερωτήσεων πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(560, '16', 'he-IL', 'צור רשימה של 10 שאלות נפוצות על סמך תיאור:\n\n ##description## \n\n שם המוצר:\n ##title## \n\n טון הדיבור של השאלות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(561, '16', 'hi-IN', 'विवरण के आधार पर अक्सर पूछे जाने वाले 10 प्रश्नों की सूची तैयार करें:\n\n ##description## \n\n उत्पाद का नाम:\n ##title## \n\n प्रश्नों का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(562, '16', 'hu-HU', 'Létrehozzon 10 gyakran ismételt kérdést tartalmazó listát a leírás alapján:\n\n ##description## \n\n Terméknév:\n ##title## \n\n A kérdések hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(563, '16', 'is-IS', 'Búðu til lista yfir 10 algengar spurningar byggðar á lýsingu:\n\n ##description## \n\n Vöruheiti:\n ##title## \n\n Röddtónn spurninganna verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(564, '16', 'id-ID', 'Buat daftar 10 pertanyaan umum berdasarkan deskripsi:\n\n ##description## \n\n Nama produk:\n ##title## \n\n Nada suara pertanyaan harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(565, '16', 'it-IT', 'Genera elenco di 10 domande frequenti in base alla descrizione:\n\n ##description## \n\n Nome prodotto:\n ##title## \n\n Il tono di voce delle domande deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(566, '16', 'ja-JP', '説明に基づいて 10 のよくある質問のリストを生成します:\n\n ##description## \n\n 製品名:\n ##title## \n\n 質問のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(567, '16', 'ko-KR', '설명에 따라 자주 묻는 질문 10개 목록 생성:\n\n ##description## \n\n 제품 이름:\n ##title## \n\n 질문의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(568, '16', 'ms-MY', 'Jana senarai 10 soalan lazim berdasarkan penerangan:\n\n ##description## \n\n Nama produk:\n ##title## \n\n Nada suara soalan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(569, '16', 'nb-NO', 'Generer liste over 10 vanlige spørsmål basert på beskrivelse:\n\n ##description## \n\n Produktnavn:\n ##title## \n\n Tonen i spørsmålene må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(570, '16', 'pl-PL', 'Wygeneruj listę 10 najczęściej zadawanych pytań na podstawie opisu:\n\n ##description## \n\n Nazwa produktu:\n ##title## \n\n Ton pytań musi być następujący:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(571, '16', 'pt-PT', 'Gerar lista de 10 perguntas frequentes com base na descrição:\n\n ##description## \n\n Nome do produto:\n ##title## \n\n Tom de voz das perguntas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(572, '16', 'ru-RU', 'Создать список из 10 часто задаваемых вопросов на основе описания:\n\n ##description## \n\n Название продукта:\n ##title## \n\n Тон вопросов должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(573, '16', 'es-ES', 'Generar una lista de 10 preguntas frecuentes según la descripción:\n\n ##description## \n\n Nombre del producto:\n ##title## \n\n El tono de voz de las preguntas debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(574, '16', 'sv-SE', 'Skapa en lista med 10 vanliga frågor baserat på beskrivning:\n\n ##description## \n\n Produktnamn:\n ##title## \n\n Tonen i frågorna måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(575, '16', 'tr-TR', 'Açıklamaya göre sık sorulan 10 sorudan oluşan bir liste oluşturun:\n\n ##description## \n\n Ürün adı:\n ##title## \n\n Soruların ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(576, '16', 'pt-BR', 'Gerar lista de 10 perguntas frequentes com base na descrição:\n\n ##description## \n\n Nome do produto:\n ##title## \n\n Tom de voz das perguntas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(577, '16', 'ro-RO', 'Generează o listă cu 10 întrebări frecvente pe baza descrierii:\n\n ##description## \n\n Nume produs:\n ##title## \n\n Tonul de voce al întrebărilor trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(578, '16', 'vi-VN', 'Tạo danh sách 10 câu hỏi thường gặp dựa trên mô tả:\n\n ##description## \n\n Tên sản phẩm:\n ##title## \n\n Giọng điệu của câu hỏi phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(579, '16', 'sw-KE', 'Tengeneza orodha ya maswali 10 yanayoulizwa mara kwa mara kulingana na maelezo:\n\n ##description## \n\n Jina la bidhaa:\n ##title## \n\n Toni ya sauti ya maswali lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(580, '16', 'sl-SI', 'Ustvari seznam 10 pogosto zastavljenih vprašanj na podlagi opisa:\n\n ##description## \n\n Ime izdelka:\n ##title## \n\n Ton glasu vprašanj mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(581, '16', 'th-TH', 'สร้างรายการคำถามที่พบบ่อย 10 รายการตามคำอธิบาย:\n\n ##description## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n เสียงของคำถามต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(582, '16', 'uk-UA', 'Створити список із 10 поширених запитань на основі опису:\n\n ##description## \n\n Назва продукту:\n ##title## \n\n Тон голосу запитань має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(583, '16', 'lt-LT', 'Sukurkite 10 dažniausiai užduodamų klausimų sąrašą pagal aprašymą:\n\n ##description## \n\n Produkto pavadinimas:\n ##title## \n\n Klausimų balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(584, '16', 'bg-BG', 'Генериране на списък от 10 често задавани въпроса въз основа на описание:\n\n ##description## \n\n Име на продукта:\n ##title## \n\n Тонът на гласа на въпросите трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(585, '17', 'en-US', 'Generate creative 5 answers to question:\n\n ##question## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the answers must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(586, '17', 'ar-AE', 'إنشاء 5 إجابات إبداعية على السؤال:\n\n ##question## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نبرة صوت الإجابات:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(587, '17', 'cmn-CN', '为问题生成有创意的 5 个答案:\n\n ##question## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 回答的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(588, '17', 'hr-HR', 'Generiraj kreativnih 5 odgovora na pitanje:\n\n ##question## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa odgovora mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(589, '17', 'cs-CZ', 'Vygenerujte kreativu 5 odpovědí na otázku:\n\n ##question## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu odpovědí musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(590, '17', 'da-DK', 'Generer kreative 5 svar på spørgsmål:\n\n ##question## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i svarene skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(591, '17', 'nl-NL', 'Genereer creatieve 5 antwoorden op vraag:\n\n ##question## \n\n Productnaam:\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de antwoorden moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(592, '17', 'et-EE', 'Loo 5 loomingulist vastust küsimusele:\n\n ##question## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Vastuste hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(593, '17', 'fi-FI', 'Luo luova 5 vastausta kysymykseen:\n\n ##question## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Vastausten äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(594, '17', 'fr-FR', 'Générer la création 5 réponses à la question :\n\n ##question## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix des réponses doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(595, '17', 'de-DE', 'Erzeuge kreative 5 Antworten auf Frage:\n\n ##question## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Antworten muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(596, '17', 'el-GR', 'Δημιουργία δημιουργικού 5 απαντήσεων στην ερώτηση:\n\n ##question## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής των απαντήσεων πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(597, '17', 'he-IL', 'צור קריאייטיב 5 תשובות לשאלה:\n\n ##question## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n טון הדיבור של התשובות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(598, '17', 'hi-IN', 'प्रश्न के रचनात्मक 5 उत्तर उत्पन्न करें:\n\n ##question## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n जवाबों के स्वर इस प्रकार होने चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(599, '17', 'hu-HU', 'Kreatív 5 válasz létrehozása a következő kérdésre:\n\n ##question## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A válaszok hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(600, '17', 'is-IS', 'Búðu til skapandi 5 svör við spurningu:\n\n ##question## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Röddtónn svara verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(601, '17', 'id-ID', 'Hasilkan 5 jawaban kreatif untuk pertanyaan:\n\n ##question## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara jawaban harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(602, '17', 'it-IT', 'Genera creatività 5 risposte alla domanda:\n\n ##question## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce delle risposte deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(603, '17', 'ja-JP', '質問に対する創造的な 5 つの回答を生成します:\n\n ##question## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 回答の声のトーンは次のとおりでなければなりません:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(604, '17', 'ko-KR', '질문에 대한 창의적인 5개 답변 생성:\n\n ##question## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 답변의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(605, '17', 'ms-MY', 'Jana 5 jawapan kreatif untuk soalan:\n\n ##question## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara jawapan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(606, '17', 'nb-NO', 'Generer kreative 5 svar på spørsmål:\n\n ##question## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen til svarene må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(607, '17', 'pl-PL', 'Wygeneruj kreację 5 odpowiedzi na pytanie:\n\n ##question## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton odpowiedzi musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(608, '17', 'pt-PT', 'Gerar criativo 5 respostas para a pergunta:\n\n ##question## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n Tom de voz das respostas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(609, '17', 'ru-RU', 'Сгенерировать креативные 5 ответов на вопрос:\n\n ##question## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон голоса ответов должен быть:\n ##tone_language## \\п\\п', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(610, '17', 'es-ES', 'Generar 5 respuestas creativas a la pregunta:\n\n ##question## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz de las respuestas debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(611, '17', 'sv-SE', 'Generera kreativa fem svar på frågan:\n\n ##question## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i svaren måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(612, '17', 'tr-TR', 'Soruya yaratıcı 5 yanıt oluşturun:\n\n ##question## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Cevapların ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(613, '17', 'pt-BR', 'Gerar criativo 5 respostas para a pergunta:\n\n ##question## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n Tom de voz das respostas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(614, '17', 'ro-RO', 'Generează reclame 5 răspunsuri la întrebarea:\n\n ##question## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii răspunsurilor trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(615, '17', 'vi-VN', 'Tạo 5 câu trả lời sáng tạo cho câu hỏi:\n\n ##question## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của câu trả lời phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(616, '17', 'sw-KE', 'Toa majibu 5 ya ubunifu kwa swali:\n\n ##question## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya majibu lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(617, '17', 'sl-SI', 'Ustvari kreativnih 5 odgovorov na vprašanje:\n\n ##question## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu odgovorov mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(618, '17', 'th-TH', 'สร้างครีเอทีฟ 5 คำตอบสำหรับคำถาม:\n\n ##question## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของคำตอบต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(619, '17', 'uk-UA', 'Створіть творчі 5 відповідей на запитання:\n\n ##question## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу відповідей має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(620, '17', 'lt-LT', 'Sukurkite 5 kūrybingus atsakymus į klausimą:\n\n ##question## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Atsakymų balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(621, '17', 'bg-BG', 'Генерирайте творчески 5 отговора на въпрос:\n\n ##question## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на отговорите трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(622, '18', 'en-US', 'Create 5 creative customer reviews for a product. Product name:\n\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the customer review must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(623, '18', 'cmn-CN', '为产品创建 5 个有创意的客户评论。产品名称:\n\n ##title## \n\n 产品描述:\n ##description## \n\n 客户评论的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:49'), +(624, '18', 'hr-HR', 'Stvorite 5 kreativnih korisničkih recenzija za proizvod. Naziv proizvoda:\n\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa klijentove recenzije mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(625, '18', 'cs-CZ', 'Vytvořte 5 kreativních zákaznických recenzí pro produkt. Název produktu:\n\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu zákaznické recenze musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(626, '18', 'da-DK', 'Opret 5 kreative kundeanmeldelser for et produkt. Produktnavn:\n\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i kundeanmeldelsen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(627, '18', 'nl-NL', 'Maak 5 creatieve klantrecensies voor een product. Productnaam:\n\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de klantrecensie moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(628, '18', 'et-EE', 'Looge toote kohta 5 loomingulist kliendiarvustust. Toote nimi:\n\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Kliendiarvustuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(629, '18', 'fi-FI', 'Luo 5 luovaa asiakasarvostelua tuotteelle. Tuotteen nimi:\n\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Asiakasarvion äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(630, '18', 'fr-FR', 'Créez 5 avis clients créatifs pour un produit. Nom du produit :\n\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix de l\'avis client doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(631, '18', 'de-DE', 'Erstellen Sie 5 kreative Kundenrezensionen für ein Produkt. Produktname:\n\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Kundenrezension muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(632, '18', 'el-GR', 'Δημιουργήστε 5 δημιουργικές κριτικές πελατών για ένα προϊόν. Όνομα προϊόντος:\n\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο ήχος της κριτικής πελάτη πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(633, '18', 'he-IL', 'צור 5 ביקורות יצירתיות של לקוחות עבור מוצר. שם המוצר:\n\n ##title## \n\n תיאור המוצר:\n ##description## \n\n טון הדיבור של ביקורת הלקוח חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(634, '18', 'hi-IN', 'एक उत्पाद के लिए 5 रचनात्मक ग्राहक समीक्षाएँ बनाएँ। उत्पाद का नाम:\n\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n ग्राहक समीक्षा का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(635, '18', 'hu-HU', 'Hozzon létre 5 kreatív vásárlói véleményt egy termékről. Termék neve:\n\n ##title## \n\n Termékleírás:\n ##description## \n\n A vásárlói vélemény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(636, '18', 'is-IS', 'Búðu til 5 skapandi umsagnir viðskiptavina fyrir vöru. Vöruheiti:\n\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í umsögn viðskiptavina verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(637, '18', 'id-ID', 'Buat 5 ulasan pelanggan yang kreatif untuk sebuah produk. Nama produk:\n\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara ulasan pelanggan harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(638, '18', 'it-IT', 'Crea 5 recensioni cliente creative per un prodotto. Nome prodotto:\n\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce della recensione del cliente deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(639, '18', 'ja-JP', '商品のクリエイティブなカスタマー レビューを 5 つ作成します。商品名:\n\n ##title## \n\n 製品説明:\n ##description## \n\n カスタマー レビューの声調は次のとおりでなければなりません:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(640, '18', 'ko-KR', '제품에 대해 5개의 창의적인 고객 리뷰를 작성하십시오. 제품 이름:\n\n ##title## \n\n 제품 설명:\n ##description## \n\n 고객 리뷰의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(641, '18', 'ms-MY', 'Buat 5 ulasan pelanggan kreatif untuk produk. Nama produk:\n\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara ulasan pelanggan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(642, '18', 'nb-NO', 'Lag 5 kreative kundeanmeldelser for et produkt. Produktnavn:\n\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i kundeanmeldelsen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(643, '18', 'pl-PL', 'Utwórz 5 kreatywnych recenzji klientów dla produktu. Nazwa produktu:\n\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton opinii klienta musi być następujący:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(644, '18', 'pt-PT', 'Crie 5 avaliações criativas de clientes para um produto. Nome do produto:\n\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz da avaliação do cliente deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(645, '18', 'ru-RU', 'Создайте 5 креативных отзывов клиентов о продукте. Название продукта:\n\n ##title## \n\n Описание товара:\n ##description## \n\n Тон голоса отзыва клиента должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(646, '18', 'es-ES', 'Cree 5 reseñas creativas de clientes para un producto. Nombre del producto:\n\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz de la reseña del cliente debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(647, '18', 'sv-SE', 'Skapa 5 kreativa kundrecensioner för en produkt. Produktnamn:\n\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i kundrecensionen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(648, '18', 'tr-TR', 'Bir ürün için 5 yaratıcı müşteri yorumu oluşturun. Ürün adı:\n\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Müşteri incelemesinin ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(649, '18', 'pt-BR', 'Crie 5 avaliações criativas de clientes para um produto. Nome do produto:\n\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz da avaliação do cliente deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(650, '18', 'ro-RO', 'Creați 5 recenzii creative ale clienților pentru un produs. Nume produs:\n\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul de voce al recenziei clientului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(651, '18', 'vi-VN', 'Tạo 5 bài đánh giá sáng tạo của khách hàng cho một sản phẩm. Tên sản phẩm:\n\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của bài đánh giá của khách hàng phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(652, '18', 'sw-KE', 'Unda maoni 5 bunifu ya wateja kwa bidhaa. Jina la bidhaa:\n\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya ukaguzi wa mteja lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(653, '18', 'sl-SI', 'Ustvarite 5 kreativnih ocen strank za izdelek. Ime izdelka:\n\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton ocene stranke mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(654, '18', 'th-TH', 'สร้างบทวิจารณ์จากลูกค้าเชิงสร้างสรรค์ 5 รายการสำหรับผลิตภัณฑ์หนึ่งๆ ชื่อผลิตภัณฑ์:\n\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n ความคิดเห็นของลูกค้าต้องเป็นเสียง:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(655, '18', 'uk-UA', 'Створіть 5 креативних відгуків клієнтів про продукт. Назва продукту:\n\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу відгуку клієнта повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(656, '18', 'lt-LT', 'Sukurkite 5 kūrybingus klientų atsiliepimus apie produktą. Produkto pavadinimas:\n\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Kliento atsiliepimo balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(657, '18', 'bg-BG', 'Създайте 5 креативни клиентски рецензии за продукт. Име на продукта:\n\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на рецензията на клиента трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(659, '19', 'en-US', 'Write a creative ad for the following product to run on Facebook aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the ad must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(660, '19', 'ar-AE', 'اكتب إعلانًا إبداعيًا للمنتج التالي ليتم تشغيله على Facebook بهدف:\n\n ##audience## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نغمة صوت الإعلان:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(661, '19', 'cmn-CN', '为以下产品编写创意广告以在 Facebook 上投放,目标是:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 广告语调必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(662, '19', 'hr-HR', 'Napišite kreativni oglas za sljedeći proizvod za prikazivanje na Facebooku s ciljem:\n\n ##audience## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa oglasa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(663, '19', 'cs-CZ', 'Napište kreativní reklamu pro následující produkt, který se bude zobrazovat na Facebooku a je zaměřen na:\n\n ##audience## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu reklamy musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(664, '19', 'da-DK', 'Skriv en kreativ annonce for følgende produkt til at køre på Facebook rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annoncen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(665, '19', 'nl-NL', 'Schrijf een creatieve advertentie voor het volgende product voor weergave op Facebook gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de advertentie moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(666, '19', 'et-EE', 'Kirjutage Facebookis esitamiseks järgmise toote loov reklaam, mille eesmärk on:\n\n ##audience## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Reklaami hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(667, '19', 'fi-FI', 'Kirjoita luova mainos seuraavalle tuotteelle Facebookissa, jonka tarkoituksena on:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Mainoksen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(668, '19', 'fr-FR', 'Rédigez une publicité créative pour le produit suivant à diffuser sur Facebook et destinée à :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix de l\'annonce doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(669, '19', 'de-DE', 'Schreiben Sie eine kreative Anzeige für das folgende Produkt, das auf Facebook geschaltet werden soll:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Anzeige muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(670, '19', 'el-GR', 'Γράψτε μια δημιουργική διαφήμιση για το ακόλουθο προϊόν για προβολή στο Facebook με στόχο:\n\n ##audience## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της διαφήμισης πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(671, '19', 'hi-IN', 'Facebook पर चलाने के लिए निम्नलिखित उत्पाद के लिए एक रचनात्मक विज्ञापन लिखें:\n\n ##audience## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n विज्ञापन का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(672, '19', 'hu-HU', 'Írjon kreatív hirdetést a következő termékhez a Facebookon való futtatáshoz, amelynek célja:\n\n ##audience## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A hirdetés hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(673, '19', 'is-IS', 'Skrifaðu skapandi auglýsingu fyrir eftirfarandi vöru til að birta á Facebook sem miðar að:\n\n ##audience## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Röddtónn auglýsingarinnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(674, '19', 'id-ID', 'Tulis iklan kreatif untuk produk berikut agar berjalan di Facebook yang ditujukan untuk:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara iklan harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(675, '19', 'it-IT', 'Scrivi un annuncio creativo per il seguente prodotto da pubblicare su Facebook rivolto a:\n\n ##audience## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell\'annuncio deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(676, '19', 'ja-JP', '次の製品のクリエイティブ広告を作成して、Facebook で実行することを目的としています:\n\n ##audience## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 広告のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(677, '19', 'ko-KR', 'Facebook에서 실행할 다음 제품에 대한 크리에이티브 광고 작성:\n\n ##audience## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 광고 음성 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(678, '19', 'ms-MY', 'Tulis iklan kreatif untuk produk berikut untuk disiarkan di Facebook bertujuan:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara iklan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(679, '19', 'nb-NO', 'Skriv en kreativ annonse for følgende produkt som skal kjøres på Facebook rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annonsen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(680, '19', 'pl-PL', 'Napisz kreatywną reklamę następującego produktu do wyświetlania na Facebooku, skierowaną do:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton reklamy musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(681, '19', 'pt-PT', 'Escreva um anúncio criativo para o seguinte produto para exibição no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(682, '19', 'ru-RU', 'Напишите креативную рекламу следующего продукта для показа на Facebook, нацеленную на:\n\n ##audience## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон объявления должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(683, '19', 'es-ES', 'Escriba un anuncio creativo para que el siguiente producto se publique en Facebook dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz del anuncio debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(684, '19', 'sv-SE', 'Skriv en kreativ annons för följande produkt som ska visas på Facebook som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i annonsen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(685, '19', 'tr-TR', 'Aşağıdaki ürün için Facebook\'ta yayınlanması hedeflenen yaratıcı bir reklam yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Reklamın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(686, '19', 'pt-BR', 'Escreva um anúncio criativo para o seguinte produto para exibição no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(687, '19', 'ro-RO', 'Scrieți un anunț creativ pentru următorul produs, care să fie difuzat pe Facebook, care vizează:\n\n ##audience## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii al anunțului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(688, '19', 'vi-VN', 'Viết quảng cáo sáng tạo cho sản phẩm sau để chạy trên Facebook nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của quảng cáo phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(689, '19', 'sw-KE', 'Andika tangazo la ubunifu ili bidhaa ifuatayo ionyeshwe kwenye Facebook inayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya tangazo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(690, '19', 'sl-SI', 'Napišite kreativni oglas za naslednji izdelek za prikazovanje na Facebooku, namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu oglasa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(691, '19', 'th-TH', 'เขียนโฆษณาที่สร้างสรรค์สำหรับผลิตภัณฑ์ต่อไปนี้เพื่อทำงานบน Facebook โดยมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของโฆษณาต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(692, '19', 'uk-UA', 'Напишіть креативне оголошення для наступного продукту для показу на Facebook, спрямоване на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу оголошення має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(693, '19', 'lt-LT', 'Parašykite šio produkto kūrybinį skelbimą, kad jis būtų rodomas „Facebook“, skirtas:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Skelbimo balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(694, '19', 'bg-BG', 'Напишете творческа реклама за следния продукт, която да се пусне във Facebook и е насочена към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на рекламата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(695, '20', 'en-US', 'Write compelling YouTube description to get people interested in watching.\n\nVideo description:\n ##description## \n\nTone of voice of the video description must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(696, '20', 'ar-AE', 'اكتب وصفًا مقنعًا على YouTube لجذب اهتمام الأشخاص بالمشاهدة.\n\n وصف الفيديو:\n ##description## \n\nيجب أن تكون نغمة الصوت في وصف الفيديو:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(697, '20', 'cmn-CN', '撰写引人注目的 YouTube 说明,让人们有兴趣观看。\n\n视频说明:\n ##description## \n\n视频描述的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(698, '20', 'hr-HR', 'Napišite uvjerljiv YouTube opis kako biste zainteresirali ljude za gledanje.\n\nOpis videozapisa:\n ##description## \n\nTon glasa opisa videa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(699, '20', 'cs-CZ', 'Napište působivý popis na YouTube, aby se lidé zajímali o sledování.\n\nPopis videa:\n ##description## \n\nTón hlasu popisu videa musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(700, '20', 'da-DK', 'Skriv en overbevisende YouTube-beskrivelse for at få folk interesseret i at se.\n\nVideobeskrivelse:\n ##description## \n\nTone i videobeskrivelsen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(701, '20', 'nl-NL', 'Schrijf een overtuigende YouTube-beschrijving om mensen te interesseren om te kijken.\n\nVideobeschrijving:\n ##description## \n\nDe toon van de videobeschrijving moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(702, '20', 'et-EE', 'Kirjutage ahvatlev YouTube\'i kirjeldus, et tekitada inimestes vaatamisest huvi.\n\nVideo kirjeldus:\n ##description## \n\nVideo kirjelduse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(703, '20', 'fi-FI', 'Kirjoita houkutteleva YouTube-kuvaus saadaksesi ihmiset kiinnostumaan katselusta.\n\nVideon kuvaus:\n ##description## \n\nVideon kuvauksen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(704, '20', 'fr-FR', 'Rédigez une description YouTube convaincante pour intéresser les internautes.\n\nDescription de la vidéo :\n ##description## \n\nLe ton de la description de la vidéo doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(705, '20', 'de-DE', 'Schreiben Sie eine überzeugende YouTube-Beschreibung, um das Interesse der Zuschauer zu wecken.\n\nVideobeschreibung:\n ##description## \n\nTonfall der Videobeschreibung muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(706, '20', 'el-GR', 'Γράψτε μια συναρπαστική περιγραφή στο YouTube για να κάνετε τους ανθρώπους να ενδιαφέρονται να παρακολουθήσουν.\n\nΠεριγραφή βίντεο:\n ##description## \n\nΟ τόνος της φωνής της περιγραφής του βίντεο πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(707, '20', 'he-IL', 'כתוב תיאור משכנע של YouTube כדי לגרום לאנשים להתעניין בצפייה.\n\nתיאור הסרטון:\n ##description## \n\nטון הדיבור של תיאור הסרטון חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(708, '20', 'hi-IN', 'लोगों को देखने में रुचि लेने के लिए आकर्षक YouTube विवरण लिखें।\n\nवीडियो विवरण:\n ##description## \n\nवीडियो विवरण का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(709, '20', 'hu-HU', 'Írjon lenyűgöző YouTube-leírást, hogy felkeltse az emberek érdeklődését a megtekintés iránt.\n\nVideó leírása:\n ##description## \n\nA videó leírásának hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(710, '20', 'is-IS', 'Skrifaðu sannfærandi YouTube lýsingu til að vekja áhuga fólks á að horfa.\n\nLýsing myndskeiðs:\n ##description## \n\nTónn í lýsingu myndbandsins verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(711, '20', 'id-ID', 'Tulis deskripsi YouTube yang menarik agar orang tertarik menonton.\n\nDeskripsi video:\n ##description## \n\nNada suara deskripsi video harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(712, '20', 'it-IT', 'Scrivi una descrizione accattivante per YouTube per attirare l\'interesse delle persone a guardarlo.\n\nDescrizione del video:\n ##description## \n\nIl tono di voce della descrizione del video deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(713, '20', 'ja-JP', '魅力的な YouTube の説明を書いて、視聴者に興味を持ってもらいましょう。\n\n動画の説明:\n ##description## \n\nビデオの説明のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(714, '20', 'ko-KR', '사람들이 시청에 관심을 갖도록 설득력 있는 YouTube 설명을 작성하세요.\n\n동영상 설명:\n ##description## \n\n동영상 설명의 음성 톤은 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(715, '20', 'ms-MY', 'Tulis perihalan YouTube yang menarik untuk menarik minat orang untuk menonton.\n\nPerihalan video:\n ##description## \n\nNada suara penerangan video mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(716, '20', 'nb-NO', 'Skriv overbevisende YouTube-beskrivelse for å få folk interessert i å se.\n\nVideobeskrivelse:\n ##description## \n\nTone i videobeskrivelsen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(717, '20', 'pl-PL', 'Napisz przekonujący opis w YouTube, aby zainteresować ludzi oglądaniem.\n\nOpis filmu:\n ##description## \n\nTon głosu w opisie filmu musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(718, '20', 'pt-PT', 'Escreva uma descrição atraente do YouTube para atrair o interesse das pessoas em assistir.\n\nDescrição do vídeo:\n ##description## \n\nTom de voz da descrição do vídeo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(719, '20', 'ru-RU', 'Напишите привлекательное описание для YouTube, чтобы заинтересовать людей.\n\nОписание видео:\n ##description## \n\nТон описания видео должен быть:\n ##tone_language## \\п\\п', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(720, '20', 'es-ES', 'Escribe una descripción convincente de YouTube para que las personas se interesen en verlo.\n\nDescripción del video:\n ##description## \n\nEl tono de voz de la descripción del video debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(721, '20', 'sv-SE', 'Skriv övertygande YouTube-beskrivning för att få folk intresserade av att titta.\n\nVideobeskrivning:\n ##description## \n\nRösttonen i videobeskrivningen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(722, '20', 'tr-TR', 'İnsanların izlemekle ilgilenmesini sağlamak için etkileyici bir YouTube açıklaması yazın.\n\nVideo açıklaması:\n ##description## \n\nVideo açıklamasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(723, '20', 'pt-BR', 'Escreva uma descrição atraente do YouTube para atrair o interesse das pessoas em assistir.\n\nDescrição do vídeo:\n ##description## \n\nTom de voz da descrição do vídeo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(724, '20', 'ro-RO', 'Scrieți o descriere YouTube convingătoare pentru a-i determina pe oameni să fie interesați de vizionare.\n\nDescrierea videoclipului:\n ##description## \n\nTonul de voce al descrierii videoclipului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(725, '20', 'vi-VN', 'Viết mô tả YouTube hấp dẫn để thu hút mọi người thích xem.\n\nMô tả video:\n ##description## \n\nGiọng điệu của mô tả video phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(726, '20', 'sw-KE', 'Andika maelezo ya YouTube ya kuvutia ili kuwavutia watu kutazama.\n\nMaelezo ya video:\n ##description## \n\nToni ya sauti ya maelezo ya video lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(727, '20', 'sl-SI', 'Napišite privlačen opis YouTube, da boste ljudi zanimali za ogled.\n\nOpis videa:\n ##description## \n\nTon glasu opisa videa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(728, '20', 'th-TH', 'เขียนคำอธิบาย YouTube ที่น่าสนใจเพื่อให้ผู้คนสนใจรับชม\n\n คำอธิบายวิดีโอ:\n ##description## \nเสียงของคำอธิบายวิดีโอต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(729, '20', 'uk-UA', 'Напишіть переконливий опис YouTube, щоб зацікавити людей переглядом.\n\n Опис відео:\n ##description## \n\nТон опису відео має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(730, '20', 'lt-LT', 'Parašykite patrauklų „YouTube“ aprašą, kad žmonės susidomėtų žiūrėti.\n\n Vaizdo įrašo aprašymas:\n ##description## \n\\Vaizdo įrašo aprašymo balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(731, '20', 'bg-BG', 'Напишете завладяващо описание в YouTube, за да накарате хората да се заинтересуват да гледат.\n\n Описание на видеоклипа:\n ##description## \n\nТонът на гласа на видео описанието трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(732, '21', 'en-US', 'Write compelling YouTube video title for the provided video description to get people interested in watching:\n\nVideo description:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(733, '21', 'ar-AE', 'اكتب عنوان فيديو YouTube مقنعًا لوصف الفيديو المقدم لجذب اهتمام الأشخاص بالمشاهدة:\n\nوصف الفيديو:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(734, '21', 'cmn-CN', '为提供的视频描述写引人注目的 YouTube 视频标题,以引起人们对观看的兴趣:\n\n视频描述:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(735, '21', 'hr-HR', 'Napišite uvjerljiv naslov YouTube videozapisa za navedeni opis videozapisa kako biste zainteresirali ljude za gledanje:\n\nOpis videozapisa:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(736, '21', 'cs-CZ', 'K poskytnutému popisu videa napište působivý název videa na YouTube, aby lidi zaujalo sledování:\n\nPopis videa:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(737, '21', 'da-DK', 'Skriv en overbevisende YouTube-videotitel til den medfølgende videobeskrivelse for at få folk interesseret i at se:\n\nVideobeskrivelse:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(738, '21', 'nl-NL', 'Schrijf een pakkende YouTube-videotitel voor de verstrekte videobeschrijving om mensen te interesseren om te kijken:\n\nVideobeschrijving:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(739, '21', 'et-EE', 'Kirjutage esitatud video kirjeldusele köitev YouTube\'i video pealkiri, et tekitada inimestes huvi vaatamise vastu:\n\nVideo kirjeldus:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(740, '21', 'fi-FI', 'Kirjoita houkutteleva YouTube-videon nimi annetulle videon kuvaukselle saadaksesi ihmiset kiinnostumaan:\n\nVideon kuvaus:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(741, '21', 'fr-FR', 'Écrivez un titre de vidéo YouTube convaincant pour la description de la vidéo fournie afin d\'intéresser les gens à regarder :\n\nDescription de la vidéo :\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(742, '21', 'de-DE', 'Schreiben Sie einen überzeugenden YouTube-Videotitel für die bereitgestellte Videobeschreibung, um das Interesse der Zuschauer zu wecken:\n\nVideobeschreibung:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(743, '21', 'el-GR', 'Γράψτε τον συναρπαστικό τίτλο του βίντεο YouTube για την παρεχόμενη περιγραφή του βίντεο για να ενθαρρύνετε τους χρήστες να το παρακολουθήσουν:\n\nΠεριγραφή βίντεο:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(744, '21', 'he-IL', 'כתוב כותרת סרטון YouTube משכנעת עבור תיאור הסרטון שסופק כדי לגרום לאנשים להתעניין בצפייה:\n\nתיאור הסרטון:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(745, '21', 'hi-IN', 'लोगों को देखने में रुचि लेने के लिए प्रदान किए गए वीडियो विवरण के लिए आकर्षक YouTube वीडियो शीर्षक लिखें:\n\nवीडियो विवरण:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(746, '21', 'hu-HU', 'Írjon lenyűgöző YouTube-videócímet a mellékelt videó leírásához, hogy felkeltse az emberek érdeklődését a megtekintés iránt:\n\nVideó leírása:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(747, '21', 'is-IS', 'Skrifaðu sannfærandi titil á YouTube vídeói fyrir vídeólýsinguna sem fylgir til að vekja áhuga fólks á að horfa á:\n\nLýsing myndskeiðs:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(748, '21', 'id-ID', 'Tulis judul video YouTube yang menarik untuk deskripsi video yang diberikan agar orang-orang tertarik untuk menonton:\n\nDeskripsi video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(749, '21', 'it-IT', 'Scrivi un titolo del video di YouTube convincente per la descrizione del video fornita per attirare l\'interesse delle persone a guardarlo:\n\nDescrizione del video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(750, '21', 'ja-JP', '視聴者に興味を持ってもらうために、提供された動画の説明に説得力のある YouTube 動画のタイトルを書いてください:\n\n動画の説明:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(751, '21', 'ko-KR', '사람들이 시청에 관심을 갖도록 제공된 동영상 설명에 대한 매력적인 YouTube 동영상 제목을 작성하세요:\n\n동영상 설명:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(752, '21', 'ms-MY', 'Tulis tajuk video YouTube yang menarik untuk penerangan video yang disediakan untuk menarik minat orang untuk menonton:\n\nPerihalan video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(753, '21', 'nb-NO', 'Skriv en overbevisende YouTube-videotittel for den oppgitte videobeskrivelsen for å få folk interessert i å se:\n\nVideobeskrivelse:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(754, '21', 'pl-PL', 'Napisz przekonujący tytuł filmu YouTube dla podanego opisu filmu, aby zainteresować ludzi oglądaniem:\n\nOpis filmu:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(755, '21', 'pt-PT', 'Escreva um título de vídeo do YouTube atraente para a descrição do vídeo fornecida para atrair o interesse das pessoas em assistir:\n\nDescrição do vídeo:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(756, '21', 'ru-RU', 'Напишите привлекательное название видео YouTube для предоставленного описания видео, чтобы заинтересовать людей в просмотре:\n\nОписание видео:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(757, '21', 'es-ES', 'Escribe un título de video de YouTube atractivo para la descripción del video proporcionada para que las personas se interesen en verlo:\n\nDescripción del video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(758, '21', 'sv-SE', 'Skriv övertygande YouTube-videotitel för den medföljande videobeskrivningen för att få folk intresserade av att titta på:\n\nVideobeskrivning:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(759, '21', 'tr-TR', 'Kullanıcıların izlemekle ilgilenmesini sağlamak için sağlanan video açıklamasına çekici bir YouTube video başlığı yazın:\n\nVideo açıklaması:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(760, '21', 'pt-BR', 'Escreva um título de vídeo do YouTube atraente para a descrição do vídeo fornecida para atrair o interesse das pessoas em assistir:\n\nDescrição do vídeo:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(761, '21', 'ro-RO', 'Scrieți un titlu convingător al videoclipului YouTube pentru descrierea videoclipului furnizată pentru a-i determina pe oameni să fie interesați să vizioneze:\n\nDescrierea videoclipului:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(762, '21', 'vi-VN', 'Viết tiêu đề video hấp dẫn trên YouTube cho phần mô tả video được cung cấp để thu hút mọi người quan tâm đến việc xem:\n\nMô tả video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(763, '21', 'sw-KE', 'Andika mada ya video ya YouTube yenye kuvutia kwa maelezo ya video yaliyotolewa ili kuwavutia watu kutazama:\n\nMaelezo ya video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(764, '21', 'sl-SI', 'Napišite privlačen naslov videoposnetka YouTube za predloženi opis videoposnetka, da boste ljudi zanimali za ogled:\n\nOpis videoposnetka:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(765, '21', 'th-TH', 'เขียนชื่อวิดีโอ YouTube ที่น่าสนใจสำหรับคำอธิบายวิดีโอที่ให้มาเพื่อให้ผู้คนสนใจรับชม:\n\nคำอธิบายวิดีโอ:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(766, '21', 'uk-UA', 'Напишіть переконливу назву відео YouTube для наданого опису відео, щоб зацікавити людей до перегляду:\n\nОпис відео:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(767, '21', 'lt-LT', 'Parašykite patrauklų „YouTube“ vaizdo įrašo pavadinimą pateiktam vaizdo įrašo aprašui, kad žmonės susidomėtų žiūrėti:\n\nVaizdo įrašo aprašas:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(768, '21', 'bg-BG', 'Напишете завладяващо заглавие на видеоклипа в YouTube за предоставеното описание на видеоклипа, за да предизвикате интерес у хората да гледат:\n\nОписание на видеоклипа:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(769, '22', 'en-US', 'Generate SEO-optimized YouTube tags and keywords for:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(770, '22', 'ar-AE', 'إنشاء علامات وكلمات رئيسية على YouTube مُحسّنة لتحسين محركات البحث لـ:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(771, '22', 'cmn-CN', '为以下内容生成针对 SEO 优化的 YouTube 标签和关键字:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(772, '22', 'hr-HR', 'Generiraj SEO-optimizirane YouTube oznake i ključne riječi za:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(773, '22', 'cs-CZ', 'Generujte značky a klíčová slova YouTube optimalizované pro SEO pro:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(774, '22', 'da-DK', 'Generer SEO-optimerede YouTube-tags og søgeord til:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(775, '22', 'nl-NL', 'Genereer SEO-geoptimaliseerde YouTube-tags en trefwoorden voor:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(776, '22', 'et-EE', 'SEO jaoks optimeeritud YouTube\'i märgendite ja märksõnade loomine:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(777, '22', 'fi-FI', 'Luo SEO-optimoituja YouTube-tageja ja avainsanoja:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(778, '22', 'fr-FR', 'Générez des balises et des mots clés YouTube optimisés pour le référencement pour :\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(779, '22', 'de-DE', 'Generiere SEO-optimierte YouTube-Tags und Keywords für:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(780, '22', 'el-GR', 'Δημιουργήστε ετικέτες και λέξεις-κλειδιά YouTube βελτιστοποιημένες για SEO για:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(781, '22', 'he-IL', 'צור תגיות YouTube ומילות מפתח מותאמות לקידום אתרים עבור:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(782, '22', 'hi-IN', 'इनके लिए SEO-अनुकूलित YouTube टैग और कीवर्ड जनरेट करें:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(783, '22', 'hu-HU', 'SEO-optimalizált YouTube-címkék és kulcsszavak létrehozása a következőkhöz:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(784, '22', 'is-IS', 'Búðu til SEO-bjartsýni YouTube merki og leitarorð fyrir:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(785, '22', 'id-ID', 'Buat tag dan kata kunci YouTube yang dioptimalkan untuk SEO untuk:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(786, '22', 'it-IT', 'Genera tag e parole chiave YouTube ottimizzati per la SEO per:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(787, '22', 'ja-JP', 'SEO 用に最適化された YouTube タグとキーワードを生成します:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(788, '22', 'ko-KR', 'SEO에 최적화된 YouTube 태그 및 키워드 생성:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(789, '22', 'ms-MY', 'Jana teg dan kata kunci YouTube yang dioptimumkan SEO untuk:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(790, '22', 'nb-NO', 'Generer SEO-optimaliserte YouTube-tagger og søkeord for:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(791, '22', 'pl-PL', 'Wygeneruj zoptymalizowane pod kątem SEO tagi i słowa kluczowe YouTube dla:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(792, '22', 'pt-PT', 'Gerar tags e palavras-chave do YouTube otimizadas para SEO para:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(793, '22', 'ru-RU', 'Создать SEO-оптимизированные теги и ключевые слова YouTube для:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(794, '22', 'es-ES', 'Generar etiquetas y palabras clave de YouTube optimizadas para SEO para:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(795, '22', 'sv-SE', 'Zalisha lebo za YouTube zilizoboreshwa na SEO na maneno muhimu ya:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(796, '22', 'tr-TR', 'Şunlar için SEO için optimize edilmiş YouTube etiketleri ve anahtar kelimeler oluşturun:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(797, '22', 'pt-BR', 'Gerar tags e palavras-chave do YouTube otimizadas para SEO para:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(798, '22', 'ro-RO', 'Generează etichete și cuvinte cheie YouTube optimizate pentru SEO pentru:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(799, '22', 'vi-VN', 'Tạo thẻ và từ khóa YouTube được tối ưu hóa cho SEO cho:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(800, '22', 'sw-KE', 'Zalisha lebo za YouTube zilizoboreshwa na SEO na maneno muhimu ya:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(801, '22', 'sl-SI', 'Ustvari YouTube oznake in ključne besede, optimizirane za SEO za:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(802, '22', 'th-TH', 'สร้างแท็ก YouTube ที่ปรับให้เหมาะสม SEO และคำหลักสำหรับ:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(803, '22', 'uk-UA', 'Створіть оптимізовані для SEO теги та ключові слова YouTube для:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(804, '22', 'lt-LT', 'Generuokite pagal SEO optimizuotas „YouTube“ žymas ir raktinius žodžius:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(805, '22', 'bg-BG', 'Генериране на оптимизирани за SEO маркери и ключови думи в YouTube за:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(806, '23', 'en-US', 'Grab attention with catchy captions for this Instagram post:\n\n ##description## \n\nTone of voice of the captions must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(807, '23', 'ar-AE', 'اجذب الانتباه باستخدام التسميات التوضيحية الجذابة لمشاركة Instagram هذه:\n\n ##description## \n\nيجب أن تكون نغمة صوت التسميات التوضيحية:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(808, '23', 'cmn-CN', '为这条 Instagram 帖子添加朗朗上口的标题以吸引注意力:\n\n ##description## \n\n字幕的语调必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(809, '23', 'hr-HR', 'Privucite pažnju privlačnim natpisima za ovu objavu na Instagramu:\n\n ##description## \n\nTon glasa titlova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(810, '23', 'cs-CZ', 'Přitáhněte pozornost chytlavými titulky k tomuto příspěvku na Instagramu:\n\n ##description## \n\nTón hlasu titulků musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(811, '23', 'da-DK', 'Fang opmærksomhed med fængende billedtekster til dette Instagram-opslag:\n\n ##description## \n\nTelefonen for billedteksterne skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(812, '23', 'nl-NL', 'Trek de aandacht met pakkende bijschriften voor dit Instagram-bericht:\n\n ##description## \n\nDe toon van de ondertiteling moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(813, '23', 'et-EE', 'Pöörake tähelepanu selle Instagrami postituse meeldejäävate pealkirjadega:\n\n ##description## \n\nTiitrite hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(814, '23', 'fi-FI', 'Kiinnitä huomiota tarttuvilla kuvateksteillä tälle Instagram-julkaisulle:\n\n ##description## \n\nTekstitysten äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(815, '23', 'fr-FR', 'Attirez l\'attention avec des légendes accrocheuses pour cette publication Instagram :\n\n ##description## \n\nLe ton de la voix des sous-titres doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(816, '23', 'de-DE', 'Erregen Sie Aufmerksamkeit mit einprägsamen Bildunterschriften für diesen Instagram-Post:\n\n ##description## \n\nTonlage der Untertitel muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(817, '23', 'el-GR', 'Τραβήξτε την προσοχή με εντυπωσιακούς λεζάντες για αυτήν την ανάρτηση στο Instagram:\n\n ##description## \n\nΟ τόνος της φωνής των υπότιτλων πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(818, '23', 'he-IL', 'משכו תשומת לב עם כיתובים קליטים לפוסט הזה באינסטגרם:\n\n ##description## \n\nטון הדיבור של הכתוביות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(819, '23', 'hi-IN', 'इस Instagram पोस्ट के लिए आकर्षक कैप्शन के साथ ध्यान आकर्षित करें:\n\n ##description## \n\nकैप्शन की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(820, '23', 'hu-HU', 'Felhívja fel a figyelmet ennek az Instagram-bejegyzésnek a fülbemászó felirataival:\n\n ##description## \n\nA feliratok hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(821, '23', 'is-IS', 'Gríptu athygli með grípandi texta fyrir þessa Instagram færslu:\n\n ##description## \n\nTónn skjátextanna verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(822, '23', 'id-ID', 'Raih perhatian dengan teks menarik untuk postingan Instagram ini:\n\n ##description## \n\nNada suara teks harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(823, '23', 'it-IT', 'Attira l\'attenzione con didascalie accattivanti per questo post di Instagram:\n\n ##description## \n\nIl tono di voce dei sottotitoli deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(824, '23', 'ja-JP', 'この Instagram 投稿のキャッチーなキャプションで注目を集めましょう:\n\n ##description## \n\nキャプションの声のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(825, '23', 'ko-KR', '이 Instagram 게시물에 대한 눈길을 끄는 캡션으로 관심 끌기:\n\n ##description## \n\n캡션의 목소리 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(826, '23', 'ms-MY', 'Tarik perhatian dengan kapsyen yang menarik untuk siaran Instagram ini:\n\n ##description## \n\nNada suara kapsyen mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(827, '23', 'nb-NO', 'Fang oppmerksomhet med fengende bildetekster for dette Instagram-innlegget:\n\n ##description## \n\nStemmetonen til bildetekstene må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(828, '23', 'pl-PL', 'Przyciągnij uwagę chwytliwymi napisami do tego posta na Instagramie:\n\n ##description## \n\nTon głosu napisów musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(829, '23', 'pt-PT', 'Chame a atenção com legendas cativantes para esta postagem do Instagram:\n\n ##description## \n\nTom de voz das legendas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(830, '23', 'uk-UA', 'Привертайте увагу привабливими підписами до цієї публікації в Instagram:\n\n ##description## \n\nТон субтитрів має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), +(831, '23', 'lt-LT', 'Patraukite dėmesį patraukliais šio Instagram įrašo antraštėmis:\n\n ##description## \n\nSubtitrų balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), +(832, '23', 'bg-BG', 'Привлечете вниманието със закачливи надписи за тази публикация в Instagram:\n\n ##description## \n\nТонът на надписите трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), +(833, '24', 'en-US', 'Find the best hashtags to use for this Instagram keyword:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), +(834, '24', 'ar-AE', 'ابحث عن أفضل علامات التصنيف لاستخدامها لهذه الكلمة الأساسية في Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), +(835, '24', 'cmn-CN', '找到用于此 Instagram 关键字的最佳主题标签:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), +(836, '24', 'hr-HR', 'Pronađite najbolje hashtagove za ovu ključnu riječ za Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), +(837, '24', 'cs-CZ', 'Najděte nejlepší hashtagy pro toto klíčové slovo na Instagramu:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), +(838, '24', 'da-DK', 'Find de bedste hashtags til dette Instagram-søgeord:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), +(839, '24', 'nl-NL', 'Vind de beste hashtags om te gebruiken voor dit Instagram-trefwoord:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(840, '24', 'et-EE', 'Leia parimad hashtagid, mida selle Instagrami märksõna jaoks kasutada:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(841, '24', 'fi-FI', 'Etsi parhaat hashtagit tälle Instagram-avainsanalle:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(842, '24', 'fr-FR', 'Trouvez les meilleurs hashtags à utiliser pour ce mot clé Instagram :\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(843, '24', 'de-DE', 'Finde die besten Hashtags für dieses Instagram-Keyword:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(844, '24', 'el-GR', 'Βρείτε τα καλύτερα hashtags για χρήση για αυτήν τη λέξη-κλειδί Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(845, '24', 'he-IL', 'מצא את ההאשטאגים הטובים ביותר לשימוש עבור מילת המפתח הזו באינסטגרם:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(846, '24', 'hi-IN', 'इस Instagram कीवर्ड के लिए उपयोग करने के लिए सर्वोत्तम हैशटैग खोजें:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(847, '24', 'hu-HU', 'Keresse meg az ehhez az Instagram-kulcsszóhoz használható legjobb hashtageket:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(848, '24', 'is-IS', 'Finndu bestu myllumerkin til að nota fyrir þetta Instagram leitarorð:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(849, '24', 'id-ID', 'Temukan tagar terbaik untuk digunakan untuk kata kunci Instagram ini:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(850, '24', 'it-IT', 'Trova i migliori hashtag da utilizzare per questa parola chiave di Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(851, '24', 'ja-JP', 'この Instagram キーワードに使用するのに最適なハッシュタグを見つけてください:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(852, '24', 'ko-KR', '이 Instagram 키워드에 사용할 최고의 해시태그 찾기:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(853, '24', 'ms-MY', 'Cari hashtag terbaik untuk digunakan untuk kata kunci Instagram ini:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(854, '24', 'nb-NO', 'Finn de beste hashtaggene du kan bruke for dette Instagram-søkeordet:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(855, '24', 'pl-PL', 'Znajdź najlepsze hashtagi do użycia dla tego słowa kluczowego na Instagramie:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(856, '24', 'pt-PT', 'Encontre as melhores hashtags para usar com esta palavra-chave do Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(857, '24', 'ru-RU', 'Найдите лучшие хэштеги для этого ключевого слова Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(858, '24', 'sv-SE', 'Hitta de bästa hashtaggarna att använda för detta Instagram-sökord:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), +(859, '24', 'tr-TR', 'Bu Instagram anahtar kelimesi için kullanılacak en iyi etiketleri bulun:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(860, '24', 'pt-BR', 'Encontre as melhores hashtags para usar com esta palavra-chave do Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(861, '24', 'ro-RO', 'Găsiți cele mai bune hashtag-uri de folosit pentru acest cuvânt cheie Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(862, '24', 'vi-VN', 'Tìm các thẻ bắt đầu bằng # tốt nhất để sử dụng cho từ khóa Instagram này:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(863, '24', 'sw-KE', 'Tafuta lebo za reli bora za kutumia kwa neno kuu la Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(864, '24', 'sl-SI', 'Poiščite najboljše hashtage za to ključno besedo za Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(865, '24', 'th-TH', 'ค้นหาแฮชแท็กที่ดีที่สุดเพื่อใช้สำหรับคีย์เวิร์ด Instagram นี้:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(866, '24', 'uk-UA', 'Знайдіть найкращі хештеги для цього ключового слова Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(867, '24', 'lt-LT', 'Rasti geriausias žymas su grotelėmis, kurias galima naudoti šiam „Instagram“ raktiniam žodžiui:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(868, '24', 'bg-BG', 'Намерете най-добрите хаштагове, които да използвате за тази ключова дума в Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(869, '25', 'en-US', 'Write a personal social media post about:\n\n ##description## \n\nTone of voice of the post must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(870, '25', 'ar-AE', 'اكتب منشورًا شخصيًا على وسائل التواصل الاجتماعي حول:\n\n ##description## \n\nيجب أن تكون نغمة صوت المشاركة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(871, '25', 'cmn-CN', '写一篇个人社交媒体帖子:\n\n ##description## \n\n帖子的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(872, '25', 'hr-HR', 'Napišite osobnu objavu na društvenim mrežama o:\n\n ##description## \n\nTon glasa objave mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(873, '25', 'cs-CZ', 'Napište osobní příspěvek na sociální média o:\n\n ##description## \n\nTón hlasu příspěvku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(874, '25', 'da-DK', 'Skriv et personligt opslag på sociale medier om:\n\n ##description## \n\nOplæggets stemme skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(875, '25', 'nl-NL', 'Schrijf een persoonlijk bericht op sociale media over:\n\n ##description## \n\nDe toon van het bericht moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(876, '25', 'et-EE', 'Kirjutage isiklik sotsiaalmeedia postitus teemal:\n\n ##description## \n\nPostituse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(877, '25', 'fi-FI', 'Kirjoita henkilökohtainen sosiaalisen median viesti aiheesta:\n\n ##description## \n\nViestin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(878, '25', 'fr-FR', 'Rédigez un message personnel sur les réseaux sociaux à propos de :\n\n ##description## \n\nLe ton de la voix du message doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(879, '25', 'de-DE', 'Schreiben Sie einen persönlichen Social-Media-Beitrag über:\n\n ##description## \n\nTonlage des Beitrags muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(880, '25', 'el-GR', 'Γράψτε μια προσωπική ανάρτηση στα μέσα κοινωνικής δικτύωσης σχετικά με:\n\n ##description## \n\nΟ τόνος της φωνής της ανάρτησης πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(881, '25', 'he-IL', 'כתוב פוסט אישי במדיה החברתית על:\n\n ##description## \n\nטון הדיבור של הפוסט חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(882, '25', 'hi-IN', 'इसके बारे में एक निजी सोशल मीडिया पोस्ट लिखें:\n\n ##description## \n\nपोस्ट की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(883, '25', 'hu-HU', 'Írjon személyes közösségimédia-bejegyzést erről:\n\n ##description## \n\nA bejegyzés hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(884, '25', 'is-IS', 'Skrifaðu persónulega færslu á samfélagsmiðlum um:\n\n ##description## \n\nTónn færslunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(885, '25', 'id-ID', 'Tulis postingan media sosial pribadi tentang:\n\n ##description## \n\nNada suara postingan harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(886, '25', 'it-IT', 'Scrivi un post personale sui social media su:\n\n ##description## \n\nIl tono di voce del post deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(887, '25', 'ja-JP', '個人的なソーシャル メディアの投稿について書く:\n\n ##description## \n\n投稿のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(888, '25', 'ko-KR', '다음에 대한 개인 소셜 미디어 게시물 작성:\n\n ##description## \n\n포스트의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(889, '25', 'ms-MY', 'Tulis siaran media sosial peribadi tentang:\n\n ##description## \n\nNada suara siaran mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(890, '25', 'nb-NO', 'Skriv et personlig innlegg på sosiale medier om:\n\n ##description## \n\nTone i innlegget må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(891, '25', 'pl-PL', 'Napisz osobisty post w mediach społecznościowych na temat:\n\n ##description## \n\nTon wypowiedzi w poście musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(892, '25', 'pt-PT', 'Escreva uma postagem de mídia social pessoal sobre:\n\n ##description## \n\nTom de voz da postagem deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(893, '25', 'ru-RU', 'Напишите личный пост в социальной сети о:\n\n ##description## \n\nТон сообщения должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(894, '25', 'es-ES', 'Escribe una publicación personal en las redes sociales sobre:\n\n ##description## \n\nEl tono de voz de la publicación debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(895, '25', 'sv-SE', 'Skriv ett personligt inlägg på sociala medier om:\n\n ##description## \n\nTonfallet i inlägget måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(896, '25', 'tr-TR', 'Şununla ilgili kişisel bir sosyal medya gönderisi yaz:\n\n ##description## \n\nGönderinin ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(897, '25', 'pt-BR', 'Escreva uma postagem de mídia social pessoal sobre:\n\n ##description## \n\nTom de voz da postagem deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(898, '25', 'ro-RO', 'Scrieți o postare personală pe rețelele sociale despre:\n\n ##description## \n\nTonul vocii postării trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(899, '25', 'vi-VN', 'Viết một bài đăng cá nhân trên mạng xã hội về:\n\n ##description## \n\nGiọng điệu của bài đăng phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(900, '25', 'sw-KE', 'Andika chapisho la kibinafsi la mtandao wa kijamii kuhusu:\n\n ##description## \n\nToni ya sauti ya chapisho lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(901, '25', 'sl-SI', 'Napišite osebno objavo v družabnem omrežju o:\n\n ##description## \n\nTon objave mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(902, '25', 'th-TH', 'เขียนโพสต์โซเชียลมีเดียส่วนตัวเกี่ยวกับ:\n\n ##description## \n\nน้ำเสียงของโพสต์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(903, '25', 'uk-UA', 'Напишіть особисту публікацію в соціальних мережах про:\n\n ##description## \n\nТон допису має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(904, '25', 'lt-LT', 'Parašykite asmeninį socialinių tinklų įrašą apie:\n\n ##description## \n\nĮrašo balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(905, '25', 'bg-BG', 'Напишете лична публикация в социалните медии за:\n\n ##description## \n\nТонът на публикацията трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(906, '26', 'en-US', 'Create a large professional social media post for my company. Post description:\n\n ##post## \n\nCompany description:\n ##description## \n\nCompany name:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(907, '26', 'ar-AE', 'أنشئ منشورًا احترافيًا كبيرًا على الوسائط الاجتماعية لشركتي. وصف المشاركة:\n\n ##post## \n\nوصف الشركة:\n ##description## \n\nاسم الشركة:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(908, '26', 'cmn-CN', '为我的公司创建大型专业社交媒体帖子。帖子描述:\n\n ##post## \n\n公司描述:\n ##description## \n\n公司名称:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(909, '26', 'hr-HR', 'Stvorite veliku profesionalnu objavu na društvenim mrežama za moju tvrtku. Opis objave:\n\n ##post## \n\nOpis tvrtke:\n ##description## \n\nNaziv tvrtke:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(910, '26', 'cs-CZ', 'Vytvořte pro mou společnost velký profesionální příspěvek na sociálních sítích. Popis příspěvku:\n\n ##post## \n\nPopis společnosti:\n ##description## \n\nNázev společnosti:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(911, '26', 'da-DK', 'Opret et stort professionelt opslag på sociale medier til min virksomhed. Indlægsbeskrivelse:\n\n ##post## \n\nVirksomhedsbeskrivelse:\n ##description## \n\nVirksomhedsnavn:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(912, '26', 'nl-NL', 'Maak een groot professioneel bericht op sociale media voor mijn bedrijf. Berichtbeschrijving:\n\n ##post## \n\nBedrijfsomschrijving:\n ##description## \n\nBedrijfsnaam:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(913, '26', 'et-EE', 'Loo minu ettevõtte jaoks suur professionaalne sotsiaalmeediapostitus. Postituse kirjeldus:\n\n ##post## \n\nEttevõtte kirjeldus:\n ##description## \n\nEttevõtte nimi:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(914, '26', 'fi-FI', 'Luo suuri ammattimainen sosiaalisen median viesti yritykselleni. Viestin kuvaus:\n\n ##post## \n\nYrityksen kuvaus:\n ##description## \n\nYrityksen nimi:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(915, '26', 'fr-FR', 'Créer une grande publication professionnelle sur les réseaux sociaux pour mon entreprise. Description de la publication :\n\n ##post## \n\nDescription de l\'entreprise :\n ##description## \n\nNom de l\'entreprise :\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(916, '26', 'de-DE', 'Erstelle einen großen professionellen Social-Media-Beitrag für mein Unternehmen. Beitragsbeschreibung:\n\n ##post## \n\nUnternehmensbeschreibung:\n ##description## \n\nFirmenname:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(917, '26', 'el-GR', 'Δημιουργήστε μια μεγάλη επαγγελματική ανάρτηση στα μέσα κοινωνικής δικτύωσης για την εταιρεία μου. Περιγραφή ανάρτησης:\n\n ##post## \n\nΠεριγραφή εταιρείας:\n ##description## \n\nΌνομα εταιρείας:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(918, '26', 'he-IL', 'צור פוסט מקצועי גדול במדיה החברתית עבור החברה שלי. תיאור הפוסט:\n\n ##post## \n\nתיאור החברה:\n ##description## \n\nשם החברה:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(919, '26', 'hi-IN', 'मेरी कंपनी के लिए एक बड़ी पेशेवर सोशल मीडिया पोस्ट बनाएं। पोस्ट विवरण:\n\n ##post## \n\nकंपनी विवरण:\n ##description## \n\nकंपनी का नाम:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(920, '26', 'hu-HU', 'Hozzon létre egy nagy, professzionális közösségi média bejegyzést a cégem számára. Bejegyzés leírása:\n\n ##post## \n\nCég leírása:\n ##description## \n\nCég neve:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(921, '26', 'is-IS', 'Búðu til 10 grípandi bloggtitla fyrir:\n\n ##description## \n\n\'Búa til stóra faglega samfélagsmiðlafærslu fyrir fyrirtækið mitt. Lýsing færslu:\n\n ##post## \n\nFyrirtækislýsing:\n ##description## \n\nNafn fyrirtækis:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(922, '26', 'id-ID', 'Buat postingan media sosial profesional yang besar untuk perusahaan saya. Deskripsi postingan:\n\n ##post## \n\nDeskripsi perusahaan:\n ##description## \n\nNama perusahaan:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(923, '26', 'it-IT', 'Crea un grande post professionale sui social media per la mia azienda. Descrizione del post:\n\n ##post## \n\nDescrizione azienda:\n ##description## \n\nNome azienda:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(924, '26', 'ja-JP', '私の会社のために大規模なプロフェッショナル ソーシャル メディア投稿を作成します。投稿の説明:\n\n ##post## \n\n会社説明:\n ##description## \n\n会社名:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(925, '26', 'ko-KR', '우리 회사를 위한 대규모 전문 소셜 미디어 게시물을 작성합니다. 게시물 설명:\n\n ##post## \n\n회사 설명:\n ##description## \n\n회사 이름:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(926, '26', 'ms-MY', 'Buat siaran media sosial profesional yang besar untuk syarikat saya. Perihalan siaran:\n\n ##post## \n\nPerihalan syarikat:\n ##description## \n\nNama syarikat:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(927, '26', 'nb-NO', 'Opprett et stort profesjonelt innlegg på sosiale medier for firmaet mitt. Innleggsbeskrivelse:\n\n ##post## \n\nBedriftsbeskrivelse:\n ##description## \n\nBedriftsnavn:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(928, '26', 'pl-PL', 'Utwórz obszerny, profesjonalny post mojej firmy w mediach społecznościowych. Opis wpisu:\n\n ##post## \n\nOpis firmy:\n ##description## \n\nNazwa firmy:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(929, '26', 'pt-PT', 'Criar uma grande postagem de mídia social profissional para minha empresa. Descrição da postagem:\n\n ##post## \n\nDescrição da empresa:\n ##description## \n\nNome da empresa:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(930, '26', 'ru-RU', 'Создайте большую профессиональную публикацию в социальных сетях для моей компании. Описание публикации:\n\n ##post## \n\nОписание компании:\n ##description## \n\nНазвание компании:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(931, '26', 'es-ES', 'Crear una gran publicación profesional en las redes sociales para mi empresa. Descripción de la publicación:\n\n ##post## \n\nDescripción de la empresa:\n ##description## \n\nNombre de la empresa:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(932, '26', 'sv-SE', 'Skapa ett stort professionellt inlägg på sociala medier för mitt företag. Inläggsbeskrivning:\n\n ##post## \n\nFöretagsbeskrivning:\n ##description## \n\nFöretagsnamn:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(933, '26', 'tr-TR', 'Şirketim için büyük bir profesyonel sosyal medya gönderisi oluştur. Gönderi açıklaması:\n\n ##post## \n\nŞirket açıklaması:\n ##description## \n\nŞirket adı:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(934, '26', 'pt-BR', 'Criar uma grande postagem de mídia social profissional para minha empresa. Descrição da postagem:\n\n ##post## \n\nDescrição da empresa:\n ##description## \n\nNome da empresa:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(935, '26', 'ro-RO', 'Creează o postare mare profesională pe rețelele sociale pentru compania mea. Descrierea postării:\n\n ##post## \n\nDescrierea companiei:\n ##description## \n\nNumele companiei:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(936, '26', 'vi-VN', 'Tạo một bài đăng lớn chuyên nghiệp trên mạng xã hội cho công ty của tôi. Mô tả bài đăng:\n\n ##post## \n\nMô tả công ty:\n ##description## \n\nTên công ty:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(937, '26', 'sw-KE', 'Unda chapisho kubwa la kitaalamu la mitandao ya kijamii kwa ajili ya kampuni yangu. Chapisha maelezo:\n\n ##post## \n\nMaelezo ya kampuni:\n ##description## \n\nJina la kampuni:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(938, '26', 'sl-SI', 'Ustvari veliko profesionalno objavo v družbenih medijih za moje podjetje. Opis objave:\n\n ##post## \n\nOpis podjetja:\n ##description## \n\nIme podjetja:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(939, '26', 'th-TH', 'สร้างโพสต์โซเชียลมีเดียระดับมืออาชีพขนาดใหญ่สำหรับบริษัทของฉัน คำอธิบายโพสต์:\n\n ##post## \n\nคำอธิบายบริษัท:\n ##description## \n\nชื่อบริษัท:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(940, '26', 'uk-UA', 'Створіть великий професійний допис у соціальних мережах для моєї компанії. Опис допису:\n\n ##post## \n\nОпис компанії:\n ##description## \n\nНазва компанії:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(941, '26', 'lt-LT', 'Sukurkite didelį profesionalų mano įmonės socialinės žiniasklaidos įrašą. Įrašo aprašas: \n\n ##post## \n\nĮmonės aprašymas:\n ##description## \n\nĮmonės pavadinimas:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(942, '26', 'bg-BG', 'Създайте голяма професионална публикация в социалните медии за моята компания. Описание на публикацията:\n\n ##post## \n\nОписание на фирмата:\n ##description## \n\nИме на фирмата:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(943, '27', 'en-US', 'Write a long creative headline for the following product to run on Facebook aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the headline must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(944, '27', 'ar-AE', 'اكتب عنوانًا إبداعيًا طويلاً للمنتج التالي ليتم تشغيله على Facebook بهدف:\n\n ##audience## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نبرة صوت العنوان:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(945, '27', 'cmn-CN', '为以下产品写一个长创意标题以在 Facebook 上运行,旨在:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 标题的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(946, '27', 'hr-HR', 'Napišite dugačak kreativni naslov za sljedeći proizvod koji će se prikazivati na Facebooku s ciljem:\n\n ##audience## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa naslova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(947, '27', 'cs-CZ', 'Napište dlouhý kreativní nadpis pro následující produkt, který bude spuštěn na Facebooku:\n\n ##audience## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu titulku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(948, '27', 'da-DK', 'Skriv en lang kreativ overskrift til følgende produkt, der skal køre på Facebook, rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i overskriften skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(949, '27', 'nl-NL', 'Skriv en lang kreativ overskrift til følgende produkt, der skal køre på Facebook, rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i overskriften skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(950, '27', 'et-EE', 'Kirjutage Facebookis käivitamiseks järgmise toote jaoks pikk loominguline pealkiri, mille eesmärk on:\n\n ##audience## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Pealkirja hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(951, '27', 'fi-FI', 'Kirjoita pitkä luova otsikko seuraavalle tuotteelle Facebookissa käytettäväksi:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Otsikon äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(952, '27', 'fr-FR', 'Écrivez un long titre créatif pour le produit suivant à diffuser sur Facebook destiné à :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix du titre doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(953, '27', 'de-DE', 'Schreiben Sie eine lange kreative Überschrift für das folgende Produkt, das auf Facebook laufen soll:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Überschrift muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(954, '27', 'el-GR', 'Γράψτε μια μακρά δημιουργική επικεφαλίδα για το ακόλουθο προϊόν για προβολή στο Facebook με στόχο:\n\n ##audience## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής της επικεφαλίδας πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(955, '27', 'he-IL', 'כתוב כותרת יצירתית ארוכה למוצר הבא שיוצג בפייסבוק שמטרתה:\n\n ##audience## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n גוון הקול של הכותרת חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(956, '27', 'hi-IN', 'Facebook पर चलने के लिए निम्न उत्पाद के लिए एक लंबी क्रिएटिव हेडलाइन लिखें:\n\n ##audience## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n शीर्षक का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(957, '27', 'hu-HU', 'Írjon egy hosszú kreatív címsort a következő termékhez a Facebookon való futtatáshoz, amelynek célja:\n\n ##audience## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A címsor hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(958, '27', 'is-IS', 'Skrifaðu langa skapandi fyrirsögn fyrir eftirfarandi vöru til að birtast á Facebook sem miðar að:\n\n ##audience## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í fyrirsögninni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(959, '27', 'id-ID', 'Tulis judul kreatif yang panjang untuk produk berikut agar berjalan di Facebook yang ditujukan untuk:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara judul harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(960, '27', 'it-IT', 'Scrivi un lungo titolo creativo per il seguente prodotto da pubblicare su Facebook destinato a:\n\n ##audience## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce del titolo deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(961, '27', 'ja-JP', '次の製品の長いクリエイティブな見出しを書いて、Facebook で実行することを目的としています:\n\n ##audience## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 見出しの口調は次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(962, '27', 'ko-KR', 'Facebook에서 실행할 다음 제품에 대한 길고 창의적인 헤드라인을 작성하세요.\n\n ##audience## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 헤드라인의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(963, '27', 'ms-MY', 'Tulis tajuk kreatif yang panjang untuk produk berikut disiarkan di Facebook bertujuan:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara tajuk mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(964, '27', 'nb-NO', 'Skriv en lang kreativ overskrift for følgende produkt å kjøre på Facebook rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i overskriften må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(965, '27', 'pl-PL', 'Napisz długi kreatywny nagłówek dla następującego produktu do wyświetlania na Facebooku, którego celem jest:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton nagłówka musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(966, '27', 'pt-PT', 'Escreva um longo título criativo para o seguinte produto a ser executado no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do título deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(967, '27', 'ru-RU', 'Напишите длинный креативный заголовок для следующего продукта, который будет запущен на Facebook и нацелен на:\n\n ##audience## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон голоса заголовка должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(968, '27', 'es-ES', 'Escribe un título creativo largo para que el siguiente producto se ejecute en Facebook dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz del titular debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(969, '27', 'sv-SE', 'Skriv en lång kreativ rubrik för följande produkt att köra på Facebook som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rubriken måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(970, '27', 'tr-TR', 'Aşağıdaki ürünün Facebook\'ta yayınlanması için uzun bir yaratıcı başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Başlığın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(971, '27', 'pt-BR', 'Escreva um longo título criativo para o seguinte produto a ser executado no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do título deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(972, '27', 'ro-RO', 'Scrieți un titlu creativ lung pentru următorul produs care să fie difuzat pe Facebook, care vizează:\n\n ##audience## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii titlului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(973, '27', 'vi-VN', 'Viết một dòng tiêu đề sáng tạo dài cho sản phẩm sau để chạy trên Facebook nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của tiêu đề phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(974, '27', 'sw-KE', 'Andika kichwa kirefu cha ubunifu ili bidhaa ifuatayo iendeshwe kwenye Facebook inayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya kichwa lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(975, '27', 'sl-SI', 'Napišite dolg kreativni naslov za naslednji izdelek, ki bo deloval na Facebooku in bo namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu naslova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(976, '27', 'th-TH', 'เขียนพาดหัวโฆษณาแบบยาวเพื่อให้ผลิตภัณฑ์ต่อไปนี้ทำงานบน Facebook โดยมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงพาดหัวต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(977, '27', 'uk-UA', 'Напишіть довгий креативний заголовок для наступного продукту для показу на Facebook, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон заголовка має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(978, '27', 'lt-LT', 'Parašykite ilgą kūrybinę antraštę, kad šis produktas būtų paleistas „Facebook“ ir skirtas:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Antraštės balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(979, '27', 'bg-BG', 'Напишете дълго творческо заглавие за следния продукт, който да се пусне във Facebook и е насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на заглавието трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(980, '28', 'en-US', 'Write catchy 30-character headlines to promote your product with Google Ads. Product name:\n\n ##title## \n\nProduct description:\n ##description## \n\nTarget audience for ad:\n ##audience## \n\nTone of voice of the headline must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(981, '28', 'ar-AE', 'اكتب عناوين جذابة مكونة من 30 حرفًا للترويج لمنتجك باستخدام إعلانات Google. اسم المنتج:\n\n ##title## \n\nوصف المنتج:\n ##description## \n\nالجمهور المستهدف للإعلان:\n ##audience## \n\nيجب أن تكون نغمة الصوت في العنوان:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(982, '28', 'cmn-CN', '撰写醒目的 30 个字符的标题,以使用 Google Ads 宣传您的产品。产品名称:\n\n ##title## \n\n产品描述:\n ##description## \n\n广告的目标受众:\n ##audience## \n\n标题的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(983, '28', 'hr-HR', 'Napišite upečatljive naslove od 30 znakova kako biste promovirali svoj proizvod uz Google Ads. Naziv proizvoda:\n\n ##title## \n\nOpis proizvoda:\n ##description## \n\nCiljana publika za oglas:\n ##audience## \n\nTon glasa naslova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(984, '28', 'cs-CZ', 'Napište chytlavé nadpisy o délce 30 znaků a propagujte svůj produkt pomocí Google Ads. Název produktu:\n\n ##title## \n\nPopis produktu:\n ##description## \n\nCílové publikum pro reklamu:\n ##audience## \n\nTón hlasu titulku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(985, '28', 'da-DK', 'Skriv fængende overskrifter på 30 tegn for at promovere dit produkt med Google Ads. Produktnavn:\n\n ##title## \n\nProduktbeskrivelse:\n ##description## \n\nMålgruppe for annonce:\n ##audience## \n\nTone i overskriften skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(986, '28', 'nl-NL', 'Schrijf pakkende koppen van 30 tekens om uw product te promoten met Google Ads. Productnaam:\n\n ##title## \n\nProductbeschrijving:\n ##description## \n\nDoelgroep voor advertentie:\n ##audience## \n\nDe toon van de kop moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(987, '28', 'et-EE', 'Kirjutage meeldejäävaid 30-märgilisi pealkirju, et reklaamida oma toodet Google Adsiga. Toote nimi:\n\n ##title## \n\nTootekirjeldus:\n ##description## \n\nReklaami sihtrühm:\n ##audience## \n\nPealkirja hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(988, '28', 'fi-FI', 'Kirjoita tarttuvia 30 merkin pituisia otsikoita mainostaaksesi tuotettasi Google Adsin avulla. Tuotteen nimi:\n\n ##title## \n\nTuotteen kuvaus:\n ##description## \n\nMainoksen kohdeyleisö:\n ##audience## \n\nOtsikon äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(989, '28', 'fr-FR', 'Rédigez des titres accrocheurs de 30 caractères pour promouvoir votre produit avec Google Ads. Nom du produit :\n\n ##title## \n\nDescription du produit :\n ##description## \n\nAudience cible pour l\'annonce :\n ##audience## \n\nLe ton de la voix du titre doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(990, '28', 'de-DE', 'Schreiben Sie ansprechende Überschriften mit 30 Zeichen, um Ihr Produkt mit Google Ads zu bewerben. Produktname:\n\n ##title## \n\nProduktbeschreibung:\n ##description## \n\nZielpublikum für Anzeige:\n ##audience## \n\nTonlage der Überschrift muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(991, '28', 'el-GR', 'Γράψτε εντυπωσιακούς τίτλους 30 χαρακτήρων για να προωθήσετε το προϊόν σας με το Google Ads. Όνομα προϊόντος:\n\n ##title## \n\nΠεριγραφή προϊόντος:\n ##description## \n\nΣτόχευση κοινού για διαφήμιση:\n ##audience## \n\nΟ τόνος της φωνής της επικεφαλίδας πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(992, '28', 'he-IL', 'צור 10 כותרות בלוג קליטות עבור:\n\n ##description## \n\n\'כתוב כותרות קליטות של 30 תווים כדי לקדם את המוצר שלך עם Google Ads. שם המוצר:\n\n ##title## \n\nתיאור המוצר:\n ##description## \n\nקהל יעד למודעה:\n ##audience## \n\nטון הדיבור של הכותרת חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(993, '28', 'hi-IN', 'Google Ads के साथ अपने उत्पाद का प्रचार करने के लिए आकर्षक 30-वर्ण वाली सुर्खियाँ लिखें। उत्पाद का नाम:\n\n ##title## \n\nउत्पाद विवरण:\n ##description## \n\nविज्ञापन के लिए लक्षित दर्शक:\n ##audience## \n\nशीर्षक की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(994, '28', 'hu-HU', 'Írjon fülbemászó, 30 karakterből álló címsorokat, hogy reklámozza termékét a Google Ads szolgáltatással. Termék neve:\n\n ##title## \n\nTermékleírás:\n ##description## \n\nHirdetés célközönsége:\n ##audience## \n\nA címsor hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(995, '28', 'is-IS', 'Skrifaðu grípandi 30 stafa fyrirsagnir til að kynna vöruna þína með Google Ads. Vöruheiti:\n\n ##title## \n\nVörulýsing:\n ##description## \n\nMarkhópur auglýsingar:\n ##audience## \n\nTónn í fyrirsögninni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(996, '28', 'id-ID', 'Tulis judul 30 karakter yang menarik untuk mempromosikan produk Anda dengan Google Ads. Nama produk:\n\n ##title## \n\nDeskripsi produk:\n ##description## \n\nTarget pemirsa untuk iklan:\n ##audience## \n\nNada suara judul harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(997, '28', 'it-IT', 'Scrivi titoli accattivanti di 30 caratteri per promuovere il tuo prodotto con Google Ads. Nome del prodotto:\n\n ##title## \n\nDescrizione del prodotto:\n ##description## \n\nPubblico di destinazione dell\'annuncio:\n ##audience## \n\nIl tono di voce del titolo deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(998, '28', 'ja-JP', 'キャッチーな 30 文字の見出しを書いて、Google 広告で商品を宣伝しましょう。商品名:\n\n ##title## \n\n商品説明:\n ##description## \n\n広告のターゲット ユーザー:\n ##audience## \n\n見出しの声のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(999, '28', 'ko-KR', 'Google Ads로 제품을 홍보하려면 눈길을 끄는 30자의 제목을 작성하세요. 제품 이름:\n\n ##title## \n\n제품 설명:\n ##description## \n\n광고 대상:\n ##audience## \n\n제목의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1000, '28', 'ms-MY', 'Tulis tajuk 30 aksara yang menarik untuk mempromosikan produk anda dengan Google Ads. Nama produk:\n\n ##title## \n\nPerihalan produk:\n ##description## \n\nSasarkan khalayak untuk iklan:\n ##audience## \n\nNada suara tajuk mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1001, '28', 'nb-NO', 'Skriv fengende overskrifter på 30 tegn for å markedsføre produktet ditt med Google Ads. Produktnavn:\n\n ##title## \n\nProduktbeskrivelse:\n ##description## \n\nMålgruppe for annonse:\n ##audience## \n\nTone i overskriften må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1002, '28', 'pl-PL', 'Pisz chwytliwe 30-znakowe nagłówki, aby promować swój produkt w Google Ads. Nazwa produktu:\n\n ##title## \n\nOpis produktu:\n ##description## \n\nDocelowi odbiorcy reklamy:\n ##audience## \n\nTon nagłówka musi być następujący:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1003, '28', 'pt-PT', 'Escreva títulos atraentes de 30 caracteres para promover seu produto com o Google Ads. Nome do produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\nPúblico-alvo do anúncio:\n ##audience## \n\nTom de voz do título deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1004, '28', 'ru-RU', 'Напишите броские 30-символьные заголовки, чтобы продвигать свой продукт с помощью Google Реклама. Название продукта:\n\n ##title## \n\nОписание продукта:\n ##description## \n\nЦелевая аудитория для рекламы:\n ##audience## \n\nТон заголовка должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1005, '28', 'es-ES', 'Escriba títulos llamativos de 30 caracteres para promocionar su producto con Google Ads. Nombre del producto:\n\n ##title## \n\nDescripción del producto:\n ##description## \n\nAudiencia objetivo para el anuncio:\n ##audience## \n\nEl tono de voz del titular debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1006, '28', 'sv-SE', 'Skriv medryckande rubriker med 30 tecken för att marknadsföra din produkt med Google Ads. Produktnamn:\n\n ##title## \n\nProduktbeskrivning:\n ##description## \n\nMålgrupp för annons:\n ##audience## \n\nTonfallet i rubriken måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1007, '28', 'tr-TR', 'Ürününüzü Google Ads ile tanıtmak için akılda kalıcı 30 karakterlik başlıklar yazın. Ürün adı:\n\n ##title## \n\nÜrün açıklaması:\n ##description## \n\nReklamın hedef kitlesi:\n ##audience## \n\nBaşlığın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1008, '28', 'pt-BR', 'Escreva títulos atraentes de 30 caracteres para promover seu produto com o Google Ads. Nome do produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\nPúblico-alvo do anúncio:\n ##audience## \n\nTom de voz do título deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1009, '28', 'ro-RO', 'Scrieți titluri atractive de 30 de caractere pentru a vă promova produsul cu Google Ads. Nume produs:\n\n ##title## \n\nDescrierea produsului:\n ##description## \n\nPublic țintă pentru anunț:\n ##audience## \n\nTonul vocii titlului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1010, '28', 'vi-VN', 'Viết dòng tiêu đề hấp dẫn gồm 30 ký tự để quảng cáo sản phẩm của bạn với Google Ads. Tên sản phẩm:\n\n ##title## \n\nMô tả sản phẩm:\n ##description## \n\nĐối tượng mục tiêu cho quảng cáo:\n ##audience## \n\nGiọng điệu của tiêu đề phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1011, '28', 'sw-KE', 'Andika vichwa vya habari vya kuvutia vya herufi 30 ili kutangaza bidhaa yako ukitumia Google Ads. Jina la bidhaa:\n\n ##title## \n\nMaelezo ya bidhaa:\n ##description## \n\nHadhira lengwa ya tangazo:\n ##audience## \n\nToni ya sauti ya kichwa lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1012, '28', 'sl-SI', 'Napišite privlačne naslove s 30 znaki za promocijo svojega izdelka z Google Ads. Ime izdelka:\n\n ##title## \n\nOpis izdelka:\n ##description## \n\nCiljna publika za oglas:\n ##audience## \n\nTon glasu naslova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1013, '28', 'th-TH', 'เขียนบรรทัดแรก 30 อักขระที่ดึงดูดใจเพื่อโปรโมตผลิตภัณฑ์ของคุณด้วย Google Ads ชื่อผลิตภัณฑ์:\n\n ##title## \n\nรายละเอียดสินค้า:\n ##description## \n\nกลุ่มเป้าหมายสำหรับโฆษณา:\n ##audience## \n\nน้ำเสียงของพาดหัวต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1014, '28', 'uk-UA', 'Напишіть привабливі заголовки з 30 символів, щоб рекламувати свій продукт за допомогою Google Ads. Назва продукту:\n\n ##title## \n\nОпис товару:\n ##description## \n\nЦільова аудиторія для реклами:\n ##audience## \n\nТон заголовка має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1015, '28', 'lt-LT', 'Parašykite patrauklias 30 simbolių antraštes, kad reklamuotumėte savo produktą naudodami Google Ads. Produkto pavadinimas:\n\n ##title## \n\nProdukto aprašymas:\n ##description## \n\nSkelbimo tikslinė auditorija:\n ##audience## \n\nAntraštės balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1016, '28', 'bg-BG', 'Напишете закачливи заглавия от 30 знака, за да популяризирате продукта си с Google Ads. Име на продукта:\n\n ##title## \n\nОписание на продукта:\n ##description## \n\nЦелева аудитория за реклама:\n ##audience## \n\nТонът на заглавието трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1017, '29', 'en-US', 'Write a Google Ads description that makes your ad stand out and generates leads. Target audience:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the ad must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1018, '29', 'ar-AE', 'اكتب وصفًا لبرنامج إعلانات Google يجعل إعلانك متميزًا ويكتسب عملاء محتملين. الجمهور المستهدف:\n\n ##audience## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نغمة صوت الإعلان:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1019, '29', 'cmn-CN', '撰写 Google Ads 说明,使您的广告脱颖而出并带来潜在客户。目标受众:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 广告语调必须是:\n ##tone_language## \n\n\'为以下内容生成 10 个吸引人的博客标题:\n\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1020, '29', 'hr-HR', 'Napišite Google Ads opis koji ističe vaš oglas i generira potencijalne kupce. Ciljana publika:\n\n ##audience## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa oglasa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1021, '29', 'cs-CZ', 'Napište popis Google Ads, díky kterému vaše reklama vynikne a generuje potenciální zákazníky. Cílové publikum:\n\n ##audience## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu reklamy musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1022, '29', 'da-DK', 'Skriv en Google Ads-beskrivelse, der får din annonce til at skille sig ud og genererer kundeemner. Målgruppe:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annoncen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1023, '29', 'nl-NL', 'Schrijf een Google Ads-beschrijving waardoor uw advertentie opvalt en leads genereert. Doelgroep:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de advertentie moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1024, '29', 'et-EE', 'Kirjutage Google Adsi kirjeldus, mis muudab teie reklaami silmapaistvaks ja loob müügivihjeid. Sihtpublik:\n\n ##audience## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Reklaami hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1025, '29', 'fi-FI', 'Kirjoita Google Ads -kuvaus, joka tekee mainoksestasi erottuvan ja luo liidejä. Kohdeyleisö:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Mainoksen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1026, '29', 'fr-FR', 'Rédigez une description Google Ads qui permet à votre annonce de se démarquer et de générer des prospects. Public cible :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix de l\'annonce doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1027, '29', 'de-DE', 'Schreiben Sie eine Google Ads-Beschreibung, die Ihre Anzeige hervorhebt und Leads generiert. Zielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Anzeige muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1028, '29', 'el-GR', 'Γράψτε μια περιγραφή του Google Ads που κάνει τη διαφήμισή σας να ξεχωρίζει και να δημιουργεί δυνητικούς πελάτες. Στοχευόμενο κοινό:\n\n ##audience## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της διαφήμισης πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1029, '29', 'he-IL', 'כתוב תיאור של Google Ads שיבלוט את המודעה שלך ויוצר לידים. קהל יעד:\n\n ##audience## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n טון הדיבור של המודעה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1030, '29', 'hi-IN', 'एक Google Ads विवरण लिखें जो आपके विज्ञापन को सबसे अलग बनाता है और लीड उत्पन्न करता है। लक्षित ऑडियंस:\n\n ##audience## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n विज्ञापन का स्वर ऐसा होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1031, '29', 'hu-HU', 'Írjon olyan Google Ads-leírást, amely kiemeli hirdetését, és potenciális ügyfeleket generál. Célközönség:\n\n ##audience## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A hirdetés hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1032, '29', 'is-IS', 'Skrifaðu Google Ads lýsingu sem gerir auglýsinguna þína áberandi og gefur af sér leiðir. Markhópur:\n\n ##audience## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Röddtónn auglýsingarinnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1033, '29', 'id-ID', 'Tulis deskripsi Google Ads yang menonjolkan iklan Anda dan menghasilkan prospek. Audiens target:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara iklan harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1034, '29', 'it-IT', 'Scrivi una descrizione di Google Ads che faccia risaltare il tuo annuncio e generi lead. Pubblico di destinazione:\n\n ##audience## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell\'annuncio deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1035, '29', 'ja-JP', '広告を目立たせ、リードを生み出す Google 広告の説明を書いてください。対象ユーザー:\n\n ##audience## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 広告のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1036, '29', 'ko-KR', '광고를 돋보이게 하고 리드를 생성하는 Google Ads 설명을 작성하세요. 타겟층:\n\n ##audience## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 광고의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1037, '29', 'ms-MY', 'Tulis perihalan Google Ads yang menjadikan iklan anda menonjol dan menjana petunjuk. Khalayak sasaran:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara iklan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1038, '29', 'nb-NO', 'Skriv en Google Ads-beskrivelse som gjør at annonsen din skiller seg ut og genererer potensielle kunder. Målgruppe:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annonsen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(1039, '29', 'pl-PL', 'Napisz opis Google Ads, który wyróżni Twoją reklamę i przyciągnie potencjalnych klientów. Grupa docelowa:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton reklamy musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1040, '29', 'pt-PT', 'Escreva uma descrição do Google Ads que destaque seu anúncio e gere leads. Público-alvo:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1041, '29', 'ru-RU', 'Напишите описание Google Реклама, которое выделит вашу рекламу и привлечет потенциальных клиентов. Целевая аудитория:\n\n ##audience## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон объявления должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1042, '29', 'es-ES', 'Escriba una descripción de Google Ads que haga que su anuncio se destaque y genere clientes potenciales. Público objetivo:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz del anuncio debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1043, '29', 'sv-SE', 'Skriv en Google Ads-beskrivning som får din annons att sticka ut och genererar potentiella kunder. Målgrupp:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i annonsen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1044, '29', 'tr-TR', 'Reklamınızı öne çıkaran ve olası satışlar sağlayan bir Google Ads açıklaması yazın. Hedef kitle:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Reklamın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1045, '29', 'pt-BR', 'Escreva uma descrição do Google Ads que destaque seu anúncio e gere leads. Público-alvo:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1046, '29', 'ro-RO', 'Scrieți o descriere Google Ads care să vă facă anunțul în evidență și să genereze clienți potențiali. Publicul țintă:\n\n ##audience## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii al anunțului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1047, '29', 'vi-VN', 'Viết mô tả Google Ads giúp quảng cáo của bạn nổi bật và tạo khách hàng tiềm năng. Đối tượng mục tiêu:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của quảng cáo phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1048, '29', 'sw-KE', 'Andika maelezo ya Google Ads ambayo yanafanya tangazo lako liwe bora zaidi na kuzalisha watu wanaoongoza. Hadhira inayolengwa:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya tangazo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1049, '29', 'sl-SI', 'Napišite opis Google Ads, s katerim bo vaš oglas izstopal in pritegnil potencialne stranke. Ciljna publika:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu oglasa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1050, '29', 'th-TH', 'เขียนคำอธิบาย Google Ads ที่ทำให้โฆษณาของคุณโดดเด่นและสร้างโอกาสในการขาย ผู้ชมเป้าหมาย:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของโฆษณาต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1051, '29', 'uk-UA', 'Напишіть опис Google Ads, який виділятиме вашу рекламу та залучатиме потенційних клієнтів. Цільова аудиторія:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу оголошення має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1052, '29', 'lt-LT', 'Parašykite Google Ads aprašą, kad jūsų skelbimas išsiskirtų ir pritrauktų potencialių klientų. Tikslinė auditorija:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Skelbimo balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1053, '29', 'bg-BG', 'Напишете описание в Google Ads, което прави рекламата ви да се откроява и генерира потенциални клиенти. Целева аудитория:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на рекламата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1054, '30', 'en-US', 'Write problem-agitate-solution for the following product description:\n\n ##description## \n\nProduct name:\n ##title## \n\nTarget audience:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1055, '30', 'ar-AE', 'اكتب حل المشكلات لوصف المنتج التالي:\n\n ##description## \n\n اسم المنتج و\n ##title## \n\n الجمهور المستهدف: \n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1056, '30', 'cmn-CN', '为以下产品描述编写问题解决方案:\n\n ##description## \nProduct name:\n ##title## \n\n 目标受众:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1057, '30', 'hr-HR', 'Napišite problem-agitate-solution za sljedeći opis proizvoda:\n\n ##description## \n\nNaziv proizvoda:\n ##title## \n\nCiljana publika:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1058, '30', 'cs-CZ', 'Napište problém-agitovat-řešení pro následující popis produktu:\n\n ##description## \n\n\\Název produktu:\n ##title## \n\nCílové publikum:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1059, '30', 'da-DK', 'Skriv problem-agitere-løsning til følgende produktbeskrivelse:\n\n ##description## \n\nProduktnavn:\n ##title## \n\nMålgruppe:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1060, '30', 'nl-NL', 'Schrijf probleem-agitatie-oplossing voor de volgende productbeschrijving:\n\n ##description## \n\nProductnaam:\n ##title## \n\nDoelgroep:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1061, '30', 'et-EE', 'Kirjutage probleem-agitate-lahendus järgmisele tootekirjeldusele:\n\n ##description## \n\nToote nimi:\n ##title## \n\nSihtpublik:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1062, '30', 'fi-FI', 'Kirjoita ongelma-agitate-ratkaisu seuraavaan tuotekuvaukseen:\n\n ##description## \n\nTuotteen nimi:\n ##title## \n\nKohdeyleisö:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1063, '30', 'fr-FR', 'Écrivez problem-agitate-solution pour la description de produit suivante :\n\n ##description## \n\nNom du produit :\n ##title## \n\nPublic cible :\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1064, '30', 'de-DE', 'Problem-agitate-solution für die folgende Produktbeschreibung schreiben:\n\n ##description## \n\nProduktname:\n ##title## \n\nZielgruppe:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1065, '30', 'el-GR', 'Γράψτε πρόβλημα-ανακίνηση-λύση για την ακόλουθη περιγραφή προϊόντος:\n\n ##description## \n\nProduct name:\n ##title## \n\nΣτοχευόμενο κοινό:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1066, '30', 'he-IL', 'כתוב פתרון לבעיה-ערעור עבור תיאור המוצר הבא:\n\n ##description## \n\\שם המוצר:\n ##title## \n\nקהל יעד:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1067, '30', 'hi-IN', 'निम्नलिखित उत्पाद विवरण के लिए समस्या-आंदोलन-समाधान लिखें:\n\n ##description## \n\nप्रोडक्ट का नाम:\n ##title## \n\nलक्षित दर्शक:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1068, '30', 'hu-HU', 'Írjon probléma-agitáció-megoldást a következő termékleíráshoz:\n\n ##description## \n\nTerméknév:\n ##title## \n\nCélközönség:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1069, '30', 'is-IS', 'Skrifaðu vandamál-agitate-lausn fyrir eftirfarandi vörulýsingu:\n\n ##description## \n\nVöruheiti:\n ##title## \n\nMarkhópur:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1070, '30', 'id-ID', 'Tulis problem-agitate-solution untuk deskripsi produk berikut:\n\n ##description## \n\nNama produk:\n ##title## \n\nAudiens target:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1071, '30', 'it-IT', 'Scrivi problem-agitate-solution per la seguente descrizione del prodotto:\n\n ##description## \n\nNome prodotto:\n ##title## \n\nPubblico di destinazione:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1072, '30', 'ja-JP', '次の製品説明について、問題 - 扇動 - 解決策を書いてください:\n\n ##description##\n\n商品名:\n ##title## \n\n対象視聴者:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1073, '30', 'ko-KR', '다음 제품 설명에 대한 문제-동요-해결책 쓰기:\n\n ##description## \n제품 이름:\\및 \n##title## \n\n대상:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1074, '30', 'ms-MY', 'Tulis problem-agitate-solution untuk penerangan produk berikut:\n\n ##description## \n\nNama produk:\n ##title## \n\nKhalayak sasaran:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1075, '30', 'nb-NO', 'Skriv problem-agitere-løsning for følgende produktbeskrivelse:\n\n ##description## \n\nProduktnavn:\n ##title## \n\nMålgruppe:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1076, '30', 'pl-PL', 'Napisz problem-agitate-solution dla następującego opisu produktu:\n\n ##description## \n\nNazwa produktu:\n ##title## \n\nDocelowi odbiorcy:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1077, '30', 'pt-PT', 'Escrever problema-agitar-solução para a seguinte descrição do produto:\n\n ##description## \n\nNome do produto:\n ##title## \n\nPúblico-alvo:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1078, '30', 'ru-RU', 'Напишите проблему-агитация-решение для следующего описания продукта:\n\n ##description## \n\nНазвание продукта:\n ##title## \n\nЦелевая аудитория:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1079, '30', 'es-ES', 'Escriba problema-agitación-solución para la siguiente descripción del producto:\n\n ##description## \n\nNombre del producto:\n ##title## \n\nAudiencia objetivo:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1080, '30', 'sv-SE', 'Skriv problem-agitera-lösning för följande produktbeskrivning:\n\n ##description## \n\nProduktnamn:\n ##title## \n\nMålgrupp:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1081, '30', 'tr-TR', 'Aşağıdaki ürün açıklaması için problem-ajitasyon-çözüm yazın:\n\n ##description## \n\nÜrün adı:\n ##title## \n\nHedef kitle:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1082, '30', 'pt-BR', 'Escrever problema-agitar-solução para a seguinte descrição do produto:\n\n ##description## \n\nNome do produto:\n ##title## \n\nPúblico-alvo:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1083, '30', 'ro-RO', 'Scrieți problem-agitate-solution pentru următoarea descriere a produsului:\n\n ##description## \n\nNume produs:\n ##title## \n\nPublic țintă:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1084, '30', 'vi-VN', 'Viết giải pháp kích động vấn đề cho phần mô tả sản phẩm sau:\n\n ##description## \n\nTên sản phẩm:\n ##title## \n\nĐối tượng mục tiêu:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1085, '30', 'sw-KE', 'Andika utatuzi wa tatizo kwa maelezo yafuatayo ya bidhaa:\n\n ##description## \n\nJina la bidhaa:\n ##title## \n\nHadhira lengwa:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1086, '30', 'sl-SI', 'Napišite problem-agitate-solution za naslednji opis izdelka:\n\n ##description## \n\nIme izdelka:\n##title## \n\nCiljna publika:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1087, '30', 'th-TH', 'เขียนปัญหา-ปั่นป่วน-แก้ปัญหาสำหรับคำอธิบายผลิตภัณฑ์ต่อไปนี้:\n\n ##description## \n\nชื่อผลิตภัณฑ์:\n ##title## \n\nกลุ่มเป้าหมาย:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1088, '30', 'uk-UA', 'Напишіть problem-agitate-solution для такого опису продукту:\n\n ##description## \n\nНазва продукту:\n ##title## \n\nЦільова аудиторія:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1089, '30', 'lt-LT', 'Rašykite problemą-agituokite-sprendimą šiam gaminio aprašymui:\n\n ##description## \n\nProdukto pavadinimas:\n ##title## \n\nTikslinė auditorija:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(1090, '30', 'bg-BG', 'Напишете проблем-раздвижване-решение за следното описание на продукта:\n\n ##description## \nИме на продукта:\n ##title## \n\nЦелева аудитория:\n ##audience## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1091, '31', 'en-US', 'Write an academic essay about:\n\n ##title## \n\nUse following keywords in the essay:\n ##keywords## \n\nTone of voice of the essay must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1092, '31', 'ar-AE', 'اكتب مقالًا أكاديميًا حول:\n\n ##title## \n\nاستخدم الكلمات الأساسية التالية في المقال:\n ##keywords## \n\nيجب أن تكون نغمة صوت المقال:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1093, '31', 'cmn-CN', '写一篇关于:\n\n”的学术论文 ##title## \n\n在文章中使用以下关键词:\n ##keywords## \n\n文章的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1094, '31', 'hr-HR', 'Napišite akademski esej o:\n\n ##title## \n\nKoristite sljedeće ključne riječi u eseju:\n ##keywords## \n\nTon glasa eseja mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1095, '31', 'cs-CZ', 'Napište akademickou esej o:\n\n ##title## \n\nV eseji použijte následující klíčová slova:\n ##keywords## \n\nTón hlasu eseje musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1096, '31', 'da-DK', 'Skriv et akademisk essay om:\n\n ##title## \n\nBrug følgende nøgleord i essayet:\n ##keywords## \n\nStemmetonen i essayet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1097, '31', 'nl-NL', 'Schrijf een academisch essay over:\n\n ##title## \n\nGebruik de volgende trefwoorden in het essay:\n ##keywords## \n\nDe toon van het essay moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1098, '31', 'et-EE', 'Kirjutage akadeemiline essee teemal:\n\n ##title## \n\nKasutage essees järgmisi märksõnu:\n ##keywords## \n\nEssee hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1099, '31', 'fi-FI', 'Kirjoita akateeminen essee aiheesta:\n\n ##title## \n\nKäytä esseessä seuraavia avainsanoja:\n ##keywords## \n\nEsseen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1100, '31', 'fr-FR', 'Rédigez une dissertation académique sur :\n\n ##title## \n\nUtilisez les mots clés suivants dans lessai :\n ##keywords## \n\nLe ton de la dissertation doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1101, '31', 'de-DE', 'Schreiben Sie einen akademischen Aufsatz über:\n\n ##title## \n\nVerwenden Sie folgende Schlüsselwörter im Aufsatz:\n ##keywords## \n\nTonlage des Aufsatzes muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1102, '31', 'el-GR', 'Γράψτε ένα ακαδημαϊκό δοκίμιο για:\n\n ##title## \n\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στο δοκίμιο:\n ##keywords## \n\nΟ τόνος της φωνής του δοκιμίου πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1103, '31', 'he-IL', 'כתוב חיבור אקדמי על:\n\n ##title## \n\nהשתמש במילות המפתח הבאות במאמר:\n ##keywords## \n\nטון הדיבור של החיבור חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1104, '31', 'hi-IN', 'के बारे में एक अकादमिक निबंध लिखें:\n\n ##title## \n\nनिबंध में निम्नलिखित कीवर्ड का प्रयोग करें:\n ##keywords## \n\nनिबंध का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1105, '31', 'hu-HU', 'Írjon tudományos esszét erről:\n\n ##title## \n\nHasználja a következő kulcsszavakat az esszében:\n ##keywords## \n\nAz esszé hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1106, '31', 'is-IS', 'Skrifaðu fræðilega ritgerð um:\n\n ##title## \n\nNotaðu eftirfarandi lykilorð í ritgerðinni:\n ##keywords## \n\nTónn í ritgerðinni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1107, '31', 'id-ID', 'Tulis esai akademik tentang:\n\n ##title## \n\nGunakan kata kunci berikut dalam esai:\n ##keywords## \n\nNada suara esai harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1108, '31', 'it-IT', 'Scrivi un saggio accademico su:\n\n ##title## \n\nUsa le seguenti parole chiave nel saggio:\n ##keywords## \n\nIl tono di voce del saggio deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1109, '31', 'ja-JP', '以下について学術論文を書きます:\n\n ##title## \n\nエッセイでは次のキーワードを使用してください:\n ##keywords## \n\nエッセイの口調は:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1110, '31', 'ko-KR', '다음에 대한 학술 에세이 쓰기:\n\n ##title## \n\n에세이에서 다음 키워드를 사용하십시오:\n ##keywords## \n\n에세이의 목소리 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1111, '31', 'ms-MY', 'Tulis esei akademik tentang:\n\n ##title## \n\nGunakan kata kunci berikut dalam esei:\n ##keywords## \n\nNada suara esei mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1112, '31', 'nb-NO', 'Skriv et akademisk essay om:\n\n ##title## \n\nBruk følgende nøkkelord i essayet:\n ##keywords## \n\nTone i essayet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1113, '31', 'pl-PL', 'Napisz esej akademicki na temat:\n\n ##title## \n\nUżyj w eseju następujących słów kluczowych:\n ##keywords## \n\nTon wypowiedzi w eseju musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1114, '31', 'pt-PT', 'Escreva um ensaio acadêmico sobre:\n\n ##title## \n\nUse as seguintes palavras-chave no ensaio:\n ##keywords## \n\nTom de voz da redação deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1115, '31', 'ru-RU', 'Напишите академическое эссе о:\n\n ##title## \n\nИспользуйте следующие ключевые слова в эссе:\n ##keywords## \n\nТон голоса эссе должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1116, '31', 'es-ES', 'Escribe un ensayo académico sobre:\n\n ##title## \n\nUtilice las siguientes palabras clave en el ensayo:\n ##keywords## \n\nEl tono de voz del ensayo debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1117, '31', 'sv-SE', 'Skriv en akademisk uppsats om:\n\n ##title## \n\nAnvänd följande nyckelord i uppsatsen:\n ##keywords## \n\nRösten i uppsatsen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1118, '31', 'tr-TR', 'Şunun hakkında akademik bir makale yazın:\n\n ##title## \n\nMakalede şu anahtar kelimeleri kullanın:\n ##keywords## \n\nYazının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1119, '31', 'pt-BR', 'Escreva um ensaio acadêmico sobre:\n\n ##title## \n\nUse as seguintes palavras-chave no ensaio:\n ##keywords## \n\nTom de voz da redação deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1120, '31', 'ro-RO', 'Scrieți un eseu academic despre:\n\n ##title## \n\nFolosiți următoarele cuvinte cheie în eseu:\n ##keywords## \n\nTonul vocii al eseului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1121, '31', 'vi-VN', 'Viết một bài luận học thuật về:\n\n ##title## \n\nSử dụng các từ khóa sau trong bài luận:\n ##keywords## \n\nGiọng điệu của bài luận phải:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1122, '31', 'sw-KE', 'Andika insha ya kitaaluma kuhusu:\n\n ##title## \n\nTumia manenomsingi yafuatayo katika insha:\n ##keywords## \n\nToni ya sauti ya insha lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1123, '31', 'sl-SI', 'Napišite akademski esej o:\n\n ##title## \n\nV eseju uporabite naslednje ključne besede:\n ##keywords## \n\nTon glasu eseja mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1124, '31', 'th-TH', 'เขียนเรียงความเชิงวิชาการเกี่ยวกับ:\n\n ##title## \n\nใช้คำหลักต่อไปนี้ในเรียงความ:\n ##keywords## \n\nน้ำเสียงของเรียงความต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1125, '31', 'uk-UA', 'Напишіть науковий твір про:\n\n ##title## \n\nВикористовуйте такі ключові слова в есе:\n ##keywords## \n\nТон есе має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1126, '31', 'lt-LT', 'Parašykite akademinį rašinį apie:\n\n ##title## \n\nRašinyje naudokite šiuos raktinius žodžius:\n ##keywords## \n\nEsė balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1127, '31', 'bg-BG', 'Напишете академично есе за:\n\n ##title## \n\nИзползвайте следните ключови думи в есето:\n ##keywords## \n\nТонът на есето трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1128, '32', 'en-US', 'Write a welcome email about:\n\n ##description## \n\nOur company or product name is:\n ##title## \n\nTarget audience is:\n ##keywords## \n\nTone of voice of the welcome email must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1129, '32', 'ar-AE', 'اكتب بريدًا إلكترونيًا ترحيبيًا عن:\n\n ##description## \n\nاسم الشركة أو المنتج هو:\n ##title## \n\nالجمهور المستهدف هو:\n ##keywords## \n\n يجب أن تكون نغمة صوت البريد الإلكتروني الترحيبي:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1130, '32', 'cmn-CN', '写一封关于以下内容的欢迎电子邮件:\n\n ##description## \n\n我们的公司或产品名称是:\n ##title## \n\n目标受众是:\n ##keywords## \n\n欢迎邮件的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1131, '32', 'hr-HR', 'Napišite poruku dobrodošlice o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nCiljana publika je:\n ##keywords## \n\nTon glasa e-pošte dobrodošlice mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1132, '32', 'cs-CZ', 'Napišite poruku dobrodošlice o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nCiljana publika je:\n ##keywords## \n\nTon glasa e-pošte dobrodošlice mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1133, '32', 'da-DK', 'Skriv en velkomstmail om:\n\n ##description## \n\nVores firma- eller produktnavn er:\n ##title## \n\nMålgruppe er:\n ##keywords## \n\nTone i velkomstmailen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1134, '32', 'nl-NL', 'Schrijf een welkomstmail over:\n\n ##description## \n\nOnze bedrijfs- of productnaam is:\n ##title## \n\nDoelgroep is:\n ##keywords## \n\nDe toon van de welkomstmail moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1135, '32', 'et-EE', 'Kirjutage tervitusmeil teemal:\n\n ##description## \n\nMeie ettevõtte või toote nimi on:\n ##title## \n\nSihtpublik on:\n ##keywords## \n\nTervitusmeili hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1136, '32', 'fi-FI', 'Kirjoita tervetuloa sähköposti aiheesta:\n\n ##description## \n\nYrityksemme tai tuotteemme nimi on:\n ##title## \n\nKohdeyleisö on:\n ##keywords## \n\nTervetuloviestin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1137, '32', 'fr-FR', 'Écrivez un e-mail de bienvenue à propos de :\n\n ##description## \n\nLe nom de notre entreprise ou de notre produit est :\n ##title## \n\nLe public cible est :\n ##keywords## \n\nLe ton de la voix de l\'e-mail de bienvenue doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1138, '32', 'de-DE', 'Willkommens-E-Mail schreiben über:\n\n ##description## \n\nUnser Firmen- oder Produktname lautet:\n ##title## \n\nZielpublikum ist:\n ##keywords## \n\nTonfall der Willkommens-E-Mail muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1139, '32', 'el-GR', 'Γράψτε ένα email καλωσορίσματος σχετικά με:\n\n ##description## \n\nΗ εταιρεία ή το όνομα του προϊόντος μας είναι:\n ##title## \n\nΤο κοινό-στόχος είναι:\n ##keywords## \n\nΟ τόνος της φωνής του email καλωσορίσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1140, '32', 'he-IL', 'כתוב הודעת קבלת פנים על:\n\n ##description## \n\nשם החברה או המוצר שלנו הוא:\n ##title## \n\nקהל היעד הוא:\n ##keywords## \n\nנימת הקול של הודעת קבלת הפנים חייבת להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1141, '32', 'hi-IN', 'इस बारे में एक स्वागत योग्य ईमेल लिखें:\n\n ##description## \n\nहमारी कंपनी या उत्पाद का नाम है:\n ##title## \n\nलक्षित दर्शक हैं:\n ##keywords## \n\nस्वागत ईमेल का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1142, '32', 'hu-HU', 'Írjon üdvözlő e-mailt erről:\n\n ##description## \n\nCégünk vagy termékünk neve:\n ##title## \n\nA célközönség:\n ##keywords## \n\nAz üdvözlő e-mail hangjának a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1143, '32', 'is-IS', 'Skrifaðu velkominn tölvupóst um:\n\n ##description## \n\nFyrirtækis eða vöruheiti okkar er:\n ##title## \n\nMarkhópur er:\n ##keywords## \n\nTónn í móttökupóstinum verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1144, '32', 'id-ID', 'Tulis email selamat datang tentang:\n\n ##description## \n\nNama perusahaan atau produk kami adalah:\n ##title## \n\nTarget audiens adalah:\n ##keywords## \n\nNada suara email selamat datang harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1145, '32', 'it-IT', 'Scrivi un\'e-mail di benvenuto su:\n\n ##description## \n\nIl nome della nostra azienda o prodotto è:\n ##title## \n\nIl pubblico di destinazione è:\n ##keywords## \n\nIl tono della mail di benvenuto deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1146, '32', 'ja-JP', 'ウェルカム メールを書いてください:\n\n ##description## \n\n当社または製品名は次のとおりです:\n ##title## \n\n対象者:\n ##keywords## \n\nウェルカム メールのトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1147, '32', 'ko-KR', '다음에 대한 환영 이메일 작성:\n\n ##description## \n\n저희 회사 또는 제품 이름은:\n ##title## \n\n대상은:\n ##keywords## \n\n환영 이메일의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1148, '32', 'ms-MY', 'Tulis e-mel alu-aluan tentang:\n\n ##description## \n\nNama syarikat atau produk kami ialah:\n ##title## \n\nKhalayak sasaran ialah:\n ##keywords## \n\nNada suara e-mel alu-aluan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1149, '32', 'nb-NO', 'Skriv en velkomst-e-post om:\n\n ##description## \n\nVårt firma eller produktnavn er:\n ##title## \n\nMålgruppen er:\n ##keywords## \n\nStemmetonen i velkomst-e-posten må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1150, '32', 'pl-PL', 'Napisz powitalną wiadomość e-mail na temat:\n\n ##description## \n\nNazwa naszej firmy lub produktu to:\n ##title## \n\nDocelowi odbiorcy to:\n ##keywords## \n\nTon powitalnego e-maila musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1151, '32', 'pt-PT', 'Escreva um e-mail de boas-vindas sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de boas-vindas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1152, '32', 'ru-RU', 'Напишите приветственное письмо о:\n\n ##description## \n\nНазвание нашей компании или продукта:\n ##title## \n\nЦелевая аудитория:\n ##keywords## \n\nТон приветственного письма должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1153, '32', 'es-ES', 'Escribe un correo electrónico de bienvenida sobre:\n\n ##description## \n\nEl nombre de nuestra empresa o producto es:\n ##title## \n\nEl público objetivo es:\n ##keywords## \n\nEl tono de voz del email de bienvenida debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1154, '32', 'sv-SE', 'Skriv ett välkomstmail om:\n\n ##description## \n\nVårt företag eller produktnamn är:\n ##title## \n\nMålgruppen är:\n ##keywords## \n\nRösten i välkomstmeddelandet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1155, '32', 'tr-TR', 'Şunun hakkında bir karşılama e-postası yazın:\n\n ##description## \n\nŞirketimizin veya ürünümüzün adı:\n ##title## \n\nHedef kitle:\n ##keywords## \n\nKarşılama e-postasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1156, '32', 'pt-BR', 'Escreva um e-mail de boas-vindas sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de boas-vindas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1157, '32', 'ro-RO', 'Scrieți un e-mail de bun venit despre:\n\n ##description## \n\nNumele companiei sau al produsului nostru este:\n ##title## \n\nPublicul țintă este:\n ##keywords## \n\nTonul vocii al e-mailului de bun venit trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1158, '32', 'vi-VN', 'Viết email chào mừng về:\n\n ##description## \n\nTên sản phẩm hoặc công ty của chúng tôi là:\n ##title## \n\nĐối tượng mục tiêu là:\n ##keywords## \n\nGiọng điệu của email chào mừng phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1159, '32', 'sw-KE', 'Andika barua pepe ya kukaribisha kuhusu:\n\n ##description## \n\nJina la kampuni au bidhaa yetu ni:\n ##title## \n\nHadhira inayolengwa ni:\n ##keywords## \n\nToni ya sauti ya barua pepe ya kukaribisha lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1160, '32', 'sl-SI', 'Napišite pozdravno e-pošto o:\n\n ##description## \n\nIme našega podjetja ali izdelka je:\n ##title## \n\nCiljna publika je:\n ##keywords## \n\nTon glasu pozdravnega e-poštnega sporočila mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1161, '32', 'th-TH', 'เขียนอีเมลต้อนรับเกี่ยวกับ:\n\n ##description## \n\nชื่อบริษัทหรือผลิตภัณฑ์ของเราคือ:\n ##title## \n\nกลุ่มเป้าหมายคือ:\n ##keywords## \n\nเสียงของอีเมลต้อนรับต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1162, '32', 'uk-UA', 'Напишіть вітальний лист про:\n\n ##description## \n\nНазва нашої компанії або продукту:\n ##title## \n\nЦільова аудиторія:\n ##keywords## \n\nТон привітального листа має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1163, '32', 'lt-LT', 'Parašykite sveikinimo laišką apie:\n\n ##description## \n\nMūsų įmonės arba produkto pavadinimas yra:\n ##title## \n\nTikslinė auditorija yra:\n ##keywords## \n\nPasveikinimo el. laiško balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1164, '32', 'bg-BG', 'Напишете приветствен имейл за:\n\n ##description## \n\nИмето на нашата компания или продукт е:\n ##title## \n\nЦелевата аудитория е:\n ##keywords## \n\nТонът на приветствения имейл трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1165, '33', 'en-US', 'Write a cold email about:\n\n ##description## \n\nOur company or product name is:\n ##title## \n\nContext to include in the cold email:\n ##keywords## \n\nTone of voice of the cold email must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1166, '33', 'ar-AE', 'اكتب بريدًا إلكترونيًا باردًا حول:\n\n ##description## \n\nاسم الشركة أو المنتج هو:\n ##title## \n\nالسياق المراد تضمينه في البريد الإلكتروني البارد:\n ##keywords## \n\nيجب أن تكون نغمة صوت البريد الإلكتروني البارد:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1167, '33', 'cmn-CN', '写一封冷电子邮件:\n\n ##description## \n\n我们的公司或产品名称是:\n ##title## \n\n要包含在冷电子邮件中的上下文:\n ##keywords## \n\n冷邮件的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1168, '33', 'hr-HR', 'Napišite hladnu e-poštu o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nKontekst za uključivanje u hladnu e-poštu:\n ##keywords## \n\nTon glasa hladne e-pošte mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1169, '33', 'cs-CZ', 'Napište chladný e-mail o:\n\n ##description## \n\nNázev naší společnosti nebo produktu je:\n ##title## \n\nKontext, který se má zahrnout do studeného e-mailu:\n ##keywords## \n\nTón hlasu chladného e-mailu musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1170, '33', 'da-DK', 'Skriv en kold e-mail om:\n\n ##description## \n\nVores firma- eller produktnavn er:\n ##title## \n\nKontekst, der skal inkluderes i den kolde e-mail:\n ##keywords## \n\nTone i den kolde e-mail skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1171, '33', 'nl-NL', 'Schrijf een koude e-mail over:\n\n ##description## \n\nOnze bedrijfs- of productnaam is:\n ##title## \n\nContext om op te nemen in de koude e-mail:\n ##keywords## \n\nDe toon van de koude e-mail moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1172, '33', 'et-EE', 'Kirjutage külma meili teemal:\n\n ##description## \n\nMeie ettevõtte või toote nimi on:\n ##title## \n\nKülmasse meili lisatav kontekst:\n ##keywords## \n\nKülma meili hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1173, '33', 'fi-FI', 'Kirjoita kylmä sähköposti aiheesta:\n\n ##description## \n\nYrityksemme tai tuotteemme nimi on:\n ##title## \n\nKonteksti sisällytettäväksi kylmään sähköpostiin:\n ##keywords## \n\nKylmän sähköpostin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1174, '33', 'fr-FR', 'Écrivez un e-mail froid à propos de :\n\n ##description## \n\nLe nom de notre entreprise ou de notre produit est :\n ##title## \n\nContexte à inclure dans le cold email :\n ##keywords## \n\nLe ton de la voix de l\'e-mail froid doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1175, '33', 'de-DE', 'Schreiben Sie eine kalte E-Mail über:\n\n ##description## \n\nUnser Firmen- oder Produktname lautet:\n ##title## \n\nIn die Cold-E-Mail aufzunehmender Kontext:\n ##keywords## \n\nTonfall der kalten E-Mail muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1176, '33', 'el-GR', 'Γράψτε ένα κρύο email για:\n\n ##description## \n\nΗ εταιρεία ή το όνομα του προϊόντος μας είναι:\n 117title## \n\nΠλαίσιο που θα συμπεριληφθεί στο κρύο email:\n ##keywords## \n\nΟ τόνος της φωνής του κρύου email πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1177, '33', 'he-IL', 'כתוב אימייל קר על:\n\n ##description## \n\nשם החברה או המוצר שלנו הוא:\n ##title## \n\nהקשר לכלול בדוא הקר:\n ##keywords## \n\nטון הדיבור של האימייל הקר חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1178, '33', 'hi-IN', 'इस बारे में एक ठंडा ईमेल लिखें:\n\n ##description## \n\nहमारी कंपनी या उत्पाद का नाम है:\n ##title## \n\nकोल्ड ईमेल में शामिल करने के लिए प्रसंग:\n ##keywords## \n\nठंडे ईमेल की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1179, '33', 'hu-HU', 'Írjon hideg e-mailt erről:\n\n ##description## \n\nCégünk vagy termékünk neve:\n ##title## \n\nA hideg e-mailben szereplő kontextus:\n ##keywords## \n\nA hideg e-mail hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1180, '33', 'is-IS', 'Skrifaðu kalt tölvupóst um:\n\n ##description## \n\nFyrirtækis eða vöruheiti okkar er:\n ##title## \n\nSamhengi til að hafa með í kalda tölvupóstinum:\n ##keywords## \n\nTónn í kalda tölvupóstinum verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1181, '33', 'id-ID', 'Tulis email dingin tentang:\n\n ##description## \n\nNama perusahaan atau produk kami adalah:\n ##title## \n\nKonteks untuk disertakan dalam email dingin:\n ##keywords## \n\nNada suara email dingin harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1182, '33', 'it-IT', 'Scrivi una fredda email su:\n\n ##description## \n\nIl nome della nostra azienda o prodotto è:\n ##title## \n\nContesto da includere nell\'email fredda:\n ##keywords## \n\nIl tono di voce dell\'email fredda deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1183, '33', 'ja-JP', '以下についての冷たいメールを書いてください:\n\n ##description## \n\n当社または製品名は次のとおりです:\n ##title## \n\nコールド メールに含めるコンテキスト:\n ##keywords## \n\nコールド メールのトーンは次のとおりです:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1184, '33', 'ko-KR', '다음에 대한 콜드 이메일 작성:\n\n ##description## \n\n저희 회사 또는 제품 이름은:\n ##title## \n\n콜드 이메일에 포함할 컨텍스트:\n ##keywords## \n\n콜드 이메일의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1185, '33', 'ms-MY', 'Tulis e-mel sejuk tentang:\n\n ##description## \n\nNama syarikat atau produk kami ialah:\n ##title## \n\nKonteks untuk disertakan dalam e-mel sejuk:\n ##keywords## \n\nNada suara e-mel sejuk mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1186, '33', 'nb-NO', 'Skriv en kald e-post om:\n\n ##description## \n\nVårt firma eller produktnavn er:\n ##title## \n\nKontekst som skal inkluderes i den kalde e-posten:\n ##keywords## \n\nStemmetonen til den kalde e-posten må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1187, '33', 'pl-PL', 'Napisz zimny e-mail na temat:\n\n ##description## \n\nNazwa naszej firmy lub produktu to:\n ##title## \n\nKontekst do uwzględnienia w zimnej wiadomości e-mail:\n ##keywords## \n\nTon zimnej wiadomości e-mail musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1188, '33', 'pt-PT', 'Escreva um e-mail frio sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nContexto para incluir no e-mail frio:\n ##keywords## \n\nTom de voz do e-mail frio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1189, '33', 'ru-RU', 'Напишите холодное электронное письмо о:\n\n ##description## \n\nНазвание нашей компании или продукта:\n ##title## \n\nКонтекст для включения в холодное электронное письмо:\n ##keywords## \n\nТон голоса холодного письма должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1190, '33', 'es-ES', 'Escribe un correo electrónico frío sobre:\n\n ##description## \n\nEl nombre de nuestra empresa o producto es:\n ##title## \n\nContexto para incluir en el correo electrónico frío:\n ##keywords## \n\nEl tono de voz del correo frío debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1191, '33', 'sv-SE', 'Skriv ett kallt e-postmeddelande om:\n\n ##description## \n\nVårt företag eller produktnamn är:\n ##title## \n\nKontext att inkludera i det kalla e-postmeddelandet:\n ##keywords## \n\nTonfallet för det kalla e-postmeddelandet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1192, '33', 'tr-TR', '10 akılda kalıcı blog başlığı oluşturun:\n\n ##description## \n\n\'Şirketimizin veya ürünümüzün adı:\n ##title## \n\nSoğuk e-postaya eklenecek içerik:\n ##keywords## \n\nSoğuk e-postanın ses tonu şöyle olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1193, '33', 'pt-BR', 'Escreva um e-mail frio sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nContexto para incluir no e-mail frio:\n ##keywords## \n\nTom de voz do e-mail frio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1194, '33', 'ro-RO', 'Scrieți un e-mail rece despre:\n\n ##description## \n\nNumele companiei sau al produsului nostru este:\n ##title## \n\nContext de inclus în e-mailul rece:\n ##keywords## \n\nTonul de voce al e-mailului rece trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1195, '33', 'vi-VN', 'Viết một email lạnh nhạt về:\n\n ##description## \n\nTên sản phẩm hoặc công ty của chúng tôi là:\n ##title## \n\nBối cảnh bao gồm trong email lạnh:\n ##keywords## \n\nGiọng nói của email lạnh phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1196, '33', 'sw-KE', 'Andika barua pepe baridi kuhusu:\n\n ##description## \n\nJina la kampuni au bidhaa yetu ni:\n ##title## \n\nMuktadha wa kujumuisha katika barua pepe baridi:\n ##keywords## \n\nToni ya sauti ya barua pepe baridi lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1197, '33', 'sl-SI', 'Napišite hladno e-pošto o:\n\n ##description## \n\nIme našega podjetja ali izdelka je:\n ##title## \n\nKontekst za vključitev v hladno e-pošto:\n ##keywords## \n\nTon glasu hladnega e-poštnega sporočila mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1198, '33', 'th-TH', 'เขียนอีเมลเกี่ยวกับ:\n\n ##description## \n\nชื่อบริษัทหรือผลิตภัณฑ์ของเราคือ:\n ##title## \n\nบริบทที่จะรวมไว้ในอีเมลเย็น:\n ##keywords## \n\nน้ำเสียงของอีเมลเย็นต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1199, '33', 'uk-UA', 'Напишіть холодний електронний лист про:\n\n ##description## \n\nНазва нашої компанії або продукту:\n ##title## \n\nКонтекст для включення в холодний електронний лист:\n ##keywords## \n\nТон холодного електронного листа має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1200, '33', 'lt-LT', 'Parašykite šaltą el. laišką apie:\n\n ##description## \n\nMūsų įmonės arba produkto pavadinimas yra:\n ##title## \n\nKontekstas, kurį reikia įtraukti į šaltą el. laišką:\n ##keywords## \n\nŠalto el. laiško balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1201, '33', 'bg-BG', 'Напишете студен имейл за:\n\n ##description## \n\nИмето на нашата компания или продукт е:\n ##title## \n\nКонтекст за включване в студения имейл:\n ##keywords## \n\nТонът на гласа на студения имейл трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1202, '34', 'en-US', 'Write a follow up email about:\n\n ##description## \n\nOur company or product name is:\n ##title## \n\nFollowing up after:\n ##event## \n\nTarget audience is:\n ##keywords## \n\nTone of voice of the follow up email must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1203, '34', 'ar-AE', 'اكتب رسالة متابعة بالبريد الإلكتروني حول:\n\n ##description## \n\nاسم الشركة أو المنتج هو:\n ##title## \n\nالمتابعة بعد:\n##event## \n\nالجمهور المستهدف هو:\n ##keywords## \n\nيجب أن تكون نغمة الصوت في رسالة البريد الإلكتروني للمتابعة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1204, '34', 'cmn-CN', '写一封跟进电子邮件:\n\n ##description## \n\n我们的公司或产品名称是:\n ##title## \n\n跟进之后:\n ##event## \n\n目标受众是:\n ##keywords## \n\n跟进邮件的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1205, '34', 'hr-HR', 'Napišite naknadnu e-poruku o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nSljedeće nakon:\n ##event## \n\nCiljana publika je:\n ##keywords## \n\nTon glasa dodatne e-pošte mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1206, '34', 'cs-CZ', 'Napište následný e-mail o:\n\n ##description## \n\nNázev naší společnosti nebo produktu je:\n ##title## \n\nSledování po:\n ##event## \n\nCílové publikum je:\n ##keywords## \n\nTón hlasu následného e-mailu musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1207, '34', 'da-DK', 'Skriv en opfølgningsmail om:\n\n ##description## \n\nVores firma- eller produktnavn er:\n ##title## \n\nOpfølgning efter:\n ##event## \n\nMålgruppe er:\n ##keywords## \n\nTone i opfølgnings-e-mailen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1208, '34', 'nl-NL', 'Schrijf een vervolgmail over:\n\n ##description## \n\nOnze bedrijfs- of productnaam is:\n ##title## \n\nOpvolging na:\n ##event## \n\nDoelgroep is:\n ##keywords## \n\nDe toon van de vervolgmail moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1209, '34', 'et-EE', 'Kirjutage järelmeil teemal:\n\n ##description## \n\nMeie ettevõtte või toote nimi on:\n ##title## \n\nJälgimine pärast:\n ##event## \n\nSihtpublik on:\n ##keywords## \n\nJärelmeili hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1210, '34', 'fi-FI', 'Kirjoita seurantasähköposti aiheesta:\n\n ##description## \n\nYrityksemme tai tuotteemme nimi on:\n ##title## \n\nSeurataan tämän jälkeen:\n ##event## \n\nKohdeyleisö on:\n ##keywords## \n\nSeurantaviestin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1211, '34', 'fr-FR', 'Rédigez un e-mail de suivi concernant :\n\n ##description## \n\nLe nom de notre entreprise ou de notre produit est :\n ##title## \n\nSuivi après :\n ##event## \n\nLe public cible est :\n ##keywords## \n\nLe ton de la voix de l\'e-mail de suivi doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1212, '34', 'de-DE', 'Schreiben Sie eine Folge-E-Mail zu:\n\n ##description## \n\nUnser Firmen- oder Produktname lautet:\n ##title## \n\nNachverfolgung nach:\n ##event## \n\nZielpublikum ist:\n ##keywords## \n\nTonfall der Folge-E-Mail muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1213, '34', 'el-GR', 'Γράψτε ένα επόμενο μήνυμα ηλεκτρονικού ταχυδρομείου σχετικά με:\n\n ##description## \n\nΗ εταιρεία ή το όνομα του προϊόντος μας είναι:\n ##title## \n\nΣυνέχεια μετά:\n ##event## \n\nΤο κοινό-στόχος είναι:\n ##keywords## \n\nΟ τόνος της φωνής του επόμενου email πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1214, '34', 'he-IL', 'כתוב אימייל מעקב על:\n\n ##description## \n\nשם החברה או המוצר שלנו הוא:\n ##title## \n\nמעקב אחרי:\n ##event## \n\nקהל היעד הוא:\n ##keywords## \n\nטון הדיבור של דואל המעקב חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1215, '34', 'hi-IN', 'इस बारे में एक अनुवर्ती ईमेल लिखें:\n\n ##description## \n\nहमारी कंपनी या उत्पाद का नाम है:\n ##title## \n\nइसके बाद:\n ##event## \n\nलक्षित दर्शक हैं:\n ##keywords## \n\nफ़ॉलो अप ईमेल का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1216, '34', 'hu-HU', 'Írjon e-mailt a következőről:\n\n ##description## \n\nCégünk vagy termékünk neve:\n ##title## \n\nKövetés a következő után:\n ##event## \n\nA célközönség:\n ##keywords## \n\nA követő e-mail hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1217, '34', 'is-IS', 'Skrifaðu eftirfylgnipóst um:\n\n ##description## \n\nFyrirtækis eða vöruheiti okkar er:\n ##title## \n\nFylgst með eftir:\n ##event## \n\nMarkhópur er:\n ##keywords## \n\nTónn í eftirfylgnipóstinum verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1218, '34', 'id-ID', 'Tulis email tindak lanjut tentang:\n\n ##description## \n\nNama perusahaan atau produk kami adalah:\n ##title## \n\nMenindaklanjuti setelah:\n ##event## \n\nTarget audiens adalah:\n ##keywords## \n\nNada suara email tindak lanjut harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(1219, '34', 'it-IT', 'Scrivi un\'email di follow-up su:\n\n ##description## \n\nIl nome della nostra azienda o prodotto è:\n ##title## \n\nFollow up dopo:\n ##event## \n\nIl pubblico di destinazione è:\n ##keywords## \n\nIl tono di voce dell\'email di follow-up deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1220, '34', 'ja-JP', 'フォローアップのメールを書いてください:\n\n ##description## \n\n当社または製品名は次のとおりです:\n ##title## \n\nフォローアップ:\n ##event## \n\n対象者:\n ##keywords## \n\nフォローアップ メールのトーンは次のとおりです:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1221, '34', 'ko-KR', '다음에 대한 후속 이메일 작성:\n\n ##description## \n\n저희 회사 또는 제품 이름은:\n ##title## \n\n다음 이후:\n ##event## \n\n대상은:\n ##keywords## \n\n후속 이메일의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1222, '34', 'ms-MY', 'Tulis e-mel susulan tentang:\n\n ##description## \n\nNama syarikat atau produk kami ialah:\n ##title## \n\nMenyusul selepas:\n ##event## \n\nKhalayak sasaran ialah:\n ##keywords## \n\nNada suara e-mel susulan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1223, '34', 'nb-NO', 'Skriv en oppfølgings-e-post om:\n\n ##description## \n\nVårt firma eller produktnavn er:\n ##title## \n\nOppfølging etter:\n ##event## \n\nMålgruppen er:\n ##keywords## \n\nTone i oppfølgings-e-posten må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1224, '34', 'pl-PL', 'Napisz e-mail uzupełniający na temat:\n\n ##description## \n\nNazwa naszej firmy lub produktu to:\n ##title## \n\nKontynuacja po:\n ##event## \n\nDocelowi odbiorcy to:\n ##keywords## \n\nTon w e-mailu uzupełniającym musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1225, '34', 'pt-PT', 'Escreva um e-mail de acompanhamento sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nAcompanhamento após:\n ##event## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de acompanhamento deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1226, '34', 'ru-RU', 'Напишите последующее электронное письмо о:\n\n ##description## \n\nНазвание нашей компании или продукта:\n ##title## \n\nПоследующие действия после:\n ##event## \n\nЦелевая аудитория:\n ##keywords## \n\nТон голоса в последующем электронном письме должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1227, '34', 'es-ES', 'Escribe un correo electrónico de seguimiento sobre:\n\n ##description## \n\nEl nombre de nuestra empresa o producto es:\n ##title## \n\nSeguimiento después de:\n ##event## \n\nEl público objetivo es:\n ##keywords## \n\nEl tono de voz del correo electrónico de seguimiento debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1228, '34', 'sv-SE', 'Skriv ett uppföljningsmeddelande om:\n\n ##description## \n\nVårt företag eller produktnamn är:\n ##title## \n\nFöljer upp efter:\n ##event## \n\nMålgruppen är:\n ##keywords## \n\nRösten i uppföljningsmeddelandet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1229, '34', 'tr-TR', 'Şu konuda bir takip e-postası yazın:\n\n ##description## \n\nŞirketimizin veya ürünümüzün adı:\n ##title## \n\nSonra takip:\n ##event## \n\nHedef kitle:\n ##keywords## \n\nTakip e-postasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1230, '34', 'pt-BR', 'Escreva um e-mail de acompanhamento sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nAcompanhamento após:\n ##event## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de acompanhamento deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1231, '34', 'ro-RO', 'Scrieți un e-mail de continuare despre:\n\n ##description## \n\nNumele companiei sau al produsului nostru este:\n ##title## \n\nUrmărire după:\n ##event## \n\nPublicul țintă este:\n ##keywords## \n\nTonul de voce al e-mailului de urmărire trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1232, '34', 'vi-VN', 'Viết email tiếp theo về:\n\n ##description## \n\nTên sản phẩm hoặc công ty của chúng tôi là:\n ##title## \n\nTiếp tục sau:\n ##event## \n\nĐối tượng mục tiêu là:\n ##keywords## \n\nGiọng điệu của email tiếp theo phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1233, '34', 'sw-KE', 'Andika barua pepe ya ufuatiliaji kuhusu:\n\n ##description## \n\nJina la kampuni au bidhaa yetu ni:\n ##title## \n\nInafuata baada ya:\n ##event## \n\nHadhira inayolengwa ni:\n ##keywords## \n\nToni ya sauti ya barua pepe ya ufuatiliaji lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1234, '34', 'sl-SI', 'Napišite nadaljnje e-poštno sporočilo o:\n\n ##description## \n\nIme našega podjetja ali izdelka je:\n ##title## \n\nNadaljevanje po:\n ##event## \n\nCiljna publika je:\n ##keywords## \n\nTon glasu nadaljnjega e-poštnega sporočila mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1235, '34', 'th-TH', 'เขียนอีเมลติดตามผลเกี่ยวกับ:\n\n ##description## \n\nชื่อบริษัทหรือผลิตภัณฑ์ของเราคือ:\n ##title## \n\nติดตามผลหลังจากนี้:\n ##event## \n\nกลุ่มเป้าหมายคือ:\n ##keywords## \n\nเสียงของอีเมลติดตามจะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1236, '34', 'uk-UA', 'Напишіть додатковий електронний лист про:\n\n ##description## \n\nНазва нашої компанії або продукту:\n ##title## \n\nПодальші дії після:\n ##event## \n\nЦільова аудиторія:\n ##keywords## \n\nТон голосу в електронному листі має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1237, '34', 'lt-LT', 'Parašykite tolesnius el. laišką apie:\n\n ##description## \n\nMūsų įmonės arba produkto pavadinimas yra:\n ##title## \n\nStebimas po:\n ##event## \n\nTikslinė auditorija yra:\n ##keywords## \n\nTolesnio el. laiško balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1238, '34', 'bg-BG', 'Напишете последващ имейл за:\n\n ##description## \n\nИмето на нашата компания или продукт е:\n ##title## \n\nПоследващи действия след:\n ##event## \n\nЦелевата аудитория е:\n ##keywords## \n\nТонът на последващия имейл трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1239, '35', 'en-US', 'Write a creative story about:\n\n ##description## \n\nTone of voice of the story must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1240, '35', 'ar-AE', 'اكتب قصة إبداعية عن:\n\n ##description## \n\nيجب أن تكون نغمة الصوت في القصة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1241, '35', 'cmn-CN', '写一个有创意的故事:\n\n ##description## \n\n故事的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1242, '35', 'hr-HR', 'Napišite kreativnu priču o:\n\n ##description## \n\nTon glasa priče mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1243, '35', 'cs-CZ', 'Napište kreativní příběh o:\n\n ##description## \n\nTón hlasu příběhu musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1244, '35', 'da-DK', 'Skriv en kreativ historie om:\n\n ##description## \n\nTone i historien skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1245, '35', 'nl-NL', 'Schrijf een creatief verhaal over:\n\n ##description## \n\nDe toon van het verhaal moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1246, '35', 'et-EE', 'Kirjutage loov lugu teemal:\n\n ##description## \n\nLoo hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1247, '35', 'fi-FI', 'Kirjoita luova tarina aiheesta:\n\n ##description## \n\nTarinan äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1248, '35', 'fr-FR', 'Ecrire une histoire créative sur :\n\n ##description## \n\nLe ton de la voix de l\'histoire doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1249, '35', 'de-DE', 'Schreibe eine kreative Geschichte über:\n\n ##description## \n\nTonfall der Geschichte muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1250, '35', 'el-GR', 'Γράψτε μια δημιουργική ιστορία για:\n\n ##description## \n\nΟ τόνος της φωνής της ιστορίας πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1251, '35', 'he-IL', 'כתוב סיפור יצירתי על:\n\n ##description## \n\nטון הדיבור של הסיפור חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1252, '35', 'hi-IN', 'के बारे में एक रचनात्मक कहानी लिखें:\n\n ##description## \n\nकहानी का स्वर ऐसा होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1253, '35', 'hu-HU', 'Írjon kreatív történetet erről:\n\n ##description## \n\nA történet hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1254, '35', 'is-IS', 'Skrifaðu skapandi sögu um:\n\n ##description## \n\nTónn í sögunni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1255, '35', 'id-ID', 'Tulis cerita kreatif tentang:\n\n ##description## \n\nNada suara cerita harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1256, '35', 'it-IT', 'Scrivi una storia creativa su:\n\n ##description## \n\nIl tono di voce della storia deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1257, '35', 'ja-JP', '次のようなクリエイティブなストーリーを書きましょう:\n\n ##description## \n\nストーリーの声のトーンは次のとおりでなければなりません:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1258, '35', 'ko-KR', '다음에 대한 창의적인 이야기 쓰기:\n\n ##description## \n\n이야기의 목소리 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1259, '35', 'ms-MY', 'Tulis cerita kreatif tentang:\n\n ##description## \n\nNada suara cerita mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1260, '35', 'nb-NO', 'Skriv en kreativ historie om:\n\n ##description## \n\nTone i historien må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1261, '35', 'pl-PL', 'Napisz kreatywną historię na temat:\n\n ##description## \n\nTon opowieści musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1262, '35', 'pt-PT', 'Escreva uma história criativa sobre:\n\n ##description## \n\nTom de voz da história deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1263, '35', 'ru-RU', 'Напишите творческую историю о:\n\n ##description## \n\nТон голоса истории должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1264, '35', 'es-ES', 'Escribe una historia creativa sobre:\n\n ##description## \n\nEl tono de voz de la historia debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1265, '35', 'sv-SE', 'Skriv en kreativ berättelse om:\n\n ##description## \n\nTonfallet i berättelsen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1266, '35', 'tr-TR', 'Şunun hakkında yaratıcı bir hikaye yaz:\n\n ##description## \n\nHikayenin ses tonu şöyle olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1267, '35', 'pt-BR', 'Escreva uma história criativa sobre:\n\n ##description## \n\nTom de voz da história deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1268, '35', 'ro-RO', 'Scrieți o poveste creativă despre:\n\n ##description## \n\nTonul vocii al poveștii trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1269, '35', 'vi-VN', 'Viết một câu chuyện sáng tạo về:\n\n ##description## \n\nGiọng điệu của câu chuyện phải:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1270, '35', 'sw-KE', 'Andika hadithi ya ubunifu kuhusu:\n\n ##description## \n\nToni ya sauti ya hadithi lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1271, '35', 'sl-SI', 'Napišite ustvarjalno zgodbo o:\n\n ##description## \n\nTon glasu zgodbe mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1272, '35', 'th-TH', 'เขียนเรื่องราวที่สร้างสรรค์เกี่ยวกับ:\n\n ##description## \n\nน้ำเสียงของเรื่องต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1273, '35', 'uk-UA', 'Напишіть творчу розповідь про:\n\n ##description## \n\nТон розповіді має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1274, '35', 'lt-LT', 'Parašykite kūrybinę istoriją apie:\n\n ##description## \n\nIstorijos balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1275, '35', 'bg-BG', 'Напишете творческа история за:\n\n ##description## \n\nТонът на гласа на историята трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1276, '36', 'en-US', 'Check and correct grammar of this text:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1277, '36', 'ar-AE', 'تحقق من القواعد النحوية لهذا النص وصححه:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1278, '36', 'cmn-CN', '检查并更正此文本的语法:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1279, '36', 'hr-HR', 'Provjeri i ispravi gramatiku ovog teksta:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1280, '36', 'cs-CZ', 'Zkontrolujte a opravte gramatiku tohoto textu:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1281, '36', 'da-DK', 'Tjek og ret grammatik af denne tekst:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1282, '36', 'nl-NL', 'Controleer en corrigeer de grammatica van deze tekst:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1283, '36', 'et-EE', 'Kontrollige ja parandage selle teksti grammatikat:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1284, '36', 'fi-FI', 'Tarkista ja korjaa tämän tekstin kielioppi:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1285, '36', 'fr-FR', 'Vérifiez et corrigez la grammaire de ce texte :\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1286, '36', 'de-DE', 'Prüfe und korrigiere die Grammatik dieses Textes:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1287, '36', 'el-GR', 'Ελέγξτε και διορθώστε τη γραμματική αυτού του κειμένου:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1288, '36', 'he-IL', 'בדוק ותקן את הדקדוק של הטקסט הזה:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1289, '36', 'hi-IN', 'इस पाठ का व्याकरण जांचें और सही करें:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1290, '36', 'hu-HU', 'Ellenőrizze és javítsa ki ennek a szövegnek a nyelvtanát:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1291, '36', 'is-IS', 'Athugaðu og leiðréttu málfræði þessa texta:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1292, '36', 'id-ID', 'Periksa dan perbaiki tata bahasa teks ini:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1293, '36', 'it-IT', 'Controlla e correggi la grammatica di questo testo:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1294, '36', 'ja-JP', 'このテキストの文法を確認して修正してください:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1295, '36', 'ko-KR', '이 텍스트의 문법을 확인하고 수정하십시오:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1296, '36', 'ms-MY', 'Semak dan betulkan tatabahasa teks ini:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1297, '36', 'nb-NO', 'Sjekk og korriger grammatikken til denne teksten:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1298, '36', 'pl-PL', 'Sprawdź i popraw gramatykę tego tekstu:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1299, '36', 'pt-PT', 'Verifique e corrija a gramática deste texto:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1300, '36', 'ru-RU', 'Проверьте и исправьте грамматику этого текста:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1301, '36', 'es-ES', 'Revise y corrija la gramática de este texto:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1302, '36', 'sv-SE', 'Kontrollera och korrigera grammatiken för denna text:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1303, '36', 'tr-TR', 'Bu metnin gramerini kontrol edin ve düzeltin:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1304, '36', 'pt-BR', 'Verifique e corrija a gramática deste texto:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1305, '36', 'ro-RO', 'Verificați și corectați gramatica acestui text:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1306, '36', 'vi-VN', 'Kiểm tra và sửa ngữ pháp của văn bản này:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1307, '36', 'sw-KE', 'Angalia na urekebishe sarufi ya maandishi haya:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1308, '36', 'sl-SI', 'Preveri in popravi slovnico tega besedila:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1309, '36', 'th-TH', 'ตรวจสอบและแก้ไขไวยากรณ์ของข้อความนี้:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1310, '36', 'uk-UA', 'Перевірте та виправте граматику цього тексту:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1311, '36', 'lt-LT', 'Patikrinkite ir pataisykite šio teksto gramatiką:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1312, '36', 'bg-BG', 'Проверете и коригирайте граматиката на този текст:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1313, '37', 'en-US', 'Summarize this text for 2nd grader:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1314, '37', 'ar-AE', 'تلخيص هذا النص لطلاب الصف الثاني:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1315, '37', 'cmn-CN', '为二年级学生总结这篇课文:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1316, '37', 'hr-HR', 'Sažmi ovaj tekst za učenika 2. razreda:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1317, '37', 'cs-CZ', 'Shrňte tento text pro žáka 2. třídy:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1318, '37', 'da-DK', 'Opsummer denne tekst for 2. klasse:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1319, '37', 'nl-NL', 'Vat deze tekst samen voor groep 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1320, '37', 'et-EE', 'Tee sellest tekstist kokkuvõte 2. klassi õpilasele:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1321, '37', 'fi-FI', 'Tee yhteenveto tästä tekstistä 2. luokkalaiselle:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1322, '37', 'fr-FR', 'Résumez ce texte pour un élève de 2e :\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1323, '37', 'de-DE', 'Fass diesen Text für die 2. Klasse zusammen:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1324, '37', 'el-GR', 'Σύνοψτε αυτό το κείμενο για μαθητή της Β\' δημοτικού:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1325, '37', 'he-IL', 'סכם את הטקסט הזה עבור כיתה ב\':\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1326, '37', 'hi-IN', 'इस पाठ को दूसरे ग्रेडर के लिए सारांशित करें:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1327, '37', 'hu-HU', 'Összefoglalja ezt a szöveget 2. osztályosnak:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1328, '37', 'is-IS', 'Taktu saman þennan texta fyrir 2. bekk:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1329, '37', 'id-ID', 'Ringkaskan teks ini untuk siswa kelas 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1330, '37', 'it-IT', 'Riassumi questo testo per la seconda elementare:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1331, '37', 'ja-JP', '2 年生向けにこのテキストを要約してください:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1332, '37', 'ko-KR', '2학년을 위해 이 텍스트 요약:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1333, '37', 'ms-MY', 'Ringkaskan teks ini untuk pelajar gred 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1334, '37', 'nb-NO', 'Oppsummer denne teksten for 2. klassing:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1335, '37', 'pl-PL', 'Podsumuj ten tekst dla uczniów drugiej klasy:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1336, '37', 'pt-PT', 'Resuma este texto para aluno da 2ª série:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1337, '37', 'ru-RU', 'Обобщите этот текст для второклассника:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1338, '37', 'es-ES', 'Generar 10 títulos de blog pegadizos para:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1339, '37', 'sv-SE', 'Sammanfatta den här texten för klass 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1340, '37', 'tr-TR', '2. sınıf öğrencisi için bu metni özetleyin:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1341, '37', 'pt-BR', 'Resuma este texto para aluno da 2ª série:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1342, '37', 'ro-RO', 'Rezumați acest text pentru elevul de clasa a II-a:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1343, '37', 'vi-VN', 'Tóm tắt văn bản này cho học sinh lớp 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1344, '37', 'sw-KE', 'Fanya muhtasari wa maandishi haya kwa mwanafunzi wa darasa la 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1345, '37', 'sl-SI', 'Povzemite to besedilo za 2. razred:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1346, '37', 'th-TH', 'สรุปข้อความนี้สำหรับนักเรียนชั้นประถมศึกษาปีที่ 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1347, '37', 'uk-UA', 'Підсумуйте цей текст для 2-класника:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1348, '37', 'lt-LT', 'Apibendrinkite šį tekstą 2 klasės mokiniui:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1349, '37', 'bg-BG', 'Обобщете този текст за второкласник:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1350, '38', 'en-US', 'Write an interesting video script about:\n\n ##description## \n\nTone of voice of the video script must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1351, '38', 'ar-AE', 'اكتب نص فيديو مثيرًا للاهتمام حول:\n\n ##description## \n\n يجب أن تكون نغمة الصوت في نص الفيديو:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1352, '38', 'cmn-CN', '写一个有趣的视频脚本:\n\n ##description## \n\n视频脚本的语调必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1353, '38', 'hr-HR', 'Napišite zanimljiv video scenarij o:\n\n ##description## \n\nTon glasa video skripte mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1354, '38', 'cs-CZ', 'Napište zajímavý video skript o:\n\n ##description## \n\nTón hlasu skriptu videa musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1355, '38', 'da-DK', 'Skriv et interessant videoscript om:\n\n ##description## \n\nTone i videoscriptet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1356, '38', 'nl-NL', 'Schrijf een interessant videoscript over:\n\n ##description## \n\nDe toon van het videoscript moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1357, '38', 'et-EE', 'Kirjutage huvitav videostsenaarium teemal:\n\n ##description## \n\nVideo skripti hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1358, '38', 'fi-FI', 'Kirjoita mielenkiintoinen videokäsikirjoitus aiheesta:\n\n ##description## \n\nVideokäsikirjoituksen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1359, '38', 'fr-FR', 'Écrivez un script vidéo intéressant sur :\n\n ##description## \n\nLe ton de la voix du script vidéo doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1360, '38', 'de-DE', 'Schreiben Sie ein interessantes Videoskript über:\n\n ##description## \n\nTonlage des Videoskripts muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1361, '38', 'el-GR', 'Γράψτε ένα ενδιαφέρον σενάριο βίντεο για:\n\n ##description## \n\nΟ τόνος της φωνής του σεναρίου βίντεο πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1362, '38', 'he-IL', 'Γράψτε ένα ενδιαφέρον σενάριο βίντεο για:\n\n ##description## \n\nΟ τόνος της φωνής του σεναρίου βίντεο πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1363, '38', 'hi-IN', 'इस बारे में एक दिलचस्प वीडियो स्क्रिप्ट लिखें:\n\n ##description## \n\nवीडियो स्क्रिप्ट की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1364, '38', 'hu-HU', 'Írj egy érdekes videó forgatókönyvet erről:\n\n ##description## \n\nA videó forgatókönyvének hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1365, '38', 'is-IS', 'Skrifaðu áhugavert myndbandshandrit um:\n\n ##description## \n\nRaddónn myndbandshandritsins verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1366, '38', 'id-ID', 'Tulis skrip video yang menarik tentang:\n\n ##description## \n\nNada suara skrip video harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1367, '38', 'it-IT', 'Scrivi un copione video interessante su:\n\n ##description## \n\nIl tono di voce del copione video deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1368, '38', 'ja-JP', '興味深いビデオ スクリプトを作成してください:\n\n ##description## \n\nビデオ スクリプトの声の調子:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1369, '38', 'ko-KR', '다음에 대한 흥미로운 비디오 스크립트 작성:\n\n ##description## \n\n비디오 스크립트의 음성 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1370, '38', 'ms-MY', 'Tulis skrip video yang menarik tentang:\n\n ##description## \n\nNada suara skrip video mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1371, '38', 'nb-NO', 'Skriv et interessant videoskript om:\n\n ##description## \n\nStemmetonen til videoskriptet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1372, '38', 'pl-PL', 'Napisz ciekawy scenariusz wideo na temat:\n\n ##description## \n\nTon głosu skryptu wideo musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1373, '38', 'pt-PT', 'Escreva um script de vídeo interessante sobre:\n\n ##description## \n\nTom de voz do roteiro do vídeo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1374, '38', 'ru-RU', 'Напишите интересный сценарий видео о:\n\n ##description## \n\nТон голоса видеосценария должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1375, '38', 'es-ES', 'Escribe un guión de video interesante sobre:\n\n ##description## \n\nEl tono de voz del guión del video debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1376, '38', 'sv-SE', 'Skriv ett intressant videomanus om:\n\n ##description## \n\nRösten i videoskriptet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1377, '38', 'tr-TR', 'Şununla ilgili ilginç bir video komut dosyası yazın:\n\n ##description## \n\nVideo komut dosyasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1378, '38', 'pt-BR', 'Escreva um script de vídeo interessante sobre:\n\n ##description## \n\nTom de voz do roteiro do vídeo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1379, '38', 'ro-RO', 'Scrieți un script video interesant despre:\n\n ##description## \n\nTonul vocii al scriptului video trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1380, '38', 'vi-VN', 'Viết kịch bản video thú vị về:\n\n ##description## \n\nGiọng nói của kịch bản video phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1381, '38', 'sw-KE', 'Andika hati ya video ya kuvutia kuhusu:\n\n ##description## \n\nToni ya sauti ya hati ya video lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1382, '38', 'sl-SI', 'Napišite zanimiv video scenarij o:\n\n ##description## \n\nTon glasu video scenarija mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1383, '38', 'th-TH', 'เขียนสคริปต์วิดีโอที่น่าสนใจเกี่ยวกับ:\n\n ##description## \n\nน้ำเสียงของสคริปต์วิดีโอต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1384, '38', 'uk-UA', 'Напишіть сценарій цікавого відео про:\n\n ##description## \n\nТон голосу сценарію відео має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1385, '38', 'lt-LT', 'Parašykite įdomų vaizdo įrašo scenarijų apie:\n\n ##description## \n\nVaizdo įrašo scenarijaus balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1386, '38', 'bg-BG', 'Напишете интересен видео сценарий за:\n\n ##description## \n\nТонът на гласа на видео сценария трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1387, '39', 'en-US', 'Write attention grabbing Amazon marketplace product description for:\n\n ##title## \n\nUse following keywords in the product description:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1388, '39', 'ar-AE', 'اكتب وصف منتج سوق أمازون الذي يجذب الانتباه لـ:\n\n ##title## \n\n استخدم الكلمات الأساسية التالية في وصف المنتج:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1389, '39', 'cmn-CN', '为以下内容撰写引人注目的亚马逊市场产品说明:\n\n ##title## \n\n在产品描述中使用以下关键词:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1390, '39', 'hr-HR', 'Napišite opis proizvoda na Amazonovom tržištu koji privlači pažnju za:\n\n ##title## \n\nKoristite sljedeće ključne riječi u opisu proizvoda:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1391, '39', 'cs-CZ', 'Napište popis produktu na tržišti Amazon pro:\n\n ##title## \n\nV popisu produktu použijte následující klíčová slova:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1392, '39', 'da-DK', 'Skriv opmærksomhedsfangende Amazon-markedsplads-produktbeskrivelse for:\n\n ##title## \n\nBrug følgende søgeord i produktbeskrivelsen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1393, '39', 'nl-NL', 'Schrijf een opvallende productbeschrijving op de Amazon-marktplaats voor:\n\n ##title## \n\nGebruik de volgende trefwoorden in de productbeschrijving:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1394, '39', 'et-EE', 'Kirjutage tähelepanu haarav Amazoni turu tootekirjeldus:\n\n ##title## \n\nKasutage tootekirjelduses järgmisi märksõnu:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1395, '39', 'fi-FI', 'Kirjoita huomiota herättävä Amazon Marketplace -tuotteen kuvaus:\n\n ##title## \n\nKäytä seuraavia avainsanoja tuotekuvauksessa:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1396, '39', 'fr-FR', 'Rédigez une description de produit accrocheuse sur la place de marché Amazon pour :\n\n ##title## \n\nUtilisez les mots clés suivants dans la description du produit :\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1397, '39', 'de-DE', 'Schreiben Sie eine aufmerksamkeitsstarke Amazon Marketplace-Produktbeschreibung für:\n\n ##title## \n\nVerwenden Sie folgende Schlüsselwörter in der Produktbeschreibung:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1398, '39', 'el-GR', 'Γράψτε την προσοχή που προσελκύει την περιγραφή προϊόντος της Amazon Marketplace για:\n\n ##title## \n\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του προϊόντος:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1399, '39', 'he-IL', 'כתוב תשומת לב מושכת את תיאור המוצר של Amazon Marketplace עבור:\n\n ##title## \n\nהשתמש במילות המפתח הבאות בתיאור המוצר:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1400, '39', 'hi-IN', 'ध्यान आकर्षित करने वाले Amazon मार्केटप्लेस उत्पाद विवरण के लिए लिखें:\n\n ##title## \n\nउत्पाद विवरण में निम्नलिखित कीवर्ड का उपयोग करें:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1401, '39', 'hu-HU', 'Írjon figyelemfelkeltő Amazon Marketplace termékleírást:\n\n ##title## \n\nHasználja a következő kulcsszavakat a termékleírásban:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1402, '39', 'is-IS', 'Skrifaðu athyglisverða vörulýsingu á Amazon markaðstorginu fyrir:\n\n ##title## \n\nNotaðu eftirfarandi leitarorð í vörulýsingunni:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1403, '39', 'id-ID', 'Tulis deskripsi produk pasar Amazon yang menarik perhatian untuk:\n\n ##title## \n\nGunakan kata kunci berikut dalam deskripsi produk:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1404, '39', 'it-IT', 'Scrivi una descrizione del prodotto del marketplace Amazon che attiri l\'attenzione per:\n\n ##title## \n\nUsa le seguenti parole chiave nella descrizione del prodotto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1405, '39', 'ja-JP', '注目を集める Amazon マーケットプレイスの商品説明を書いてください:\n\n ##title## \n\n製品説明には次のキーワードを使用してください:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1406, '39', 'ko-KR', '다음에 대한 관심을 끄는 Amazon 마켓플레이스 제품 설명 작성:\n\n ##title## \n\n제품 설명에 다음 키워드를 사용하십시오:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1407, '39', 'ms-MY', 'Tulis penerangan produk pasaran Amazon yang menarik perhatian untuk:\n\n ##title## \n\nGunakan kata kunci berikut dalam penerangan produk:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1408, '39', 'nb-NO', 'Skriv en oppmerksomhetsfangende produktbeskrivelse for Amazon Marketplace for:\n\n ##title## \n\nBruk følgende nøkkelord i produktbeskrivelsen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1409, '39', 'pl-PL', 'Napisz przyciągający uwagę opis produktu na rynku Amazon dla:\n\n ##title## \n\nUżyj następujących słów kluczowych w opisie produktu:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1410, '39', 'pt-PT', 'Escreva uma descrição atraente do produto Amazon marketplace para:\n\n ##title## \n\nUse as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1411, '39', 'ru-RU', 'Напишите привлекающее внимание описание продукта на торговой площадке Amazon для:\n\n ##title## \n\nИспользуйте следующие ключевые слова в описании продукта:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1412, '39', 'es-ES', 'Escriba la descripción del producto del mercado de Amazon que llame la atención para:\n\n ##title## \n\nUtilice las siguientes palabras clave en la descripción del producto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1413, '39', 'sv-SE', 'Skriv uppmärksamhet fånga Amazon marknadsplats produktbeskrivning för:\n\n ##title## \n\nAnvänd följande nyckelord i produktbeskrivningen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1414, '39', 'tr-TR', 'Şunun için dikkat çekici Amazon pazar yeri ürün açıklamasını yazın:\n\n ##title## \n\nÜrün açıklamasında aşağıdaki anahtar kelimeleri kullanın:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1415, '39', 'pt-BR', 'Escreva uma descrição atraente do produto Amazon marketplace para:\n\n ##title## \n\nUse as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1416, '39', 'ro-RO', 'Scrieți atenția captând descrierea produsului Amazon marketplace pentru:\n\n ##title## \n\nFolosiți următoarele cuvinte cheie în descrierea produsului:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1417, '39', 'vi-VN', 'Viết mô tả sản phẩm thu hút sự chú ý trên thị trường Amazon cho:\n\n ##title## \n\nSử dụng các từ khóa sau trong phần mô tả sản phẩm:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1418, '39', 'sw-KE', 'Andika umakini wa kunyakua maelezo ya bidhaa ya soko la Amazon kwa:\n\n ##title## \n\nTumia manenomsingi yafuatayo katika maelezo ya bidhaa:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1419, '39', 'sl-SI', 'Napišite opis izdelka Amazon Marketplace, ki pritegne pozornost za:\n\n ##title## \n\nV opisu izdelka uporabite naslednje ključne besede:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1420, '39', 'th-TH', 'เขียนคำอธิบายผลิตภัณฑ์ในตลาดกลางของ Amazon ที่ดึงดูดใจสำหรับ:\n\n ##title## \n\nใช้คำหลักต่อไปนี้ในรายละเอียดสินค้า:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1421, '39', 'uk-UA', 'Напишіть опис продукту Amazon Marketplace для:\n\n ##title## \n\nВикористовуйте такі ключові слова в описі продукту:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1422, '39', 'lt-LT', 'Parašykite dėmesį patraukiančio Amazon prekyvietės produkto aprašymą:\n\n ##title## \n\nProdukto aprašyme naudokite šiuos raktinius žodžius:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1423, '39', 'bg-BG', 'Напишете грабващо вниманието описание на продукта на пазара на Amazon за:\n\n ##title## \n\nИзползвайте следните ключови думи в описанието на продукта:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1424, '40', 'en-US', 'please Improve and rewrite this artical in a creative and smart way:\\n\\n ##description## \\n\\n using this keywords ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1425, '40', 'ar-AE', 'برجاء تحسين واعادة كتابة هذا الشكل من الورق بطريقة مبتكرة وذكية :\\n\\n ##description## \\n\\n استخدام هذه الكلمات المرشدة ##keywords## \\n\\n يجب أن يكون نبرة صوت النتيجة كما يلي :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1426, '40', 'cmn-CN', '请以创造性和聪明的方式改进和撰写这篇文章:\\n\\n ##description## \\n\\n 使用这个关键字 ##keywords## \\n\\n 结果的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1427, '40', 'hr-HR', 'molimo poboljšajte i napišite ovaj članak na kreativan i pametan način:\\n\\n ##description## \\n\\n koristeći ove ključne riječi ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1428, '40', 'cs-CZ', 'prosím vylepšete a napište tento článek kreativním a chytrým způsobem:\\n\\n ##description## \\n\\n pomocí těchto klíčových slov ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1429, '40', 'da-DK', 'venligst forbedre og skrive denne artikel på en kreativ og smart måde:\\n\\n ##description## \\n\\n ved at bruge disse søgeord ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1430, '40', 'nl-NL', 'verbeter en schrijf dit artikel op een creatieve en slimme manier:\\n\\n ##description## \\n\\n met behulp van deze trefwoorden ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1431, '40', 'et-EE', 'Täiustage ja kirjutage see artikkel loominguliselt ja nutikalt:\\n\\n ##description## \\n\\n kasutades neid märksõnu ##keywords## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1432, '40', 'fi-FI', 'Paranna ja kirjoita tämä artikkeli luovalla ja älykkäällä tavalla:\\n\\n ##description## \\n\\n käyttämällä näitä avainsanoja ##keywords## \\n\\n Tuloksen äänensävyn tulee olla:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1433, '40', 'fr-FR', 'Veuillez améliorer et écrire cet article de manière créative et intelligente :\\n\\n ##description## \\n\\n en utilisant ces mots clés ##keywords## \\n\\n Le ton de voix du résultat doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1434, '40', 'de-DE', 'Bitte verbessern Sie diesen Artikel und schreiben Sie ihn auf kreative und intelligente Weise:\\n\\n ##description## \\n\\n mit diesen Schlüsselwörtern ##keywords## \\n\\n Der Tonfall des Ergebnisses muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1435, '40', 'el-GR', 'Βελτιώστε και γράψτε αυτό το άρθρο με δημιουργικό και έξυπνο τρόπο:\\n\\n ##description## \\n\\n χρησιμοποιώντας αυτές τις λέξεις-κλειδιά ##keywords## \\n\\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1436, '40', 'he-IL', 'אנא שפר וכתוב מאמר זה בצורה יצירתית וחכמה:\\n\\n ##description## \\n\\n באמצעות מילות מפתח אלו ##keywords## \\n\\n טון הדיבור של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1437, '40', 'hi-IN', 'कृपया इस लेख को रचनात्मक और स्मार्ट तरीके से सुधारें और लिखें:\\n\\n ##description## \\n\\n इस खोजशब्दों का उपयोग करना ##keywords## \\n\\n परिणाम की आवाज़ का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1438, '40', 'hu-HU', 'Kérjük, javítsa és írja meg ezt a cikket kreatív és okos módon:\\n\\n ##description## \\n\\n ezen kulcsszavak használatával ##keywords## \\n\\n Az eredmény hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1439, '40', 'is-IS', 'vinsamlegast bættu og skrifaðu þessa grein á skapandi og snjallan hátt:\\n\\n ##description## \\n\\n nota þessi leitarorð ##keywords## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1440, '40', 'id-ID', 'tolong Tingkatkan dan tulis artikel ini dengan cara yang kreatif dan cerdas:\\n\\n ##description## \\n\\n menggunakan kata kunci ini ##keywords## \\n\\n Nada suara hasil harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1441, '40', 'it-IT', 'per favore Migliora e scrivi questo articolo in modo creativo e intelligente:\\n\\n ##description## \\n\\n utilizzando queste parole chiave ##keywords## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1442, '40', 'ja-JP', 'この記事を改善し、創造的かつ賢明な方法で書いてください:\\n\\n ##description## \\n\\n このキーワードを使って ##keywords## \\n\\n 結果の口調は次のようになります:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1443, '40', 'ko-KR', '창의적이고 현명한 방법으로 이 문서를 개선하고 작성하십시오:\\n\\n ##description## \\n\\n 이 키워드를 사용하여 ##keywords## \\n\\n 결과의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1444, '40', 'ms-MY', 'sila Perbaiki dan tulis artikel ini dengan cara yang kreatif dan bijak:\\n\\n ##description## \\n\\n menggunakan kata kunci ini ##keywords## \\n\\n Nada suara keputusan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1445, '40', 'nb-NO', 'Vennligst forbedre og skriv denne artikkelen på en kreativ og smart måte:\\n\\n ##description## \\n\\n ved å bruke disse søkeordene ##keywords## \\n\\n Stemmetonen for resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1446, '40', 'pl-PL', 'proszę Popraw i napisz ten artykuł w kreatywny i inteligentny sposób:\\n\\n ##description## \\n\\n używając tych słów kluczowych ##keywords## \\n\\n Ton głosu wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1447, '40', 'pt-PT', 'Por favor, melhore e escreva este artigo de forma criativa e inteligente:\\n\\n ##description## \\n\\n usando essas palavras-chave ##keywords## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1448, '40', 'ru-RU', 'пожалуйста, улучшите и напишите эту статью творчески и умно:\\n\\n ##description## \\n\\n используя эти ключевые слова ##keywords## \\n\\n Тон озвучивания результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1449, '40', 'es-ES', 'por favor Mejorar y reescribir esta táctica de una manera creativa e inteligente:\\n\\n ##description## \\n\\n utilizando estas palabras clave ##keywords## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1450, '40', 'sv-SE', 'snälla förbättra och skriv den här artikeln på ett kreativt och smart sätt:\\n\\n ##description## \\n\\n använder dessa nyckelord ##keywords## \\n\\n Tonen i resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1451, '40', 'tr-TR', 'lütfen bu makaleyi geliştirin ve yaratıcı ve akıllı bir şekilde yazın:\\n\\n ##description## \\n\\n bu anahtar kelimeleri kullanarak ##keywords## \\n\\n Sonucun ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1452, '40', 'pt-BR', 'Por favor, melhore e reescreva esse artigo de forma criativa e inteligente:\\n\\n ##description## \\n\\n usando essas palavras-chave ##keywords## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1453, '40', 'ro-RO', 'Vă rugăm să îmbunătățiți și să scrieți acest articol într-un mod creativ și inteligent:\\n\\n ##description## \\n\\n folosind aceste cuvinte cheie ##keywords## \\n\\n Tonul de voce al rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1454, '40', 'vi-VN', 'vui lòng Cải thiện và viết bài viết này một cách sáng tạo và thông minh:\\n\\n ##description## \\n\\n Sử dụng từ khóa này ##keywords## \\n\\n Giọng điệu của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1455, '40', 'sw-KE', 'tafadhali Boresha na uandike nakala hii kwa njia ya ubunifu na busara:\\n\\n ##description## \\n\\n kwa kutumia maneno haya ##keywords## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1456, '40', 'sl-SI', 'prosimo, izboljšajte in napišite ta članek na kreativen in pameten način:\\n\\n ##description## \\n\\n z uporabo teh ključnih besed ##keywords## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1457, '40', 'th-TH', 'โปรดปรับปรุงและเขียนบทความนี้ใหม่ด้วยวิธีที่สร้างสรรค์และชาญฉลาด:\\n\\n ##description## \\n\\n โดยใช้คีย์เวิร์ดนี้ ##keywords## \\n\\n โทนเสียงของผลลัพธ์จะต้อง:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(1458, '40', 'uk-UA', 'Будь ласка, вдосконаліть і перепишіть цю статтю креативно та розумно:\\n\\n ##description## \\n\\n використовуючи ці ключові слова ##keywords## \\n\\n Тон голосу результату повинен бути таким:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1459, '40', 'lt-LT', 'Patobulinkite ir perrašykite šį straipsnį kūrybiškai ir sumaniai:\\n\\n ##description## \\n\\n naudojant šiuos raktinius žodžius ##keywords## \\n\\n Rezultato balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1460, '40', 'bg-BG', 'моля, подобрете и пренапишете тази статия по креативен и интелигентен начин:\\n\\n ##description## \\n\\n използвайки тези ключови думи ##keywords## \\n\\n Тонът на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1461, '41', 'en-US', 'Rephrase this content:\n\n ##description## in a different voice and style to appeal to different readers \n\n using this keywords ##keywords## \n\n \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1462, '41', 'ar-AE', 'اعادة مسح هذه المحتويات:\n\n ##description## بصوت وأسلوب مختلف للاستئناف للقراء المختلفين \n\n استخدام هذه الكلمات المرشدة ##keywords## \n\n \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1463, '41', 'cmn-CN', '重新詞組此內容:\n\n ##description## 用不同的聲音和風格來吸引不同的讀者 \n\n 使用此關鍵字 ##keywords## \n\n \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1464, '41', 'hr-HR', 'Preformulirati ovaj sadržaj:\n\n ##description## u drukčjoj glasu i stilu da se priziva na različite čitatelje. \n\n koristeći ove ključne riječi ##keywords## \n\n \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1465, '41', 'cs-CZ', 'Přesousloví tento obsah:\n\n ##description## v jiném hlasu a stylu pro odvolání k různým čtenářům \n\n použití těchto klíčových slov ##keywords## \n\n \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1466, '41', 'da-DK', 'Omsætning af dette indhold:\n\n ##description## i en anden stemme og typografi for at appellere til forskellige læsere \n\n bruge disse nøgleord ##keywords## \n\n \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1467, '41', 'nl-NL', 'Deze content herformuleren:\n\n ##description## in een andere stem en stijl om beroep te doen op verschillende lezers \n\n met deze trefwoorden ##keywords## \n\n \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1468, '41', 'et-EE', 'Väljenda seda sisu uuesti:\n\n ##description## teise hääle ja stiili, et pöörduda erinevate lugejate \n\n Kasuta sõnu ##keywords## \n\n \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1469, '41', 'fi-FI', 'Korjaa tämä sisältö:\n\n ##description## Eri ääni ja tyyli valittaa eri lukijoille \n\n Käyttämällä tätä avainsanaa ##keywords## \n\n \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1470, '41', 'fr-FR', 'Rephrase ce contenu:\n\n ##description## D\'une voix et d\'un style différents pour faire appel à différents lecteurs \n\n Utilisation de ces mots clés ##keywords## \n\n \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1471, '41', 'de-DE', 'Umschreibung dieses Inhalts:\n\n ##description## in einer anderen Stimme und einem anderen Stil, um an verschiedene Leser zu appellieren \n\n Verwendung dieser Schlüsselwörter ##keywords## \n\n \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1472, '41', 'el-GR', 'Αναδιατύπωση αυτού του περιεχομένου.:\n\n ##description## με διαφορετική φωνή και στυλ να απευθυνόταν σε διαφορετικούς αναγνώστες \n\n χρησιμοποιώντας αυτές τις λέξεις-κλειδιά ##keywords## \n\n \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1473, '41', 'he-IL', 'משפט חוזר של תוכן זה:\n\n ##description## בקול וסגנון שונים כדי לפנות לקוראים שונים. \n\n שימוש במילות מפתח אלה ##keywords## \n\n \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1474, '41', 'hi-IN', 'इस सामग्री को पुनः वाक्यांश करें:\n\n ##description## विभिन्न पाठकों से अपील करने के लिए एक अलग आवाज और शैली में \n\n इस कीवर्ड का उपयोग कर ##keywords## \n\n \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1475, '41', 'hu-HU', 'A tartalom javítása:\n\n ##description## Eltérő hangon és stílusban a különböző olvasók számára \n\n E kulcsszavak használata ##keywords## \n\n \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1476, '41', 'is-IS', 'Umorðaðu þetta efni:\n\n ##description## í annarri rödd og stíl til að höfða til ólíkra lesenda \n\n nota þessi leitarorð ##keywords## \n\n \n\n Rödd í niðurstöðunni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1477, '41', 'id-ID', 'Ulangi konten ini:\n\n ##description## dengan suara dan gaya yang berbeda untuk menarik pembaca yang berbeda \n\n menggunakan kata kunci ini ##keywords## \n\n \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1478, '41', 'it-IT', 'Riformula questo contenuto:\n\n ##description## con una voce e uno stile diversi per attrarre lettori diversi \n\n utilizzando queste parole chiave ##keywords## \n\n \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1479, '41', 'ja-JP', 'この内容を言い換える:\n\n ##description## さまざまな読者にアピールするために、さまざまな声とスタイルで \n\n このキーワードを使って ##keywords## \n\n \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1480, '41', 'ko-KR', '이 콘텐츠를 다른 말로 표현:\n\n ##description## 다른 독자들에게 어필하기 위해 다른 목소리와 스타일로 \n\n 이 키워드를 사용하여 ##keywords## \n\n \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1481, '41', 'ms-MY', 'Ungkapkan semula kandungan ini:\n\n ##description## dengan suara dan gaya yang berbeza untuk menarik minat pembaca yang berbeza \n\n menggunakan kata kunci ini ##keywords## \n\n \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1482, '41', 'nb-NO', 'Omformuler dette innholdet:\n\n ##description## i en annen stemme og stil for å appellere til forskjellige lesere \n\n ved å bruke disse søkeordene ##keywords## \n\n \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1483, '41', 'pl-PL', 'Przeformułuj tę treść:\n\n ##description## innym głosem i stylem, aby przemawiać do różnych czytelników \n\n używając tych słów kluczowych ##keywords## \n\n \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1484, '41', 'pt-PT', 'Reformule este conteúdo:\n\n ##description## em uma voz e estilo diferentes para atrair diferentes leitores \n\n usando essas palavras-chave ##keywords## \n\n \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1485, '41', 'ru-RU', 'Перефразируйте этот контент:\n\n ##description## в другом голосе и стиле, чтобы обратиться к разным читателям \n\n используя эти ключевые слова ##keywords## \n\n \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1486, '41', 'es-ES', 'Reformular este contenido:\n\n ##description## en una voz y estilo diferente para atraer a diferentes lectores \n\n usando estas palabras clave ##keywords## \n\n \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1487, '41', 'sv-SE', 'Omformulera detta innehåll:\n\n ##description## med en annan röst och stil för att tilltala olika läsare \n\n använder dessa nyckelord ##keywords## \n\n \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1488, '41', 'tr-TR', 'Bu içeriği yeniden ifade et:\n\n ##description## farklı okuyuculara hitap etmek için farklı bir ses ve tarzda \n\n bu anahtar kelimeleri kullanarak ##keywords## \n\n \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1489, '41', 'pt-BR', 'Reformule este conteúdo:\n\n ##description## em uma voz e estilo diferentes para atrair diferentes leitores \n\n usando essas palavras-chave ##keywords## \n\n \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1490, '41', 'ro-RO', 'Reformulați acest conținut:\n\n ##description## într-o voce și stil diferit pentru a atrage diferiți cititori \n\n folosind aceste cuvinte cheie ##keywords## \n\n \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1491, '41', 'vi-VN', 'Viết lại nội dung này:\n\n ##description## bằng một giọng điệu và phong cách khác để thu hút những độc giả khác nhau \n\n sử dụng từ khóa này ##keywords## \n\n \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1492, '41', 'sw-KE', 'Andika upya maudhui haya:\n\n ##description## kwa sauti na mtindo tofauti ili kuwavutia wasomaji mbalimbali \n\n kwa kutumia maneno haya ##keywords## \n\n \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1493, '41', 'sl-SI', 'Preoblikujte to vsebino:\n\n ##description## z drugačnim glasom in slogom, da pritegne različne bralce \n\n z uporabo teh ključnih besed ##keywords## \n\n \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1494, '41', 'th-TH', 'ใช้ถ้อยคำเนื้อหานี้ใหม่:\n\n ##description## ด้วยเสียงและสไตล์ที่แตกต่างเพื่อดึงดูดผู้อ่านที่แตกต่างกัน \n\n โดยใช้คีย์เวิร์ดนี้ ##keywords## \n\n \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1495, '41', 'uk-UA', 'Перефразуйте цей зміст:\n\n ##description## іншим голосом і стилем, щоб звернутися до різних читачів \n\n використовуючи ці ключові слова ##keywords## \n\n \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1496, '41', 'lt-LT', 'Perfrazuokite šį turinį:\n\n ##description## kitu balsu ir stiliumi, kad patiktų skirtingiems skaitytojams \n\n naudojant šiuos raktinius žodžius ##keywords## \n\n \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1497, '41', 'bg-BG', 'Перифразирайте това съдържание :\n\n ##description## с различен глас и стил, за да се хареса на различни читатели \n\n използвайки тези ключови думи ##keywords## \n\n \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1498, '42', 'en-US', 'Improve and extend this content:\\n\\n ##description## \\n\\n Use following keywords in the content:\\n ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1499, '42', 'ar-AE', 'تحسين وتوسيع هذه المحتويات:\\n\\n ##description## \\n\\n استخدام الكلمات المرشدة التالية في المحتويات:\\n ##keywords## \\n\\n Tالوحيدة من صوت النتيجة يجب أن تكون:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1500, '42', 'cmn-CN', '改进和扩展此内容:\\n\\n ##description## \\n\\n 在内容中使用以下关键字:\\n ##keywords## \\n\\n T结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1501, '42', 'hr-HR', 'Poboljsi i produži ovaj sadržaj:\\n\\n ##description## \\n\\n Koristite sljedeće ključne riječi u sadržaju:\\n ##keywords## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1502, '42', 'cs-CZ', 'Vylepšit a rozšířit tento obsah:\\n\\n ##description## \\n\\n UPoužít následující klíčová slova v obsahu:\\n ##keywords## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1503, '42', 'da-DK', 'Forbedre og udvid dette indhold:\\n\\n ##description## \\n\\n Brug følgende nøgleord i indholdet:\\n ##keywords## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1504, '42', 'nl-NL', 'Deze content verbeteren en uitbreiden:\\n\\n ##description## \\n\\n Gebruik de volgende sleutelwoorden in de inhoud:\\n ##keywords## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1505, '42', 'et-EE', 'Parandada ja laiendada seda sisu:\\n\\n ##description## \\n\\n Kasuta järgmisi võtmesõnu:\\n ##keywords## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1506, '42', 'fi-FI', 'Tämän sisällön parantaminen ja laajentaminen:\\n\\n ##description## \\n\\n Käytä sisällön avainsanoja:\\n ##keywords## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1507, '42', 'fr-FR', 'Améliorer et étendre ce contenu:\\n\\n ##description## \\n\\n Utiliser les mots clés suivants dans le contenu:\\n ##keywords## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1508, '42', 'de-DE', 'Diese Inhalte verbessern und erweitern:\\n\\n ##description## \\n\\n Verwenden Sie die folgenden Schlüsselwörter im Inhalt:\\n ##keywords## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1509, '42', 'el-GR', 'Βελτίωση και επέκταση αυτού του περιεχομένου.:\\n\\n ##description## \\n\\n Χρήση ακόλουθων λέξεων-κλειδιών στο περιεχόμενο:\\n ##keywords## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1510, '42', 'he-IL', 'שיפור ולהרחיב תוכן זה:\\n\\n ##description## \\n\\n שימוש במילות המפתח שלהלן בתוכן:\\n ##keywords## \\n\\n Tone של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1511, '42', 'hi-IN', 'इस सामग्री को सुधारता और विस्तार करें:\\n\\n ##description## \\n\\n सामग्री में निम्नलिखित कीवर्ड का प्रयोग करें:\\n ##keywords## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1512, '42', 'hu-HU', 'A tartalom javítása és kiterjesztése:\\n\\n ##description## \\n\\n Használja a következő kulcsszavakat a tartalomban:\\n ##keywords## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1513, '42', 'is-IS', 'Bættu og stækkuðu þetta efni:\\n\\n ##description## \\n\\n Notaðu eftirfarandi leitarorð í innihaldinu:\\n ##keywords## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1514, '42', 'id-ID', 'Meningkatkan dan memperluas konten ini:\\n\\n ##description## \\n\\n Gunakan kata kunci berikut dalam isi:\\n ##keywords## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1515, '42', 'it-IT', 'Migliorare ed estendere questo contenuto:\\n\\n ##description## \\n\\n Utilizzare le seguenti parole chiave nel contenuto:\\n ##keywords## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1516, '42', 'ja-JP', 'このコンテンツの改善と拡張:\\n\\n ##description## \\n\\n コンテンツ内の以下のキーワードを使用:\\n ##keywords## \\n\\n 結果の声のトーンは、:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1517, '42', 'ko-KR', '이 컨텐츠 향상 및 확장:\\n\\n ##description## \\n\\n 컨텐츠에서 다음 키워드 사용:\\n ##keywords## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1518, '42', 'ms-MY', 'Tingkatkan dan lanjutkan kandungan ini:\\n\\n ##description## \\n\\n Guna kata kekunci berikut dalam kandungan:\\n ##keywords## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1519, '42', 'nb-NO', 'Forbedre og utvide dette innholdet:\\n\\n ##description## \\n\\n Bruk følgende nøkkelord i innholdet:\\n ##keywords## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1520, '42', 'pl-PL', 'Ulepszanie i rozszerzanie tej treści:\\n\\n ##description## \\n\\n Użyj następujących słów kluczowych w treści:\\n ##keywords## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1521, '42', 'pt-PT', 'Melhorar e alargar este conteúdo:\\n\\n ##description## \\n\\n Utilizar as seguintes palavras-chave no conteúdo:\\n ##keywords## \\n\\n Tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1522, '42', 'ru-RU', 'Улучшить и расширить это содержимое:\\n\\n ##description## \\n\\n Использовать следующие ключевые слова в содержимом:\\n ##keywords## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1523, '42', 'es-ES', 'Mejorar y ampliar este contenido:\\n\\n ##description## \\n\\n Utilizar las palabras clave siguientes en el contenido:\\n ##keywords## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1524, '42', 'sv-SE', 'Förbättra och utöka innehållet:\\n\\n ##description## \\n\\n Använd följande nyckelord i innehållet:\\n ##keywords## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1525, '42', 'tr-TR', 'Bu içeriği iyileştirin ve genişletin:\\n\\n ##description## \\n\\n İçerikte aşağıdaki anahtar sözcükleri kullan:\\n ##keywords## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1526, '42', 'pt-BR', 'Aprimore e amplie esse conteúdo:\\n\\n ##description## \\n\\n Use as seguintes palavras-chave no conteúdo:\\n ##keywords## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1527, '42', 'ro-RO', 'Îmbunătățirea și extinderea acestui conținut:\\n\\n ##description## \\n\\n Utilizați următoarele cuvinte cheie în conținut:\\n ##keywords## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1528, '42', 'vi-VN', 'Cải thiện và mở rộng nội dung này:\\n\\n ##description## \\n\\n Sử dụng sau tư ̀ khóa trong nội dung:\\n ##keywords## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1529, '42', 'sw-KE', 'Boresha na upanue maudhui haya:\\n\\n ##description## \\n\\n Tumia maneno muhimu yafuatayo katika yaliyomo:\\n ##keywords## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1530, '42', 'sl-SI', 'Izboljjte in razširite to vsebino:\\n\\n ##description## \\n\\n Uporabi naslednje ključne besede v vsebini:\\n ##keywords## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1531, '42', 'th-TH', 'ปรับปรุงและขยายเนื้อหานี้:\\n\\n ##description## \\n\\n ใช้คีย์เวิร์ดต่อไปนี้ในเนื้อหา:\\n ##keywords## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1532, '42', 'uk-UA', 'Покращення і розширення вмісту:\\n\\n ##description## \\n\\n Використовувати наступні ключові слова у зміні:\\n ##keywords## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1533, '42', 'lt-LT', 'Pagerinti ir išplėsti šį turinį:\\n\\n ##description## \\n\\n Naudoti pagal raktažodžius turinį:\\n ##keywords## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1534, '42', 'bg-BG', 'Подобряване и разширяване на това съдържание:\\n\\n ##description## \\n\\n Използване на следните ключови думи в съдържанието:\\n ##keywords## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1535, '43', 'en-US', 'Summarize this text in a short concise way:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1536, '43', 'ar-AE', 'قم بتلخيص هذا النص بطريقة مختصرة قصيرة:\n\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1537, '43', 'cmn-CN', '以簡短的方式彙總此文字:\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1538, '43', 'hr-HR', 'Sumiraj ovaj tekst na kratki koncizni način:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1539, '43', 'cs-CZ', 'Shrňte tento text stručným výstižným způsobem:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1540, '6', 'da-DK', 'Opsummér teksten på kort koncis måde:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1541, '43', 'nl-NL', 'Een korte samenvatting van deze tekst samenvatten:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1542, '43', 'et-EE', 'Selle teksti kokkuvõtlik lühikokkuvõte:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1543, '43', 'fi-FI', 'Tiivistä tämä teksti lyhyesti lyhyesti:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1544, '43', 'fr-FR', 'Résumez ce texte de manière concise et concise:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1545, '43', 'de-DE', 'Fassen Sie diesen Text kurz zusammen.:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1546, '43', 'el-GR', 'Συνοπτική παρουσίαση αυτού του κειμένου με συνοπτικές συνοπτικές:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1547, '43', 'he-IL', 'סיכום התמליל באופן תמציתי קצר.:\n\n ##description## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1548, '43', 'hi-IN', 'संक्षिप्त सारांश में इस पाठ को सारांशित करें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1549, '43', 'hu-HU', 'Összegezze ezt a szöveget rövid tömör formában:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1550, '43', 'is-IS', 'Dragðu saman þennan texta á stuttan hnitmiðaðan hátt:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1551, '43', 'id-ID', 'Ikhtisar teks ini dengan cara ringkas singkat:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1552, '43', 'it-IT', 'Riepiloga questo testo in modo conciso breve:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1553, '43', 'ja-JP', '簡潔な簡潔な方法でこのテキストを要約する:\n\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1554, '43', 'ko-KR', '짧은 간결한 방식으로 이 텍스트 요약:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1555, '43', 'ms-MY', 'Panggil teks ini dalam cara concise pendek:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1556, '43', 'nb-NO', 'Oppsummer denne teksten på en kort og konsist måte:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1557, '43', 'pl-PL', 'Podsumuj ten tekst w krótkim zwięzonym sposobie:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1558, '43', 'pt-PT', 'Resumir este texto de uma forma concisa curta:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1559, '43', 'ru-RU', 'Обобщить этот текст кратким кратким способом:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1560, '43', 'es-ES', 'Resumir este texto de una manera breve y concisa:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1561, '43', 'sv-SE', 'Sammanfatta den här texten på kort koncist sätt:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1562, '43', 'tr-TR', 'Bu metni kısa kısa bir kısa yolla özetle:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1563, '43', 'pt-BR', 'Resumir este texto de uma forma concisa curta:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1564, '43', 'ro-RO', 'Rezumă acest text într-un mod concis scurt:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1565, '43', 'vi-VN', 'Tóm tắt văn bản này một cách ngắn gọn:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1566, '43', 'sw-KE', 'Fupisha maandishi haya kwa njia fupi fupi:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1567, '43', 'sl-SI', 'Seštej to besedilo na kratko kratko:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1568, '43', 'th-TH', 'สรุปข้อความนี้ในวิธีที่สั้นกระชับ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1569, '43', 'uk-UA', 'Підсумовувати цей текст коротким шляхом:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1570, '43', 'lt-LT', 'Apibendrinkite šį tekstą trumpai glaustai:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1571, '43', 'bg-BG', 'Обобщи този текст по кратък кратък начин:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1572, '44', 'en-US', 'Write a detailed answer for Quora of this question:\n\n ##title## \n\nUse this content for more information:\n ##description## \n\n Tone of voice of the answer must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1573, '44', 'ar-AE', 'ككتابة جواب مفصل عن Quora من هذا السؤال:\n\n ##title## \n\nاستخدم هذه المحتويات لمزيد من المعلومات:\n ##description## \n\n نبرة صوت الإجابة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1574, '44', 'cmn-CN', '為 Quora 撰寫詳細的答案:\n\n ##title## \n\n使用此內容以取得相關資訊:\n ##description## \n\n 答案的聲音一定是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1575, '44', 'hr-HR', 'Napišite detaljan odgovor za Quora od ovog pitanja:\n\n ##title## \n\nKoristite ovaj sadržaj za više informacija:\n ##description## \n\n Ton glasa od odgovora mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1576, '44', 'cs-CZ', 'Napište podrobnou odpověď pro Quora této otázky:\n\n ##title## \n\nPoužijte tento obsah pro další informace:\n ##description## \n\n Tón hlasu odpovědi musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1577, '44', 'da-DK', 'Skriv et detaljeret svar for Quora af dette spørgsmål:\n\n ##title## \n\nBrug dette indhold til flere oplysninger:\n ##description## \n\n Tonen i svaret skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1578, '44', 'nl-NL', 'Schrijf een gedetailleerd antwoord voor Quora van deze vraag:\n\n ##title## \n\nDeze content gebruiken voor meer informatie:\n ##description## \n\n Toon van de stem van het antwoord moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1579, '44', 'et-EE', 'Selle küsimuse Quora-i üksikasjaliku vastuse kirjutamine:\n\n ##title## \n\nKasutage seda infosisu rohkem:\n ##description## \n\n Vastuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1580, '44', 'fi-FI', 'Kirjoita yksityiskohtainen vastaus Quora tämän kysymyksen:\n\n ##title## \n\nKäytä tätä sisältöä lisätietoja varten:\n ##description## \n\n Vastauksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1581, '44', 'fr-FR', 'Rédiger une réponse détaillée pour Quora de cette question:\n\n ##title## \n\nUtiliser ce contenu pour plus d\'informations:\n ##description## \n\n Tone de la voix de la réponse doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1582, '44', 'de-DE', 'Schreiben Sie eine ausführliche Antwort für Quora von dieser Frage:\n\n ##title## \n\nVerwenden Sie diesen Inhalt für weitere Informationen.:\n ##description## \n\n Ton der Stimme der Antwort muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1583, '44', 'el-GR', 'Γράψτε μια αναλυτική απάντηση για την Quora αυτής της ερώτησης:\n\n ##title## \n\nΧρήση αυτού του περιεχομένου για περισσότερες πληροφορίες:\n ##description## \n\n Ο τόνος της φωνής της απάντησης πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1584, '44', 'he-IL', 'כתיבת תשובה מפורטת עבור Quora של שאלה זו:\n\n ##title## \n\nשימוש בתוכן זה לקבלת מידע נוסף:\n ##description## \n\n נימת הקול של התשובה חייבת להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1585, '44', 'hi-IN', 'इस प्रश्न के Quora के लिए एक विस्तृत उत्तर लिखें:\n\n ##title## \n\nअधिक जानकारी के लिए इस सामग्री का उपयोग करें:\n ##description## \n\n जवाब की आवाज का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1586, '44', 'hu-HU', 'Részletes válasz írása Quora Ebből a kérdésről:\n\n ##title## \n\nUse this content for more information:\n ##description## \n\n Tone of voice of the answer must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1587, '44', 'is-IS', 'Skrifaðu ítarlegt svar fyrir Quora við þessari spurningu:\n\n ##title## \n\nNotaðu þetta efni til að fá frekari upplýsingar:\n ##description## \n\n Rödd svarsins verður be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1588, '44', 'id-ID', 'Tulis jawaban rinci untuk Quora pertanyaan ini:\n\n ##title## \n\nGunakan konten ini untuk informasi lebih lanjut:\n ##description## \n\n Nada suara harus dijawab.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1589, '44', 'it-IT', 'Scrivi una risposta dettagliata per Quora di questa domanda:\n\n ##title## \n\nUsa questo contenuto per ulteriori informazioni:\n ##description## \n\n Il tono di voce della risposta deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1590, '44', 'ja-JP', 'この質問の Quora の詳細な回答を書き込む:\n\n ##title## \n\n詳しくは、このコンテンツを使用してください:\n ##description## \n\n 解答の声のトーンは:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1591, '44', 'ko-KR', '이 질문의 Quora에 대한 자세한 응답 작성:\n\n ##title## \n\n자세한 정보는 이 컨텐츠를 사용하십시오.:\n ##description## \n\n 대답의 음성은 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1592, '44', 'ms-MY', 'Tulis jawapan terperinci untuk Quora soalan ini:\n\n ##title## \n\nGuna kandungan ini untuk maklumat lanjut:\n ##description## \n\n Nada suara jawabannya mesti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1593, '44', 'nb-NO', 'Skriv et detaljert svar for Quora på dette spørsmålet:\n\n ##title## \n\nGuna kandungan ini untuk maklumat lanjut:\n ##description## \n\n Nada suara jawabannya mesti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1594, '44', 'pl-PL', 'Napisz szczegółową odpowiedź dla Quora o to pytanie:\n\n ##title## \n\nUżyj tej treści, aby uzyskać więcej informacji:\n ##description## \n\n Ton głosu odpowiedzi musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1595, '44', 'pt-PT', 'Escreva uma resposta detalhada para Quora desta pergunta:\n\n ##title## \n\nUse este conteúdo para mais informações:\n ##description## \n\n Tom de voz da resposta deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1596, '44', 'ru-RU', 'Написать подробный ответ для Quora данного вопроса:\n\n ##title## \n\nИспользуйте этот контент для получения дополнительной информации:\n ##description## \n\n Тон голоса должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1597, '44', 'es-ES', 'Escriba una respuesta detallada para Quora de esta pregunta:\n\n ##title## \n\nUtilice este contenido para obtener más información:\n ##description## \n\n El tono de voz de la respuesta debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1598, '44', 'sv-SE', 'Skriv ett detaljerat svar på Quora av denna fråga:\n\n ##title## \n\nAnvänd det här innehållet för mer information:\n ##description## \n\n Tone of voice of the svar must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1599, '44', 'tr-TR', 'Bu sorunun Quora için ayrıntılı bir yanıt yazın:\n\n ##title## \n\nDaha fazla bilgi için bu içeriği kullanın:\n ##description## \n\n Cevabından ses tonunun sesi olmalı.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1600, '44', 'pt-BR', 'Escreva uma resposta detalhada para Quora desta pergunta:\n\n ##title## \n\nUse este conteúdo para mais informações:\n ##description## \n\n Tom de voz da resposta deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1601, '44', 'ro-RO', 'Utilizați acest conținut pentru mai multe informații:\n\n ##title## \n\nUtilizați acest conținut pentru mai multe informații:\n ##description## \n\n Tonul vocii răspunsului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1602, '44', 'vi-VN', 'Viết một câu trả lời chi tiết cho Quora của câu hỏi này:\n\n ##title## \n\nDùng nội dung này để biết thêm thông tin:\n ##description## \n\n Giọng nói của câu trả lời phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1603, '44', 'sw-KE', 'Andika jibu la kina kwa Quora la swali hili:\n\n ##title## \n\nUtazama yaliyomo kwa habari zaidi:\n ##description## \n\n Toni ya sauti ya jibu lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1604, '44', 'sl-SI', 'Napišite podroben odgovor na vprašanje Quora o tem vprašanju:\n\n ##title## \n\nZa več informacij uporabite to vsebino:\n ##description## \n\n Ton glasu odgovora mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1605, '44', 'th-TH', 'เขียนคำตอบโดยละเอียดสำหรับ Quora ของคำถามนี้:\n\n ##title## \n\nใช้เนื้อหานี้เพื่อดูข้อมูลเพิ่มเติม:\\และ \n ##description## \n\n น้ำเสียงของคำตอบต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1606, '44', 'uk-UA', 'Напишіть розгорнуту відповідь для Quora на це питання:\n\n ##title## \n\nВикористовуйте цей вміст для отримання додаткової інформації:\n ##description## \n\n Тон відповіді повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1607, '44', 'lt-LT', 'Parašykite išsamų atsakymą į šį klausimą Quora:\n\n ##title## \n\nNorėdami gauti daugiau informacijos, naudokite šį turinį:\n ##description## \n\n Turi būti atsakymo balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1608, '44', 'bg-BG', 'Напишете подробен отговор за Quora на този въпрос:\n\n ##title## \n\nИзползвайте това съдържание за повече информация:\n ##description## \n\n Тонът на гласа на отговора трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1609, '45', 'en-US', 'Write a detailed answer with bullet points:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1610, '45', 'ar-AE', 'اكتب إجابة مفصلة بالنقاط :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1611, '45', 'cmn-CN', '用要點寫一個詳細的答案:\n\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1612, '45', 'hr-HR', 'Napišite detaljan odgovor s točkama:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1613, '45', 'cs-CZ', 'Napište podrobnou odpověď s odrážkami:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(1614, '45', 'da-DK', 'Skriv et detaljeret svar med punktopstillinger:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1615, '45', 'nl-NL', 'Schrijf een gedetailleerd antwoord met opsommingstekens:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1616, '45', 'et-EE', 'Kirjutage üksikasjalik vastus täppidega:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1617, '45', 'fi-FI', 'Kirjoita yksityiskohtainen vastaus luettelomerkein:\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1618, '45', 'fr-FR', 'Rédigez une réponse détaillée avec une puce points:\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1619, '45', 'de-DE', 'Schreiben Sie eine ausführliche Antwort mit Aufzählungszeichen:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1620, '45', 'el-GR', 'Γράψτε μια λεπτομερή απάντηση με κουκκίδες:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1621, '45', 'he-IL', 'כתבו תשובה מפורטת עם תבליטים:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1622, '45', 'hi-IN', 'बुलेट प्वाइंट्स के साथ विस्तृत उत्तर लिखें:\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1623, '45', 'hu-HU', 'Írjon részletes választ pontokkal:\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1624, '45', 'is-IS', 'Skrifaðu ítarlegt svar með punktum:\n\n ##description## \n\n Rödd í niðurstöðunni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1625, '45', 'id-ID', 'Tulis jawaban terperinci dengan poin-poin:\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1626, '45', 'it-IT', 'Scrivi una risposta dettagliata con elenchi puntati:\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1627, '45', 'ja-JP', '箇条書きで詳細な回答を書く:\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1628, '45', 'ko-KR', '글머리 기호로 자세한 답변을 작성하세요.:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1629, '45', 'ms-MY', 'Tulis jawapan terperinci dengan titik peluru:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1630, '45', 'nb-NO', 'Skriv et detaljert svar med punkter:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1631, '45', 'pl-PL', 'Napisz szczegółową odpowiedź z punktorami:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1632, '45', 'pt-PT', 'Escreva uma resposta detalhada com marcadores:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1633, '45', 'ru-RU', 'Напишите подробный ответ с пунктами:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1634, '45', 'es-ES', 'Escriba una respuesta detallada con viñetas:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1635, '45', 'sv-SE', 'Skriv ett utförligt svar med punkter:\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1636, '45', 'tr-TR', 'Madde işaretleri ile ayrıntılı bir cevap yazın:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1637, '45', 'pt-BR', 'Escreva uma resposta detalhada com marcadores:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1638, '45', 'ro-RO', 'Scrieți un răspuns detaliat cu puncte:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1639, '45', 'vi-VN', 'Viết một câu trả lời chi tiết với các gạch đầu dòng:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1640, '45', 'sw-KE', 'Andika jibu la kina na vidokezo vya risasi:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1641, '45', 'sl-SI', 'Napišite podroben odgovor z točkami:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1642, '45', 'th-TH', 'เขียนคำตอบโดยละเอียดพร้อมสัญลักษณ์แสดงหัวข้อย่อย:\n\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1643, '45', 'uk-UA', 'Напишіть розгорнуту відповідь, позначивши її маркерами:\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1644, '45', 'lt-LT', 'Parašykite išsamų atsakymą su taškais:\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1645, '45', 'bg-BG', 'Напишете подробен отговор с точки:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1646, '46', 'en-US', 'What is the meaning of:\n\n ##keyword## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1647, '46', 'ar-AE', 'ما معنى:\n\n ##keyword## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1648, '46', 'cmn-CN', '是什么意思:\n\n ##keyword## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1649, '46', 'hr-HR', 'Što je smisao:\n\n ##keyword## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1650, '46', 'cs-CZ', 'Co znamená:\n\n ##keyword## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1651, '46', 'da-DK', 'Hvad er meningen med:\n\n ##keyword## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1652, '46', 'nl-NL', 'Wat is de betekenis van:\n\n ##keyword## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1653, '46', 'et-EE', 'Mida tähendab:\n\n ##keyword## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1654, '46', 'fi-FI', 'Mikä on tarkoitus:\n\n ##keyword## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1655, '46', 'fr-FR', 'Quel est le sens de:\n\n ##keyword## \n\n Le ton de voix du résultat doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1656, '46', 'de-DE', 'Was ist die Bedeutung von:\n\n ##keyword## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1657, '46', 'el-GR', 'Ποια είναι η σημασία του:\n\n ##keyword## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1658, '46', 'he-IL', 'מה המשמעות של:\n\n ##keyword## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1659, '46', 'hi-IN', 'का अर्थ क्या है:\n\n ##keyword## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1660, '46', 'hu-HU', 'Mit jelent az hogy:\n\n ##keyword## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1661, '46', 'is-IS', 'Hvað þýðir:\n\n ##keyword## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1662, '46', 'id-ID', 'Apa arti dari:\n\n ##keyword## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1663, '46', 'it-IT', 'Qual è il significato di:\n\n ##keyword## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1664, '46', 'ja-JP', '意味は次のとおりです:\n\n ##keyword## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1665, '46', 'ko-KR', '다음의 의미는 무엇입니까:\n\n ##keyword## \n\n 결과의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(1666, '46', 'ms-MY', 'Apakah maksud:\n\n ##keyword## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1667, '46', 'nb-NO', 'Hva er betydningen av:\n\n ##keyword## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1668, '46', 'pl-PL', 'Jakie jest znaczenie:\n\n ##keyword## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1669, '46', 'pt-PT', 'Qual é o significado de:\n\n ##keyword## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1670, '46', 'ru-RU', 'Каково значение:\n\n ##keyword## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1671, '46', 'es-ES', 'Cuál es el significado de:\n\n ##keyword## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1672, '46', 'sv-SE', 'Vad är meningen med:\n\n ##keyword## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1673, '46', 'tr-TR', 'Anlamı ne:\n\n ##keyword## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1674, '46', 'pt-BR', 'Qual é o significado de:\n\n ##keyword## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1675, '46', 'ro-RO', 'Ce înseamnă:\n\n ##keyword## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1676, '46', 'vi-VN', 'Ý nghĩa của:\n\n ##keyword## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1677, '46', 'sw-KE', 'Nini maana ya:\n\n ##keyword## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1678, '46', 'sl-SI', 'Kaj je pomen:\n\n ##keyword## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1679, '46', 'th-TH', 'ความหมายของ:\n\n ##keyword## \n\n โทนเสียงของผลลัพธ์จะต้อง:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1680, '46', 'uk-UA', 'Яке значення:\n\n ##keyword## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1681, '46', 'lt-LT', 'Ką reiškia:\n\n ##keyword## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1682, '46', 'bg-BG', 'Какво е значението на:\n\n ##keyword## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1683, '47', 'en-US', 'Write a long and detailed answer of:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1684, '47', 'ar-AE', 'كتابة إجابة طويلة ومفصلة عن:\\n\\n ##description## \\n\\n Tالوحيدة من صوت النتيجة يجب أن تكون:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1685, '47', 'cmn-CN', '写长详细的答案:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1686, '47', 'hr-HR', 'Napišite dug i detaljan odgovor:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1687, '47', 'cs-CZ', 'Napište dlouhou a podrobnou odpověď:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1688, '47', 'da-DK', 'Skriv et langt og detaljeret svar på:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1689, '47', 'nl-NL', 'Schrijf een lang en gedetailleerd antwoord van:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1690, '47', 'et-EE', 'Kirjuta pikk ja üksikasjalik vastus:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1691, '47', 'fi-FI', 'Kirjoita pitkä ja yksityiskohtainen vastaus:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1692, '47', 'fr-FR', 'Rédiger une réponse longue et détaillée:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1693, '47', 'de-DE', 'Schreiben Sie eine lange und detaillierte Antwort von:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1694, '47', 'el-GR', 'Γράψτε μια μακρά και λεπτομερή απάντηση.:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1695, '47', 'he-IL', 'כתיבת תשובה ארוכה ומפורטת של:\\n\\n ##description## \\n\\n Tone של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1696, '47', 'hi-IN', 'के एक लंबा और विस्तृत उत्तर लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1697, '47', 'hu-HU', 'Írjon hosszú és részletes választ a:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1698, '47', 'is-IS', 'Skrifaðu langt og ítarlegt svar af:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1699, '47', 'id-ID', 'Tulis jawaban yang panjang dan rinci:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1700, '47', 'it-IT', 'Scrivi una risposta lunga e dettagliata di:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1701, '47', 'ja-JP', 'ロング・アンド・詳細な回答を書き込む:\\n\\n ##description## \\n\\n 結果の声のトーンは、:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1702, '47', 'ko-KR', '자세한 내용과 자세한 내용을 작성하십시오.:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1703, '47', 'ms-MY', 'Tulis jawapan panjang dan terperinci terperinci:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1704, '47', 'nb-NO', 'Skriv et langt og detaljert svar på:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1705, '47', 'pl-PL', 'Napisz długą i szczegółową odpowiedź:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1706, '47', 'pt-PT', 'Escrever uma resposta longa e pormenorizada sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1707, '47', 'ru-RU', 'Напишите длинный и подробный ответ на:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1708, '47', 'es-ES', 'Escribir una respuesta larga y detallada de:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1709, '47', 'sv-SE', 'Skriv ett långt och detaljerat svar på:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1710, '47', 'tr-TR', 'Uzun ve ayrıntılı bir yanıt yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1711, '47', 'pt-BR', 'Escreva uma resposta longa e detalhada sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1712, '47', 'ro-RO', 'Scrie un răspuns lung și detaliat al:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1713, '47', 'vi-VN', 'Viết câu trả lời dài và chi tiết:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1714, '47', 'sw-KE', 'Andika jibu refu na la kina:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1715, '47', 'sl-SI', 'Napišite dolg in podroben odgovor:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1716, '47', 'th-TH', 'เขียนคำตอบยาวๆและละเอียดของ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1717, '47', 'uk-UA', 'Написати довгу і детальну відповідь:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1718, '47', 'lt-LT', 'Rašykite ilgą ir išsamų atsakymą:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1719, '47', 'bg-BG', 'Напишете дълъг и подробен отговор на:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1720, '48', 'en-US', 'Create 10 engaging questions from this paragraph:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1721, '48', 'ar-AE', 'قم بإنشاء 10 أسئلة جذابة من هذه الفقرة:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1722, '48', 'cmn-CN', '根據本段提出 10 個引人入勝的問題:\n\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1723, '48', 'hr-HR', 'Napravite 10 zanimljivih pitanja iz ovog odlomka:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1724, '48', 'cs-CZ', 'Vytvořte 10 poutavých otázek z tohoto odstavce:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1725, '48', 'da-DK', 'Lav 10 engagerende spørgsmål fra dette afsnit:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1726, '48', 'nl-NL', 'Maak 10 boeiende vragen uit deze paragraaf:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1727, '48', 'et-EE', 'Looge sellest lõigust 10 köitvat küsimust:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1728, '48', 'fi-FI', 'Luo 10 kiinnostavaa kysymystä tästä kappaleesta:\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1729, '48', 'fr-FR', 'Créez 10 questions engageantes à partir de ce paragraphe:\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1730, '48', 'de-DE', 'Erstellen Sie aus diesem Absatz 10 spannende Fragen:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1731, '48', 'el-GR', 'Δημιουργήστε 10 ενδιαφέρουσες ερωτήσεις από αυτήν την παράγραφο:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1732, '48', 'he-IL', 'צור 10 שאלות מרתקות מפסקה זו:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1733, '48', 'hi-IN', 'इस पैराग्राफ से 10 आकर्षक प्रश्न बनाएं:\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1734, '48', 'hu-HU', 'Hozz létre 10 megnyerő kérdést ebből a bekezdésből:\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1735, '48', 'is-IS', 'Búðu til 10 áhugaverðar spurningar úr þessari málsgrein:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1736, '48', 'id-ID', 'Buat 10 pertanyaan menarik dari paragraf ini:\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1737, '48', 'it-IT', 'Crea 10 domande coinvolgenti da questo paragrafo:\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1738, '48', 'ja-JP', 'この段落から魅力的な質問を 10 個作成します:\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1739, '48', 'ko-KR', '이 단락에서 10개의 매력적인 질문을 만드십시오.:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1740, '48', 'ms-MY', 'Cipta 10 soalan yang menarik daripada perenggan ini:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1741, '48', 'nb-NO', 'Lag 10 engasjerende spørsmål fra dette avsnittet:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1742, '48', 'pl-PL', 'Utwórz 10 interesujących pytań z tego akapitu:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1743, '48', 'pt-PT', 'Crie 10 perguntas envolventes a partir deste parágrafo:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1744, '48', 'ru-RU', 'Создайте 10 увлекательных вопросов из этого абзаца:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1745, '48', 'es-ES', 'Crea 10 preguntas atractivas a partir de este párrafo:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1746, '48', 'sv-SE', 'Skapa 10 engagerande frågor från detta stycke:\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1747, '48', 'tr-TR', 'Bu paragraftan 10 ilgi çekici soru oluşturun:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1748, '48', 'pt-BR', 'Crie 10 perguntas envolventes a partir deste parágrafo:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1749, '48', 'ro-RO', 'Creați 10 întrebări captivante din acest paragraf:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1750, '48', 'vi-VN', 'Tạo 10 câu hỏi hấp dẫn từ đoạn văn này:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1751, '48', 'sw-KE', 'Unda maswali 10 ya kuvutia kutoka kwa aya hii:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1752, '48', 'sl-SI', 'Ustvarite 10 privlačnih vprašanj iz tega odstavka:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1753, '48', 'th-TH', 'สร้างคำถามที่น่าสนใจ 10 ข้อจากย่อหน้านี้:\n\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1754, '48', 'uk-UA', 'Створіть 10 цікавих запитань із цього абзацу:\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1755, '48', 'lt-LT', 'Sukurkite 10 patrauklių klausimų iš šios pastraipos:\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1756, '48', 'bg-BG', 'Създайте 10 ангажиращи въпроса от този параграф:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1757, '49', 'en-US', 'Convert this passive voice sentence into active voice:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1758, '49', 'ar-AE', 'تحويل هذه الجملة الصوتية السلبية الى صوت فعال:\\n\\n ##description## \\n\\n Tالوحيدة من صوت النتيجة يجب أن تكون:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1759, '49', 'cmn-CN', '将此被动语音语句转换为活动语音:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1760, '49', 'hr-HR', 'Pretvori ovu pasivnu glasovnu rečenicu u aktivni glas:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1761, '49', 'cs-CZ', 'Převést tuto pasivní hlasovou větu do aktivního hlasu:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1762, '49', 'da-DK', 'Konvertér denne passive stemmesætning til aktiv stemme:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1763, '49', 'nl-NL', 'Deze passieve stem omzetten in actieve stem:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1764, '49', 'et-EE', 'Selle passiivse häälelause teisendamine aktiivsesse häälesse:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1765, '49', 'fi-FI', 'Muunna tämä passiivinen ääni aktiiviseksi ääneksi:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1766, '49', 'fr-FR', 'Convertir cette phrase vocale passive en voix active:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1767, '49', 'de-DE', 'Diesen passiven Sprachsatz in aktive Stimme umwandeln:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1768, '49', 'el-GR', 'Μετάτρεψε αυτή την παθητική φωνή σε ενεργή φωνή.:\\n\\n ##description## \\n\\n v:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1769, '49', 'he-IL', 'המרת משפט קול פסיבי לקול פעיל:\\n\\n ##description## \\n\\n טון הדיבור של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1770, '49', 'hi-IN', 'इस निष्क्रिय आवाज वाक्य को सक्रिय आवाज में बदलें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1771, '49', 'hu-HU', 'A passzív hangmondat átalakítása aktív hanggá:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1772, '49', 'is-IS', 'Umbreyttu þessari óvirku raddsetningu í virka rödd:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1773, '49', 'id-ID', 'Ubah kalimat suara pasif ini menjadi suara aktif:\\n\\n ##description## \\n\\n TNada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1774, '49', 'it-IT', 'Convertire questa frase voce passivo in voce attiva:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1775, '49', 'ja-JP', 'この受動音声文をアクティブな音声に変換します:\\n\\n ##description## \\n\\n 結果の声のトーンは、:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1776, '49', 'ko-KR', '이 수동 음성 문장을 활성 음성으로 변환합니다.:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1777, '49', 'ms-MY', 'Tukar ayat suara pasif ini ke dalam suara aktif:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1778, '49', 'nb-NO', 'Konverter denne passive stemmesetningen inn i aktiv stemme:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1779, '49', 'pl-PL', 'Przekształć ten bierny głos głosowy w aktywny głos:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1780, '49', 'pt-PT', 'Converter esta frase de voz passiva em voz activa:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1781, '49', 'ru-RU', 'Преобразовать этот пассивный голос в активный голос:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1782, '49', 'es-ES', 'Convertir esta frase de voz pasiva en voz activa:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1783, '49', 'sv-SE', 'Konvertera den här passiva röstdomen till aktiv röst:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1784, '49', 'tr-TR', 'Bu pasif sesli cümleyi etkin sese dönüştür:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1785, '49', 'pt-BR', 'Converta essa frase de voz passiva em voz ativa:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1786, '49', 'ro-RO', 'Convertiți această propoziție vocală pasivă în voce activă:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1787, '49', 'vi-VN', 'Chuyển đổi câu thoại bị động này thành giọng nói hoạt động:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1788, '49', 'sw-KE', 'Badilisha sentensi hii ya sauti tulivu kuwa sauti tendaji:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1789, '49', 'sl-SI', 'Pretvori to pasivno glasovno kazen v aktivni glas:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1790, '49', 'th-TH', 'แปลงประโยคเสียงพาสซีฟนี้เป็นเสียงที่แอ็คทีฟ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1791, '49', 'uk-UA', 'Перетворити цей пасивний голосовий речення на активний голос:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1792, '49', 'lt-LT', 'Konvertuoti šį pasyvaus balso sakinį į aktyvų balsą:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1793, '49', 'bg-BG', 'Превръщане на това пасивно изречение в активен глас:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1794, '50', 'en-US', 'Improve and rewrite this content in a smart way:\n\n ##description## \n\nMust use following keywords in the content:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1795, '50', 'ar-AE', 'تحسين واعادة كتابة هذه المحتويات بطريقة ذكية:\n\n ##description## \n\nيجب استخدام الكلمات المرشدة التالية في المحتويات:\n ##keywords## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1796, '50', 'cmn-CN', '以智慧型方式改善並改寫此內容:\n\n ##description## \n\n必須在內容中使用下列關鍵字:\n ##keywords## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1797, '50', 'hr-HR', 'Poboljste i ponovno napišite ovaj sadržaj na pametan način:\n\n ##description## \n\nMora se koristiti sljedeće ključne riječi u sadržaju:\n ##keywords## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1798, '50', 'cs-CZ', 'Vylepšete a přepište tento obsah inteligentním způsobem:\n\n ##description## \n\nMusí používat následující klíčová slova v obsahu:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1799, '50', 'da-DK', 'Forbedre og reskriv dette indhold på en smart måde:\n\n ##description## \n\nMSkal bruge følgende nøgleord i indholdet:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1800, '50', 'nl-NL', 'Deze content op een slimme manier verbeteren en herschrijven:\n\n ##description## \n\nMoet gebruik maken van de volgende sleutelwoorden in de inhoud:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1801, '50', 'et-EE', 'Selle sisu parandamine ja ümberkirjutamine arukalt:\n\n ##description## \n\nPeab kasutama järgmisi märksõnu sisu:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1802, '50', 'fi-FI', 'Paranna ja kirjoita tämä sisältö uudelleen älykkäällä tavalla:\n\n ##description## \n\nOn käytettävä sisällön avainsanojen jälkeen:\n ##keywords## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1803, '50', 'fr-FR', 'Améliorer et réécrire ce contenu de manière intelligente:\n\n ##description## \n\nDoit utiliser les mots clés suivants dans le contenu:\n ##keywords## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1804, '50', 'de-DE', 'Verbessern und umschreiben Sie diese Inhalte auf intelligente Weise:\n\n ##description## \n\nSie müssen die folgenden Schlüsselwörter im Inhalt verwenden:\n ##keywords## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1805, '50', 'el-GR', 'Βελτίωση και επανεγγραφή αυτού του περιεχομένου με έξυπνο τρόπο:\n\n ##description## \n\nΠρέπει να χρησιμοποιήσετε λέξεις-κλειδιά στο περιεχόμενο.:\n ##keywords## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1806, '50', 'he-IL', 'שיפור ושכתב תוכן זה בדרך חכמה.:\n\n ##description## \n\nיש להשתמש במילות המפתח שלהלן בתוכן:\n ##keywords## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1807, '50', 'hi-IN', 'इस सामग्री को एक स्मार्ट तरीका में सुधार और फिर से लिखना:\n\n ##description## \n\nसामग्री में निम्नलिखित कीशब्दों का प्रयोग करना चाहिए:\n ##keywords## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1808, '50', 'hu-HU', 'Tartalom javítása és újraírása intelligens módon:\n\n ##description## \n\nA következő kulcsszavakat kell használni a tartalomban:\n ##keywords## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1809, '50', 'is-IS', 'Bættu og endurskrifaðu þetta efni á snjallan hátt:\n\n ##description## \n\nVerður að nota eftirfarandi leitarorð í innihaldinu:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1810, '50', 'id-ID', 'Meningkatkan dan menulis ulang konten ini dengan cara yang cerdas:\n\n ##description## \n\nHarus menggunakan kata kunci berikut dalam isi:\n ##keywords## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1811, '50', 'it-IT', 'Migliorare e riscrivere questo contenuto in modo intelligente:\n\n ##description## \n\nDeve utilizzare le seguenti parole chiave nel contenuto:\n ##keywords## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1812, '50', 'ja-JP', 'このコンテンツをスマートな方法で改善して再書き込みする:\n\n ##description## \n\nコンテンツ内の以下のキーワードを使用する必要:\n ##keywords## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1813, '50', 'ko-KR', '스마트한 방식으로 이 컨텐츠를 개선하고 다시 작성합니다.:\n\n ##description## \n\n컨텐츠에서 다음 키워드를 사용해야 합니다.:\n ##keywords## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1814, '50', 'ms-MY', 'Tingkatkan dan tulis semula kandungan ini dalam cara pintar:\n\n ##description## \n\nMesti gunakan perkataan kekunci berikut dalam kandungan:\n ##keywords## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1815, '50', 'nb-NO', 'Forbedre og omskriv dette innholdet på en smart måte:\n\n ##description## \n\nMå bruke følgende nøkkelord i innholdet:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1816, '50', 'pl-PL', 'Ulepszanie i przepisanie tej treści w inteligentny sposób:\n\n ##description## \n\nW treści muszą być używane następujące słowa kluczowe::\n ##keywords## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1817, '50', 'pt-PT', 'Melhore e reescreva este conteúdo de forma inteligente:\n\n ##description## \n\nDeve usar seguindo palavras-chave no conteúdo:\n ##keywords## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1818, '50', 'ru-RU', 'Улучшить и переписать это содержимое в смарт-пути:\n\n ##description## \n\nНеобходимо использовать следующие ключевые слова в содержимом:\n ##keywords## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1819, '50', 'es-ES', 'Mejorar y reescribir este contenido de forma inteligente:\n\n ##description## \n\nDebe utilizar las palabras clave siguientes en el contenido:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1820, '50', 'sv-SE', 'Förbättra och skriva om det här innehållet på ett smart sätt:\n\n ##description## \n\nMåste använda följande nyckelord i innehållet:\n ##keywords## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1821, '50', 'tr-TR', 'Bu içeriği geliştirin ve akıllı bir şekilde yeniden yazın.:\n\n ##description## \n\nİçerikte aşağıdaki anahtar sözcükleri kullanmak gerekir::\n ##keywords## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1822, '50', 'pt-BR', 'Melhore e reescreva este conteúdo de forma inteligente:\n\n ##description## \n\nDeve usar seguindo palavras-chave no conteúdo:\n ##keywords## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1823, '50', 'ro-RO', 'Îmbunătățiți și rescrieți acest conținut într-un mod inteligent:\n\n ##description## \n\nTrebuie să utilizeze următoarele cuvinte cheie în conținut:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1824, '50', 'vi-VN', 'Cải thiện và viết lại nội dung này theo cách thông minh:\n\n ##description## \n\nPhải dùng sau tư ̀ khóa trong nội dung:\n ##keywords## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1825, '50', 'sw-KE', 'Boresha na uandike upya maudhui haya kwa njia nzuri:\n\n ##description## \n\nLazima utumie manenomsingi yafuatayo katika maudhui:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1826, '50', 'sl-SI', 'Izboljšite in znova napišite to vsebino na pameten način:\n\n ##description## \n\nUporabiti morate naslednje ključne besede v vsebini:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1827, '50', 'th-TH', 'ปรับปรุงและเขียนเนื้อหานี้ใหม่ในวิธีที่ฉลาด:\n\n ##description## \n\nต้องใช้คีย์เวิร์ดต่อไปนี้ในเนื้อหา:\n ##keywords## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1828, '50', 'uk-UA', 'Покращення і переписати цей вміст у розумний спосіб:\n\n ##description## \n\nМає використовувати наступні ключові слова у зміні:\n ##keywords## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1829, '50', 'lt-LT', 'Pagerinti ir perrašyti šį turinį protingu būdu:\n\n ##description## \n\nTuri naudoti šiuos raktažodžius turinio:\n ##keywords## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1830, '50', 'bg-BG', 'Подобрете и презапишете това съдържание по умен начин:\n\n ##description## \n\nТрябва да използвате следните ключови думи в съдържанието:\n ##keywords## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1831, '51', 'en-US', 'please check grammar mistakes in this:\n\n ##description## and correct it', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1832, '51', 'ar-AE', 'يرجى التحقق من الأخطاء النحوية في هذا:\n\n ##description## وتصحيحه', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1833, '51', 'cmn-CN', '請檢查這裡的語法錯誤:\n\n ##description## 並改正', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1834, '51', 'hr-HR', 'molimo provjerite gramatičke pogreške u ovome:\n\n ##description## i ispraviti ga', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1835, '51', 'cs-CZ', 'zkontrolujte prosím gramatické chyby v tomto:\n\n ##description## a opravit to', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1836, '51', 'da-DK', 'tjek venligst grammatikfejl i dette:\n\n ##description## og rette det', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1837, '51', 'nl-NL', 'controleer de grammaticafouten hierin:\n\n ##description## en corrigeer het', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1838, '51', 'et-EE', 'palun kontrolli selles grammatikavigu:\n\n ##description## ja parandage see', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1839, '51', 'fi-FI', 'tarkista kielioppivirheet tässä:\n\n ##description## ja korjaa se', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1840, '51', 'fr-FR', 's\'il vous plaît vérifier les erreurs de grammaire dans ce:\n\n ##description## et corrigez-le', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1841, '51', 'de-DE', 'Bitte überprüfen Sie hier die Grammatikfehler:\n\n ##description##und korrigieren Sie es', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1842, '51', 'el-GR', 'ελέγξτε τα γραμματικά λάθη σε αυτό:\n\n ##description## και διορθώστε το', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1843, '51', 'he-IL', 'אנא בדוק את טעויות הדקדוק בזה:\n\n ##description## ולתקן את זה', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1844, '51', 'hi-IN', 'कृपया इसमें व्याकरण की गलतियों की जांच करें:\n\n ##description## और इसे ठीक करें', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1845, '51', 'hu-HU', 'Kérjük, ellenőrizze a nyelvtani hibákat ebben:\n\n ##description## és javítsa ki', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1846, '51', 'is-IS', 'vinsamlegast athugaðu málfræðivillur í þessu:\n\n ##description## og leiðrétta það', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1847, '51', 'id-ID', 'silakan periksa kesalahan tata bahasa dalam hal ini:\n\n ##description## dan memperbaikinya', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1848, '51', 'it-IT', 'per favore controlla gli errori grammaticali in questo:\n\n ##description## e correggilo', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1849, '51', 'ja-JP', 'この文法の間違いを確認してください:\n\n ##description## そしてそれを修正してください', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1850, '51', 'ko-KR', '이것에서 문법 오류를 확인하십시오:\n\n ##description## 수정하고', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1851, '51', 'ms-MY', 'sila semak kesalahan tatabahasa dalam ini:\n\n ##description## dan betulkan', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1852, '51', 'nb-NO', 'Vennligst sjekk grammatikkfeil i dette:\n\n ##description## og korrigere det', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1853, '51', 'pl-PL', 'proszę sprawdzić błędy gramatyczne w tym:\n\n ##description## i popraw to', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1854, '51', 'pt-PT', 'por favor, verifique os erros gramaticais neste:\n\n ##description## e corrija', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1855, '51', 'ru-RU', 'пожалуйста, проверьте грамматические ошибки в этом:\n\n ##description## и исправить это', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1856, '51', 'es-ES', 'por favor revise los errores gramaticales en este:\n\n ##description## y corregirlo', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1857, '51', 'sv-SE', 'kontrollera grammatikfel i detta:\n\n ##description## och rätta till det', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1858, '51', 'tr-TR', 'lütfen buradaki gramer hatalarını kontrol edin:\n\n ##description## ve düzelt', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1859, '51', 'pt-BR', 'por favor, verifique os erros gramaticais neste:\n\n ##description## e corrija', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1860, '51', 'ro-RO', 'Vă rugăm să verificați greșelile gramaticale din aceasta:\n\n ##description## si corecteaza-l', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1861, '51', 'vi-VN', 'vui lòng kiểm tra lỗi ngữ pháp trong này:\n\n ##description## và sửa nó', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1862, '51', 'sw-KE', 'tafadhali angalia makosa ya sarufi katika hili:\n\n ##description## na kusahihisha', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1863, '51', 'sl-SI', 'prosim preverite slovnične napake v tem:\n\n ##description## in ga popravi', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1864, '51', 'th-TH', 'โปรดตรวจสอบข้อผิดพลาดทางไวยากรณ์ในเรื่องนี้:\n\n ##description## และแก้ไขให้ถูกต้อง', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1865, '51', 'uk-UA', 'будь ласка, перевірте граматичні помилки в цьому:\n\n ##description## і виправте це', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1866, '51', 'lt-LT', 'patikrinkite gramatikos klaidas:\n\n ##description## ir pataisyti', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1867, '51', 'bg-BG', 'моля, проверете граматическите грешки в това:\n\n ##description## и го коригирайте', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1868, '52', 'en-US', 'Write a vision that attracts the right people and customers. \n\nCompany Name:\n ##title## \n\nCompany Information:\n ##description## \n\nTone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1869, '52', 'ar-AE', 'اكتب رؤية تجذب الأشخاص والعملاء المناسبين.\n\n اسم الشركة:\n ##title## \n\nمعلومات الشركة:\n ##description## \n\nيجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1870, '52', 'cmn-CN', '寫下吸引合適的人和客戶的願景。 \n\n公司名稱:\n ##title## \n\n公司信息:\n ##description## \n\n結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1871, '52', 'hr-HR', 'Napišite viziju koja privlači prave ljude i kupce. \n\nNaziv tvrtke:\n ##title## \n\nInformacije o tvrtki:\n ##description## \n\nTon glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1872, '52', 'cs-CZ', 'Napište vizi, která přiláká ty správné lidi a zákazníky. \n\nJméno společnosti:\n ##title## \n\nInformace o společnosti:\n ##description## \n\nTón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1873, '52', 'da-DK', 'Skriv en vision, der tiltrækker de rigtige mennesker og kunder. \n\nfirmanavn:\n ##title## \n\nVirksomhedsoplysninger:\n ##description## \n\nTone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1874, '52', 'nl-NL', 'Schrijf een visie die de juiste mensen en klanten aantrekt. \n\nBedrijfsnaam:\n ##title## \n\nbedrijfsinformatie:\n ##description## \n\nDe tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1875, '52', 'et-EE', 'Kirjutage visioon, mis meelitab ligi õigeid inimesi ja kliente. \n\nEttevõtte nimi:\n ##title## \n\nettevõtte info:\n ##description## \n\nTulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1876, '52', 'fi-FI', 'Kirjoita visio, joka houkuttelee oikeat ihmiset ja asiakkaat \n\nYrityksen nimi:\n ##title## \n\nYrityksen tiedot:\n ##description## \n\nÄänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1877, '52', 'fr-FR', 'Rédigez une vision qui attire les bonnes personnes et les bons clients. \n\nNom de l\'entreprise:\n ##title## \n\nInformations sur la société:\n ##description## \n\nLe ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1878, '52', 'de-DE', 'Schreiben Sie eine Vision, die die richtigen Leute und Kunden anzieht. \n\nName der Firma:\n ##title## \n\nFirmeninformation:\n ##description## \n\nDer Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1879, '52', 'el-GR', 'Γράψτε ένα όραμα που προσελκύει τους κατάλληλους ανθρώπους και πελάτες. \n\nΌνομα εταιρείας:\n ##title## \n\nΣτοιχεία της εταιρείας:\n ##description## \n\nΟ τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1880, '52', 'he-IL', 'כתוב חזון שמושך את האנשים והלקוחות הנכונים. \n\nשם החברה:\n ##title## \n\nמידע על החברה:\n ##description## \n\nטון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1881, '52', 'hi-IN', 'एक दृष्टि लिखें जो सही लोगों और ग्राहकों को आकर्षित करे। \n\nकंपनी का नाम:\n ##title## \n\nकारखाना की जानकारी:\n ##description## \n\nपरिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1882, '52', 'hu-HU', 'Írjon olyan jövőképet, amely vonzza a megfelelő embereket és ügyfeleket. \n\nCégnév:\n ##title## \n\ncéginformáció:\n ##description## \n\nAz eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1883, '52', 'is-IS', 'Skrifaðu framtíðarsýn sem laðar að rétta fólkið og viðskiptavinina. \n\nnafn fyrirtækis:\n ##title## \n\nFyrirtækjaupplýsingar:\n ##description## \n\nRödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1884, '52', 'id-ID', 'Tulis visi yang menarik orang dan pelanggan yang tepat. \n\nNama perusahaan:\n ##title## \n\ninformasi perusahaan:\n ##description## \n\nNada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1885, '52', 'it-IT', 'Scrivi una visione che attiri le persone e i clienti giusti. \n\nNome della ditta:\n ##title## \n\nInformazioni sulla società:\n ##description## \n\nTono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1886, '52', 'ja-JP', '適切な人材や顧客を惹きつけるビジョンを書きましょう。 \n\n会社名:\n ##title## \n\n企業情報:\n ##description## \n\n結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1887, '52', 'ko-KR', '올바른 사람과 고객을 끌어들이는 비전을 작성하십시오. \n\n회사 이름:\n ##title## \n\n회사 정보:\n ##description## \n\n결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1888, '52', 'ms-MY', 'Tulis visi yang menarik orang dan pelanggan yang betul. \n\nnama syarikat:\n ##title## \n\nMaklumat Syarikat:\n ##description## \n\nNada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1889, '52', 'nb-NO', 'Skriv en visjon som tiltrekker de rette menneskene og kundene. \n\nselskapsnavn:\n ##title## \n\nfirmainformasjon:\n ##description## \n\nTonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1890, '52', 'pl-PL', 'Napisz wizję, która przyciąga właściwych ludzi i klientów. \n\nNazwa firmy:\n ##title## \n\ninformacje o firmie:\n ##description## \n\nTon głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1891, '52', 'pt-PT', 'Escreva uma visão que atraia as pessoas e os clientes certos. \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\nO tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1892, '52', 'ru-RU', 'Напишите видение, которое привлечет нужных людей и клиентов. \n\nНазвание компании:\n ##title## \n\nИнформация о компании:\n ##description## \n\nТон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1893, '52', 'es-ES', 'Escribe una visión que atraiga a las personas y clientes adecuados. \n\nnombre de empresa:\n ##title## \n\nInformación de la empresa:\n ##description## \n\nEl tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1894, '52', 'sv-SE', 'Skriv en vision som attraherar rätt personer och kunder. \n\nFöretagsnamn:\n ##title## \n\nFöretagsinformation\n ##description## \n\nTonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1895, '52', 'tr-TR', 'Doğru insanları ve müşterileri çeken bir vizyon yazın. \n\nFirma Adı:\n ##title## \n\nŞirket Bilgisi:\n ##description## \n\nSonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1896, '52', 'pt-BR', 'Escreva uma visão que atraia as pessoas e os clientes certos. \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\nO tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(1897, '52', 'ro-RO', 'Scrieți o viziune care să atragă oamenii și clienții potriviți. \n\nNumele companiei:\n ##title## \n\nInformatiile Companiei:\n ##description## \n\nTonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1898, '52', 'vi-VN', 'Viết một tầm nhìn thu hút đúng người và khách hàng. \n\nTên công ty:\n ##title## \n\nThông tin công ty:\n ##description## \n\nGiọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1899, '52', 'sw-KE', 'Andika maono yanayovutia watu na wateja sahihi. \n\njina la kampuni:\n ##title## \n\nTaarifa za Kampuni:\n ##description## \n\nToni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1900, '52', 'sl-SI', 'Napišite vizijo, ki pritegne prave ljudi in stranke. \n\nime podjetja:\n ##title## \n\nInformacije o podjetju:\n ##description## \n\nTon glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1901, '52', 'th-TH', 'เขียนวิสัยทัศน์ที่ดึงดูดผู้คนและลูกค้าที่เหมาะสม \n\nชื่อ บริษัท:\n ##title## \n\nข้อมูล บริษัท:\n ##description## \n\nน้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1902, '52', 'uk-UA', 'Напишіть бачення, яке приверне потрібних людей і клієнтів. \n\nНазва компанії:\n ##title## \n\nінформація про компанію:\n ##description## \n\nТон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1903, '52', 'lt-LT', 'Parašykite viziją, kuri pritraukia reikiamus žmones ir klientus. \n\nĮmonės pavadinimas:\n ##title## \n\nKompanijos informacija:\n ##description## \n\nTuri būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1904, '52', 'bg-BG', 'Напишете визия, която привлича правилните хора и клиенти. \n\nИме на фирмата:\n ##title## \n\nинформация за компанията:\n ##description## \n\nТонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1905, '53', 'en-US', 'Write a clear and concise statement of the company\'s goals and purpose, Company Name:\n ##title## \n\nCompany Information:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1906, '53', 'ar-AE', 'اكتب بيانًا واضحًا وموجزًا ​​عن أهداف الشركة والغرض منها ، اسم الشركة:\n ##title## \n\nمعلومات الشركة:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1907, '53', 'cmn-CN', '就公司的目標和宗旨寫出清晰簡潔的陳述,公司名稱:\n ##title## \n\n公司信息:\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1908, '53', 'hr-HR', 'Napišite jasnu i konciznu izjavu o ciljevima i svrsi tvrtke, Naziv tvrtke:\n ##title## \n\nInformacije o tvrtki:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1909, '53', 'cs-CZ', 'Napište jasné a stručné prohlášení o cílech a účelu společnosti, Název společnosti:\n ##title## \n\nInformace o společnosti:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1910, '53', 'da-DK', 'Skriv en klar og kortfattet redegørelse for virksomhedens mål og formål, Firmanavn:\n ##title## \n\nVirksomhedsoplysninger:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1911, '53', 'nl-NL', 'Schrijf een duidelijke en beknopte verklaring van de doelstellingen en het doel van het bedrijf, bedrijfsnaam:\n ##title## \n\nbedrijfsinformatie:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1912, '53', 'et-EE', 'Kirjutage selge ja lühidalt ettevõtte eesmärkide ja otstarbe kohta ettevõtte nimi:\n ##title## \n\nettevõtte info:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1913, '53', 'fi-FI', 'Kirjoita selkeä ja ytimekäs selvitys yrityksen tavoitteista ja tarkoituksesta, Yrityksen nimi:\n ##title## \n\nYrityksen tiedot:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1914, '53', 'fr-FR', 'Rédigez une déclaration claire et concise des objectifs et du but de l\'entreprise, Nom de l\'entreprise:\n ##title## \n\nInformations sur la société:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1915, '53', 'de-DE', 'Schreiben Sie eine klare und prägnante Erklärung zu den Zielen und Zwecken des Unternehmens sowie zum Firmennamen:\n ##title## \n\nFirmeninformation:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1916, '53', 'el-GR', 'Γράψτε μια σαφή και συνοπτική δήλωση των στόχων και του σκοπού της εταιρείας, Όνομα εταιρείας:\n ##title## \n\nΣτοιχεία της εταιρείας:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1917, '53', 'he-IL', 'כתבו הצהרה ברורה ותמציתית של מטרות החברה ומטרתה, שם חברה:\n ##title## \n\nמידע על החברה:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1918, '53', 'hi-IN', 'कंपनी के लक्ष्यों और उद्देश्य, कंपनी का नाम का स्पष्ट और संक्षिप्त विवरण लिखें:\n ##title## \n\nकारखाना की जानकारी:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1919, '53', 'hu-HU', 'Írjon világos és tömör nyilatkozatot a vállalat céljairól és céljáról, Cégnév:\n ##title## \n\ncéginformáció:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1920, '53', 'is-IS', 'Skrifaðu skýra og hnitmiðaða yfirlýsingu um markmið og tilgang fyrirtækisins, Nafn fyrirtækis:\n ##title## \n\nFyrirtækjaupplýsingar:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1921, '53', 'id-ID', 'Tulis pernyataan yang jelas dan ringkas tentang maksud dan tujuan perusahaan, Nama Perusahaan:\n ##title## \n\ninformasi perusahaan:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1922, '53', 'it-IT', 'Scrivi una dichiarazione chiara e concisa degli obiettivi e dello scopo dell\'azienda, nome dell\'azienda:\n ##title## \n\nInformazioni sulla società:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1923, '53', 'ja-JP', '会社の目標と目的、会社名を明確かつ簡潔に記述します。:\n ##title## \n\n企業情報:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1924, '53', 'ko-KR', '회사의 목표와 목적, 회사 이름을 명확하고 간결하게 작성하십시오.:\n ##title## \n\n회사 정보:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1925, '53', 'ms-MY', 'Tulis kenyataan yang jelas dan padat tentang matlamat dan tujuan syarikat, Nama Syarikat:\n ##title## \n\nMaklumat Syarikat:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1926, '53', 'nb-NO', 'Skriv en klar og kortfattet redegjørelse for selskapets mål og formål, Firmanavn:\n ##title## \n\nfirmainformasjon:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1927, '53', 'pl-PL', 'Napisz jasne i zwięzłe oświadczenie o celach i celu firmy, Nazwa firmy:\n ##title## \n\ninformacje o firmie:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1928, '53', 'pt-PT', 'Escreva uma declaração clara e concisa dos objetivos e propósito da empresa, Nome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1929, '53', 'ru-RU', 'Напишите четкое и краткое изложение целей и задач компании, название компании:\n ##title## \n\nИнформация о компании:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1930, '53', 'es-ES', 'Escriba una declaración clara y concisa de los objetivos y el propósito de la empresa, Nombre de la empresa:\n ##title## \n\nInformación de la empresa:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1931, '53', 'sv-SE', 'Skriv en tydlig och kortfattad redogörelse för företagets mål och syfte, Företagsnamn:\n ##title## \n\nFöretagsinformation:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1932, '53', 'tr-TR', 'Şirketin hedeflerini ve amacını, Şirket Adı\'nı açık ve öz bir şekilde yazın:\n ##title## \n\nŞirket Bilgisi:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1933, '53', 'pt-BR', 'Escreva uma declaração clara e concisa dos objetivos e propósito da empresa, Nome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1934, '53', 'ro-RO', 'Scrieți o declarație clară și concisă a obiectivelor și scopului companiei, Numele companiei:\n ##title## \n\nInformatiile Companiei:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1935, '53', 'vi-VN', 'Viết một tuyên bố rõ ràng và súc tích về mục tiêu và mục đích của công ty, Tên công ty:\n ##title## \n\nThông tin công ty :\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1936, '53', 'sw-KE', 'Andika taarifa iliyo wazi na fupi ya malengo na madhumuni ya kampuni, Jina la Kampuni:\n ##title## \n\nTaarifa za Kampuni:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1937, '53', 'sl-SI', 'Napišite jasno in jedrnato izjavo o ciljih in namenu podjetja, ime podjetja:\n ##title## \n\nInformacije o podjetju:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1938, '53', 'th-TH', 'เขียนข้อความที่ชัดเจนและกระชับเกี่ยวกับเป้าหมายและวัตถุประสงค์ของบริษัท ชื่อบริษัท:\n ##title## \n\nข้อมูล บริษัท:\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1939, '53', 'uk-UA', 'Напишіть чітке та стисле викладення цілей та мети компанії, назву компанії:\n ##title## \n\nінформація про компанію:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1940, '53', 'lt-LT', 'Aiškiai ir glaustai parašykite įmonės tikslus ir paskirtį, Įmonės pavadinimas:\n ##title## \n\nKompanijos informacija:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1941, '53', 'bg-BG', 'Напишете ясно и кратко изложение на целите и предназначението на компанията, Име на компанията:\n ##title## \n\nинформация за компанията:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1942, '54', 'en-US', 'Write a short and cool bio for ##platform## \n\nCompany Name:\n ##title## \n\nCompany Information:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1943, '54', 'ar-AE', 'اكتب سيرته الذاتية قصيرة وباردة ##platform## \n\nاسم الشركة:\n ##title## \n\nمعلومات الشركة:\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1944, '54', 'cmn-CN', '給你寫個簡短又酷的生物 ##platform## \n\n公司名稱:\n ##title## \n\n公司資訊:\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1945, '54', 'hr-HR', 'Napiši kratku i cool biografije za ##platform## \n\nIme poduzeća:\n ##title## \n\nInformacije o tvrtki:\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1946, '54', 'cs-CZ', 'Napište krátký a cool bio pro ##platform## \n\nNázev společnosti:\n ##title## \n\nInformace o společnosti:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1947, '54', 'da-DK', 'Skrive en kort og sej biografi til ##platform## \n\nFirmanavn:\n ##title## \n\nVirksomhedsoplysninger:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1948, '54', 'nl-NL', 'Schrijf een korte en koele bio voor ##platform## \n\nBedrijfsnaam:\n ##title## \n\nbedrijfsinformatie:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1949, '54', 'et-EE', 'Kirjuta lühike ja jahe bio ##platform## \n\nÄriühingu nimi:\n ##title## \n\nettevõtte info:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1950, '54', 'fi-FI', 'Kirjoita lyhyt ja viileä ##platform## \n\nYrityksen nimi:\n ##title## \n\nYrityksen tiedot:\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1951, '54', 'fr-FR', 'Écrivez une biographie courte et fraîche pour ##platform## \n\nNom de l\'entreprise:\n ##title## \n\nInformations sur la société:\n ##description## \n\n Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1952, '54', 'de-DE', 'Schreiben Sie eine kurze und coole Bio für ##platform## \n\nFirmenname:\n ##title## \n\nFirmeninformation:\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1953, '54', 'el-GR', 'Γράψτε ένα σύντομο και δροσερό βιογραφικό για ##platform## \n\nΌνομα εταιρείας::\n ##title## \n\nΣτοιχεία της εταιρείας:\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1954, '54', 'he-IL', 'תכתוב קורות חיים קצרים ומגניבים. ##platform## \n\nשם חברה:\n ##title## \n\nמידע על החברה:\n ##description## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1955, '54', 'hi-IN', 'के लिए एक छोटा और शांत जैव लिखें ##platform## \n\nकंपनी का नाम:\n ##title## \n\nकंपनी की जानकारी:\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1956, '54', 'hu-HU', 'Írj egy rövid és hűvös bioanyagot ##platform## \n\nCégnév:\n ##title## \n\ncéginformáció:\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1957, '54', 'is-IS', 'Skrifaðu stutta og flotta ævisögu fyrir ##platform## \n\nnafn fyrirtækis:\n ##title## \n\nFyrirtækjaupplýsingar:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1958, '54', 'id-ID', 'Tulis bio singkat dan keren untuk ##platform## \n\nNama perusahaan:\n ##title## \n\ninformasi perusahaan:\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1959, '54', 'it-IT', 'Scrivi un bio breve e cool per ##platform## \n\nNome della ditta:\n ##title## \n\nInformazioni sulla società:\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1960, '54', 'ja-JP', '短く、クールな生体を書いてください ##platform## \n\n会社名:\n ##title## \n\n企業情報:\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1961, '54', 'ko-KR', '짧고 멋진 약력을 작성하십시오. ##platform## \n\n회사 이름:\n ##title## \n\n회사 정보:\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1962, '54', 'ms-MY', 'Tulis bio ringkas dan keren untuk ##platform## \n\nnama syarikat:\n ##title## \n\nMaklumat Syarikat:\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1963, '54', 'nb-NO', 'Skriv en kort og kul bio for ##platform## \n\nselskapsnavn:\n ##title## \n\nfirmainformasjon:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1964, '54', 'pl-PL', 'Napisz krótką i fajną biografię dla ##platform## \n\nNazwa firmy:\n ##title## \n\ninformacje o firmie:\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1965, '54', 'pt-PT', 'Escreva uma biografia curta e legal para ##platform## \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1966, '54', 'ru-RU', 'Напишите короткую и интересную биографию для ##platform## \n\nНазвание компании:\n ##title## \n\nИнформация о компании:\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1967, '54', 'es-ES', 'Escriba una breve y fresca biografía para ##platform## \n\nnombre de empresa:\n ##title## \n\nInformación de la empresa:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1968, '54', 'sv-SE', 'Skriv en kort och cool bio för ##platform## \n\nFöretagsnamn:\n ##title## \n\nFöretagsinformation:\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1969, '54', 'tr-TR', 'için kısa ve havalı bir biyografi yazın ##platform## \n\nFirma Adı:\n ##title## \n\nŞirket Bilgisi:\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1970, '54', 'pt-BR', 'Escreva uma biografia curta e legal para ##platform## \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1971, '54', 'ro-RO', 'Scrie o biografie scurtă și cool pentru ##platform## \n\nNumele companiei:\n ##title## \n\nInformatiile Companiei:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1972, '54', 'vi-VN', 'Viết một tiểu sử ngắn và thú vị cho ##platform## \n\nTên công ty:\n ##title## \n\nThông tin công ty:\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1973, '54', 'sw-KE', 'Andika wasifu mfupi na mzuri kwa ##platform## \n\njina la kampuni:\n ##title## \n\nTaarifa za Kampuni:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1974, '54', 'sl-SI', 'Napišite kratek in kul življenjepis za ##platform## \n\nime podjetja:\n ##title## \n\nInformacije o podjetju:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1975, '54', 'th-TH', 'เขียนชีวประวัติสั้น ๆ และน่าสนใจสำหรับ ##platform## \n\nชื่อ บริษัท:\n ##title## \n\nข้อมูล บริษัท:\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1976, '54', 'uk-UA', 'Напишіть коротку та круту біографію для ##platform## \n\nНазва компанії:\n ##title## \n\nінформація про компанію:\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1977, '54', 'lt-LT', 'Parašykite trumpą ir šaunią biografiją ##platform## \n\nĮmonės pavadinimas:\n ##title## \n\nKompanijos informacija:\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1978, '54', 'bg-BG', 'Напишете кратка и готина биография за ##platform## \n\nИме на фирмата:\n ##title## \n\nинформация за компанията:\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1979, '55', 'en-US', 'Write an engaging email about:\n\n ##description## \n\n Recipient:\n ##recipient## \n\n Recipient Position:\n ##recipient_position## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1980, '55', 'ar-AE', 'اكتب بريدًا إلكترونيًا جذابًا عنه:\n\n ##description## \n\n متلقي:\n ##recipient## \n\n موقف المستلم:\n ##recipient_position## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1981, '55', 'cmn-CN', '撰寫關於的吸引人的電子郵件:\n\n ##description## \n\n 收件者:\n ##recipient## \n\n 收件者位置:\n ##recipient_position## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1982, '55', 'hr-HR', 'Napišite zanimljivu e-poruku o:\n\n ##description## \n\n Primatelj:\n ##recipient## \n\n Položaj primatelja:\n ##recipient_position## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1983, '55', 'cs-CZ', 'Napište zajímavý e-mail o:\n\n ##description## \n\n Příjemce:\n ##recipient## \n\n Pozice příjemce:\n ##recipient_position## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1984, '55', 'da-DK', 'Skriv en engagerende e-mail om:\n\n ##description## \n\n Modtager:\n ##recipient## \n\n Modtagerposition:\n ##recipient_position## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1985, '55', 'nl-NL', 'Schrijf een boeiende e-mail over:\n\n ##description## \n\n Ontvanger:\n ##recipient## \n\n Positie van de ontvanger:\n ##recipient_position## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1986, '55', 'et-EE', 'Kirjutage kaasahaarav e-kiri:\n\n ##description## \n\n Saaja:\n ##recipient## \n\n Saaja positsioon:\n ##recipient_position## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1987, '55', 'fi-FI', 'Kirjoita kiinnostava sähköposti aiheesta:\n\n ##description## \n\n Vastaanottaja:\n ##recipient## \n\n Vastaanottajan asema:\n ##recipient_position## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1988, '55', 'fr-FR', 'Rédigez un e-mail engageant à propos de:\n\n ##description## \n\n Destinataire:\n ##recipient## \n\n Poste du destinataire:\n ##recipient_position## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1989, '55', 'de-DE', 'Schreiben Sie eine ansprechende E-Mail über:\n\n ##description## \n\n Empfänger:\n ##recipient## \n\n Empfängerposition:\n ##recipient_position## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1990, '55', 'el-GR', 'Γράψτε ένα συναρπαστικό email για:\n\n ##description## \n\n Παραλήπτης:\n ##recipient## \n\n Θέση Παραλήπτη:\n ##recipient_position## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1991, '55', 'he-IL', 'כתוב אימייל מרתק על:\n\n ##description## \n\n מקבל:\n ##recipient## \n\n עמדת נמען:\n ##recipient_position## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1992, '55', 'hi-IN', 'के बारे में एक आकर्षक ईमेल लिखें:\n\n ##description## \n\n प्राप्तकर्ता:\n ##recipient## \n\n प्राप्तकर्ता स्थिति:\n ##recipient_position## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1993, '55', 'hu-HU', 'Írjon lebilincselő e-mailt erről:\n\n ##description## \n\n Befogadó:\n ##recipient## \n\n Címzett pozíciója:\n ##recipient_position## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1994, '55', 'is-IS', 'Skrifaðu grípandi tölvupóst um:\n\n ##description## \n\n Viðtakandi:\n ##recipient## \n\n Staða viðtakanda:\n ##recipient_position## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1995, '55', 'id-ID', 'Tulis email yang menarik tentang:\n\n ##description## \n\n Penerima:\n ##recipient## \n\n Posisi Penerima:\n ##recipient_position## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1996, '55', 'it-IT', 'Scrivi un\'e-mail coinvolgente su:\n\n ##description## \n\n Destinatario:\n ##recipient## \n\n Posizione del destinatario:\n ##recipient_position## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1997, '55', 'ja-JP', '~について魅力的なメールを書く:\n\n ##description## \n\n 受信者:\n ##recipient## \n\n 受信者の位置:\n ##recipient_position## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1998, '55', 'ko-KR', '에 대한 매력적인 이메일 작성:\n\n ##description## \n\n 받는 사람:\n ##recipient## \n\n 받는 사람 위치:\n ##recipient_position## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(1999, '55', 'ms-MY', 'Tulis e-mel yang menarik tentang:\n\n ##description## \n\n Penerima:\n ##recipient## \n\n Kedudukan Penerima:\n ##recipient_position## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2000, '55', 'nb-NO', 'Skriv en engasjerende e-post om:\n\n ##description## \n\n Mottaker:\n ##recipient## \n\n Mottakerposisjon:\n ##recipient_position## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2001, '55', 'pl-PL', 'Napisz angażującego e-maila nt:\n\n ##description## \n\n Odbiorca:\n ##recipient## \n\n Pozycja odbiorcy:\n ##recipient_position## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2002, '55', 'pt-PT', 'Escreva um e-mail atraente sobre:\n\n ##description## \n\n Destinatário:\n ##recipient## \n\n Posição do Destinatário:\n ##recipient_position## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2003, '55', 'ru-RU', 'Напишите увлекательное письмо о:\n\n ##description## \n\n Получатель:\n ##recipient## \n\n Позиция получателя:\n ##recipient_position## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2004, '55', 'es-ES', 'Escriba un correo electrónico atractivo sobre:\n\n ##description## \n\n Recipiente:\n ##recipient## \n\n Posición del destinatario:\n ##recipient_position## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2005, '55', 'sv-SE', 'Skriv ett engagerande mejl om:\n\n ##description## \n\n Mottagare:\n ##recipient## \n\n Mottagarens position:\n ##recipient_position## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2006, '55', 'tr-TR', 'hakkında ilgi çekici bir e-posta yazın:\n\n ##description## \n\n alıcı:\n ##recipient## \n\n Alıcı Pozisyonu:\n ##recipient_position## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2007, '55', 'pt-BR', 'Escreva um e-mail atraente sobre:\n\n ##description## \n\n Destinatário:\n ##recipient## \n\n Recipient Position:\n ##recipient_position## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2008, '55', 'ro-RO', 'Scrieți un e-mail captivant despre:\n\n ##description## \n\n Destinatar:\n ##recipient## \n\n Poziția destinatarului:\n ##recipient_position## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2009, '55', 'vi-VN', 'Viết một email hấp dẫn về:\n\n ##description## \n\n Người nhận:\n ##recipient## \n\n Vị trí người nhận:\n ##recipient_position## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2010, '55', 'sw-KE', 'Andika barua pepe ya kuvutia kuhusu:\n\n ##description## \n\n Mpokeaji:\n ##recipient## \n\n Nafasi ya Mpokeaji:\n ##recipient_position## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2011, '55', 'sl-SI', 'Napišite privlačno e-poštno sporočilo o:\n\n ##description## \n\n Prejemnik:\n ##recipient## \n\n Položaj prejemnika:\n ##recipient_position## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2012, '55', 'th-TH', 'เขียนอีเมลที่น่าสนใจเกี่ยวกับ:\n\n ##description## \n\n ผู้รับ:\n ##recipient## \n\n ตำแหน่งผู้รับ:\n ##recipient_position## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2013, '55', 'uk-UA', 'Напишіть цікавий електронний лист про:\n\n ##description## \n\n одержувач:\n ##recipient## \n\n Посада отримувача:\n ##recipient_position## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2014, '55', 'lt-LT', 'Parašykite patrauklų el. laišką apie:\n\n ##description## \n\n Gavėjas:\n ##recipient## \n\n Gavėjo padėtis:\n ##recipient_position## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2015, '55', 'bg-BG', 'Напишете увлекателен имейл за:\n\n ##description## \n\n Получател:\n ##recipient## \n\n Позиция на получател:\n ##recipient_position## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2016, '56', 'en-US', 'Write an engaging email about:\n\n ##description## \n\n From:\n ##from## n\n To:\n ##to## \n\n Main Goal of this email:\n ##goal## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2017, '56', 'ar-AE', 'اكتب بريدًا إلكترونيًا جذابًا حول:\n\n ##description## \n\n من:\n ##from## n\n ل:\n ##to## \n\n الهدف الرئيسي لهذا البريد الإلكتروني:\n ##goal## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2018, '56', 'cmn-CN', '写一封引人入胜的电子邮件:\n\n ##description## \n\n 从:\n ##from## n\n 到:\n ##to## \n\n 这封电子邮件的主要目标:\n ##goal## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2019, '56', 'hr-HR', 'Napišite zanimljivu e-poruku o:\n\n ##description## \n\n Iz:\n ##from## n\n Do:\n ##to## \n\n Glavni cilj ove e-pošte:\n ##goal## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2020, '56', 'cs-CZ', 'Napište zajímavý e-mail o:\n\n ##description## \n\n Z:\n ##from## n\n Na:\n ##to## \n\n Hlavní cíl tohoto e-mailu:\n ##goal## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2021, '56', 'da-DK', 'Skriv en engagerende e-mail om:\n\n ##description## \n\n Fra:\n ##from## n\n Til:\n ##to## \n\n Hovedformålet med denne e-mail:\n ##goal## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2022, '56', 'nl-NL', 'Schrijf een boeiende e-mail over:\n\n ##description## \n\n Van:\n ##from## n\n Naar:\n ##to## \n\n Hoofddoel van deze e-mail:\n ##goal## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2023, '56', 'et-EE', 'Kirjutage kaasahaarav e-kiri teemal:\n\n ##description## \n\n Alates:\n ##from## n\n Saaja:\n ##to## \n\n Selle meili peamine eesmärk:\n ##goal## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2024, '56', 'fi-FI', 'Kirjoita kiinnostava sähköposti aiheesta:\n\n ##description## \n\n Lähettäjä:\n ##from## n\n Vastaanottaja:\n ##to## \n\n Tämän sähköpostin päätavoite:\n ##goal## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2025, '56', 'fr-FR', 'Rédigez un e-mail engageant sur:\n\n ##description## \n\n Depuis:\n ##from## n\n Pour:\n ##to## \n\n Objectif principal de cet e-mail:\n ##goal## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2026, '56', 'de-DE', 'Schreiben Sie eine ansprechende E-Mail über:\n\n ##description## \n\n Aus:\n ##from## n\n Zu:\n ##to## \n\n Hauptziel dieser E-Mail:\n ##goal## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2027, '56', 'el-GR', 'Γράψτε ένα συναρπαστικό email σχετικά με:\n\n ##description## \n\n Από:\n ##from## n\n Προς την:\n ##to## \n\n Κύριος στόχος αυτού του email:\n ##goal## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2028, '56', 'he-IL', 'כתוב אימייל מרתק על:\n\n ##description## \n\n מ:\n ##from## n\n ל:\n ##to## \n\n המטרה העיקרית של האימייל הזה:\n ##goal## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2029, '56', 'hi-IN', 'इसके बारे में एक आकर्षक ईमेल लिखें:\n\n ##description## \n\n से:\n ##from## n\n को:\n ##to## \n\n इस ईमेल का मुख्य लक्ष्य:\n ##goal## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2030, '56', 'hu-HU', 'Írjon lebilincselő e-mailt a következőkről:\n\n ##description## \n\n Tól től:\n ##from## n\n Nak nek:\n ##to## \n\n Ennek az e-mailnek a fő célja:\n ##goal## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2031, '56', 'is-IS', 'Skrifaðu grípandi tölvupóst um:\n\n ##description## \n\n Frá:\n ##from## n\n Til:\n ##to## \n\n Meginmarkmið þessa tölvupósts:\n ##goal## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2032, '56', 'id-ID', 'Tulis email yang menarik tentang:\n\n ##description## \n\n Dari:\n ##from## n\n Ke:\n ##to## \n\n Tujuan Utama dari email ini:\n ##goal## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2033, '56', 'it-IT', 'Scrivi un\'email coinvolgente su:\n\n ##description## \n\n Da:\n ##from## n\n A:\n ##to## \n\n Obiettivo principale di questa email:\n ##goal## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2034, '56', 'ja-JP', '以下について魅力的なメールを書きましょう:\n\n ##description## \n\n から:\n ##from## n\n に:\n ##to## \n\n このメールの主な目的:\n ##goal## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2035, '56', 'ko-KR', '다음에 대해 관심을 끄는 이메일을 작성하세요:\n\n ##description## \n\n 에서:\n ##from## n\n 에게:\n ##to## \n\n 이 이메일의 주요 목표:\n ##goal## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2036, '56', 'ms-MY', 'Tulis e-mel yang menarik tentang:\n\n ##description## \n\n Daripada:\n ##from## n\n Kepada:\n ##to## \n\n Matlamat Utama e-mel ini:\n ##goal## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2037, '56', 'nb-NO', 'Skriv en engasjerende e-post om:\n\n ##description## \n\n Fra:\n ##from## n\n Til:\n ##to## \n\n Hovedmålet med denne e-posten:\n ##goal## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2038, '56', 'pl-PL', 'Napisz angażującego e-maila na temat:\n\n ##description## \n\n Z:\n ##from## n\n Do:\n ##to## \n\n Główny cel tego e-maila:\n ##goal## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2039, '56', 'pt-PT', 'Escreva um e-mail atraente sobre:\n\n ##description## \n\n De:\n ##from## n\n Para:\n ##to## \n\n Objetivo principal deste e-mail:\n ##goal## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2040, '56', 'ru-RU', 'Напишите увлекательное письмо о:\n\n ##description## \n\n От:\n ##from## n\n К:\n ##to## \n\n Основная цель этого письма:\n ##goal## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2041, '56', 'es-ES', 'Escriba un correo electrónico atractivo sobre:\n\n ##description## \n\n De:\n ##from## n\n A:\n ##to## \n\n Objetivo principal de este correo electrónico:\n ##goal## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2042, '56', 'sv-SE', 'Skriv ett engagerande mejl om:\n\n ##description## \n\n Från:\n ##from## n\n Till:\n ##to## \n\n Huvudmålet med detta e-postmeddelande:\n ##goal## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2043, '56', 'tr-TR', 'Şunlar hakkında ilgi çekici bir e-posta yazın:\n\n ##description## \n\n İtibaren:\n ##from## n\n İle:\n ##to## \n\n Bu e-postanın Ana Hedefi:\n ##goal## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2044, '56', 'pt-BR', 'Escreva um e-mail envolvente sobre:\n\n ##description## \n\n De:\n ##from## n\n Para:\n ##to## \n\n Objetivo principal deste e-mail:\n ##goal## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2045, '56', 'ro-RO', 'Scrieți un e-mail captivant despre:\n\n ##description## \n\n Din:\n ##from## n\n La:\n ##to## \n\n Scopul principal al acestui e-mail:\n ##goal## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2046, '56', 'vi-VN', 'Viết một email hấp dẫn về:\n\n ##description## \n\n Từ:\n ##from## n\n ĐẾN:\n ##to## \n\n Mục tiêu chính của email này:\n ##goal## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2047, '56', 'sw-KE', 'Andika barua pepe ya kuvutia kuhusu:\n\n ##description## \n\n Kutoka:\n ##from## n\n Kwa:\n ##to## \n\n Lengo Kuu la barua pepe hii:\n ##goal## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2048, '56', 'sl-SI', 'Napišite privlačno e-pošto o:\n\n ##description## \n\n Od:\n ##from## n\n Za:\n ##to## \n\n Glavni cilj tega e-poštnega sporočila:\n ##goal## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2049, '56', 'th-TH', 'เขียนอีเมลที่น่าสนใจเกี่ยวกับ:\n\n ##description## \n\n จาก:\n ##from## n\n ถึง:\n ##to## \n\n เป้าหมายหลักของอีเมลนี้:\n ##goal## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2050, '56', 'uk-UA', 'Напишіть цікавий електронний лист про:\n\n ##description## \n\n Від:\n ##from## n\n до:\n ##to## \n\n Основна мета цього листа:\n ##goal## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2051, '56', 'lt-LT', 'Parašykite patrauklų el. laišką apie:\n\n ##description## \n\n Iš:\n ##from## n\n Į: Kam:\n ##to## \n\n Pagrindinis šio el. laiško tikslas:\n ##goal## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2052, '56', 'bg-BG', 'Напишете увлекателен имейл за:\n\n ##description## \n\n От:\n ##from## n\n До:\n ##to## \n\n Основна цел на този имейл:\n ##goal## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2053, '57', 'en-US', 'Write 10 catchy email subject lines for this product:\n\n ##title## \n\nProduct Description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2054, '57', 'ar-AE', 'اكتب 10 سطور جذابة لموضوع البريد الإلكتروني لهذا المنتج:\n\n ##title## \n\nوصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2055, '57', 'cmn-CN', '为该产品写 10 个醒目的电子邮件主题行:\n\n ##title## \n\n产品描述:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2056, '57', 'hr-HR', 'Napišite 10 privlačnih redaka predmeta e-pošte za ovaj proizvod:\n\n ##title## \n\nOpis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2057, '57', 'cs-CZ', 'Napište 10 chytlavých předmětů e-mailu pro tento produkt:\n\n ##title## \n\nPopis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2058, '57', 'da-DK', 'Skriv 10 fængende e-mail-emnelinjer for dette produkt:\n\n ##title## \n\nProdukt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2059, '57', 'nl-NL', 'Schrijf 10 pakkende e-mailonderwerpregels voor dit product:\n\n ##title## \n\nProduct beschrijving:\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2060, '57', 'et-EE', 'Kirjutage selle toote kohta 10 meeldejäävat meili teemarida:\n\n ##title## \n\nTootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2061, '57', 'fi-FI', 'Kirjoita tälle tuotteelle 10 tarttuvaa sähköpostin aiheriviä:\n\n ##title## \n\nTuotteen Kuvaus:\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2062, '57', 'fr-FR', 'Rédigez 10 lignes d\'objet accrocheuses pour ce produit:\n\n ##title## \n\nDescription du produit:\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2063, '57', 'de-DE', 'Schreiben Sie 10 einprägsame E-Mail-Betreffzeilen für dieses Produkt:\n\n ##title## \n\nProduktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2064, '57', 'el-GR', 'Γράψτε 10 συναρπαστικές γραμμές θέματος email για αυτό το προϊόν:\n\n ##title## \n\nΠεριγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2065, '57', 'he-IL', 'כתוב 10 שורות נושא קליטות בדוא ל עבור מוצר זה:\n\n ##title## \n\nתיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2066, '57', 'hi-IN', 'इस उत्पाद के लिए 10 आकर्षक ईमेल विषय पंक्तियाँ लिखें:\n\n ##title## \n\nउत्पाद वर्णन:\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2067, '57', 'hu-HU', 'Írjon 10 fülbemászó e-mail tárgysort ehhez a termékhez:\n\n ##title## \n\nTermékleírás:\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2068, '57', 'is-IS', 'Skrifaðu 10 grípandi efnislínur í tölvupósti fyrir þessa vöru:\n\n ##title## \n\nVörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2069, '57', 'id-ID', 'Tulis 10 baris subjek email yang menarik untuk produk ini:\n\n ##title## \n\nDeskripsi Produk:\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2070, '57', 'it-IT', 'Scrivi 10 righe dell\'oggetto dell\'e-mail accattivanti per questo prodotto:\n\n ##title## \n\nDescrizione del prodotto:\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2071, '57', 'ja-JP', 'この製品に関するキャッチーな電子メールの件名を 10 行書きます:\n\n ##title## \n\n製品説明:\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2072, '57', 'ko-KR', '이 제품에 대해 기억하기 쉬운 10개의 이메일 제목을 작성하십시오:\n\n ##title## \n\n제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2073, '57', 'ms-MY', 'Tulis 10 baris subjek e-mel yang menarik untuk produk ini:\n\n ##title## \n\nPenerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2074, '57', 'nb-NO', 'Skriv 10 fengende e-postemnelinjer for dette produktet:\n\n ##title## \n\nProduktbeskrivelse:\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2075, '57', 'pl-PL', 'Napisz 10 chwytliwych tematów wiadomości e-mail dla tego produktu:\n\n ##title## \n\nOpis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2076, '57', 'pt-PT', 'Escreva 10 linhas de assunto de e-mail cativantes para este produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2077, '57', 'ru-RU', 'Напишите 10 броских тем письма для этого продукта:\n\n ##title## \n\nОписание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2078, '57', 'es-ES', 'Escriba 10 líneas de asunto de correo electrónico pegadizas para este producto:\n\n ##title## \n\nDescripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2079, '57', 'sv-SE', 'Skriv 10 catchy e-postämnesrader för denna produkt:\n\n ##title## \n\nProduktbeskrivning:\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2080, '57', 'tr-TR', 'Bu ürün için akılda kalıcı 10 e-posta konu satırı yazın:\n\n ##title## \n\nÜrün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2081, '57', 'pt-BR', 'Escreva 10 linhas de assunto de e-mail atraentes para esse produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(2082, '57', 'ro-RO', 'Scrieți 10 subiecte captivante pentru e-mail pentru acest produs:\n\n ##title## \n\nDescriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2083, '57', 'vi-VN', 'Viết 10 dòng tiêu đề email hấp dẫn cho sản phẩm này:\n\n ##title## \n\nMô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2084, '57', 'sw-KE', 'Andika mada 10 za barua pepe zinazovutia za bidhaa hii:\n\n ##title## \n\nMaelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2085, '57', 'sl-SI', 'Napišite 10 privlačnih vrstic z zadevo e-pošte za ta izdelek:\n\n ##title## \n\nOpis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2086, '57', 'th-TH', 'เขียน 10 หัวเรื่องอีเมลที่จับใจสำหรับผลิตภัณฑ์นี้:\n\n ##title## \n\nรายละเอียดสินค้า:\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2087, '57', 'uk-UA', 'Напишіть 10 яскравих тем електронних листів для цього продукту:\n\n ##title## \n\nОпис продукту:\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2088, '57', 'lt-LT', 'Parašykite 10 patrauklių šio produkto el. pašto temos eilučių:\n\n ##title## \n\nProdukto aprašymas:\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2089, '57', 'bg-BG', 'Напишете 10 запомнящи се теми на имейла за този продукт:\n\n ##title## \n\nОписание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2090, '58', 'en-US', 'Write an engaging email content about:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2091, '58', 'ar-AE', 'اكتب محتوى بريد إلكتروني جذاب حول:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2092, '58', 'cmn-CN', '撰写引人入胜的电子邮件内容:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2093, '58', 'hr-HR', 'Napišite zanimljiv sadržaj e-pošte o tome:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2094, '58', 'cs-CZ', 'Napište zajímavý obsah e-mailu o:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2095, '58', 'da-DK', 'Skriv et engagerende e-mailindhold om:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2096, '58', 'nl-NL', 'Schrijf een boeiende e-mailinhoud over:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2097, '58', 'et-EE', 'Kirjutage kaasahaarav meili sisu:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2098, '58', 'fi-FI', 'Kirjoita kiinnostavaa sähköpostisisältöä aiheesta:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2099, '58', 'fr-FR', 'Rédigez un contenu d e-mail engageant sur:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2100, '58', 'de-DE', 'Schreiben Sie einen ansprechenden E-Mail-Inhalt über:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2101, '58', 'el-GR', 'Γράψτε ένα ελκυστικό περιεχόμενο email για:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2102, '58', 'he-IL', 'כתוב תוכן דוא\"ל מרתק על:\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2103, '58', 'hi-IN', 'के बारे में एक आकर्षक ईमेल सामग्री लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2104, '58', 'hu-HU', 'Írjon lebilincselő e-mail tartalmat erről:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2105, '58', 'is-IS', 'Skrifaðu grípandi tölvupóstsefni um:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2106, '58', 'id-ID', 'Tulis konten email yang menarik tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2107, '58', 'it-IT', 'Scrivi un contenuto email accattivante su:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2108, '58', 'ja-JP', '~について魅力的なメールコンテンツを作成します:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2109, '58', 'ko-KR', '매력적인 이메일 콘텐츠를 작성하세요.:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2110, '58', 'ms-MY', 'Tulis kandungan e-mel yang menarik tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2111, '58', 'nb-NO', 'Skriv et engasjerende e-postinnhold om:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2112, '58', 'pl-PL', 'Napisz angażującą treść e-maila nt:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2113, '58', 'pt-PT', 'Escreva um conteúdo de correio electrónico cativante sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2114, '58', 'ru-RU', 'Напишите привлекательный контент по электронной почте о:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2115, '58', 'es-ES', 'Escriba un contenido de correo electrónico atractivo sobre:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2116, '58', 'sv-SE', 'Skriv ett engagerande e-postinnehåll om:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2117, '58', 'tr-TR', 'Hakkında ilgi çekici bir e-posta içeriği yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2118, '58', 'pt-BR', 'Escreva um conteúdo de e-mail envolvente sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2119, '58', 'ro-RO', 'Scrieți un conținut de e-mail captivant despre:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2120, '58', 'vi-VN', 'Viết một nội dung email hấp dẫn về:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2121, '58', 'sw-KE', 'Andika maudhui ya barua pepe ya kuvutia kuhusu:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2122, '58', 'sl-SI', 'Napišite privlačno e-poštno vsebino o:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2123, '58', 'th-TH', 'เขียนเนื้อหาอีเมลที่น่าสนใจเกี่ยวกับ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2124, '58', 'uk-UA', 'Напишіть привабливий електронний лист про:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2125, '58', 'lt-LT', 'Parašykite patrauklų el. pašto turinį:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2126, '58', 'bg-BG', 'Напишете ангажиращо имейл съдържание за:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2127, '59', 'en-US', 'Write 10 interesting titles for Google ads of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n Title\'s length must be 30 characters\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2129, '59', 'cmn-CN', '为以下产品的 Google 广告写 10 个有趣的标题,目的是:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n 标题长度必须为 30 个字符\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2130, '59', 'hr-HR', 'Napišite 10 zanimljivih naslova za Google oglase sljedećeg proizvoda namijenjenog:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n Duljina naslova mora biti 30 znakova\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2131, '59', 'cs-CZ', 'Napište 10 zajímavých názvů pro reklamy Google na následující produkt, na který je zaměřen:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n Délka názvu musí být 30 znaků\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2132, '59', 'da-DK', 'Skriv 10 interessante titler til Google-annoncer for følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n Titlens længde skal være på 30 tegn\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2133, '59', 'nl-NL', 'Schrijf 10 interessante titels voor Google-advertenties van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n TDe lengte van de titel moet 30 tekens zijn\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2134, '59', 'et-EE', 'Kirjutage 10 huvitavat pealkirja järgmise toote Google\'i reklaamidele:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n Pealkirja pikkus peab olema 30 tähemärki\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2135, '59', 'fi-FI', 'Kirjoita 10 mielenkiintoista otsikkoa seuraavan tuotteen Google-mainoksille:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n Otsikon pituuden tulee olla 30 merkkiä\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2136, '59', 'fr-FR', 'Écrivez 10 titres intéressants pour les annonces Google du produit suivant visant à:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n TLa longueur du titre doit être de 30 caractères\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2137, '59', 'de-DE', 'Schreiben Sie 10 interessante Titel für Google-Anzeigen für das folgende Produkt, auf das Sie abzielen:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n Die Länge des Titels muss 30 Zeichen betragen\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2138, '59', 'el-GR', 'Γράψτε 10 ενδιαφέροντες τίτλους για τις διαφημίσεις Google για το παρακάτω προϊόν:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n Το μήκος του τίτλου πρέπει να είναι 30 χαρακτήρες\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2139, '59', 'he-IL', 'כתוב 10 כותרות מעניינות למודעות גוגל של המוצר הבא שמיועדות אליו:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n אורך הכותרת חייב להיות 30 תווים\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2140, '59', 'hi-IN', 'निम्नलिखित उत्पाद के Google विज्ञापनों के लिए 10 दिलचस्प शीर्षक लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n शीर्षक की लंबाई 30 वर्ण होनी चाहिए\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2141, '59', 'hu-HU', 'Írjon 10 érdekes címet a következő termék Google hirdetéseihez, amelyek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n A címnek 30 karakterből kell állnia\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2142, '59', 'is-IS', 'Skrifaðu 10 áhugaverða titla fyrir Google auglýsingar fyrir eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru NafnVörulýsing:\n ##title## \n\n :\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n Lengd titilsins verður að vera 30 stafir\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2143, '59', 'id-ID', 'Tulis 10 judul iklan Google yang menarik dari produk berikut yang dituju:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n Panjang judul harus 30 karakter\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2144, '59', 'it-IT', 'Scrivi 10 titoli interessanti per gli annunci Google del seguente prodotto mirato:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n La lunghezza del titolo deve essere di 30 caratteri\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2145, '59', 'ja-JP', '次の商品の Google 広告用に、興味深いタイトルを 10 個書いてください。:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n タイトルの長さは 30 文字である必要があります\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2146, '59', 'ko-KR', '다음 제품에 대한 Google 광고의 흥미로운 제목 10개를 작성하세요.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n 제목 길이는 30자여야 합니다.\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(2147, '59', 'ms-MY', 'Tulis 10 tajuk menarik untuk iklan Google bagi produk berikut yang bertujuan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n Panjang tajuk mestilah 30 aksara\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2148, '59', 'nb-NO', 'Skriv 10 interessante titler for Google-annonser for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n Tittelens lengde må være på 30 tegn\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2149, '59', 'pl-PL', 'Napisz 10 interesujących tytułów reklam Google dla następującego produktu, do którego są skierowane:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n TDługość tytułu musi wynosić 30 znaków\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2150, '59', 'pt-PT', 'Escreva 10 títulos interessantes para anúncios Google do seguinte produto destinados a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2151, '59', 'ru-RU', 'Напишите 10 интересных заголовков для объявлений Google следующего продукта, нацеленных на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n Длина заголовка должна быть 30 символов.\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2152, '59', 'es-ES', 'Escriba 10 títulos interesantes para los anuncios de Google del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n PDescripción del Producto:\n ##description## \n\n TEl tono de voz del resultado debe ser:\n ##tone_language## \n\n La longitud del título debe ser de 30 caracteres.\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2153, '59', 'sv-SE', 'Skriv 10 intressanta titlar för Google-annonser för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n Titelns längd måste vara 30 tecken\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2154, '59', 'tr-TR', 'Hedeflenen aşağıdaki ürünün Google reklamları için 10 ilginç başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün AçıklamasıSonucun ses tonu şöyle olmalıdır:\n ##description## \n\n :\n ##tone_language## \n\n Başlığın uzunluğu 30 karakter olmalıdır\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2155, '59', 'pt-BR', 'Escreva 10 títulos interessantes para anúncios do Google do seguinte produto destinado a:\n\n ##audience## \n\nNome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2156, '59', 'ro-RO', 'Scrieți 10 titluri interesante pentru reclamele Google ale următorului produs vizat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n Lungimea titlului trebuie să fie de 30 de caractere\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2157, '59', 'vi-VN', 'Viết 10 tiêu đề thú vị cho quảng cáo Google của sản phẩm sau nhắm đến:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n Độ dài của tiêu đề phải là 30 ký tự\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2158, '59', 'sw-KE', 'Andika mada 10 za kuvutia za matangazo ya Google za bidhaa ifuatayo inayolengaJina la bidhaa:\n\n ##audience## \n\n :\n ##title## \n\n PMaelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n Urefu wa kichwa lazima uwe na vibambo 30\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2159, '59', 'sl-SI', 'Napišite 10 zanimivih naslovov za Google oglase naslednjega izdelka, namenjenegaIme izdelka:\n\n ##audience## \n\n :\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2160, '59', 'th-TH', 'เขียน 10 ชื่อที่น่าสนใจสำหรับโฆษณา Google ของผลิตภัณฑ์ต่อไปนี้มุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\nเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n ความยาวของชื่อเรื่องต้องมีความยาว 30 อักขระ\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2161, '59', 'uk-UA', 'Напишіть 10 цікавих назв для оголошень Google наступного продукту, спрямованих на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n Довжина заголовка має бути 30 символів\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2162, '59', 'lt-LT', 'Parašykite 10 įdomių šio produkto „Google“ skelbimų pavadinimų:\n\n ##audience## \n\nProdukto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n Pavadinimo ilgis turi būti 30 simbolių\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2163, '59', 'bg-BG', 'Напишете 10 интересни заглавия за Google реклами на следния продукт, насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n Дължината на заглавието трябва да бъде 30 знака\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2164, '60', 'en-US', 'Write a trending tweet for a Twitter post about:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2165, '60', 'ar-AE', 'اكتب تغريدة رائجة لمشاركة Twitter حول:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2166, '60', 'cmn-CN', '撰写引人入胜的电子邮件内容:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2167, '60', 'hr-HR', 'Napišite trendovski tweet za post na Twitteru o:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2168, '60', 'cs-CZ', 'Napište trendový tweet pro příspěvek na Twitteru o:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2169, '60', 'da-DK', 'Skriv et trending tweet til et Twitter-indlæg om:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2170, '60', 'nl-NL', 'Schrijf een trending tweet voor een Twitter-post over:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2171, '60', 'et-EE', 'Kirjutage Twitteri postituse jaoks trendikas säuts:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2172, '60', 'fi-FI', 'Kirjoita trendaava twiitti Twitter-postaukseen aiheesta:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2173, '60', 'fr-FR', 'Rédigez un tweet tendance pour un post Twitter sur:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2174, '60', 'de-DE', 'Schreiben Sie einen Trend-Tweet für einen Twitter-Beitrag darüber:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2175, '60', 'el-GR', 'Γράψτε ένα δημοφιλές tweet για μια ανάρτηση στο Twitter σχετικά με:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2176, '60', 'he-IL', ' כתוב ציוץ מגמתי לפוסט בטוויטר על:\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2177, '60', 'hi-IN', 'के बारे में एक ट्विटर पोस्ट के लिए एक ट्रेंडिंग ट्वीट लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2178, '60', 'hu-HU', 'Írj egy felkapott tweetet egy Twitter-bejegyzéshez, amely erről szól:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2179, '60', 'is-IS', 'Skrifaðu vinsælt kvak fyrir Twitter færslu um:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2180, '60', 'id-ID', 'Tulis tweet yang sedang tren untuk posting Twitter tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2181, '60', 'it-IT', 'Scrivi un tweet di tendenza per un post su Twitter:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2182, '60', 'ja-JP', 'についての Twitter 投稿のトレンドツイートを書く:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2183, '60', 'ko-KR', '에 대한 Twitter 게시물에 대한 최신 트윗 작성:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2184, '60', 'ms-MY', 'Tulis tweet sohor kini untuk siaran Twitter tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2185, '60', 'nb-NO', 'Skriv en populær tweet for et Twitter-innlegg om:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2186, '60', 'pl-PL', 'Napisz popularny tweet do wpisu na Twitterze:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2187, '60', 'pt-PT', 'Escrever um trending tweet para uma publicação no Twitter sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2188, '60', 'ru-RU', 'Напишите популярный твит для поста в Твиттере о:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2189, '60', 'es-ES', 'Escriba un tweet de tendencia para una publicación de Twitter sobre:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2190, '60', 'sv-SE', 'Skriv en trendig tweet för ett Twitter-inlägg om:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2191, '60', 'tr-TR', 'Hakkında bir Twitter gönderisi için trend olan bir tweet yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2192, '60', 'pt-BR', 'Escreva um tweet de tendência para uma postagem no Twitter sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2193, '60', 'ro-RO', 'Scrieți un tweet în tendințe pentru o postare Twitter despre:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2194, '60', 'vi-VN', 'Viết một tweet xu hướng cho một bài đăng trên Twitter về:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2195, '60', 'sw-KE', 'Andika tweet inayovuma kwa chapisho la Twitter kuhusu:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2196, '60', 'sl-SI', 'Napišite trendovski tvit za objavo na Twitterju o:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2197, '60', 'th-TH', 'เขียนทวีตที่กำลังมาแรงสำหรับโพสต์ Twitter เกี่ยวกับ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2198, '60', 'uk-UA', 'Напишіть популярний твіт для публікації в Twitter про:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2199, '60', 'lt-LT', 'Parašykite patrauklų el. pašto turinį:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2200, '60', 'bg-BG', 'Напишете актуален туит за публикация в Twitter за:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2201, '61', 'en-US', 'Write inspiring posts for LinkedIn about:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2202, '61', 'ar-AE', 'اكتب منشورات ملهمة على LinkedIn عنها:\\n\\n ##description## \\n\\n Tالوحيدة من صوت النتيجة يجب أن تكون:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2203, '61', 'cmn-CN', '为 LinkedIn 撰写鼓舞人心的帖子:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2204, '61', 'hr-HR', 'Pišite inspirativne postove za LinkedIn o tome:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2205, '61', 'cs-CZ', 'Pište inspirativní příspěvky pro LinkedIn o:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2206, '61', 'da-DK', 'Skriv inspirerende indlæg til LinkedIn om:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2207, '61', 'nl-NL', 'Schrijf inspirerende posts voor LinkedIn over:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2208, '61', 'et-EE', 'Kirjutage LinkedIni jaoks inspireerivaid postitusi:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2209, '61', 'fi-FI', 'Kirjoita inspiroivia viestejä LinkedInille aiheesta:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2210, '61', 'fr-FR', 'Rédigez des articles inspirants pour LinkedIn à propos de:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2211, '61', 'de-DE', 'Schreiben Sie inspirierende Beiträge für LinkedIn über:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2212, '61', 'el-GR', 'Γράψτε εμπνευσμένες αναρτήσεις για το LinkedIn:\\n\\n ##description## \\n\\n v:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2213, '61', 'he-IL', 'כתוב פוסטים מעוררי השראה עבור LinkedIn על\\n\\n ##description## \\n\\n טון הדיבור של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2214, '61', 'hi-IN', 'लिंक्डइन के बारे में प्रेरक पोस्ट लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2215, '61', 'hu-HU', 'Írjon inspiráló bejegyzéseket a LinkedIn számára erről:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2216, '61', 'is-IS', 'Skrifaðu hvetjandi færslur fyrir LinkedIn um:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2217, '61', 'id-ID', 'Tulis postingan yang menginspirasi untuk LinkedIn tentang:\\n\\n ##description## \\n\\n TNada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2218, '61', 'it-IT', 'Scrivi post stimolanti per LinkedIn su:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2219, '61', 'ja-JP', '~についてLinkedInにインスピレーションを与える投稿を書く:\\n\\n ##description## \\n\\n 結果の声のトーンは、:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2220, '61', 'ko-KR', 'LinkedIn에 대한 영감을 주는 게시물 작성:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2221, '61', 'ms-MY', 'Tulis catatan yang memberi inspirasi untuk LinkedIn tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2222, '61', 'nb-NO', 'Skriv inspirerende innlegg for LinkedIn om:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2223, '61', 'pl-PL', 'Pisz inspirujące posty na LinkedIn na temat:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2224, '61', 'pt-PT', 'Escreva mensagens inspiradoras para o LinkedIn sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2225, '61', 'ru-RU', 'Пишите вдохновляющие посты для LinkedIn о:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2226, '61', 'es-ES', 'Escribe publicaciones inspiradoras para LinkedIn sobre:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2227, '61', 'sv-SE', 'Skriv inspirerande inlägg för LinkedIn om:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2228, '61', 'tr-TR', 'hakkında LinkedIn için ilham verici yazılar yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2229, '61', 'pt-BR', 'Escreva postagens inspiradoras para o LinkedIn sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2230, '61', 'ro-RO', 'Scrieți postări inspiratoare pentru LinkedIn despre:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2231, '61', 'vi-VN', 'Viết các bài đăng đầy cảm hứng cho LinkedIn về:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2232, '61', 'sw-KE', 'Andika machapisho ya kutia moyo kwa LinkedIn kuhusu:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2233, '61', 'sl-SI', 'Pišite navdihujoče objave za LinkedIn o:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2234, '61', 'th-TH', 'เขียนโพสต์ที่สร้างแรงบันดาลใจสำหรับ LinkedIn เกี่ยวกับ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2235, '61', 'uk-UA', 'Пишіть надихаючі дописи для LinkedIn про:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2236, '61', 'lt-LT', 'Rašykite įkvepiančius „LinkedIn“ įrašus apie:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2237, '61', 'bg-BG', 'Пишете вдъхновяващи публикации за LinkedIn за:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2238, '62', 'en-US', 'Generate 10 eye catching notification messages about:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2239, '62', 'ar-AE', 'إنشاء 10 رسائل إخطارات لافتة للنظر حول\\n\\n ##description## \\n\\n Tالوحيدة من صوت النتيجة يجب أن تكون:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2240, '62', 'cmn-CN', '生成 10 条引人注目的通知消息:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2241, '62', 'hr-HR', 'Generirajte 10 privlačnih poruka obavijesti o:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2242, '62', 'cs-CZ', 'Vygenerujte 10 poutavých oznámení o:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2243, '62', 'da-DK', 'Generer 10 iøjnefaldende meddelelser om:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2244, '62', 'nl-NL', 'Genereer 10 opvallende meldingsberichten over:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2245, '62', 'et-EE', 'Looge 10 pilkupüüdvat teavitussõnumit:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2246, '62', 'fi-FI', 'Luo 10 huomiota herättävää ilmoitusviestiä aiheesta:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2247, '62', 'fr-FR', 'Générez 10 messages de notification accrocheurs sur:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2248, '62', 'de-DE', 'Generieren Sie 10 auffällige Benachrichtigungen über:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2249, '62', 'el-GR', 'Δημιουργήστε 10 εντυπωσιακά μηνύματα ειδοποίησης σχετικά με:\\n\\n ##description## \\n\\n v:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2250, '62', 'he-IL', 'צור 10 הודעות התראה מושכות עין על\\n\\n ##description## \\n\\n טון הדיבור של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2251, '62', 'hi-IN', 'के बारे में 10 आकर्षक सूचना संदेश उत्पन्न करें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2252, '62', 'hu-HU', 'Hozzon létre 10 szemet gyönyörködtető értesítő üzenetet:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2253, '62', 'is-IS', 'Búðu til 10 áberandi tilkynningaskilaboð um:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2254, '62', 'id-ID', 'Hasilkan 10 pesan pemberitahuan yang menarik tentang:\\n\\n ##description## \\n\\n TNada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2255, '62', 'it-IT', 'Genera 10 messaggi di notifica accattivanti su:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2256, '62', 'ja-JP', '~についてLinkedInにインスピレーションを与える投稿を書く:\\n\\n ##description## \\n\\n 結果の声のトーンは、:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2257, '62', 'ko-KR', '10개의 눈길을 끄는 알림 메시지 생성:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2258, '62', 'ms-MY', 'Hasilkan 10 mesej pemberitahuan yang menarik perhatian tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2259, '62', 'nb-NO', 'Generer 10 iøynefallende varslingsmeldinger om:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2260, '62', 'pl-PL', 'Wygeneruj 10 przyciągających wzrok powiadomień o:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2261, '62', 'pt-PT', 'Gerar 10 mensagens de notificação atractivas sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2262, '62', 'ru-RU', 'Создайте 10 привлекающих внимание уведомлений о:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2263, '62', 'es-ES', 'Genere 10 mensajes de notificación llamativos sobre:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2264, '62', 'sv-SE', 'Generera 10 iögonfallande aviseringsmeddelanden om:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2265, '62', 'tr-TR', 'Hakkında 10 göz alıcı bildirim mesajı oluşturun:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2266, '62', 'pt-BR', 'Gerar 10 mensagens de notificação atraentes sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2267, '62', 'ro-RO', 'Generați 10 mesaje de notificare atrăgătoare despre:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2268, '62', 'vi-VN', 'Tạo 10 tin nhắn thông báo bắt mắt về:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2269, '62', 'sw-KE', 'Tengeneza arifa 10 za kuvutia macho kuhusu:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2270, '62', 'sl-SI', 'Ustvarite 10 privlačnih obvestilnih sporočil o:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2271, '62', 'th-TH', 'สร้าง 10 ข้อความแจ้งเตือนที่สะดุดตาเกี่ยวกับ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2272, '62', 'uk-UA', 'Створіть 10 привабливих сповіщень про:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2273, '62', 'lt-LT', 'Sukurkite 10 akį traukiančių pranešimų apie“ įrašus apie:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2274, '62', 'bg-BG', 'Генерирайте 10 привличащи вниманието уведомителни съобщения за:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2275, '63', 'en-US', 'Write a professional and eye-catching description for the LinkedIn ads of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2276, '63', 'ar-AE', 'اكتب وصفًا احترافيًا ولافت للنظر لإعلانات LinkedIn للمنتج التالي الذي يهدف إلى:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2277, '63', 'cmn-CN', '為以下產品的 LinkedIn 廣告撰寫專業且引人注目的描述,旨在:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2278, '63', 'hr-HR', 'Napišite profesionalan i privlačan opis za LinkedIn oglase za sljedeći proizvod usmjeren na:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2279, '63', 'cs-CZ', 'Napište profesionální a poutavý popis pro reklamy LinkedIn na následující produkt zaměřený na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2280, '63', 'da-DK', 'Skriv en professionel og iøjnefaldende beskrivelse af LinkedIn-annoncerne for følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2281, '63', 'nl-NL', 'Schrijf een professionele en opvallende beschrijving voor de LinkedIn-advertenties van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2282, '63', 'et-EE', 'Kirjutage professionaalne ja pilkupüüdev kirjeldus järgmise toote LinkedIn reklaamidele, mis on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2283, '63', 'fi-FI', 'Kirjoita ammattimainen ja huomiota herättävä kuvaus seuraavan tuotteen LinkedIn-mainoksille, jotka on tarkoitettu:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2284, '63', 'fr-FR', 'Rédigez une description professionnelle et accrocheuse pour les publicités LinkedIn du produit suivant destiné à :\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2285, '63', 'de-DE', 'Verfassen Sie eine professionelle und auffällige Beschreibung für die LinkedIn-Anzeigen des folgenden Produkts mit deZielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(2286, '63', 'el-GR', 'Γράψτε μια επαγγελματική και εντυπωσιακή περιγραφή για τις διαφημίσεις LinkedIn του παρακάτω προϊόντος με στόχο:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2287, '63', 'he-IL', 'כתוב תיאור מקצועי ומושך את העין למודעות הלינקדאין של המוצר הבא המכוונות ל:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2288, '63', 'hi-IN', 'निम्नलिखित उत्पाद के लिंक्डइन विज्ञापनों के लिए एक पेशेवर और ध्यान आकर्षित करने वाला विवरण लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2289, '63', 'hu-HU', 'Írjon professzionális és szemet gyönyörködtető leírást az alábbi termékek LinkedIn hirdetéseihez, amelyek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2290, '63', 'is-IS', 'Skrifaðu faglega og áberandi lýsingu fyrir LinkedIn auglýsingar á eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2291, '63', 'id-ID', 'Tulis deskripsi profesional dan menarik untuk iklan LinkedIn dari produk berikut yang ditujukan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2292, '63', 'it-IT', 'Scrivi una descrizione professionale e accattivante per gli annunci LinkedIn del seguente prodotto mirato a:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2293, '63', 'ja-JP', '次の商品を対象とした LinkedIn 広告について、専門的で人目を引く説明を書いてください。\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2294, '63', 'ko-KR', '다음을 목표로 하는 다음 제품의 LinkedIn 광고에 대한 전문적이고 눈길을 끄는 설명을 작성하십시오.\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2295, '63', 'ms-MY', 'Tulis penerangan profesional dan menarik perhatian untuk iklan LinkedIn produk berikut yang bertujuan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2296, '63', 'nb-NO', 'Skriv en profesjonell og iøynefallende beskrivelse for LinkedIn-annonsene for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2297, '63', 'pl-PL', 'Napisz profesjonalny i przyciągający uwagę opis reklamy LinkedIn następującego produktu skierowanej do:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2298, '63', 'pt-PT', 'Escreva uma descrição profissional e atraente para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2299, '63', 'ru-RU', 'Напишите профессиональное и привлекательное описание для рекламы LinkedIn следующего продукта, нацеленного на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2300, '63', 'es-ES', 'Escriba una descripción profesional y llamativa para los anuncios de LinkedIn del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2301, '63', 'sv-SE', 'Skriv en professionell och iögonfallande beskrivning för LinkedIn-annonserna för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2302, '63', 'tr-TR', 'Aşağıdaki ürünün LinkedIn reklamları için profesyonel ve dikkat çekici bir açıklama yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2303, '63', 'pt-BR', 'Escreva uma descrição profissional e atraente para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2304, '63', 'ro-RO', 'Scrieți o descriere profesională și atrăgătoare pentru anunțurile LinkedIn ale următorului produs, care vizează:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2305, '63', 'vi-VN', 'Viết mô tả chuyên nghiệp và bắt mắt cho quảng cáo LinkedIn của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2306, '63', 'sw-KE', 'Andika maelezo ya kitaalamu na ya kuvutia macho ya matangazo ya LinkedIn ya bidhaa ifuatayo yanayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2307, '63', 'sl-SI', 'Napišite profesionalen in privlačen opis za oglase LinkedIn naslednjega izdelka, namenjenega:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2308, '63', 'th-TH', 'เขียนคำอธิบายที่เป็นมืออาชีพและสะดุดตาสำหรับโฆษณา LinkedIn ของผลิตภัณฑ์ต่อไปนี้ซึ่งมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2309, '63', 'uk-UA', 'Напишіть професійний і привабливий опис для реклами LinkedIn наступного продукту, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2310, '63', 'lt-LT', 'Parašykite profesionalų ir akį traukiantį šio produkto „LinkedIn“ skelbimų aprašą, skirtą:\n\n ##audience## \n\nProdukto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2311, '63', 'bg-BG', 'Напишете професионално и привличащо вниманието описание за рекламите на LinkedIn на следния продукт, насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2312, '64', 'en-US', 'Write 10 catchy headlines for the LinkedIn ads of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2313, '64', 'ar-AE', 'اكتب 10 عناوين جذابة لإعلانات LinkedIn للمنتج التالي التي تستهدف:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2314, '64', 'cmn-CN', '為以下產品的 LinkedIn 廣告寫 10 個吸引人的標題,目的是:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2315, '64', 'hr-HR', 'Napišite 10 privlačnih naslova za LinkedIn oglase sljedećeg proizvoda koji ciljaju na:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2316, '64', 'cs-CZ', 'Napište 10 chytlavých titulků pro reklamy LinkedIn na následující produkt zaměřený na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2317, '64', 'da-DK', 'Skriv 10 fængende overskrifter til LinkedIn-annoncerne for følgende produkt rettet mod::\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2318, '64', 'nl-NL', 'Schrijf 10 pakkende koppen voor de LinkedIn-advertenties van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2319, '64', 'et-EE', 'Kirjutage 10 meeldejäävat pealkirja järgmise toote LinkedIn reklaamidele, mis on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2320, '64', 'fi-FI', 'Kirjoita 10 tarttuvaa otsikkoa seuraavan tuotteen LinkedIn-mainoksille, jotka on tarkoitettu:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2321, '64', 'fr-FR', 'Rédigez 10 titres accrocheurs pour les publicités LinkedIn du produit suivant destiné à :\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2322, '64', 'de-DE', 'Schreiben Sie 10 einprägsame Schlagzeilen für die LinkedIn-Anzeigen des folgenden Produkts mit der Zielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2323, '64', 'el-GR', 'Γράψτε 10 εντυπωσιακούς τίτλους για τις διαφημίσεις LinkedIn του παρακάτω προϊόντος που στοχεύουν:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2324, '64', 'he-IL', 'כתוב 10 כותרות קליטות למודעות לינקדאין של המוצר הבא המיועדות ל:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2325, '64', 'hi-IN', 'निम्नलिखित उत्पाद के लिंक्डइन विज्ञापनों के लिए 10 आकर्षक सुर्खियाँ लिखें जिनका उद्देश्य है:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2326, '64', 'hu-HU', 'Írjon 10 fülbemászó címet a következő termék LinkedIn-hirdetéseihez, amelyek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2327, '64', 'is-IS', 'Skrifaðu 10 grípandi fyrirsagnir fyrir LinkedIn auglýsingarnar fyrir eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2328, '64', 'id-ID', 'Tulis 10 tajuk utama yang menarik untuk iklan LinkedIn dari produk berikut yang ditujukan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2329, '64', 'it-IT', 'Scrivi 10 titoli accattivanti per gli annunci LinkedIn del seguente prodotto mirato a:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2330, '64', 'ja-JP', '次の製品を対象とした LinkedIn 広告のキャッチーな見出しを 10 個書いてください。\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2331, '64', 'ko-KR', '다음을 목표로 하는 다음 제품의 LinkedIn 광고에 대한 10개의 눈길을 끄는 헤드라인을 작성하십시오.\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2332, '64', 'ms-MY', 'Tulis 10 tajuk yang menarik untuk iklan LinkedIn produk berikut bertujuan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2333, '64', 'nb-NO', 'Skriv 10 fengende overskrifter for LinkedIn-annonsene for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2334, '64', 'pl-PL', 'Napisz 10 chwytliwych nagłówków do reklam LinkedIn następującego produktu, których celem jest:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2335, '64', 'pt-PT', 'Escreva 10 títulos cativantes para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2336, '64', 'ru-RU', 'Напишите 10 броских заголовков для рекламы LinkedIn следующего продукта, нацеленного на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2337, '64', 'es-ES', 'Escriba 10 titulares atractivos para los anuncios de LinkedIn del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2338, '64', 'sv-SE', 'Skriv 10 catchy rubriker för LinkedIn-annonserna för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2339, '64', 'tr-TR', 'Aşağıdaki ürünün LinkedIn reklamları için akılda kalıcı 10 başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2340, '64', 'pt-BR', 'Escreva 10 títulos cativantes para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2341, '64', 'ro-RO', 'Scrieți 10 titluri captivante pentru reclamele LinkedIn ale următorului produs care vizează:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2342, '64', 'vi-VN', 'Viết 10 tiêu đề hấp dẫn cho quảng cáo LinkedIn của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2343, '64', 'sw-KE', 'Andika vichwa 10 vya habari vya kuvutia vya matangazo ya LinkedIn vya bidhaa ifuatayo vinavyolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2344, '64', 'sl-SI', 'Napišite 10 privlačnih naslovov za oglase LinkedIn naslednjega izdelka, namenjenega:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2345, '64', 'th-TH', 'เขียนหัวข้อข่าว 10 หัวข้อที่น่าสนใจสำหรับโฆษณา LinkedIn ของผลิตภัณฑ์ต่อไปนี้โดยมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n เสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2346, '64', 'uk-UA', 'Напишіть 10 привабливих заголовків для реклами LinkedIn наступного продукту, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2347, '64', 'lt-LT', 'Parašykite 10 patrauklių antraščių šio produkto „LinkedIn“ skelbimams, skirtiems:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2348, '64', 'bg-BG', 'Напишете 10 закачливи заглавия за рекламите на LinkedIn на следния продукт, насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2349, '65', 'en-US', 'Write interesting outlines for a Youtube video about:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2350, '65', 'ar-AE', 'اكتب مخططات شيقة لفيديو يوتيوب حول:\n\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2351, '65', 'cmn-CN', '為 Youtube 視訊撰寫有趣的大綱:\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2352, '65', 'hr-HR', 'Napišite zanimljive nacrte za Youtube video o:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2353, '65', 'cs-CZ', 'Napište zajímavé osnovy pro video na YouTube o:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2354, '65', 'da-DK', 'Skriv interessante oplæg til en Youtube-video om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2355, '65', 'nl-NL', 'Schrijf interessante contouren voor een YouTube-video over:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2356, '65', 'et-EE', 'Kirjutage huvitavaid konspekte Youtube\'i video jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2357, '65', 'fi-FI', 'Kirjoita mielenkiintoisia pääpiirteitä Youtube-videolle aiheesta:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2358, '65', 'fr-FR', 'Rédigez des plans intéressants pour une vidéo Youtube sur:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2359, '65', 'de-DE', 'Schreiben Sie interessante Skizzen für ein YouTube-Video darüber:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2360, '65', 'el-GR', 'Γράψτε ενδιαφέροντα περιγράμματα για ένα βίντεο στο Youtube:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2361, '65', 'he-IL', 'כתוב קווי מתאר מעניינים לסרטון יוטיוב על:\n\n ##description## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2362, '65', 'hi-IN', 'के बारे में एक Youtube वीडियो के लिए रोचक रूपरेखा लिखें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2363, '65', 'hu-HU', 'Írj érdekes vázlatokat egy Youtube-videóhoz, amelyről szól:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2364, '65', 'is-IS', 'Skrifaðu áhugaverðar útlínur fyrir Youtube myndband um:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2365, '65', 'id-ID', 'Tulis garis besar yang menarik untuk video Youtube tentang:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2366, '65', 'it-IT', 'Scrivi schemi interessanti per un video di Youtube su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2367, '65', 'ja-JP', '~についての YouTube ビデオの興味深い概要を書きます:\n\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2368, '65', 'ko-KR', 'YouTube 비디오에 대한 흥미로운 개요를 작성하십시오.:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2369, '65', 'ms-MY', 'Tulis garis besar yang menarik untuk video Youtube tentang:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2370, '65', 'nb-NO', 'Skriv interessante skisser for en Youtube-video om:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2371, '65', 'pl-PL', 'Napisz ciekawe konspekty do filmu na Youtube o:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2372, '65', 'pt-PT', 'Escreva esboços interessantes para um vídeo do Youtube sobre:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2373, '65', 'ru-RU', 'Напишите интересные наброски для видео на Youtube о:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2374, '65', 'es-ES', 'Escriba esquemas interesantes para un video de Youtube sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2375, '65', 'sv-SE', 'Skriv intressanta konturer för en Youtube-video om:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2376, '65', 'tr-TR', 'Hakkında bir Youtube videosu için ilginç ana hatlar yazın:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2377, '65', 'pt-BR', 'Escreva esboços interessantes para um vídeo do Youtube sobre:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2378, '65', 'ro-RO', 'Scrieți schițe interesante pentru un videoclip YouTube despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2379, '65', 'vi-VN', 'Viết dàn ý thú vị cho một video Youtube về:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2380, '65', 'sw-KE', 'Andika muhtasari wa kuvutia wa video ya Youtube kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2381, '65', 'sl-SI', 'Napišite zanimive osnutke za Youtube video o:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2382, '65', 'th-TH', 'เขียนโครงร่างที่น่าสนใจสำหรับวิดีโอ Youtube เกี่ยวกับ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2383, '65', 'uk-UA', 'Напишіть цікаві плани для відео на Youtube про:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2384, '65', 'lt-LT', 'Parašykite įdomius „YouTube“ vaizdo įrašo kontūrus:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2385, '65', 'bg-BG', 'Напишете интересни очертания за видеоклип в Youtube за:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2386, '66', 'en-US', 'Generate engaging twitter threads based on a ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2387, '66', 'ar-AE', 'إنشاء مواضيع تويتر جذابة على أساس أ ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2388, '66', 'cmn-CN', '基于 ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2389, '66', 'hr-HR', 'Generirajte zanimljive teme na Twitteru na temelju a ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2390, '66', 'cs-CZ', 'Generujte poutavá twitterová vlákna na základě a ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2391, '66', 'da-DK', 'Generer engagerende twitter-tråde baseret på en ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2392, '66', 'nl-NL', 'Genereer boeiende Twitter-threads op basis van een ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2393, '66', 'et-EE', 'Looge köitvaid Twitteri lõime, mis põhinevad a ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2394, '66', 'fi-FI', 'Luo kiinnostavia twitter-säikeitä a ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2395, '66', 'fr-FR', 'Générez des fils Twitter attrayants basés sur un ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2396, '66', 'de-DE', 'Generieren Sie ansprechende Twitter-Threads basierend auf a ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2397, '66', 'el-GR', 'Δημιουργήστε ελκυστικά νήματα στο twitter με βάση το α ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2398, '66', 'he-IL', 'צור שרשורי טוויטר מרתקים המבוססים על א ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2399, '66', 'hi-IN', 'एक के आधार पर आकर्षक ट्विटर सूत्र उत्पन्न करें ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2400, '66', 'hu-HU', 'Lebilincselő twitter-szálak létrehozása a ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2401, '66', 'is-IS', 'Búðu til grípandi twitter þræði byggða á a ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2402, '66', 'id-ID', 'Hasilkan utas twitter yang menarik berdasarkan a ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2403, '66', 'it-IT', 'Genera thread Twitter coinvolgenti basati su a ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2404, '66', 'ja-JP', 'に基づいて魅力的な Twitter スレッドを生成します ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2405, '66', 'ko-KR', '기반으로 매력적인 트위터 스레드 생성 ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2406, '66', 'ms-MY', 'Hasilkan benang twitter yang menarik berdasarkan a ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2407, '66', 'nb-NO', 'Generer engasjerende twitter-tråder basert på en ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2408, '66', 'pl-PL', 'Generuj angażujące wątki na Twitterze w oparciu o ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2409, '66', 'pt-PT', 'Gere tópicos envolventes no Twitter com base em um ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2410, '66', 'ru-RU', 'Создавайте привлекательные темы в Твиттере на основе ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2411, '66', 'es-ES', 'Genere hilos de twitter atractivos basados ​​en un ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2412, '66', 'sv-SE', 'Skapa engagerande twittertrådar baserat på en ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2413, '66', 'tr-TR', 'Bir temele dayalı ilgi çekici twitter ileti dizileri oluşturun ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2414, '66', 'pt-BR', 'Gerar tópicos envolventes no Twitter com base em um ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2415, '66', 'ro-RO', 'Generați fire de twitter captivante pe baza a ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2416, '66', 'vi-VN', 'Tạo chủ đề twitter hấp dẫn dựa trên ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2417, '66', 'sw-KE', 'Tengeneza nyuzi zinazovutia za twitter kulingana na a ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2418, '66', 'sl-SI', 'Ustvarite privlačne niti na Twitterju na podlagi a ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2419, '66', 'th-TH', 'สร้างเธรด Twitter ที่น่าสนใจตาม ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2420, '66', 'uk-UA', 'Створюйте захоплюючі теми Twitter на основі a ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2421, '66', 'lt-LT', 'Kurkite patrauklias Twitter gijas pagal a ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2422, '66', 'bg-BG', 'Генерирайте ангажиращи нишки в Twitter въз основа на a ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2423, '67', 'en-US', 'Generate social post captions ready to grab attention adbout:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2424, '67', 'ar-AE', 'أنشئ تعليقات منشورات اجتماعية جاهزة لجذب الانتباه حول:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2425, '67', 'cmn-CN', '生成社交帖子标题以吸引注意力:\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2426, '67', 'hr-HR', 'Generirajte naslove postova na društvenim mrežama spremne da privuku pozornost o:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2427, '67', 'cs-CZ', 'Vytvářejte titulky sociálních příspěvků připravené upoutat pozornost na:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2428, '67', 'da-DK', 'Generer sociale indlægstekster klar til at fange opmærksomhed om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2429, '67', 'nl-NL', 'Genereer bijschriften voor sociale berichten die klaar zijn om de aandacht te trekken over:\n\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2430, '67', 'et-EE', 'Looge sotsiaalsete postituste subtiitreid, mis on valmis tähelepanu köitma järgmistel teemadel:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2431, '67', 'fi-FI', 'Luo sosiaalisten viestien kuvatekstejä, jotka ovat valmiita kiinnittämään huomiota:\n\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2432, '67', 'fr-FR', 'Générez des légendes de publications sociales prêtes à attirer l\'attention sur:\n\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2433, '67', 'de-DE', 'Erstellen Sie Bildunterschriften für Social-Media-Beiträge, die Aufmerksamkeit erregen:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2434, '67', 'el-GR', 'Δημιουργήστε υπότιτλους αναρτήσεων κοινωνικής δικτύωσης έτοιμοι να τραβήξουν την προσοχή σχετικά με:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2435, '67', 'he-IL', 'צור כתוביות לפוסטים חברתיים מוכנים למשוך תשומת לב לגבי:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2436, '67', 'hi-IN', 'इस बारे में ध्यान आकर्षित करने के लिए तैयार सामाजिक पोस्ट कैप्शन तैयार करें:\n\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2437, '67', 'hu-HU', 'Hozzon létre közösségi bejegyzések feliratait, amelyek felkelthetik a figyelmet:\n\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2438, '67', 'is-IS', 'Búðu til myndatexta fyrir félagslegar færslur tilbúnar til að vekja athygli á:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2439, '67', 'id-ID', 'Hasilkan teks pos sosial yang siap menarik perhatian tentang:\n\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2440, '67', 'it-IT', 'Genera didascalie per post social pronte ad attirare l\'attenzione su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2441, '67', 'ja-JP', '以下について注目を集めるソーシャル投稿のキャプションを生成します:\n\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2442, '67', 'ko-KR', '관심을 끌 준비가 된 소셜 게시물 캡션 생성:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2443, '67', 'ms-MY', 'Hasilkan kapsyen siaran sosial sedia untuk menarik perhatian tentang:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2444, '67', 'nb-NO', 'Generer sosiale innleggstekster klare til å fange oppmerksomhet om:\n\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2445, '67', 'pl-PL', 'Generuj podpisy postów w mediach społecznościowych gotowe do przyciągnięcia uwagi na temat:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2446, '67', 'pt-PT', 'Gere legendas de postagens sociais prontas para chamar a atenção sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2447, '67', 'ru-RU', 'Создавайте подписи к постам в соцсетях, готовые привлечь внимание:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2448, '67', 'es-ES', 'Genere subtítulos de publicaciones sociales listos para llamar la atención sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2449, '67', 'sv-SE', 'Skapa sociala inläggstexter redo att fånga uppmärksamhet om:\n\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2450, '67', 'tr-TR', 'Aşağıdaki konularda dikkat çekmeye hazır sosyal gönderi altyazıları oluşturun:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2451, '67', 'pt-BR', 'Gere legendas de publicações sociais prontas para chamar a atenção:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2452, '67', 'ro-RO', 'Generați subtitrări pentru postările sociale gata să atragă atenția despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2453, '67', 'vi-VN', 'Tạo chú thích bài đăng xã hội sẵn sàng thu hút sự chú ý về:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2454, '67', 'sw-KE', 'Tengeneza vichwa vya machapisho ya kijamii tayari kuvutia umakini kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2455, '67', 'sl-SI', 'Ustvarite napise družabnih objav, ki bodo pripravljeni pritegniti pozornost na:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2456, '67', 'th-TH', 'สร้างคำอธิบายภาพโพสต์โซเชียลพร้อมที่จะดึงดูดความสนใจเกี่ยวกับ:\n\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2457, '67', 'uk-UA', 'Створюйте підписи до публікацій у соціальних мережах, щоб привернути увагу до:\n\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2458, '67', 'lt-LT', 'Generuokite socialinių pranešimų antraštes, paruoštas atkreipti dėmesį į:\n\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2459, '67', 'bg-BG', 'Генерирайте надписи за социални публикации, готови да привлекат вниманието за:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2460, '68', 'en-US', 'Generate youtube channel intro to grab attention adbout:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2461, '68', 'ar-AE', 'أنشئ مقدمة لقناة youtube لجذب الانتباه حول:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2462, '68', 'cmn-CN', '生成 youtube 频道介绍以吸引关注:\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2463, '68', 'hr-HR', 'Generirajte uvod za youtube kanal kako biste privukli pozornost na:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2464, '68', 'cs-CZ', 'Vygenerujte úvod kanálu youtube, abyste upoutali pozornost na:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2465, '68', 'da-DK', 'Generer YouTube-kanalintro for at fange opmærksomhed om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2466, '68', 'nl-NL', 'Genereer YouTube-kanaalintro om de aandacht te trekken over:\n\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2467, '68', 'et-EE', 'Looge YouTube\'i kanali tutvustus, et köita tähelepanu järgmistel teemadel:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2468, '68', 'fi-FI', 'Luo YouTube-kanavan esittely herättääksesi huomion:\n\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2469, '68', 'fr-FR', 'Générez une introduction de chaîne YouTube pour attirer l\'attention sur :\n\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2470, '68', 'de-DE', 'Erstellen Sie ein YouTube-Kanal-Intro, um Aufmerksamkeit zu erregen auf:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2471, '68', 'el-GR', 'Δημιουργήστε εισαγωγή καναλιού YouTube για να τραβήξετε την προσοχή σχετικά με:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2472, '68', 'he-IL', 'צור מבוא ערוץ יוטיוב כדי למשוך תשומת לב לגבי:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2473, '68', 'hi-IN', 'इस बारे में ध्यान आकर्षित करने के लिए यूट्यूब चैनल का परिचय तैयार करें:\n\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2474, '68', 'hu-HU', 'Hozzon létre egy YouTube-csatorna bevezetőt, hogy felhívja magára a figyelmet:\n\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2475, '68', 'is-IS', 'Búðu til kynningu á YouTube rás til að vekja athygli á:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2476, '68', 'id-ID', 'Hasilkan intro saluran youtube untuk menarik perhatian tentang:\n\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2477, '68', 'it-IT', 'Genera l\'introduzione del canale YouTube per attirare l\'attenzione su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2478, '68', 'ja-JP', 'YouTube チャンネルのイントロを生成して、次の点について注目を集めます:\n\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2479, '68', 'ko-KR', '다음에 대한 관심을 끌기 위해 YouTube 채널 소개를 생성합니다:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2480, '68', 'ms-MY', 'Hasilkan pengenalan saluran youtube untuk menarik perhatian tentang:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2481, '68', 'nb-NO', 'Generer youtube-kanalintro for å fange oppmerksomhet om:\n\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2482, '68', 'pl-PL', 'Wygeneruj wprowadzenie do kanału YouTube, aby zwrócić uwagę na:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2483, '68', 'pt-PT', 'Gere a introdução do canal do youtube para chamar a atenção sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2484, '68', 'ru-RU', 'Создайте интро для канала YouTube, чтобы привлечь внимание:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2485, '68', 'es-ES', 'Genere la introducción del canal de YouTube para llamar la atención sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2486, '68', 'sv-SE', 'Skapa youtube-kanalintro för att fånga uppmärksamhet om:\n\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(2487, '68', 'tr-TR', 'Dikkat çekmek için youtube kanalı tanıtımı oluşturun:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2488, '68', 'pt-BR', 'Gerar uma introdução de canal do YouTube para chamar a atenção:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2489, '68', 'ro-RO', 'Generați introducerea canalului YouTube pentru a atrage atenția despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2490, '68', 'vi-VN', 'Tạo phần giới thiệu kênh youtube để thu hút sự chú ý về:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2491, '68', 'sw-KE', 'Tengeneza utangulizi wa kituo cha youtube ili kuvutia umakini kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2492, '68', 'sl-SI', 'Ustvarite uvod v youtube kanal, da pritegnete pozornost na:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2493, '68', 'th-TH', 'สร้างบทนำช่อง YouTube เพื่อดึงดูดความสนใจเกี่ยวกับ:\n\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2494, '68', 'uk-UA', 'Створіть заставку для каналу YouTube, щоб привернути увагу до:\n\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2495, '68', 'lt-LT', 'Sukurkite „YouTube“ kanalo įvadą, kad patrauktumėte dėmesį:\n\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2496, '68', 'bg-BG', 'Генерирайте въведение в канал в YouTube, за да привлечете вниманието към:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2497, '69', 'en-US', 'Write trendy hashtags for video about:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2498, '69', 'ar-AE', 'اكتب علامات التجزئة العصرية للفيديو حول:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2499, '69', 'cmn-CN', '撰寫有關視訊的趨勢雜湊標籤:\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2500, '69', 'hr-HR', 'Napišite trendi hashtagove za video o tome:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2501, '69', 'cs-CZ', 'Napište trendy hashtagy pro video o:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2502, '69', 'da-DK', 'Skriv trendy hashtags til video om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2503, '69', 'nl-NL', 'Schrijf trendy hashtags voor video over:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2504, '69', 'et-EE', 'Kirjutage trendikaid räsimärke video jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2505, '69', 'fi-FI', 'Kirjoita trendikkäitä hashtageja videoon aiheesta:\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2506, '69', 'fr-FR', 'Écrivez des hashtags à la mode pour la vidéo sur:\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2507, '69', 'de-DE', 'Schreiben Sie trendige Hashtags für Videos darüber:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2508, '69', 'el-GR', 'Γράψτε μοντέρνα hashtags για βίντεο:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2509, '69', 'he-IL', 'כתוב האשטאגים אופנתיים לסרטון על:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2510, '69', 'hi-IN', 'वीडियो के बारे में ट्रेंडी हैशटैग लिखें:\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2511, '69', 'hu-HU', 'Írj divatos hashtageket a videóhoz:\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2512, '69', 'is-IS', 'Skrifaðu töff hashtags fyrir myndband um:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2513, '69', 'id-ID', 'Tulis tagar trendi untuk video tentang:\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2514, '69', 'it-IT', 'Scrivi hashtag alla moda per i video su:\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2515, '69', 'ja-JP', 'についての動画に流行のハッシュタグを書きます:\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2516, '69', 'ko-KR', '동영상에 대한 최신 해시태그를 작성하세요.:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2517, '69', 'ms-MY', 'Tulis hashtag yang bergaya untuk video tentang:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2518, '69', 'nb-NO', 'Skriv trendy hashtags for video om:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2519, '69', 'pl-PL', 'Napisz modne hashtagi do filmu o:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2520, '69', 'pt-PT', 'Escreva hashtags da moda para vídeos sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2521, '69', 'ru-RU', 'Пишите модные хэштеги для видео о:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2522, '69', 'es-ES', 'Escribe hashtags de moda para videos sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2523, '69', 'sv-SE', 'Skriv trendiga hashtags för video om:\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2524, '69', 'tr-TR', 'hakkında video için modaya uygun hashtag\'ler yazın:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2525, '69', 'pt-BR', 'Escreva hashtags da moda para vídeos sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2526, '69', 'ro-RO', 'Scrie hashtag-uri la modă pentru videoclipuri despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2527, '69', 'vi-VN', 'Viết các thẻ bắt đầu bằng # hợp thời trang cho video về:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2528, '69', 'sw-KE', 'Andika lebo za reli maarufu za video kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2529, '69', 'sl-SI', 'Napišite trendovske hashtage za video o:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2530, '69', 'th-TH', 'เขียนแฮชแท็กยอดนิยมสำหรับวิดีโอเกี่ยวกับ:\n\n ##description## \n\n เสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2531, '69', 'uk-UA', 'Напишіть модні хештеги для відео про:\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2532, '69', 'lt-LT', 'Rašykite madingas žymas su grotelėmis vaizdo įrašams apie:\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2533, '69', 'bg-BG', 'Write trendy hashtags for video about:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2534, '70', 'en-US', 'Write 10 short and simple article outlines about:\n\n ##description## \n\nBlog article title:\n ##title## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2535, '70', 'ar-AE', 'اكتب 10 مقال موجز وبسيط الخطوط العريضة عنه:\n\n ##description## \n\nعنوان مقال المدونة:\n ##title## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2536, '70', 'cmn-CN', '撰寫 10 篇簡短且簡單的文章概述:\n\n ##description## \n\n部落格文章標題:\n ##title## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2537, '70', 'hr-HR', 'Napišite 10 kratkih i jednostavnih nacrta članaka o:\n\n ##description## \n\nNaslov članka na blogu:\n ##title## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2538, '70', 'cs-CZ', 'Napište 10 krátkých a jednoduchých nástin článku o:\n\n ##description## \n\nNázev článku na blogu:\n ##title## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2539, '70', 'da-DK', 'Skriv 10 korte og enkle artikeloversigter om:\n\n ##description## \n\nBlog artiklens titel:\n ##title## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2540, '70', 'nl-NL', 'Schrijf 10 korte en eenvoudige artikeloverzichten over:\n\n ##description## \n\nTitel blogartikele:\n ##title## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2541, '70', 'et-EE', 'Kirjutage 10 lühikest ja lihtsat artikli ülevaadet:\n\n ##description## \n\nBlogi artikli pealkiri:\n ##title## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2542, '70', 'fi-FI', 'Kirjoita 10 lyhyttä ja yksinkertaista artikkelin päättelyä aiheesta:\n\n ##description## \n\nBlogin artikkelin otsikko:\n ##title## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2543, '70', 'fr-FR', 'Rédigez 10 résumés d\'articles courts et simples sur:\n\n ##description## \n\nBTitre de l\'article du blog:\n ##title## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2544, '70', 'de-DE', 'Schreiben Sie 10 kurze und einfache Artikelskizzen zum Thema:\n\n ##description## \n\nTitel des Blogartikels:\n ##title## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2545, '70', 'el-GR', 'Γράψτε 10 σύντομες και απλές περιγραφές άρθρων για:\n\n ##description## \n\nΤίτλος άρθρου ιστολογίου:\n ##title## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2546, '70', 'he-IL', 'כתוב 10 קווי מתאר קצרים ופשוטים של מאמרים בנושא:\n\n ##description## \n\nכותרת המאמר בבלוג:\n ##title## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2547, '70', 'hi-IN', 'के बारे में 10 छोटे और सरल लेख की रूपरेखा लिखें:\n\n ##description## \n\nब्लॉग लेख का शीर्षक:\n ##title## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2548, '70', 'hu-HU', 'Írj 10 rövid és egyszerű cikkvázlatot erről:\n\n ##description## \n\nBlog cikk címe:\n ##title## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2549, '70', 'is-IS', 'Skrifaðu 10 stuttar og einfaldar greinar um:\n\n ##description## \n\nTitill blogggreinar:\n ##title## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2550, '70', 'id-ID', 'Tulis 10 garis besar artikel pendek dan sederhana tentang:\n\n ##description## \n\nTitolo dell\'articolo del blog:\n ##title## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2551, '70', 'it-IT', 'Scrivi 10 brevi e semplici schemi di articoli su:\n\n ##description## \n\nブログ記事タイトル:\n ##title## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2552, '70', 'ja-JP', '~についての短くて簡単な記事の概要を 10 個書きます:\n\n ##description## \n\nBlog article title:\n ##title## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2553, '70', 'ko-KR', '10개의 짧고 간단한 기사 개요를 작성하십시오.:\n\n ##description## \n\n블로그 기사 제목:\n ##title## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2554, '70', 'ms-MY', 'Tulis 10 rangka artikel ringkas dan ringkas tentang:\n\n ##description## \n\nTajuk artikel blog:\n ##title## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2555, '70', 'nb-NO', 'Skriv 10 korte og enkle artikkelskisser om:\n\n ##description## \n\nBloggartikkeltittel:\n ##title## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2556, '70', 'pl-PL', 'Napisz 10 krótkich i prostych konspektów artykułów nt:\n\n ##description## \n\nTytuł artykułu na blogu:\n ##title## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2557, '70', 'pt-PT', 'Escreva 10 esboços de artigos curtos e simples sobre:\n\n ##description## \n\nTítulo do artigo do blog:\n ##title## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2558, '70', 'ru-RU', 'Напишите 10 коротких и простых статей о:\n\n ##description## \n\nНазвание статьи в блоге:\n ##title## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2559, '70', 'es-ES', 'Escribe 10 reseñas breves y sencillas de artículos sobre:\n\n ##description## \n\nTítulo del artículo del blog:\n ##title## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2560, '70', 'sv-SE', 'Skriv 10 korta och enkla artikelskisser om:\n\n ##description## \n\nBloggartikelns titel:\n ##title## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2561, '70', 'tr-TR', 'Hakkında 10 kısa ve basit makale özeti yazın:\n\n ##description## \n\nBlog makalesi başlığı:\n ##title## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2562, '70', 'pt-BR', 'Escreva 10 esboços de artigos curtos e simples sobre:\n\n ##description## \n\nTítulo do artigo do blog:\n ##title## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2563, '70', 'ro-RO', 'Scrieți 10 contururi scurte și simple despre articole:\n\n ##description## \n\nTitlul articolului de pe blog:\n ##title## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2564, '70', 'vi-VN', 'Viết 10 dàn ý bài viết ngắn và đơn giản về:\n\n ##description## \n\nTiêu đề bài viết trên blog:\n ##title## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2565, '70', 'sw-KE', 'Andika muhtasari wa makala 10 fupi na rahisi kuhusu:\n\n ##description## \n\nKichwa cha makala ya blogu:\n ##title## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2566, '70', 'sl-SI', 'Napišite 10 kratkih in preprostih orisov člankov o:\n\n ##description## \n\nNaslov članka v blogu:\n ##title## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2567, '70', 'th-TH', 'เขียนโครงร่างบทความสั้นๆ ง่ายๆ 10 บทความเกี่ยวกับ:\n\n ##description## \n\nชื่อบทความบล็อก:\n ##title## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2568, '70', 'uk-UA', 'Напишіть 10 коротких і простих нарисів статей про:\n\n ##description## \n\nНазва статті блогу:\n ##title## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2569, '70', 'lt-LT', 'Parašykite 10 trumpų ir paprastų straipsnio apybraižų apie:\n\n ##description## \n\nTinklaraščio straipsnio pavadinimas:\n ##title## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2570, '70', 'bg-BG', 'Напишете 10 кратки и прости очертания на статии за:\n\n ##description## \n\nЗаглавие на статията в блога:\n ##title## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2571, '71', 'en-US', 'Write SEO meta title and description for a blog post about:\n\n ##description## \n\n Blog title:\n ##title## \n\n Seed Words:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2572, '71', 'ar-AE', 'اكتب عنوان تعريف SEO ووصفًا لمنشور مدونة حول:\n\n ##description## \n\n عنوان المدونة:\n ##title## \n\n كلمات البذور:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2573, '71', 'cmn-CN', '為有關以下內容的博客文章編寫 SEO 元標題和描述:\n\n ##description## \n\n 博客標題:\n ##title## \n\n 種子詞:\n ##keywords## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2574, '71', 'hr-HR', 'Napišite SEO meta naslov i opis za blog post o:\n\n ##description## \n\n Naslov bloga:\n ##title## \n\n Riječi sjemena:\n ##keywords## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2575, '71', 'cs-CZ', 'Napište SEO meta název a popis pro blogový příspěvek o:\n\n ##description## \n\n Název blogu:\n ##title## \n\n Seed Slova:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2576, '71', 'da-DK', 'Skriv SEO meta titel og beskrivelse til et blogindlæg om:\n\n ##description## \n\n Blog titel:\n ##title## \n\n Frøord:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2577, '71', 'nl-NL', 'Schrijf een SEO-metatitel en -beschrijving voor een blogpost over:\n\n ##description## \n\n Blog Titel:\n ##title## \n\n Zaad woorden:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2578, '71', 'et-EE', 'Kirjutage SEO metapealkiri ja kirjeldus blogipostituse jaoks, mis käsitleb:\n\n ##description## \n\n Blogi pealkiri:\n ##title## \n\n Seemne sõnad:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2579, '71', 'fi-FI', 'Kirjoita SEO-sisällönkuvausotsikko ja kuvaus blogitekstille aiheesta:\n\n ##description## \n\n Blogin otsikko:\n ##title## \n\n Siemensanat:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2580, '71', 'fr-FR', 'Rédigez un méta-titre et une description SEO pour un article de blog sur :\n\n ##description## \n\n Titre du Blog:\n ##title## \n\n Mots de départ:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2581, '71', 'de-DE', 'Schreiben Sie einen SEO-Metatitel und eine Beschreibung für einen Blogbeitrag über:\n\n ##description## \n\n Blog Titel:\n ##title## \n\n Samenwörter:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2582, '71', 'el-GR', 'Γράψτε τον μετα-τίτλο SEO και την περιγραφή για μια ανάρτηση ιστολογίου σχετικά με:\n\n ##description## \n\n Τίτλος Ιστολογίου:\n ##title## \n\n Σπόροι Λέξεις:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2583, '71', 'he-IL', 'כתוב מטא כותרת ותיאור של SEO עבור פוסט בבלוג על:\n\n ##description## \n\n כותרת הבלוג:\n ##title## \n\n מילות זרעים:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2584, '71', 'hi-IN', 'निम्नलिखित के बारे में ब्लॉग पोस्ट के लिए SEO मेटा शीर्षक और विवरण लिखें:\n\n ##description## \n\n ब्लॉग का शीर्षक:\n ##title## \n\n बीज शब्द:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2585, '71', 'hu-HU', 'Írjon SEO metacímet és leírást egy blogbejegyzéshez:\n\n ##description## \n\n Blog cím:\n ##title## \n\n Magszavak:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2586, '71', 'is-IS', 'Skrifaðu SEO meta titil og lýsingu fyrir bloggfærslu um:\n\n ##description## \n\n Titill bloggsins:\n ##title## \n\n Fræorð:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2587, '71', 'id-ID', 'Tulis judul dan deskripsi meta SEO untuk posting blog tentang:\n\n ##description## \n\n Judul blog:\n ##title## \n\n Kata Benih:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2588, '71', 'it-IT', 'Scrivi il meta titolo e la descrizione SEO per un post sul blog su:\n\n ##description## \n\n Titolo del Blog:\n ##title## \n\n Parole seme:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2589, '71', 'ja-JP', '以下に関するブログ投稿の SEO メタ タイトルと説明を作成します。\n\n ##description## \n\n ブログのタイトル:\n ##title## \n\n シードワード:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2590, '71', 'ko-KR', '다음에 대한 블로그 게시물의 SEO 메타 제목 및 설명 작성:\n\n ##description## \n\n 블로그 제목:\n ##title## \n\n 시드 단어:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2591, '71', 'ms-MY', 'Tulis tajuk dan penerangan meta SEO untuk catatan blog tentang:\n\n ##description## \n\n Tajuk blog:\n ##title## \n\n Kata Benih:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2592, '71', 'nb-NO', 'Skriv SEO-metatittel og beskrivelse for et blogginnlegg om:\n\n ##description## \n\n Bloggtittel:\n ##title## \n\n Frøord:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2593, '71', 'pl-PL', 'Napisz meta tytuł i opis SEO dla posta na blogu na temat:\n\n ##description## \n\n Tytuł bloga:\n ##title## \n\n Słowa nasion:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2594, '71', 'pt-PT', 'Escreva meta título e descrição de SEO para um post de blog sobre:\n\n ##description## \n\n Título do Blog:\n ##title## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2595, '71', 'ru-RU', 'Напишите SEO мета-заголовок и описание для сообщения в блоге о:\n\n ##description## \n\n Название блога:\n ##title## \n\n Исходные слова:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2596, '71', 'es-ES', 'Escriba el metatítulo y la descripción de SEO para una publicación de blog sobre:\n\n ##description## \n\n Titulo de Blog:\n ##title## \n\n Palabras semilla:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2597, '71', 'sv-SE', 'Skriv SEO-metatitel och beskrivning för ett blogginlägg om:\n\n ##description## \n\n Bloggtitel:\n ##title## \n\n Frö ord:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2598, '71', 'tr-TR', 'Aşağıdakilerle ilgili bir blog yazısı için SEO meta başlığı ve açıklaması yazın:\n\n ##description## \n\n Blog başlığı:\n ##title## \n\n tohum kelimeler:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2599, '71', 'pt-BR', 'Escreva meta título e descrição de SEO para um post de blog sobre:\n\n ##description## \n\n Título do Blog:\n ##title## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2600, '71', 'ro-RO', 'Scrieți meta titlul și descrierea SEO pentru o postare de blog despre:\n\n ##description## \n\n Titlu de Blog:\n ##title## \n\n Cuvinte sămânță:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2601, '71', 'vi-VN', 'Viết tiêu đề và mô tả meta SEO cho một bài đăng trên blog về:\n\n ##description## \n\n Tiêu đề Blog:\n ##title## \n\n từ hạt giống:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2602, '71', 'sw-KE', 'Andika kichwa cha meta cha SEO na maelezo ya chapisho la blogi kuhusu:\n\n ##description## \n\n Jina la blogi:\n ##title## \n\n Maneno ya mbegu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2603, '71', 'sl-SI', 'Napišite meta naslov in opis SEO za objavo v spletnem dnevniku o:\n\n ##description## \n\n Naslov bloga:\n ##title## \n\n Seed Words:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2604, '71', 'th-TH', 'เขียนชื่อเมตา SEO และคำอธิบายสำหรับโพสต์บล็อกเกี่ยวกับ:\n\n ##description## \n\n ชื่อบล็อก:\n ##title## \n\n คำเมล็ด:\n ##keywords## \n\n เสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2605, '71', 'uk-UA', 'Напишіть метазаголовок і опис SEO для публікації в блозі про:\n\n ##description## \n\n Назва блогу:\n ##title## \n\n Насіннєві слова:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2606, '71', 'lt-LT', 'Parašykite SEO meta pavadinimą ir aprašą tinklaraščio įrašui apie:\n\n ##description## \n\n Tinklaraščio pavadinimas:\n ##title## \n\n Sėklų žodžiai:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2607, '71', 'bg-BG', 'Напишете мета заглавие и описание на SEO за публикация в блог за:\n\n ##description## \n\n Заглавие на блога:\n ##title## \n\n Семенни думи:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2608, '72', 'en-US', 'Write SEO meta title and description for a website about:\n ##description## \n\nWebsite Name:\n ##title## \n\nSeed Words:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2609, '72', 'ar-AE', 'اكتب عنوان تعريف SEO ووصفًا لموقع ويب حول:\n ##description## \n\nاسم الموقع:\n ##title## \n\nكلمات البذور:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2610, '72', 'cmn-CN', '為網站編寫 SEO 元標題和描述:\n ##description## \n\n網站名稱:\n ##title## \n\n種子詞:\n ##keywords## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2611, '72', 'hr-HR', 'Napišite SEO meta naslov i opis za web stranicu o:\n ##description## \n\nNaziv web stranice:\n ##title## \n\nRiječi sjemena:\n ##keywords## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2612, '72', 'cs-CZ', 'Napište SEO meta název a popis pro web o:\n ##description## \n\nNázev webu:\n ##title## \n\nSeed Slova:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2613, '72', 'da-DK', 'Skriv SEO meta titel og beskrivelse til en hjemmeside om:\n ##description## \n\nHjemmesidenavn:\n ##title## \n\nFrøord:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2614, '72', 'nl-NL', 'Schrijf een SEO-metatitel en -beschrijving voor een website over:\n ##description## \n\nwebsite naam:\n ##title## \n\nZaad woorden:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2615, '72', 'et-EE', 'Kirjutage SEO metapealkiri ja kirjeldus veebisaidile, mis käsitleb:\n ##description## \n\nVeebisaidi nimi:\n ##title## \n\nSeemne sõnad:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2616, '72', 'fi-FI', 'Kirjoita SEO-sisällönkuvausotsikko ja kuvaus verkkosivustolle aiheesta:\n ##description## \n\nVerkkosivuston nimi:\n ##title## \n\nSiemensanat:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2617, '72', 'fr-FR', 'Rédigez un méta-titre et une description SEO pour un site Web sur :\n ##description## \n\nNom du site Web:\n ##title## \n\nMots de départ:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2618, '72', 'de-DE', 'Schreiben Sie einen SEO-Metatitel und eine Beschreibung für eine Website über:\n ##description## \n\nWebseiten-Name:\n ##title## \n\nSamenwörter:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2619, '72', 'el-GR', 'Γράψτε μετα-τίτλο SEO και περιγραφή για έναν ιστότοπο σχετικά με:\n ##description## \n\nΌνομα ιστότοπου:\n ##title## \n\nΣπόροι Λέξεις:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2620, '72', 'he-IL', 'כתוב מטא כותרת ותיאור של SEO עבור אתר אינטרנט על:\n ##description## \n\nשם האתר:\n ##title## \n\nמילות זרעים:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2621, '72', 'hi-IN', 'किसी वेबसाइट के लिए SEO मेटा शीर्षक और विवरण लिखें:\n ##description## \n\nवेबसाइट का नाम:\n ##title## \n\nबीज शब्द:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2622, '72', 'hu-HU', 'Írjon SEO metacímet és leírást egy webhelyhez:\n ##description## \n\nWebhely neve:\n ##title## \n\nMagszavak:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2623, '72', 'is-IS', 'Skrifaðu SEO meta titil og lýsingu fyrir vefsíðu um:\n ##description## \n\nHeiti vefsíðu:\n ##title## \n\nFræorð:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2624, '72', 'id-ID', 'Tulis judul dan deskripsi meta SEO untuk situs web tentang:\n ##description## \n\nNama Situs Web:\n ##title## \n\nKata Benih:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2625, '72', 'it-IT', 'Scrivi meta titolo e descrizione SEO per un sito web su:\n ##description## \n\nNome del sito web:\n ##title## \n\nParole seme:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2626, '72', 'ja-JP', 'Web サイトの SEO メタ タイトルと説明を以下について書きます。\n ##description## \n\nウェブサイト名:\n ##title## \n\nシードワード:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2627, '72', 'ko-KR', '다음에 대한 웹사이트의 SEO 메타 제목 및 설명 작성:\n ##description## \n\n웹사이트 이름:\n ##title## \n\n시드 단어:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2628, '72', 'ms-MY', 'Tulis tajuk dan penerangan meta SEO untuk tapak web tentang:\n ##description## \n\nNama Laman Web:\n ##title## \n\nKata Benih:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2629, '72', 'nb-NO', 'Skriv SEO-metatittel og beskrivelse for et nettsted om:\n ##description## \n\nNettstedets navn:\n ##title## \n\nFrøord:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2630, '72', 'pl-PL', 'Napisz meta tytuł i opis SEO dla strony internetowej o:\n ##description## \n\nNazwa strony:\n ##title## \n\n Słowa nasion:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2631, '72', 'pt-PT', 'Escreva meta título e descrição de SEO para um site sobre:\n ##description## \n\nNome do site:\n ##title## \n\npalavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2632, '72', 'ru-RU', 'Напишите мета-заголовок и описание SEO для веб-сайта о:\n ##description## \n\nНазвание веб-сайта:\n ##title## \n\nИсходные слова:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2633, '72', 'es-ES', 'Escriba el metatítulo y la descripción de SEO para un sitio web sobre:\n ##description## \n\nNombre del Sitio Web:\n ##title## \n\nPalabras semilla:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2634, '72', 'sv-SE', 'Skriv SEO-metatitel och beskrivning för en webbplats om:\n ##description## \n\nWebbplatsens namn:\n ##title## \n\nFrö ord:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2635, '72', 'tr-TR', 'Aşağıdakilerle ilgili bir web sitesi için SEO meta başlığı ve açıklaması yazın:\n ##description## \n\nWeb Sitesi Adı:\n ##title## \n\ntohum kelimeler:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2636, '72', 'pt-BR', 'Escreva meta título e descrição de SEO para um site sobre:\n ##description## \n\nNome do site:\n ##title## \n\npalavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2637, '72', 'ro-RO', 'Scrieți meta titlul și descrierea SEO pentru un site web despre:\n ##description## \n\nNumele site-ului:\n ##title## \n\nCuvinte sămânță:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2638, '72', 'vi-VN', 'Viết tiêu đề và mô tả meta SEO cho một trang web về:\n ##description## \n\nTên trang web:\n ##title## \n\n từ hạt giống:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2639, '72', 'sw-KE', 'Andika kichwa cha meta cha SEO na maelezo ya tovuti kuhusu:\n ##description## \n\nJina la Tovuti:\n ##title## \n\nManeno ya mbegu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2640, '72', 'sl-SI', 'Napišite meta naslov in opis SEO za spletno mesto o:\n ##description## \n\nIme spletnega mesta:\n ##title## \n\n Seed Words:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2641, '72', 'th-TH', 'เขียนชื่อเมตา SEO และคำอธิบายสำหรับเว็บไซต์เกี่ยวกับ:\n ##description## \n\nชื่อเว็บไซต์:\n ##title## \n\nคำเมล็ด:\n ##keywords## \n\n โทนเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2642, '72', 'uk-UA', 'Напишіть мета-заголовок і опис SEO для веб-сайту про:\n ##description## \n\n Назва сайту:\n ##title## \n\nНасіннєві слова:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2643, '72', 'lt-LT', 'Parašykite svetainės SEO metapavadinimą ir aprašą apie:\n ##description## \n\nSvetainės pavadinimas:\n ##title## \n\nSėklų žodžiai:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2644, '72', 'bg-BG', 'Напишете SEO мета заглавие и описание за уебсайт за:\n ##description## \n\nИме на уебсайт:\n ##title## \n\nСеменни думи:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2645, '73', 'en-US', 'Write SEO meta title and description for a product page about:\n\n ##description## \n\n Product Title:\n ##title## \n\n Company Name:\n ##company_name## \n\n Seed Words:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2646, '73', 'ar-AE', 'اكتب عنوان تعريف SEO ووصفًا لصفحة منتج عنه:\n\n ##description## \n\n Product Title:\n ##title## \n\n اسم الشركة:\n ##company_name## \n\n كلمات البذور:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2647, '73', 'cmn-CN', '為產品頁面編寫 SEO 元標題和描述:\n\n ##description## \n\n Product Title:\n ##title## \n\n 公司名稱:\n ##company_name## \n\n 種子詞:\n ##keywords## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2648, '73', 'hr-HR', 'Napišite SEO meta naslov i opis za stranicu proizvoda o:\n\n ##description## \n\n Product Title:\n ##title## \n\n Naziv tvrtke:\n ##company_name## \n\n Riječi sjemena:\n ##keywords## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(2649, '73', 'cs-CZ', 'Napište SEO meta název a popis pro stránku produktu o:\n\n ##description## \n\n Product Title:\n ##title## \n\n Jméno společnosti:\n ##company_name## \n\n Seed Slova:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2650, '73', 'da-DK', 'Skriv SEO meta titel og beskrivelse til en produktside om:\n\n ##description## \n\n Product Title:\n ##title## \n\n firmanavn:\n ##company_name## \n\n Frøord:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2651, '73', 'nl-NL', 'Schrijf een SEO-metatitel en -beschrijving voor een productpagina over:\n\n ##description## \n\n Product Title:\n ##title## \n\n Bedrijfsnaam:\n ##company_name## \n\n Zaad woorden:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2652, '73', 'et-EE', 'Kirjutage SEO metapealkiri ja kirjeldus tootelehele:\n\n ##description## \n\n Product Title:\n ##title## \n\n Ettevõtte nimi:\n ##company_name## \n\n Seemne sõnad:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2653, '73', 'fi-FI', 'Kirjoita SEO-sisällönkuvausotsikko ja kuvaus tuotesivulle:\n\n ##description## \n\n Product Title:\n ##title## \n\n Yrityksen nimi:\n ##company_name## \n\n Siemensanat:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2654, '73', 'fr-FR', 'Rédigez un méta-titre et une description SEO pour une page de produit sur:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nom de l\'entreprise:\n ##company_name## \n\n Mots de départ:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2655, '73', 'de-DE', 'Schreiben Sie einen SEO-Metatitel und eine Beschreibung für eine Produktseite:\n\n ##description## \n\n Product Title:\n ##title## \n\n Name der Firma:\n ##company_name## \n\n Samenwörter:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2656, '73', 'el-GR', 'Γράψτε τον μετα-τίτλο SEO και την περιγραφή για μια σελίδα προϊόντος σχετικά με:\n\n ##description## \n\n Product Title:\n ##title## \n\n Όνομα εταιρείας:\n ##company_name## \n\n Σπόροι Λέξεις:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2657, '73', 'he-IL', 'כתוב SEO מטא כותרת ותיאור עבור דף מוצר על:\n\n ##description## \n\n Product Title:\n ##title## \n\n שם החברה:\n ##company_name## \n\n מילות זרעים:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2658, '73', 'hi-IN', 'किसी उत्पाद पृष्ठ के बारे में SEO मेटा शीर्षक और विवरण लिखें:\n\n ##description## \n\n Product Title:\n ##title## \n\n कंपनी का नाम:\n ##company_name## \n\n बीज शब्द:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2659, '73', 'hu-HU', 'Írjon SEO metacímet és leírást egy termékoldalhoz:\n\n ##description## \n\n Product Title:\n ##title## \n\n Cégnév:\n ##company_name## \n\n Magszavak:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2660, '73', 'is-IS', 'Skrifaðu SEO meta titil og lýsingu fyrir vörusíðu um:\n\n ##description## \n\n Product Title:\n ##title## \n\n nafn fyrirtækis:\n ##company_name## \n\n Fræorð:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2661, '73', 'id-ID', 'Tulis judul dan deskripsi meta SEO untuk halaman produk tentang:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nama perusahaan:\n ##company_name## \n\n Kata Benih:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2662, '73', 'it-IT', 'Scrivi il meta titolo e la descrizione SEO per una pagina di prodotto:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nome della ditta:\n ##company_name## \n\n Parole seme:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2663, '73', 'ja-JP', '製品ページの SEO メタ タイトルと説明を書きます。:\n\n ##description## \n\n Product Title:\n ##title## \n\n 会社名:\n ##company_name## \n\n シードワード:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2664, '73', 'ko-KR', '제품 페이지에 대한 SEO 메타 제목 및 설명 작성:\n\n ##description## \n\n Product Title:\n ##title## \n\n 회사 이름:\n ##company_name## \n\n 시드 단어:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2665, '73', 'ms-MY', 'Tulis tajuk dan penerangan meta SEO untuk halaman produk tentang:\n\n ##description## \n\n Product Title:\n ##title## \n\n nama syarikat:\n ##company_name## \n\n Kata Benih:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2666, '73', 'nb-NO', 'Skriv SEO meta tittel og beskrivelse for en produktside om:\n\n ##description## \n\n Product Title:\n ##title## \n\n selskapsnavn:\n ##company_name## \n\n Frøord:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2667, '73', 'pl-PL', 'Napisz tytuł i opis meta SEO dla strony produktu:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nazwa firmy:\n ##company_name## \n\n Słowa nasion:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2668, '73', 'pt-PT', 'Escreva meta título e descrição de SEO para uma página de produto sobre:\n\n ##description## \n\n Product Title:\n ##title## \n\n nome da empresa:\n ##company_name## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2669, '73', 'ru-RU', 'Напишите SEO-мета-заголовок и описание для страницы продукта о:\n\n ##description## \n\n Product Title:\n ##title## \n\n Название компании:\n ##company_name## \n\n Исходные слова:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2670, '73', 'es-ES', 'Escriba el metatítulo y la descripción de SEO para una página de producto sobre:\n\n ##description## \n\n Product Title:\n ##title## \n\n nombre de empresa:\n ##company_name## \n\n Palabras semilla:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2671, '73', 'sv-SE', 'Skriv SEO-metatitel och beskrivning för en produktsida om:\n\n ##description## \n\n Product Title:\n ##title## \n\n Företagsnamn:\n ##company_name## \n\n Frö ord:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2672, '73', 'tr-TR', 'Hakkında bir ürün sayfası için SEO meta başlığı ve açıklaması yazın:\n\n ##description## \n\n Product Title:\n ##title## \n\n Firma Adı:\n ##company_name## \n\n tohum kelimeler:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2673, '73', 'pt-BR', 'Escreva meta título e descrição de SEO para uma página de produto sobre:\n\n ##description## \n\n Product Title:\n ##title## \n\n nome da empresa:\n ##company_name## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2674, '73', 'ro-RO', 'Scrieți meta titlu SEO și descriere pentru o pagină de produs despre:\n\n ##description## \n\n Product Title:\n ##title## \n\n Numele companiei:\n ##company_name## \n\n Cuvinte sămânță:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2675, '73', 'vi-VN', 'Viết tiêu đề và mô tả meta SEO cho trang sản phẩm về:\n\n ##description## \n\n Product Title:\n ##title## \n\n Tên công ty:\n ##company_name## \n\n từ hạt giống:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(2676, '73', 'sw-KE', 'Andika kichwa cha meta cha SEO na maelezo ya ukurasa wa bidhaa kuhusu:\n\n ##description## \n\n Product Title:\n ##title## \n\n jina la kampuni:\n ##company_name## \n\n Maneno ya mbegu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2677, '73', 'sl-SI', 'Napišite metanaslov SEO in opis za stran izdelka o:\n\n ##description## \n\n Product Title:\n ##title## \n\n ime podjetja:\n ##company_name## \n\n Seed Words:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2678, '73', 'th-TH', 'เขียนชื่อเมตา SEO และคำอธิบายสำหรับหน้าผลิตภัณฑ์เกี่ยวกับ:\n\n ##description## \n\n Product Title:\n ##title## \n\n ชื่อ บริษัท:\n ##company_name## \n\n คำเมล็ด:\n ##keywords## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2679, '73', 'uk-UA', 'Напишіть мета-заголовок і опис SEO для сторінки продукту:\n\n ##description## \n\n Product Title:\n ##title## \n\n Назва компанії:\n ##company_name## \n\n Насіннєві слова:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2680, '73', 'lt-LT', 'Parašykite produkto puslapio SEO meta pavadinimą ir aprašą:\n\n ##description## \n\n Product Title:\n ##title## \n\n Įmonės pavadinimas:\n ##company_name## \n\n Sėklų žodžiai:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2681, '73', 'bg-BG', 'Напишете SEO мета заглавие и описание за продуктова страница за:\n\n ##description## \n\n Product Title:\n ##title## \n\n Име на фирмата:\n ##company_name## \n\n Семенни думи:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2682, '74', 'en-US', 'Write 10 unique product titles to gain more sells on Amazon of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the article must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2683, '74', 'ar-AE', 'اكتب 10 عناوين منتجات فريدة لكسب المزيد من عمليات البيع على أمازون للمنتج التالي الذي يستهدفه:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت المقال:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2684, '74', 'cmn-CN', '寫 10 個獨特的產品標題,以在亞馬遜上獲得更多針對以下產品的銷售:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 文章的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2685, '74', 'hr-HR', 'Napišite 10 jedinstvenih naslova proizvoda kako biste ostvarili veću prodaju na Amazonu za sljedeći ciljni proizvod:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2686, '74', 'cs-CZ', 'Napište 10 jedinečných názvů produktů, abyste získali více prodejů na Amazonu následujícího produktu, na který je zaměřen:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu článku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2687, '74', 'da-DK', 'Skriv 10 unikke produkttitler for at få flere salg på Amazon af følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tonen i artiklen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2688, '74', 'nl-NL', 'Schrijf 10 unieke producttitels om meer verkopen op Amazon te krijgen van het volgende beoogde product:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De toon van het artikel moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2689, '74', 'et-EE', 'Kirjutage 10 ainulaadset tootenimetust, et saada Amazonis rohkem müüki järgmistest toodetest, millele on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Artikli hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2690, '74', 'fi-FI', 'Kirjoita 10 ainutlaatuista tuotenimikettä saadaksesi enemmän myyntiä Amazonissa seuraavista tuotteista:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Artikkelin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2691, '74', 'fr-FR', 'Écrivez 10 titres de produits uniques pour obtenir plus de ventes sur Amazon du produit suivant destiné à:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix de l\'article doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2692, '74', 'de-DE', 'Schreiben Sie 10 einzigartige Produkttitel, um bei Amazon mehr Verkäufe des folgenden Produkts zu erzielen:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Artikels muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2693, '74', 'el-GR', 'Γράψτε 10 μοναδικούς τίτλους προϊόντων για να κερδίσετε περισσότερες πωλήσεις στο Amazon για το παρακάτω προϊόν που στοχεύει:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του άρθρου πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2694, '74', 'he-IL', 'כתוב 10 כותרות מוצר ייחודיות כדי להשיג יותר מכירות באמזון של המוצר הבא שמיועד אליו:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של המאמר חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2695, '74', 'hi-IN', 'निम्नलिखित उत्पाद के Amazon पर अधिक बिक्री हासिल करने के लिए 10 अद्वितीय उत्पाद शीर्षक लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n लेख का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2696, '74', 'hu-HU', 'Írjon 10 egyedi termékcímet, hogy több eladást szerezzen az Amazonon a következő, megcélzott termékből:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n A cikk hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2697, '74', 'is-IS', 'Skrifaðu 10 einstaka vörutitla til að ná meiri sölu á Amazon af eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í greininni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2698, '74', 'id-ID', 'Tulis 10 judul produk unik untuk mendapatkan lebih banyak penjualan di Amazon dari produk berikut yang dituju:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara artikel harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2699, '74', 'it-IT', 'Scrivi 10 titoli di prodotti unici per ottenere più vendite su Amazon del seguente prodotto mirato:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell\'articolo deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2700, '74', 'ja-JP', 'ユニークな製品タイトルを 10 個書いて、次の製品を Amazon でより多く販売してください。:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 記事の口調は次のようにする必要があります。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2701, '74', 'ko-KR', '아마존에서 목표로 하는 다음 제품의 더 많은 판매를 얻기 위해 10개의 고유한 제품 제목을 작성하십시오.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 기사의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2702, '74', 'ms-MY', 'Tulis 10 tajuk produk unik untuk mendapatkan lebih banyak jualan di Amazon untuk produk berikut yang disasarkan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara artikel mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2703, '74', 'nb-NO', 'Skriv 10 unike produkttitler for å få flere salg på Amazon av følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i artikkelen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2704, '74', 'pl-PL', 'Napisz 10 unikalnych tytułów produktów, aby uzyskać więcej sprzedaży na Amazon następującego produktu, do którego jest skierowany:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton artykułu musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2705, '74', 'pt-PT', 'Escreva 10 títulos de produtos exclusivos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2706, '74', 'ru-RU', 'Напишите 10 уникальных названий продуктов, чтобы увеличить продажи на Amazon следующего продукта, предназначенного для:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон статьи должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2707, '74', 'es-ES', 'Escriba 10 títulos de productos únicos para obtener más ventas en Amazon del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del artículo debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2708, '74', 'sv-SE', 'Skriv 10 unika produkttitlar för att få fler försäljningar på Amazon av följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i artikeln måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2709, '74', 'tr-TR', 'Hedeflenen aşağıdaki üründen Amazon\'da daha fazla satış elde etmek için 10 benzersiz ürün başlığı yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Makalenin ses tonu şu şekilde olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2710, '74', 'pt-BR', 'Escreva 10 títulos de produtos exclusivos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2711, '74', 'ro-RO', 'Scrieți 10 titluri de produse unice pentru a câștiga mai multe vânzări pe Amazon pentru următorul produs vizat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii articolului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2712, '74', 'vi-VN', 'Viết 10 tiêu đề sản phẩm độc đáo để bán được nhiều hơn trên Amazon cho sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của bài viết phải:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2713, '74', 'sw-KE', 'Andika majina 10 ya kipekee ya bidhaa ili kupata mauzo zaidi kwenye Amazon ya bidhaa zifuatazo zinazolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya makala lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2714, '74', 'sl-SI', 'Napišite 10 edinstvenih naslovov izdelkov, da pridobite večjo prodajo na Amazonu za naslednji izdelek, ki je namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2715, '74', 'th-TH', 'เขียนชื่อผลิตภัณฑ์ที่ไม่ซ้ำกัน 10 รายการเพื่อเพิ่มยอดขายใน Amazon ของผลิตภัณฑ์ต่อไปนี้:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของบทความต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2716, '74', 'uk-UA', 'Напишіть 10 унікальних назв продукту, щоб отримати більше продажів на Amazon наступного продукту, на який націлено:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу статті повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2717, '74', 'lt-LT', 'Parašykite 10 unikalių produktų pavadinimų, kad „Amazon“ daugiau parduotų toliau nurodytų produktų:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Straipsnio balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2718, '74', 'bg-BG', 'Напишете 10 уникални продуктови заглавия, за да спечелите повече продажби в Amazon на следния целеви продукт:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на статията трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2719, '75', 'en-US', 'Write 10 advantages and features to gain more sells on Amazon of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the article must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2720, '75', 'ar-AE', 'اكتب 10 مزايا وميزات لكسب المزيد من عمليات البيع على Amazon للمنتج التالي المستهدف:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت المقال:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2721, '75', 'cmn-CN', '寫下 10 個優勢和特點,以在亞馬遜上獲得更多針對以下產品的銷售:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 文章的語氣應該是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2722, '75', 'hr-HR', 'Napišite 10 prednosti i značajki kako biste ostvarili veću prodaju na Amazonu sljedećeg ciljanog proizvoda:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2723, '75', 'cs-CZ', 'Napište 10 výhod a funkcí, abyste získali více prodejů na Amazonu následujícího produktu:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu článku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2724, '75', 'da-DK', 'Skriv 10 fordele og funktioner for at få flere salg på Amazon af følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tonen i artiklen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2725, '75', 'nl-NL', 'Schrijf 10 voordelen en functies op om meer verkopen op Amazon te krijgen van het volgende beoogde product:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De toon van het artikel moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2726, '75', 'et-EE', 'Kirjutage 10 eelist ja funktsiooni, et saada Amazonis rohkem müüki järgmistele mõeldud toodetele:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Artikli hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2727, '75', 'fi-FI', 'Kirjoita 10 etua ja ominaisuutta saadaksesi enemmän myyntiä Amazonissa seuraavista tuotteista:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Artikkelin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2728, '75', 'fr-FR', 'Rédigez 10 avantages et fonctionnalités pour obtenir plus de ventes sur Amazon du produit suivant destiné à:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix de l\'article doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:50'), +(2729, '75', 'de-DE', 'Schreiben Sie 10 Vorteile und Funktionen auf, um bei Amazon mehr Verkäufe des folgenden Produkts zu erzielen:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Artikels muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2730, '75', 'el-GR', 'Γράψτε 10 πλεονεκτήματα και χαρακτηριστικά για να κερδίσετε περισσότερες πωλήσεις στο Amazon του παρακάτω προϊόντος στο οποίο στοχεύουν:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του άρθρου πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2731, '75', 'he-IL', 'כתוב 10 יתרונות ותכונות כדי להשיג יותר מכירות באמזון של המוצר הבא שמיועד אליו:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של המאמר חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2732, '75', 'hi-IN', 'निम्नलिखित उत्पाद के Amazon पर अधिक बिक्री हासिल करने के लिए 10 फायदे और विशेषताएं लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n लेख का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2733, '75', 'hu-HU', 'Írjon 10 előnyt és funkciót, amelyekkel több eladást érhet el az Amazonon a következő, megcélzott termékből:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n A cikk hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2734, '75', 'is-IS', 'Skrifaðu 10 kosti og eiginleika til að ná meiri sölu á Amazon á eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í greininni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2735, '75', 'id-ID', 'Tulis 10 keunggulan dan fitur untuk mendapatkan lebih banyak penjualan di Amazon dari produk berikut yang ditujukan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara artikel harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2736, '75', 'it-IT', 'Scrivi 10 vantaggi e caratteristiche per ottenere più vendite su Amazon del seguente prodotto mirato:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell\'articolo deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2737, '75', 'ja-JP', '次の商品を Amazon でより多く売るための 10 の利点と特徴を書いてください。:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 記事の口調は次のようにする必要があります。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2738, '75', 'ko-KR', '아마존에서 다음 제품을 더 많이 판매할 수 있는 10가지 장점과 기능을 작성하십시오.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 기사의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2739, '75', 'ms-MY', 'Tulis 10 kelebihan dan ciri untuk mendapatkan lebih banyak jualan di Amazon bagi produk berikut yang disasarkan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara artikel mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2740, '75', 'nb-NO', 'Skriv 10 fordeler og funksjoner for å få flere salg på Amazon av følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i artikkelen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2741, '75', 'pl-PL', 'Napisz 10 zalet i funkcji, aby uzyskać więcej sprzedaży na Amazon następującego produktu, do którego jest skierowany:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton artykułu musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2742, '75', 'pt-PT', 'Escreva 10 vantagens e recursos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2743, '75', 'ru-RU', 'Напишите 10 преимуществ и функций, чтобы увеличить продажи на Amazon следующего продукта, предназначенного для:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон статьи должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2744, '75', 'es-ES', 'Escriba 10 ventajas y características para ganar más ventas en Amazon del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del artículo debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2745, '75', 'sv-SE', 'Skriv 10 fördelar och funktioner för att få fler försäljningar på Amazon av följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i artikeln måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2746, '75', 'tr-TR', 'Hedeflenen aşağıdaki üründen Amazon\'da daha fazla satış elde etmek için 10 avantaj ve özellik yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Makalenin ses tonu şu şekilde olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2747, '75', 'pt-BR', 'Escreva 10 vantagens e recursos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2748, '75', 'ro-RO', 'Scrieți 10 avantaje și caracteristici pentru a obține mai multe vânzări pe Amazon pentru următorul produs vizat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii articolului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2749, '75', 'vi-VN', 'Viết 10 ưu điểm và tính năng để bán được nhiều hơn trên Amazon của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của bài viết phải:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2750, '75', 'sw-KE', 'Andika faida na vipengele 10 ili kupata mauzo zaidi kwenye Amazon ya bidhaa zifuatazo zinazolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya makala lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2751, '75', 'sl-SI', 'Napišite 10 prednosti in lastnosti, s katerimi boste dosegli večjo prodajo na Amazonu za naslednji izdelek, ki je namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2752, '75', 'th-TH', 'เขียนข้อดีและคุณสมบัติ 10 ข้อเพื่อเพิ่มยอดขายใน Amazon ของผลิตภัณฑ์ต่อไปนี้:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของบทความต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2753, '75', 'uk-UA', 'Напишіть 10 переваг і особливостей, щоб отримати більше продажів на Amazon наступного продукту, націленого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу статті повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2754, '75', 'lt-LT', 'Parašykite 10 pranašumų ir savybių, kad „Amazon“ būtų daugiau parduota toliau nurodytas produktas:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Straipsnio balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2755, '75', 'bg-BG', 'Напишете 10 предимства и функции, за да спечелите повече продажби в Amazon на следния продукт, към който сте насочени:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на статията трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2756, '76', 'en-US', 'Write a creative advertisement idea at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the article must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2757, '76', 'ar-AE', 'اكتب فكرة إعلان إبداعي في:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت المقال:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2758, '76', 'cmn-CN', '撰寫創意廣告創意:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品說明:\n ##description## \n\n 這篇文章的聲音一定是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2759, '76', 'hr-HR', 'Napišite kreativnu ideju za oglas na:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2760, '76', 'cs-CZ', 'Napište nápad na kreativní reklamu na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu článku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2761, '76', 'da-DK', 'Skriv en kreativ annonceidé på:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tonen i artiklen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2762, '76', 'nl-NL', 'Schrijf een creatief advertentie-idee op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De toon van het artikel moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2763, '76', 'et-EE', 'Kirjutage loominguline reklaamiidee aadressil:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Artikli hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2764, '76', 'fi-FI', 'Kirjoita luova mainosidea osoitteessa:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Artikkelin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2765, '76', 'fr-FR', 'Rédigez une idée de publicité créative sur:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix de l\'article doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2766, '76', 'de-DE', 'Schreiben Sie eine kreative Werbeidee unter:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Artikels muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2767, '76', 'el-GR', 'Γράψτε μια δημιουργική ιδέα διαφήμισης στο:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του άρθρου πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2768, '76', 'he-IL', 'כתוב רעיון פרסומת יצירתי ב:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של המאמר חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2769, '76', 'hi-IN', 'पर एक रचनात्मक विज्ञापन विचार लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n Product description:\n ##description## \n\n लेख का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2770, '76', 'hu-HU', 'Írjon kreatív hirdetési ötletet a címen:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n A cikk hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2771, '76', 'is-IS', 'Skrifaðu skapandi auglýsingahugmynd á:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í greininni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2772, '76', 'id-ID', 'Tulis ide iklan kreatif di:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara artikel harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2773, '76', 'it-IT', 'Scrivi un\'idea pubblicitaria creativa su:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell\'articolo deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2774, '76', 'ja-JP', '創造的な広告のアイデアを次の場所に書いてください:\n\n ##audience## \n\n 商品名:\n ##title## \n\n Product description:\n ##description## \n\n 記事の口調は次のようにする必要があります。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2775, '76', 'ko-KR', '창의적인 광고 아이디어를 작성하세요.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 製品説明:\n ##description## \n\n 기사의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2776, '76', 'ms-MY', 'Tulis idea iklan kreatif di:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara artikel mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2777, '76', 'nb-NO', 'Skriv en kreativ annonseidé på:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i artikkelen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2778, '76', 'pl-PL', 'Napisz kreatywny pomysł na reklamę na:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton artykułu musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2779, '76', 'pt-PT', 'Escreva uma ideia de anúncio criativo em:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2780, '76', 'ru-RU', 'Напишите креативную рекламную идею на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон статьи должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2781, '76', 'es-ES', 'Escribe una idea publicitaria creativa en:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del artículo debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2782, '76', 'sv-SE', 'Skriv en kreativ annonsidé på:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i artikeln måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2783, '76', 'tr-TR', 'yaratıcı bir reklam fikri yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Makalenin ses tonu şu şekilde olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2784, '76', 'pt-BR', 'Escreva uma ideia de anúncio criativo em:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2785, '76', 'ro-RO', 'Scrie o idee de publicitate creativă la:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii articolului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2786, '76', 'vi-VN', 'Viết ý tưởng quảng cáo sáng tạo tại:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của bài viết phải:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2787, '76', 'sw-KE', 'Andika wazo la tangazo la ubunifu kwenye:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya makala lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2788, '76', 'sl-SI', 'Napišite kreativno oglasno idejo na:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2789, '76', 'th-TH', 'เขียนไอเดียโฆษณาสร้างสรรค์ได้ที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของบทความต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2790, '76', 'uk-UA', 'Напишіть креативну рекламну ідею на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу статті повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2791, '76', 'lt-LT', 'Parašykite kūrybinę reklamos idėją adresu:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Straipsnio balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2792, '76', 'bg-BG', 'Напишете креативна идея за реклама на:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на статията трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2793, '77', 'en-US', 'Write creative start up idea for the following:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2794, '77', 'ar-AE', 'اكتب فكرة بدء إبداعية لما يلي:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2795, '77', 'cmn-CN', '撰寫創意起始構想,以取得下列項目:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2796, '77', 'hr-HR', 'Napišite kreativnu početnu ideju za sljedeće:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2797, '77', 'cs-CZ', 'Napište kreativní počáteční nápad pro následující:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2798, '77', 'da-DK', 'Skriv kreativ start-up idé til følgende:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2799, '77', 'nl-NL', 'Schrijf een creatief opstartidee voor het volgende:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2800, '77', 'et-EE', 'Kirjutage loov käivitamise idee järgmiseks:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2801, '77', 'fi-FI', 'Kirjoita luova aloitusidea seuraavaa varten:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2802, '77', 'fr-FR', 'Rédigez une idée de démarrage créative pour les éléments suivants:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2803, '77', 'de-DE', 'Schreiben Sie eine kreative Startup-Idee für Folgendes:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2804, '77', 'el-GR', 'Γράψτε μια δημιουργική ιδέα εκκίνησης για τα παρακάτω:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2805, '77', 'he-IL', 'כתוב רעיון התחלה יצירתי עבור הדברים הבאים:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2806, '77', 'hi-IN', 'निम्नलिखित के लिए रचनात्मक स्टार्ट अप विचार लिखें:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2807, '77', 'hu-HU', 'Írjon kreatív indulási ötletet a következőkhöz:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2808, '77', 'is-IS', 'Skrifaðu skapandi upphafshugmynd fyrir eftirfarandi:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2809, '77', 'id-ID', 'Tulis ide awal kreatif untuk berikut:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2810, '77', 'it-IT', 'Scrivi un\'idea di avvio creativa per quanto segue:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2811, '77', 'ja-JP', '次のクリエイティブなスタートアップのアイデアを書いてください:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2812, '77', 'ko-KR', '다음에 대한 창의적인 시작 아이디어를 작성하십시오.:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2813, '77', 'ms-MY', 'Tulis idea permulaan kreatif untuk perkara berikut:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2814, '77', 'nb-NO', 'Skriv kreativ oppstartside for følgende:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2815, '77', 'pl-PL', 'Napisz kreatywny pomysł na rozpoczęcie działalności w następujący sposób:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2816, '77', 'pt-PT', 'Escreva uma ideia criativa de inicialização para o seguinte:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2817, '77', 'ru-RU', 'Напишите творческую идею стартапа для следующего:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2818, '77', 'es-ES', 'Escriba una idea creativa de puesta en marcha para lo siguiente:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2819, '77', 'sv-SE', 'Skriv en kreativ startidé för följande:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2820, '77', 'tr-TR', 'Aşağıdakiler için yaratıcı başlangıç fikri yazın:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2821, '77', 'pt-BR', 'Escreva uma ideia criativa de inicialização para o seguinte:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2822, '77', 'ro-RO', 'Scrieți o idee creativă de pornire pentru următoarele:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2823, '77', 'vi-VN', 'Viết ý tưởng khởi nghiệp sáng tạo cho phần sau:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2824, '77', 'sw-KE', 'Andika wazo bunifu la kuanzisha kwa yafuatayo:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2825, '77', 'sl-SI', 'Napišite kreativno začetno idejo za naslednje:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2826, '77', 'th-TH', 'เขียนแนวคิดเริ่มต้นที่สร้างสรรค์สำหรับสิ่งต่อไปนี้:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2827, '77', 'uk-UA', 'Напишіть творчу ідею запуску для наступного:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2828, '77', 'lt-LT', 'Parašykite kūrybinės pradžios idėją šiam tikslui:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2829, '77', 'bg-BG', 'Напишете творческа стартова идея за следното:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2830, '78', 'en-US', 'generator job post description for the following position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2831, '78', 'ar-AE', 'وصف وظيفة المولد للوظيفة التالية : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2832, '78', 'cmn-CN', '下列位置的產生器工作後置說明 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2833, '78', 'hr-HR', 'generator opis radnog mjesta za sljedeću poziciju : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2834, '78', 'cs-CZ', 'generátor popisu pracovní pozice pro následující pozici : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2835, '78', 'da-DK', 'generator stillingsbeskrivelse for følgende stilling : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2836, '78', 'nl-NL', 'generator functiebeschrijving voor de volgende functie : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2837, '78', 'et-EE', 'generaatori tööpostituse kirjeldus järgmise ametikoha jaoks : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2838, '78', 'fi-FI', 'generaattorin työpaikan kuvaus seuraavalle työlle : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2839, '78', 'fr-FR', 'générateur de description de poste pour le poste suivant : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2840, '78', 'de-DE', 'Beschreibung des Generatorjobs für die folgende Position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2841, '78', 'el-GR', 'περιγραφή θέσης εργασίας γεννήτριας για την παρακάτω θέση : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2842, '78', 'he-IL', 'תיאור פוסט המשרה של מחולל עבור התפקיד הבא : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2843, '78', 'hi-IN', 'निम्नलिखित पद के लिए जेनरेटर जॉब पोस्ट विवरण : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2844, '78', 'hu-HU', 'generátor állásleírás a következő pozícióhoz : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2845, '78', 'is-IS', 'lýsing á starfspósti fyrir eftirfarandi stöðu : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2846, '78', 'id-ID', 'deskripsi lowongan pekerjaan generator untuk posisi berikut : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2847, '78', 'it-IT', 'descrizione dell\'annuncio di lavoro del generatore per la seguente posizione : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2848, '78', 'ja-JP', '次のポジションのジェネレーターの求人説明 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2849, '78', 'ko-KR', '다음 위치에 대한 생성기 작업 게시물 설명 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2850, '78', 'ms-MY', 'penerangan jawatan penjana untuk jawatan berikut : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2851, '78', 'nb-NO', 'generator stillingsbeskrivelse for følgende stilling : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2852, '78', 'pl-PL', 'generator opis stanowiska pracy dla następującego stanowiska : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2853, '78', 'pt-PT', 'descrição do posto de trabalho do gerador para a seguinte posição : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2854, '78', 'ru-RU', 'описание должности генератора для следующей должности : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2855, '78', 'es-ES', 'descripción del puesto de trabajo del generador para el siguiente puesto : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2856, '78', 'sv-SE', 'generator arbetsinläggsbeskrivning för följande position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2857, '78', 'tr-TR', 'Aşağıdaki pozisyon için jeneratör iş ilanı açıklaması : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2858, '78', 'pt-BR', 'descrição do posto de trabalho do gerador para a seguinte posição : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2859, '78', 'ro-RO', 'descrierea postului de generator pentru următorul post : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2860, '78', 'vi-VN', 'mô tả bài đăng công việc máy phát điện cho vị trí sau : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2861, '78', 'sw-KE', 'maelezo ya chapisho la kazi ya jenereta kwa nafasi ifuatayo : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2862, '78', 'sl-SI', 'generator opis delovnega mesta za naslednje delovno mesto : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2863, '78', 'th-TH', 'รายละเอียดประกาศรับสมัครงานสำหรับตำแหน่งต่อไปนี้ : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2864, '78', 'uk-UA', 'генератор опис посади для наступної посади : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2865, '78', 'lt-LT', 'generatoriaus darbo etato aprašymas šiai pozicijai : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2866, '78', 'bg-BG', 'генератор описание на длъжността за следната позиция : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2867, '79', 'en-US', 'generator Resume for the following position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2868, '79', 'ar-AE', 'مولد يستأنف للوظيفة التالية : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2869, '79', 'cmn-CN', '產生器回復下列位置 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2870, '79', 'hr-HR', 'generator Životopis za sljedeću poziciju : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2871, '79', 'cs-CZ', 'generátor Obnovit pro následující pozici : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2872, '79', 'da-DK', 'generator Genoptag for følgende position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2873, '79', 'nl-NL', 'generator CV voor de volgende functie : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2874, '79', 'et-EE', 'generaator Jätka järgmisel ametikohal : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2875, '79', 'fi-FI', 'generaattori Jatka seuraavaan kohtaan : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2876, '79', 'fr-FR', 'générateur CV pour le poste suivant : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2877, '79', 'de-DE', 'Generator Lebenslauf für die folgende Position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2878, '79', 'el-GR', 'γεννήτρια Συνεχίστε για την παρακάτω θέση : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2879, '79', 'he-IL', 'גנרטור קורות חיים לתפקיד הבא : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2880, '79', 'hi-IN', 'जनरेटर निम्नलिखित स्थिति के लिए फिर से शुरू करें : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2881, '79', 'hu-HU', 'generátor Folytatás a következő pozícióhoz : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2882, '79', 'is-IS', 'rafall Haltu áfram fyrir eftirfarandi stöðu : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2883, '79', 'id-ID', 'generator Lanjutkan untuk posisi berikut : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2884, '79', 'it-IT', 'generatore Riprendi per la posizione successiva : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2885, '79', 'ja-JP', '発電機次のポジションの再開 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2886, '79', 'ko-KR', '다음 위치에 대한 발전기 이력서 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2887, '79', 'ms-MY', 'generator Resume untuk kedudukan berikut : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2888, '79', 'nb-NO', 'generator Fortsett for følgende posisjon : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2889, '79', 'pl-PL', 'generator Wznów dla następującego stanowiska : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2890, '79', 'pt-PT', 'gerador Currículo para a seguinte posição : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(2891, '79', 'ru-RU', 'генератор Резюме на следующую позицию : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2892, '79', 'es-ES', 'curriculum vitae del generador para la siguiente posición : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2893, '79', 'sv-SE', 'generator Återuppta för följande position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2894, '79', 'tr-TR', 'Jeneratör Aşağıdaki konum için devam ettirin : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2895, '79', 'pt-BR', 'gerador Currículo para a seguinte posição : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2896, '79', 'ro-RO', 'generator Reluați pentru următoarea poziție : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2897, '79', 'vi-VN', 'Trình tạo Tiếp tục cho vị trí sau : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2898, '79', 'sw-KE', 'Jenereta Rejea kwa nafasi ifuatayo : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2899, '79', 'sl-SI', 'generator Življenjepis za naslednje delovno mesto : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2900, '79', 'th-TH', 'เครื่องกำเนิด Resume สำหรับตำแหน่งต่อไปนี้ : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2901, '79', 'uk-UA', 'generator Резюме на наступну посаду : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2902, '79', 'lt-LT', 'generatorius Tęskite šią poziciją : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2903, '79', 'bg-BG', 'генератор Резюме за следната позиция : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2904, '80', 'en-US', 'Write creative recipe for the following dish :\n\n ##description###', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2905, '80', 'ar-AE', 'اكتب وصفة إبداعية للطبق التالي:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2906, '80', 'cmn-CN', '为下列菜肴写出创意食谱:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2907, '80', 'hr-HR', 'Napiši kreativni recept za sljedeće jelo:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2908, '80', 'cs-CZ', 'Napište kreativní recept na následující jídlo:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2909, '80', 'da-DK', 'Skriv kreativ opskrift på følgende ret:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2910, '80', 'nl-NL', 'Schrijf creatief recept voor het volgende gerecht:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2911, '80', 'et-EE', 'Kirjutage järgmise roa loominguline retsept:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2912, '80', 'fi-FI', 'Kirjoita luova resepti seuraavaan ruokalajiin:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2913, '80', 'fr-FR', 'Écrivez une recette créative pour le plat suivant:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2914, '80', 'de-DE', 'Schreiben Sie ein kreatives Rezept für das folgende Gericht:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2915, '80', 'el-GR', 'Γράψε δημιουργική συνταγή για το παρακάτω πιάτο:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2916, '80', 'he-IL', 'כתבו מתכון יצירתי למנה הבאה:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2917, '80', 'hi-IN', 'निम्नलिखित व्यंजन के लिए रचनात्मक व्यंजन विधि लिखिए:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2918, '80', 'hu-HU', 'Írj kreatív receptet a következő ételhez!:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2919, '80', 'is-IS', 'Skrifaðu skapandi uppskrift að eftirfarandi rétti:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2920, '80', 'id-ID', 'Tulis resep kreatif untuk hidangan berikut:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2921, '80', 'it-IT', 'Scrivi una ricetta creativa per il seguente piatto:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2922, '80', 'ja-JP', '次の料理の独創的なレシピを書いてください:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2923, '80', 'ko-KR', '다음 요리에 대한 독창적인 레시피 작성:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2924, '80', 'ms-MY', 'Tulis resipi kreatif untuk hidangan berikut:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2925, '80', 'nb-NO', 'Skriv kreativ oppskrift på følgende rett:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2926, '80', 'pl-PL', 'Napisz kreatywny przepis na poniższe danie:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2927, '80', 'pt-PT', 'Escreva uma receita criativa para o seguinte prato:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2928, '80', 'ru-RU', 'Напишите креативный рецепт следующего блюда:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2929, '80', 'es-ES', 'Escribe una receta creativa para el siguiente plato.:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2930, '80', 'sv-SE', 'Skriv kreativt recept för följande maträtt:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2931, '80', 'tr-TR', 'Aşağıdaki yemek için yaratıcı bir tarif yazın:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2932, '80', 'pt-BR', 'Escreve uma receita criativa para o seguinte prato:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2933, '80', 'ro-RO', 'Scrieți o rețetă creativă pentru următorul fel de mâncare:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2934, '80', 'vi-VN', 'Viết công thức sáng tạo cho món ăn sau:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2935, '80', 'sw-KE', 'Andika kichocheo cha ubunifu kwa sahani ifuatayo:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2936, '80', 'sl-SI', 'Napišite kreativen recept za naslednjo jed:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2937, '80', 'th-TH', 'เขียนสูตรสร้างสรรค์สำหรับอาหารจานต่อไปนี้:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2938, '80', 'uk-UA', 'Напишіть творчий рецепт наступної страви:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2939, '80', 'lt-LT', 'Parašykite kūrybinį šio patiekalo receptą:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2940, '80', 'bg-BG', 'Напишете творческа рецепта за следното ястие:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2941, '81', 'en-US', 'Write creative poetry for the following:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2942, '81', 'ar-AE', 'اكتب شعرًا إبداعيًا لما يلي:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2943, '81', 'cmn-CN', '为以下创作诗歌:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2944, '81', 'hr-HR', 'Napišite kreativnu poeziju za sljedeće:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2945, '81', 'cs-CZ', 'Napište kreativní poezii pro následující:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2946, '81', 'da-DK', 'Skriv kreativ poesi til følgende:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2947, '81', 'nl-NL', 'Schrijf creatieve poëzie voor het volgende:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2948, '81', 'et-EE', 'Kirjutage loomingulist luulet järgmiste jaoks:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2949, '81', 'fi-FI', 'Kirjoita luovaa runoutta seuraavaa varten:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2950, '81', 'fr-FR', 'Écrivez de la poésie créative pour les éléments suivants:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2951, '81', 'de-DE', 'Schreiben Sie kreative Gedichte für Folgendes:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2952, '81', 'el-GR', 'Γράψε δημιουργική ποίηση για τα παρακάτω:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2953, '81', 'he-IL', ' כתבו שירה יצירתית עבור הבאים:\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2954, '81', 'hi-IN', 'निम्नलिखित के लिए रचनात्मक कविताएँ लिखिए:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2955, '81', 'hu-HU', 'Írj kreatív verset a következőkhöz!:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2956, '81', 'is-IS', 'Skrifaðu skapandi ljóð fyrir eftirfarandi:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2957, '81', 'id-ID', 'Tulis puisi kreatif untuk berikut ini:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2958, '81', 'it-IT', 'Scrivi poesie creative per quanto segue:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2959, '81', 'ja-JP', '以下のために創造的な詩を書いてください:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2960, '81', 'ko-KR', '다음을 위해 창의적인 시를 쓰세요.:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2961, '81', 'ms-MY', 'Tulis puisi kreatif untuk perkara berikut:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2962, '81', 'nb-NO', 'Skriv kreativ poesi for følgende:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2963, '81', 'pl-PL', 'Napisz twórczą poezję dla następujących:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2964, '81', 'pt-PT', 'Escrever poesia criativa para os seguintes temas:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2965, '81', 'ru-RU', 'Пишите творческие стихи для следующих:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2966, '81', 'es-ES', 'Escribe poesía creativa para los siguientes:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2967, '81', 'sv-SE', 'Skriv kreativ poesi för följande:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2968, '81', 'tr-TR', 'Aşağıdakiler için yaratıcı şiir yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2969, '81', 'pt-BR', 'Escreva poesia criativa para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2970, '81', 'ro-RO', 'Scrie poezie creativă pentru următoarele:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2971, '81', 'vi-VN', 'Viết thơ sáng tạo cho những điều sau đây:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2972, '81', 'sw-KE', 'Andika mashairi ya ubunifu kwa yafuatayo:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2973, '81', 'sl-SI', 'Napišite ustvarjalno poezijo za naslednje:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2974, '81', 'th-TH', 'เขียนบทกวีสร้างสรรค์ต่อไปนี้:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2975, '81', 'uk-UA', 'Напишіть творчі вірші для наступного:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2976, '81', 'lt-LT', 'Rašykite kūrybinę poeziją šiems dalykams:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2977, '81', 'bg-BG', 'Напишете творческа поезия за следното:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2978, '82', 'en-US', 'Write progress Report for the following :\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2979, '82', 'ar-AE', 'اكتب تقرير التقدم لما يلي:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2980, '82', 'cmn-CN', '为以下项目撰写进度报告:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2981, '82', 'hr-HR', 'Napišite izvješće o napretku za sljedeće:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2982, '82', 'cs-CZ', 'Napište zprávu o pokroku pro následující:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2983, '82', 'da-DK', 'Skriv statusrapport for følgende:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2984, '82', 'nl-NL', 'Voortgangsrapport schrijven voor het volgende:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2985, '82', 'et-EE', 'Kirjutage edenemisaruanne järgmiste asjade jaoks:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2986, '82', 'fi-FI', 'Kirjoita edistymisraportti seuraavista asioista:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2987, '82', 'fr-FR', 'Rédiger un rapport d avancement pour les éléments suivants:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2988, '82', 'de-DE', 'Schreiben Sie einen Fortschrittsbericht für Folgendes:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2989, '82', 'el-GR', 'Γράψτε αναφορά προόδου για τα ακόλουθα:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2990, '82', 'he-IL', 'כתוב דוח התקדמות עבור הדברים הבאים:\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2991, '82', 'hi-IN', 'निम्नलिखित के लिए प्रगति रिपोर्ट लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2992, '82', 'hu-HU', 'Írjon előrehaladási jelentést a következőkhöz:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2993, '82', 'is-IS', 'Skrifaðu framvinduskýrslu fyrir eftirfarandi:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2994, '82', 'id-ID', 'Tulis laporan kemajuan untuk hal-hal berikut:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2995, '82', 'it-IT', 'Scrivi un rapporto sui progressi per quanto segue:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2996, '82', 'ja-JP', '以下の進捗レポートを作成します:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2997, '82', 'ko-KR', '다음에 대한 진행 보고서 작성:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2998, '82', 'ms-MY', 'Tulis Laporan kemajuan untuk perkara berikut:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(2999, '82', 'nb-NO', 'Skriv fremdriftsrapport for følgende:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(3000, '82', 'pl-PL', 'Napisz raport z postępów dla następujących:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(3001, '82', 'pt-PT', 'Redigir um relatório de progresso para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(3002, '82', 'ru-RU', 'Напишите отчет о проделанной работе для следующего:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(3003, '82', 'es-ES', 'Escriba el informe de progreso para lo siguiente:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(3004, '82', 'sv-SE', 'Skriv lägesrapport för följande:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(3005, '82', 'tr-TR', 'Aşağıdakiler için ilerleme raporu yaz:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(3006, '82', 'pt-BR', 'Escreva um relatório de progresso para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3007, '82', 'ro-RO', 'Scrieți un raport de progres pentru următoarele:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3008, '82', 'vi-VN', 'Viết báo cáo tiến độ cho phần sau:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3009, '82', 'sw-KE', 'Andika Ripoti ya maendeleo kwa yafuatayo:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3010, '82', 'sl-SI', 'Napišite poročilo o napredku za naslednje:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3011, '82', 'th-TH', 'เขียนรายงานความคืบหน้าต่อไปนี้ : \\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3012, '82', 'uk-UA', 'Напишіть звіт про прогрес для наступного:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3013, '82', 'lt-LT', 'Parašykite pažangos ataskaitą dėl šių dalykų:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3014, '82', 'bg-BG', 'Напишете отчет за напредъка за следното:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3015, '83', 'en-US', 'Write fictional story idea for the following:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3016, '83', 'ar-AE', 'اكتب فكرة قصة خيالية لما يلي:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3017, '83', 'cmn-CN', '为以下内容写虚构的故事构想:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3018, '83', 'hr-HR', 'Napišite ideju izmišljene priče za sljedeće:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3019, '83', 'cs-CZ', 'Napište myšlenku na fiktivní příběh pro následující:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3020, '83', 'da-DK', 'Skriv en fiktiv historieidé til følgende:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3021, '83', 'nl-NL', 'Schrijf een fictief verhaalidee voor het volgende:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3022, '83', 'et-EE', 'Kirjutage väljamõeldud loo idee järgmise jaoks:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3023, '83', 'fi-FI', 'Kirjoita kuvitteellinen tarinaidea seuraavaa varten:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3024, '83', 'fr-FR', 'Écrivez une idée d histoire fictive pour ce qui suit:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3025, '83', 'de-DE', 'Schreiben Sie eine fiktive Story-Idee für Folgendes:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3026, '83', 'el-GR', 'Γράψτε μια ιδέα φανταστικής ιστορίας για τα παρακάτω:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3027, '83', 'he-IL', 'כתוב רעיון לסיפור בדיוני עבור הדברים הבאים :\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3028, '83', 'hi-IN', 'निम्नलिखित के लिए काल्पनिक कहानी विचार लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3029, '83', 'hu-HU', 'Írj kitalált történetötletet a következőkhöz!:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3030, '83', 'is-IS', 'Skrifaðu skáldaða söguhugmynd fyrir eftirfarandi:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3031, '83', 'id-ID', 'Tuliskan ide cerita fiksi untuk berikut ini:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3032, '83', 'it-IT', 'Scrivi un idea per una storia immaginaria per quanto segue:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3033, '83', 'ja-JP', '以下の架空の物語のアイデアを書いてください:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3034, '83', 'ko-KR', '다음에 대한 허구의 이야기 아이디어 쓰기:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3035, '83', 'ms-MY', 'Tulis idea cerita fiksyen untuk yang berikut:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3036, '83', 'nb-NO', 'Skriv en fiktiv historieidé for følgende:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3037, '83', 'pl-PL', 'Napisz pomysł na fabułę opowiadania pt:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3038, '83', 'pt-PT', 'Escreve uma ideia de história de ficção para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3039, '83', 'ru-RU', 'Напишите идею вымышленного рассказа для следующего:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3040, '83', 'es-ES', 'Escribe una idea de historia ficticia para lo siguiente:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3041, '83', 'sv-SE', 'Skriv en fiktiv berättelseidé för följande:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3042, '83', 'tr-TR', 'Aşağıdakiler için kurgusal hikaye fikri yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3043, '83', 'pt-BR', 'Escreva uma ideia de história fictícia para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3044, '83', 'ro-RO', 'Scrieți o idee de poveste fictivă pentru următoarele:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3045, '83', 'vi-VN', 'Viết ý tưởng câu chuyện hư cấu cho những điều sau đây:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3046, '83', 'sw-KE', 'Andika wazo la hadithi ya kubuni kwa zifuatazo:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3047, '83', 'sl-SI', 'Napišite idejo izmišljene zgodbe za naslednje:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3048, '83', 'th-TH', 'เขียนแนวคิดเรื่องสมมติต่อไปนี้ : \\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3049, '83', 'uk-UA', 'Напишіть ідею художньої історії для наступного:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3050, '83', 'lt-LT', 'Parašykite išgalvotos istorijos idėją šiai temai:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3051, '83', 'bg-BG', 'Напишете идея за измислена история за следното:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3052, '84', 'en-US', 'Write 10 catchy webinar title ideas for the following :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3053, '84', 'ar-AE', 'اكتب 10 أفكار جذابة لعنوان ندوة عبر الإنترنت لما يلي:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3054, '84', 'cmn-CN', '为以下内容编写 10 个引人入胜的网络研讨会标题创意:\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3055, '84', 'hr-HR', 'Napišite 10 zanimljivih ideja za naslov webinara za sljedeće:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3056, '84', 'cs-CZ', 'Napište 10 chytlavých nápadů na název webináře pro následující:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3057, '84', 'da-DK', 'Skriv 10 iørefaldende webinartitelideer til følgende:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3058, '84', 'nl-NL', 'Schrijf 10 pakkende titelideeën voor webinars voor het volgende:\n\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3059, '84', 'et-EE', 'Kirjutage 10 meeldejäävat veebiseminari pealkirjaideed järgmiste asjade jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3060, '84', 'fi-FI', 'Kirjoita 10 tarttuvaa webinaarin otsikkoideaa seuraavista aiheista:\n\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3061, '84', 'fr-FR', 'Rédigez 10 idées de titres de webinaires accrocheurs pour les éléments suivants :\n\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3062, '84', 'de-DE', 'Schreiben Sie 10 einprägsame Webinar-Titelideen für Folgendes:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3063, '84', 'el-GR', 'Γράψτε 10 ελκυστικές ιδέες τίτλου διαδικτυακού σεμιναρίου για τα ακόλουθα:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3064, '84', 'he-IL', 'כתוב 10 רעיונות לכותרות סמינרים מקוונים עבור הדברים הבאים:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3065, '84', 'hi-IN', 'निम्नलिखित के लिए 10 आकर्षक वेबिनार शीर्षक विचार लिखें:\n\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3066, '84', 'hu-HU', 'Írj 10 fülbemászó webinárium címötletet a következőkhöz:\n\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3067, '84', 'is-IS', 'Skrifaðu 10 grípandi titilhugmyndir fyrir vefnámskeið fyrir eftirfarandi:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3068, '84', 'id-ID', 'Tulis 10 ide judul webinar yang menarik sebagai berikut :\n\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3069, '84', 'it-IT', 'Scrivi 10 accattivanti idee per titoli di webinar per quanto segue:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3070, '84', 'ja-JP', '以下について、キャッチーなウェビナー タイトルのアイデアを 10 個書いてください:\n\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3071, '84', 'ko-KR', '다음에 대한 10가지 흥미로운 웨비나 제목 아이디어를 작성하십시오:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3072, '84', 'ms-MY', 'Tulis 10 idea tajuk webinar yang menarik untuk perkara berikut:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3073, '84', 'nb-NO', 'Skriv 10 fengende webinartittelideer for følgende:\n\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3074, '84', 'pl-PL', 'Napisz 10 chwytliwych pomysłów na tytuły webinarów:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3075, '84', 'pt-PT', 'Escreva 10 ideias atraentes de títulos de webinar para o seguinte:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3076, '84', 'ru-RU', 'Напишите 10 броских идей названия вебинара для следующего:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3077, '84', 'es-ES', 'Escriba 10 ideas pegadizas para títulos de seminarios web para lo siguiente:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3078, '84', 'sv-SE', 'Skriv 10 fängslande webbinariumtitelidéer för följande:\n\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3079, '84', 'tr-TR', 'Aşağıdakiler için akılda kalıcı 10 web semineri başlığı fikri yazın:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3080, '84', 'pt-BR', 'Escreva 10 ideias de títulos de webinar atraentes para os seguintes itens:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3081, '84', 'ro-RO', 'Scrieți 10 idei captivante pentru titluri de webinar pentru următoarele:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3082, '84', 'vi-VN', 'Viết 10 ý tưởng tiêu đề hội thảo trên web hấp dẫn cho những nội dung sau:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3083, '84', 'sw-KE', 'Andika mawazo 10 ya kuvutia ya mada ya wavuti kwa yafuatayo:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3084, '84', 'sl-SI', 'Napišite 10 idej za privlačne naslove spletnih seminarjev za naslednje:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3085, '84', 'th-TH', 'เขียน 10 แนวคิดเกี่ยวกับหัวข้อการสัมมนาผ่านเว็บที่จับใจสำหรับสิ่งต่อไปนี้:\n\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3086, '84', 'uk-UA', 'Напишіть 10 цікавих ідей назви вебінару для наступного:\n\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3087, '84', 'lt-LT', 'Parašykite 10 patrauklių internetinio seminaro pavadinimo idėjų, skirtų šiems dalykams:\n\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3088, '84', 'bg-BG', 'Напишете 10 закачливи идеи за заглавия на уебинара за следното:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3089, '85', 'en-US', 'Write 10 interesting titles for snapchat ad of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n Title\'s length must be 30 characters\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3090, '85', 'ar-AE', 'اكتب 10 عناوين مثيرة للاهتمام لإعلان سناب شات للمنتج التالي الذي يهدف إلى:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n يجب أن يكون طول العنوان 30 حرفًا\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3091, '85', 'cmn-CN', '为以下产品的 snapchat 广告写 10 个有趣的标题,目的是:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n 标题长度必须为 30 个字符\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3092, '85', 'hr-HR', 'Napišite 10 zanimljivih naslova za snapchat oglas sljedećeg proizvoda namijenjenog:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n Duljina naslova mora biti 30 znakova\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3093, '85', 'cs-CZ', 'Napište 10 zajímavých titulků pro snapchat reklamu následujícího produktu zaměřeného na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n Délka názvu musí být 30 znaků\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3094, '85', 'da-DK', 'Skriv 10 interessante titler til snapchat-annoncer for følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n Titlens længde skal være på 30 tegn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3095, '85', 'nl-NL', 'Schrijf 10 interessante titels voor Snapchat-advertentie van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n De lengte van de titel moet 30 tekens zijn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3096, '85', 'et-EE', 'Kirjutage 10 huvitavat pealkirja järgmise toote snapchati reklaamile, mis on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n Pealkirja pikkus peab olema 30 tähemärki\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3097, '85', 'fi-FI', 'Kirjoita 10 mielenkiintoista otsikkoa seuraavan tuotteen snapchat-mainokseen, joka on tarkoitettu:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n Otsikon pituuden tulee olla 30 merkkiä\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3098, '85', 'fr-FR', 'Écrivez 10 titres intéressants pour l\'annonce Snapchat du produit suivant destiné à :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de voix du résultat doit être :\n ##tone_language## \n\n La longueur du titre doit être de 30 caractères\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3099, '85', 'de-DE', 'Schreiben Sie 10 interessante Titel für die Snapchat-Anzeige des folgenden Produkts mit der Zielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n Die Länge des Titels muss 30 Zeichen betragen\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3100, '85', 'el-GR', 'Γράψτε 10 ενδιαφέροντες τίτλους για τη διαφήμιση snapchat του παρακάτω προϊόντος με στόχο:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n Το μήκος του τίτλου πρέπει να είναι 30 χαρακτήρες\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3101, '85', 'he-IL', 'כתוב 10 כותרות מעניינות עבור מודעת Snapchat של המוצר הבא המיועדת ל:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n אורך הכותרת חייב להיות 30 תווים\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3102, '85', 'hi-IN', 'निम्नलिखित उत्पाद के स्नैपचैट विज्ञापन के लिए 10 दिलचस्प शीर्षक लिखें जिनका उद्देश्य है:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n शीर्षक की लंबाई 30 वर्ण होनी चाहिए\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3103, '85', 'hu-HU', 'Írjon 10 érdekes címet a következő termék snapchat-hirdetéséhez, amelynek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n A címnek 30 karakterből kell állnia\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3104, '85', 'is-IS', 'Skrifaðu 10 áhugaverða titla fyrir snapchat auglýsingu fyrir eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n Lengd titilsins verður að vera 30 stafir\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3105, '85', 'id-ID', 'Tulis 10 judul menarik untuk iklan snapchat produk berikut yang ditujukan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n Panjang judul harus 30 karakter\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3106, '85', 'it-IT', 'Scrivi 10 titoli interessanti per l\'annuncio snapchat del seguente prodotto mirato a:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n La lunghezza del titolo deve essere di 30 caratteri\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3107, '85', 'ja-JP', '次の製品のスナップチャット広告の興味深いタイトルを 10 個書いてください:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n タイトルの長さは 30 文字である必要があります\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3108, '85', 'ko-KR', '다음을 대상으로 하는 스냅챗 광고의 흥미로운 제목 10개를 작성하세요:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n 제목 길이는 30자여야 합니다\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3109, '85', 'ms-MY', 'Tulis 10 tajuk menarik untuk iklan snapchat produk berikut bertujuan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n Panjang tajuk mestilah 30 aksara\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3110, '85', 'nb-NO', 'Skriv 10 interessante titler for snapchat-annonsen for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n Tittelens lengde må være på 30 tegn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3111, '85', 'pl-PL', 'Napisz 10 ciekawych tytułów reklamy snapchat następującego produktu skierowanej do:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n Długość tytułu musi wynosić 30 znaków\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3112, '85', 'pt-PT', 'Escreva 10 títulos interessantes para o anúncio do Snapchat do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3113, '85', 'ru-RU', 'Напишите 10 интересных заголовков для рекламы в Snapchat следующего продукта, нацеленного на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n Длина заголовка должна быть 30 символов\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3114, '85', 'es-ES', 'Escriba 10 títulos interesantes para el anuncio de Snapchat del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n La longitud del título debe ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3115, '85', 'sv-SE', 'Skriv 10 intressanta titlar för snapchat-annons för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n Titelns längd måste vara 30 tecken\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3116, '85', 'tr-TR', 'Aşağıdaki ürünün Snapchat reklamı için 10 ilginç başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n Başlığın uzunluğu 30 karakter olmalıdır\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3117, '85', 'pt-BR', 'Escreva 10 títulos interessantes para o anúncio do snapchat do seguinte produto destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3118, '85', 'ro-RO', 'Scrieți 10 titluri interesante pentru reclame snapchat ale următorului produs destinat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n Lungimea titlului trebuie să fie de 30 de caractere\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3119, '85', 'vi-VN', 'Viết 10 tiêu đề thú vị cho quảng cáo snapchat của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n Độ dài của tiêu đề phải là 30 ký tự\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3120, '85', 'sw-KE', 'Andika mada 10 za kuvutia za tangazo la snapchat la bidhaa ifuatayo inayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n Urefu wa kichwa lazima uwe na vibambo 30\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(3121, '85', 'sl-SI', 'Napišite 10 zanimivih naslovov za snapchat oglas naslednjega izdelka, ki je namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3122, '85', 'th-TH', 'เขียน 10 ชื่อที่น่าสนใจสำหรับโฆษณา snapchat ของผลิตภัณฑ์ต่อไปนี้ซึ่งมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n ความยาวของชื่อเรื่องต้องมีความยาว 30 อักขระ\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3123, '85', 'uk-UA', 'Напишіть 10 цікавих назв для реклами snapchat наступного продукту, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n Довжина заголовка має бути 30 символів\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3124, '85', 'lt-LT', 'Parašykite 10 įdomių pavadinimų šio produkto „snapchat“ reklamai, skirtai:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n Pavadinimo ilgis turi būti 30 simbolių\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3125, '85', 'bg-BG', 'Напишете 10 интересни заглавия за snapchat реклама на следния продукт, насочен към::\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n Дължината на заглавието трябва да бъде 30 знака\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3126, '86', 'en-US', 'Write attention grabbing Shopify marketplace product description for:\n\n ##title## \n\nUse following keywords in the product description:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3127, '86', 'ar-AE', 'اكتب وصفًا لجذب الانتباه Shopify Marketplace وصف المنتج لـ:\n\n ##title## \n\n استخدم الكلمات الرئيسية التالية في وصف المنتج:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3128, '86', 'cmn-CN', '写下引人注目的 Shopify 市场产品描述:\n\n ##title## \n\n 在产品描述中使用以下关键字:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3129, '86', 'hr-HR', 'Napišite opis proizvoda Shopify marketplace koji privlači pažnju za:\n\n ##title## \n\n Koristite sljedeće ključne riječi u opisu proizvoda:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3130, '86', 'cs-CZ', 'Napište popis produktu na tržišti Shopify pro:\n\n ##title## \n\n V popisu produktu použijte následující klíčová slova:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3131, '86', 'da-DK', 'Skriv opmærksomhedsfangende Shopify markedsplads produktbeskrivelse for:\n\n ##title## \n\n Brug følgende nøgleord i produktbeskrivelsen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3132, '86', 'nl-NL', 'Schrijf de aandacht trekkende Shopify marktplaats productbeschrijving voor:\n\n ##title## \n\n Gebruik de volgende trefwoorden in de productbeschrijving:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3133, '86', 'et-EE', 'Kirjutage tähelepanu äratav Shopify turuplatsi tootekirjeldus:\n\n ##title## \n\n Kasutage tootekirjelduses järgmisi märksõnu:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3134, '86', 'fi-FI', 'Kirjoita huomiota herättävä Shopify Marketplace -tuotteen kuvaus:\n\n ##title## \n\n Käytä tuotekuvauksessa seuraavia avainsanoja:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3135, '86', 'fr-FR', 'Rédigez une description de produit accrocheuse sur le marché Shopify pour :\n\n ##title## \n\n Utilisez les mots clés suivants dans la description du produit :\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3136, '86', 'de-DE', 'Schreiben Sie eine aufmerksamkeitsstarke Produktbeschreibung für den Shopify-Marktplatz für:\n\n ##title## \n\n Verwenden Sie in der Produktbeschreibung folgende Schlüsselwörter:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3137, '86', 'el-GR', 'Γράψτε την περιγραφή προϊόντος της αγοράς Shopify για:\n\n ##title## \n\n Χρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του προϊόντος:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3138, '86', 'he-IL', 'כתוב תיאור המוצר של Shopify Marketplace למשוך תשומת לב עבור:\n\n ##title## \n\n השתמש במילות המפתח הבאות בתיאור המוצר:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3139, '86', 'hi-IN', 'ध्यान आकर्षित करने वाले लिखें Shopify मार्केटप्लेस के लिए उत्पाद विवरण:\n\n ##title## \n\n उत्पाद विवरण में निम्नलिखित कीवर्ड का प्रयोग करें:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3140, '86', 'hu-HU', 'Írjon figyelemfelkeltő Shopify piactér termékleírást a következőhöz:\n\n ##title## \n\n Használja a következő kulcsszavakat a termékleírásban:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3141, '86', 'is-IS', 'Skrifaðu athyglisverða vörulýsingu á Shopify markaðstorginu fyrir:\n\n ##title## \n\n Notaðu eftirfarandi lykilorð í vörulýsingunni:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3142, '86', 'id-ID', 'Tulis deskripsi produk pasar Shopify yang menarik perhatian untuk:\n\n ##title## \n\n Gunakan kata kunci berikut dalam deskripsi produk:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3143, '86', 'it-IT', 'Scrivi una descrizione del prodotto del marketplace Shopify che attiri l\'attenzione per:\n\n ##title## \n\n Usa le seguenti parole chiave nella descrizione del prodotto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3144, '86', 'ja-JP', '注目を集める Shopify マーケットプレイス製品の説明を次のように書きます:\n\n ##title## \n\n 製品説明には次のキーワードを使用します:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3145, '86', 'ko-KR', '관심을 끄는 Shopify 마켓플레이스 제품 설명 작성:\n\n ##title## \n\n 제품 설명에 다음 키워드를 사용하십시오:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3146, '86', 'ms-MY', 'Tulis penerangan produk pasaran Shopify yang menarik perhatian untuk:\n\n ##title## \n\n Gunakan kata kunci berikut dalam penerangan produk:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3147, '86', 'nb-NO', 'Skriv oppmerksomhetsfangende Shopify markedsplass produktbeskrivelse for:\n\n ##title## \n\n Bruk følgende nøkkelord i produktbeskrivelsen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3148, '86', 'pl-PL', 'Napisz przyciągający uwagę opis produktu Shopify marketplace dla:\n\n ##title## \n\n Użyj następujących słów kluczowych w opisie produktu:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3149, '86', 'pt-PT', 'Escreva uma descrição atraente do produto Shopify marketplace para:\n\n ##title## \n\n Use as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3150, '86', 'ru-RU', 'Напишите привлекающее внимание описание продукта торговой площадки Shopify для:\n\n ##title## \n\n В описании товара используйте следующие ключевые слова:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3151, '86', 'es-ES', 'Escriba una descripción del producto del mercado de Shopify que llame la atención para:\n\n ##title## \n\n Utilice las siguientes palabras clave en la descripción del producto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3152, '86', 'sv-SE', 'Skriv en uppmärksammad produktbeskrivning för Shopify marknadsplats för:\n\n ##title## \n\nAnvänd följande nyckelord i produktbeskrivningen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3153, '86', 'tr-TR', 'Aşağıdakiler için dikkat çekici Shopify ticaret sitesi ürün açıklamasını yazın:\n\n ##title## \n\n Ürün açıklamasında aşağıdaki anahtar kelimeleri kullanın:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3154, '86', 'pt-BR', 'Escreva uma descrição de produto do Shopify Marketplace que chame a atenção:\n\n ##title## \n\n Use as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3155, '86', 'ro-RO', 'Scrieți descrierea produsului Shopify marketplace pentru:\n\n ##title## \n\n Utilizați următoarele cuvinte cheie în descrierea produsului:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3156, '86', 'vi-VN', 'Viết mô tả sản phẩm thị trường Shopify thu hút sự chú ý cho:\n\n ##title## \n\n Sử dụng các từ khóa sau trong mô tả sản phẩm:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3157, '86', 'sw-KE', 'Andika umakini wa kuvutia maelezo ya bidhaa ya soko la Shopify kwa:\n\n ##title## \n\n Tumia maneno muhimu yafuatayo katika maelezo ya bidhaa:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3158, '86', 'sl-SI', 'Napišite opis izdelka Shopify marketplace, ki pritegne pozornost za:\n\n ##title## \n\n V opisu izdelka uporabite naslednje ključne besede:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3159, '86', 'th-TH', 'เขียนคำอธิบายผลิตภัณฑ์ตลาด Shopify ที่ดึงดูดความสนใจสำหรับ:\n\n ##title## \n\n ใช้คำหลักต่อไปนี้ในรายละเอียดสินค้า:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3160, '86', 'uk-UA', 'Напишіть опис продукту Shopify Marketplace, який приверне увагу:\n\n ##title## \n\n Використовуйте наступні ключові слова в описі товару:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3161, '86', 'lt-LT', 'Parašykite dėmesį patraukiantį Shopify prekyvietės produkto aprašymą:\n\n ##title## \n\n Produkto aprašyme naudokite šiuos raktinius žodžius:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3162, '86', 'bg-BG', 'Напишете грабващо вниманието описание на продукта на Shopify marketplace за:\n\n ##title## \n\n Използвайте следните ключови думи в описанието на продукта:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3163, '87', 'en-US', 'Write a personal bio which i can used at ##description## for myself \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3164, '87', 'ar-AE', 'اكتب سيرة ذاتية شخصية يمكنني استخدامها فيها ##description## لنفسي \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3165, '87', 'cmn-CN', '写一个我可以使用的个人简历 ##description## 为了我自己 \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3166, '87', 'hr-HR', 'Napiši osobnu biografiju koju mogu koristiti ##description## Za sebe \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3167, '87', 'cs-CZ', 'Napište osobní životopis, který mohu použít ##description## pro mě \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3168, '87', 'da-DK', 'Skriv en personlig biografi, som jeg kan bruge på ##description## for mig selv \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3169, '87', 'nl-NL', 'Schrijf een persoonlijke bio die ik kan gebruiken ##description## voor mezelf \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3170, '87', 'et-EE', 'Kirjutage isiklik biograafia, mida saan kasutada ##description## enda jaoks \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3171, '87', 'fi-FI', 'Kirjoita henkilökohtainen bio, jota voin käyttää ##description## itselleni \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3172, '87', 'fr-FR', 'Écrivez une biographie personnelle que je peux utiliser à ##description## pour moi-même \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3173, '87', 'de-DE', 'Schreiben Sie eine persönliche Biografie, die ich verwenden kann ##description## für mich \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3174, '87', 'el-GR', 'Γράψτε ένα προσωπικό βιογραφικό στο οποίο μπορώ να χρησιμοποιήσω ##description## για τον εαυτό μου \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3175, '87', 'he-IL', 'כתוב ביו אישי שבו אני יכול להשתמש: ##description## בשבילי \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3176, '87', 'hi-IN', 'एक व्यक्तिगत परिचय लिखें जिसका मैं उपयोग कर सकता हूं ##description## अपने आप के लिए \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3177, '87', 'hu-HU', 'Írj személyes életrajzot, amit fel tudok használni ##description## magamnak \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3178, '87', 'is-IS', 'Skrifaðu persónulega ævisögu sem ég get notað á ##description## fyrir mig \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3179, '87', 'id-ID', 'Tulis bio pribadi yang bisa saya gunakan ##description## untuk diriku \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3180, '87', 'it-IT', 'Scrivi una biografia personale che posso usare su ##description## per me \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3181, '87', 'ja-JP', 'で使用できる個人的な経歴を書きます ##description## 自分のため \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3182, '87', 'ko-KR', '내가 사용할 수있는 개인 약력 쓰기: ##description## 나 자신을 위해 \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3183, '87', 'ms-MY', 'Tulis bio peribadi yang boleh saya gunakan ##description## untuk diri saya sendiri \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3184, '87', 'nb-NO', 'Skriv en personlig biografi som jeg kan bruke på ##description## for meg selv \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3185, '87', 'pl-PL', 'Napisz osobistą biografię, z której będę mógł korzystać ##description## dla siebie \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3186, '87', 'pt-PT', 'Escreva uma biografia pessoal que eu possa usar em ##description## para mim \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3187, '87', 'ru-RU', 'Напишите личную биографию, которую я могу использовать в ##description## для меня \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3188, '87', 'es-ES', 'Escribe una biografía personal que pueda usar en ##description## para mí \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3189, '87', 'sv-SE', 'Skriv en personlig bio som jag kan använda på ##description## för mig själv \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3190, '87', 'tr-TR', 'Kullanabileceğim kişisel bir biyografi yaz ##description## kendim için \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3191, '87', 'pt-BR', 'Escreva uma biografia pessoal que eu possa usar em ##description## para mim mesmo \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3192, '87', 'ro-RO', 'Scrie o biografie personală pe care să o pot folosi ##description## pentru mine \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3193, '87', 'vi-VN', 'Viết tiểu sử cá nhân mà tôi có thể sử dụng tại ##description## cho bản thân mình \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3194, '87', 'sw-KE', 'Andika wasifu wa kibinafsi ambao ninaweza kutumia ##description## kwa ajili yangu mwenyewe \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3195, '87', 'sl-SI', 'Napišite osebni življenjepis, ki ga lahko uporabim ##description## zame \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3196, '87', 'th-TH', 'เขียนประวัติส่วนตัวที่ฉันสามารถใช้ได้ ##description## สำหรับตัวฉันเอง \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3197, '87', 'uk-UA', 'Напишіть особисту біографію, яку я можу використати ##description## для мене \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3198, '87', 'lt-LT', 'Parašykite asmeninę biografiją, kurią galėčiau panaudoti ##description## sau pačiam \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3199, '87', 'bg-BG', 'Напишете лична биография, която мога да използвам ##description## за мен \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3200, '88', 'en-US', 'Grab attention with catchy captions for this Pinterest post:\n\n ##description## \n\nTone of voice of the captions must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3201, '88', 'ar-AE', 'اجذب الانتباه من خلال التسميات التوضيحية الجذابة لمشاركة Pinterest هذه:\n\n ##description## \n\nيجب أن تكون نبرة صوت التعليقات:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3202, '88', 'cmn-CN', '用醒目的标题吸引注意力:\n\n ##description## \n\n字幕的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3203, '88', 'hr-HR', 'Privucite pozornost privlačnim opisima za ovu objavu na Pinterestu:\n\n ##description## \n\nTon glasa titlova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3204, '88', 'cs-CZ', 'Upoutejte pozornost chytlavými titulky k tomuto příspěvku na Pinterestu:\n\n ##description## \n\nTón hlasu titulků musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3205, '88', 'da-DK', 'Fang opmærksomhed med fængende billedtekster til dette Pinterest-indlæg:\n\n ##description## \n\nTone of voice af billedteksterne skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3206, '88', 'nl-NL', 'Trek de aandacht met pakkende bijschriften voor dit Pinterest-bericht:\n\n ##description## \n\nDe tone-of-voice van de onderschriften moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3207, '88', 'et-EE', 'Pöörake tähelepanu selle Pinteresti postituse meeldejäävate pealkirjadega:\n\n ##description## \n\nPealkirjade hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3208, '88', 'fi-FI', 'Herätä huomiota tämän Pinterest-julkaisun tarttuvilla kuvateksteillä:\n\n ##description## \n\nTekstityksen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3209, '88', 'fr-FR', 'Attirez l\'attention avec des légendes accrocheuses pour ce post Pinterest:\n\n ##description## \n\nLe ton de la voix des sous-titres doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3210, '88', 'de-DE', 'Machen Sie mit einprägsamen Bildunterschriften für diesen Pinterest-Beitrag auf sich aufmerksam:\n\n ##description## \n\nDer Tonfall der Untertitel muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3211, '88', 'el-GR', 'Τραβήξτε την προσοχή με συναρπαστικές λεζάντες για αυτήν την ανάρτηση στο Pinterest:\n\n ##description## \n\nΟ τόνος της φωνής των λεζάντων πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3212, '88', 'he-IL', 'למשוך תשומת לב עם כיתובים קליטים לפוסט הזה בפינטרסט:\n\n ##description## \n\nטון הדיבור של הכתוביות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3213, '88', 'hi-IN', 'इस Pinterest पोस्ट के लिए आकर्षक कैप्शन के साथ ध्यान आकर्षित करें:\n\n ##description## \n\nकैप्शन की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3214, '88', 'hu-HU', 'Vedd fel a figyelmet fülbemászó feliratokkal ehhez a Pinterest-bejegyzéshez:\n\n ##description## \n\nA feliratok hangszínének ilyennek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3215, '88', 'is-IS', 'Gríptu athygli með grípandi myndatexta fyrir þessa Pinterest færslu:\n\n ##description## \n\nRöddtónn skjátextanna verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3216, '88', 'id-ID', 'Tarik perhatian dengan teks yang menarik untuk postingan Pinterest ini:\n\n ##description## \n\nNada suara teks harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3217, '88', 'it-IT', 'Attira l\'attenzione con didascalie accattivanti per questo post di Pinterest:\n\n ##description## \n\nIl tono di voce delle didascalie deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3218, '88', 'ja-JP', 'この Pinterest の投稿にキャッチーなキャプションを付けて注目を集めましょう:\n\n ##description## \n\nキャプションの声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3219, '88', 'ko-KR', '이 Pinterest 게시물에 대한 눈길을 끄는 캡션으로 관심 끌기:\n\n ##description## \n\n자막의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3220, '88', 'ms-MY', 'Tarik perhatian dengan kapsyen menarik untuk siaran Pinterest ini:\n\n ##description## \n\nNada suara kapsyen mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3221, '88', 'nb-NO', 'Fang oppmerksomhet med fengende bildetekster for dette Pinterest-innlegget:\n\n ##description## \n\nTonefallet til bildetekstene må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3222, '88', 'pl-PL', 'Przyciągnij uwagę chwytliwymi napisami do tego posta na Pintereście:\n\n ##description## \n\nTon głosu napisów musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3223, '88', 'pt-PT', 'Chame a atenção com legendas cativantes para esta postagem do Pinterest:\n\n ##description## \n\nO tom de voz das legendas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3224, '88', 'ru-RU', 'Привлеките внимание броскими подписями к этому посту в Pinterest:\n\n ##description## \n\nТон голоса титров должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3225, '88', 'es-ES', 'Llame la atención con leyendas pegadizas para esta publicación de Pinterest:\n\n ##description## \n\nEl tono de voz de los subtítulos debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3226, '88', 'sv-SE', 'Fånga uppmärksamheten med catchy bildtexter för detta Pinterest-inlägg:\n\n ##description## \n\nTonen i rösten för bildtexterna måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3227, '88', 'tr-TR', 'Bu Pinterest gönderisi için akılda kalıcı altyazılarla dikkat çekin:\n\n ##description## \n\nAltyazıların ses tonu:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3228, '88', 'pt-BR', 'Grab attention with catchy captions for this Pinterest post:\n\n ##description## \n\nTone of voice of the captions must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3229, '88', 'ro-RO', 'Atrageți atenția cu subtitrări captivante pentru această postare pe Pinterest:\n\n ##description## \n\nTonul vocii subtitrărilor trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3230, '88', 'vi-VN', 'Thu hút sự chú ý với chú thích hấp dẫn cho bài đăng trên Pinterest này:\n\n ##description## \n\nGiọng điệu của phụ đề phải được:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3231, '88', 'sw-KE', 'Chukua tahadhari kwa manukuu ya kuvutia ya chapisho hili la Pinterest:\n\n ##description## \n\nToni ya sauti ya manukuu lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3232, '88', 'sl-SI', 'Pritegnite pozornost s privlačnimi napisi za to objavo na Pinterestu:\n\n ##description## \n\nTon glasu napisov mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3233, '88', 'th-TH', 'ดึงดูดความสนใจด้วยคำบรรยายที่จับใจสำหรับโพสต์ Pinterest นี้:\n\n ##description## \n\nน้ำเสียงของคำบรรยายต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3234, '88', 'uk-UA', 'Привертайте увагу привабливими підписами до цієї публікації на Pinterest:\n\n ##description## \n\nТон голосу титрів повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3235, '88', 'lt-LT', 'Patraukite dėmesį patraukliais šio Pinterest įrašo antraštėmis:\n\n ##description## \n\nSubtitrų balso tonas turi būti toks:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3236, '88', 'bg-BG', 'Грабнете вниманието със закачливи надписи за тази публикация в Pinterest:\n\n ##description## \n\nТонът на гласа на надписите трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3237, '89', 'en-US', 'Write 10 interesting titles for Pinterest post of the following:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n Title\'s length must be 30 characters\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3238, '89', 'ar-AE', 'اكتب 10 عناوين مثيرة للاهتمام لنشر Pinterest مما يلي:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n يجب أن يكون طول العنوان 30 حرفًا\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3239, '89', 'cmn-CN', '为以下 Pinterest 帖子写 10 个有趣的标题:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n 标题长度必须为 30 个字符\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3240, '89', 'hr-HR', 'Napišite 10 zanimivih naslovov za objavo na Pinterestu od naslednjih:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3241, '89', 'cs-CZ', 'Napište 10 zajímavých titulů pro následující příspěvek na Pinterestu:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n Délka názvu musí být 30 znaků\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3242, '89', 'da-DK', 'Skriv 10 interessante titler til Pinterest-indlæg af følgende:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n Titlens længde skal være på 30 tegn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3243, '89', 'nl-NL', 'Schrijf 10 interessante titels voor Pinterest post van het volgende:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n De lengte van de titel moet 30 tekens zijn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3244, '89', 'et-EE', 'Kirjutage järgmise Pinteresti postituse jaoks 10 huvitavat pealkirja:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n Pealkirja pikkus peab olema 30 tähemärki\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3245, '89', 'fi-FI', 'Kirjoita 10 mielenkiintoista otsikkoa seuraavista Pinterest-julkaisuista:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n Otsikon pituuden tulee olla 30 merkkiä\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3246, '89', 'fr-FR', 'Écrivez 10 titres intéressants pour la publication Pinterest des éléments suivants:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n La longueur du titre doit être de 30 caractères\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3247, '89', 'de-DE', 'Schreiben Sie 10 interessante Titel für den folgenden Pinterest-Beitrag:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n Die Länge des Titels muss 30 Zeichen betragen\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3248, '89', 'el-GR', 'Γράψε 10 ενδιαφέροντες τίτλους για την ανάρτηση στο Pinterest των παρακάτω:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n Το μήκος του τίτλου πρέπει να είναι 30 χαρακτήρες\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3249, '89', 'he-IL', 'כתוב 10 כותרות מעניינות לפוסט Pinterest של הבאים:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n אורך הכותרת חייב להיות 30 תווים\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3250, '89', 'hi-IN', 'निम्नलिखित में से Pinterest पोस्ट के लिए 10 रोचक शीर्षक लिखें:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n शीर्षक की लंबाई 30 वर्ण होनी चाहिए\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3251, '89', 'hu-HU', 'Írj 10 érdekes címet a következő Pinterest-bejegyzéshez:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n A címnek 30 karakterből kell állnia\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3252, '89', 'is-IS', 'Skrifaðu 10 áhugaverða titla fyrir Pinterest færslu af eftirfarandi:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n Lengd titilsins verður að vera 30 stafir\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3253, '89', 'id-ID', 'Tulis 10 judul menarik untuk postingan Pinterest berikut ini:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n Panjang judul harus 30 karakter\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3254, '89', 'it-IT', 'Scrivi 10 titoli interessanti per il post Pinterest di quanto segue:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n La lunghezza del titolo deve essere di 30 caratteri\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3255, '89', 'ja-JP', 'Pinterest の投稿に次の興味深いタイトルを 10 件書いてください:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n タイトルの長さは 30 文字である必要があります\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3256, '89', 'ko-KR', 'Pinterest 게시물에 다음과 같은 흥미로운 제목 10개를 작성하세요.:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n 제목 길이는 30자여야 합니다.\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3257, '89', 'ms-MY', 'Tulis 10 tajuk menarik untuk siaran Pinterest berikut:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n Panjang tajuk mestilah 30 aksara\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3258, '89', 'nb-NO', 'Skriv 10 interessante titler for Pinterest-innlegg av følgende:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n Tittelens lengde må være på 30 tegn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3259, '89', 'pl-PL', 'Napisz 10 interesujących tytułów dla posta na Pintereście z poniższych:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n Długość tytułu musi wynosić 30 znaków\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3260, '89', 'pt-PT', 'Escreva 10 títulos interessantes para a postagem no Pinterest do seguinte:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3261, '89', 'ru-RU', 'Напишите 10 интересных заголовков для публикации в Pinterest из следующих:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n Длина заголовка должна быть 30 символов.\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3262, '89', 'es-ES', 'Escriba 10 títulos interesantes para la publicación de Pinterest de lo siguiente:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n La longitud del título debe ser de 30 caracteres.\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3263, '89', 'sv-SE', 'Skriv 10 intressanta titlar för Pinterest-inlägg av följande:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n Titelns längd måste vara 30 tecken\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3264, '89', 'tr-TR', 'Aşağıdakilerden Pinterest gönderisi için 10 ilginç başlık yazın:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n Başlığın uzunluğu 30 karakter olmalıdır\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3265, '89', 'pt-BR', 'Escreva 10 títulos interessantes para a postagem no Pinterest do seguinte:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3266, '89', 'ro-RO', 'Scrie 10 titluri interesante pentru postarea Pinterest din următoarele:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n Lungimea titlului trebuie să fie de 30 de caractere\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3267, '89', 'vi-VN', 'Viết 10 tiêu đề thú vị cho bài đăng trên Pinterest sau đây:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n Độ dài của tiêu đề phải là 30 ký tự\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3268, '89', 'sw-KE', 'Andika majina 10 ya kuvutia kwa chapisho la Pinterest la yafuatayo:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n Urefu wa kichwa lazima uwe na vibambo 30\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3269, '89', 'sl-SI', 'Napišite 10 zanimivih naslovov za objavo na Pinterestu od naslednjih:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3270, '89', 'th-TH', 'เขียน 10 ชื่อเรื่องที่น่าสนใจสำหรับโพสต์ Pinterest ต่อไปนี้:\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n ความยาวของชื่อเรื่องต้องมีความยาว 30 อักขระ\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3271, '89', 'uk-UA', 'Напишіть 10 цікавих заголовків для публікації Pinterest з наступного:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n Довжина заголовка має бути 30 символів\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3272, '89', 'lt-LT', 'Parašykite 10 įdomių pavadinimų toliau pateiktiems Pinterest įrašams:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n Pavadinimo ilgis turi būti 30 simbolių\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3273, '89', 'bg-BG', 'Напишете 10 интересни заглавия за публикация в Pinterest от следните:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n Дължината на заглавието трябва да бъде 30 знака\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3274, '90', 'en-US', 'Write creative Pinterest bio Using following keywords in the bio description:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3275, '90', 'ar-AE', 'اكتب السيرة الذاتية الإبداعية Pinterest باستخدام الكلمات الرئيسية التالية في وصف السيرة الذاتية:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3276, '90', 'cmn-CN', '写有创意的 Pinterest bio 在 bio 描述中使用以下关键字:\n ##keywords## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3277, '90', 'hr-HR', 'Napišite ustvarjalni življenjepis na Pinterestu. V opisu biografije uporabite naslednje ključne besede:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3278, '90', 'cs-CZ', 'Napište kreativní životopis na Pinterest Pomocí následujících klíčových slov v popisu životopisu:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3279, '90', 'da-DK', 'Skriv kreativ Pinterest bio Brug følgende nøgleord i biobeskrivelsen:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3280, '90', 'nl-NL', 'Schrijf creatieve Pinterest-bio Gebruik de volgende trefwoorden in de biobeschrijving:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3281, '90', 'et-EE', 'Kirjutage loominguline Pinteresti biograafia Kasutades biokirjelduses järgmisi märksõnu:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3282, '90', 'fi-FI', 'Kirjoita luova Pinterest bio käyttämällä seuraavia avainsanoja bion kuvauksessa:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3283, '90', 'fr-FR', 'Rédigez une bio Pinterest créative en utilisant les mots-clés suivants dans la description de la bio:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3284, '90', 'de-DE', 'Schreiben Sie eine kreative Pinterest-Biografie und verwenden Sie die folgenden Schlüsselwörter in der Biografiebeschreibung:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3285, '90', 'el-GR', 'Γράψτε δημιουργικό βιογραφικό Pinterest Χρησιμοποιώντας τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του βιογραφικού:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3286, '90', 'he-IL', 'כתוב ביוגרפיה יצירתית של Pinterest באמצעות מילות מפתח הבאות בתיאור הביוגרפיה:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3287, '90', 'hi-IN', 'बायो विवरण में निम्नलिखित कीवर्ड्स का उपयोग करके रचनात्मक Pinterest बायो लिखें:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3288, '90', 'hu-HU', 'Írjon kreatív Pinterest életrajzot Az alábbi kulcsszavak használatával az életrajz leírásában:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3289, '90', 'is-IS', 'Skrifaðu skapandi líffræði á Pinterest með því að nota eftirfarandi lykilorð í líflýsingunni:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3290, '90', 'id-ID', 'Tulis bio Pinterest yang kreatif Menggunakan kata kunci berikut dalam deskripsi bio:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3291, '90', 'it-IT', 'Scrivi una biografia Pinterest creativa utilizzando le seguenti parole chiave nella descrizione della biografia:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3292, '90', 'ja-JP', 'Pinterest のクリエイティブな自己紹介を作成します。自己紹介の説明に次のキーワードを使用します。:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3293, '90', 'ko-KR', '창의적인 Pinterest 약력 작성 약력 설명에 다음 키워드 사용:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3294, '90', 'ms-MY', 'Tulis bio Pinterest kreatif Menggunakan kata kunci berikut dalam penerangan bio:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3295, '90', 'nb-NO', 'Skriv kreativ Pinterest-biografi ved å bruke følgende nøkkelord i biobeskrivelsen:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3296, '90', 'pl-PL', 'Napisz kreatywną biografię na Pintereście, używając następujących słów kluczowych w opisie biografii:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3297, '90', 'pt-PT', 'Escreva uma biografia criativa no Pinterest usando as seguintes palavras-chave na descrição da biografia:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3298, '90', 'ru-RU', 'Напишите креативную биографию Pinterest, используя следующие ключевые слова в описании биографии:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3299, '90', 'es-ES', 'Escriba una biografía creativa de Pinterest usando las siguientes palabras clave en la descripción de la biografía:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3300, '90', 'sv-SE', 'Skriv kreativ Pinterest-bio Använd följande nyckelord i biobeskrivningen:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3301, '90', 'tr-TR', 'Biyo açıklamasında aşağıdaki anahtar kelimeleri kullanarak yaratıcı Pinterest biyografisi yazın:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3302, '90', 'pt-BR', 'Escreva uma biografia criativa no Pinterest usando as seguintes palavras-chave na descrição da biografia:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3303, '90', 'ro-RO', 'Scrieți o biografie creativă pentru Pinterest Folosind următoarele cuvinte cheie în descrierea biografiei:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3304, '90', 'vi-VN', 'Viết tiểu sử Pinterest sáng tạo Sử dụng các từ khóa sau trong mô tả sinh học:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3305, '90', 'sw-KE', 'Andika wasifu wa ubunifu wa Pinterest Kwa kutumia maneno muhimu yafuatayo katika maelezo ya wasifu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3306, '90', 'sl-SI', 'Napišite ustvarjalni življenjepis na Pinterestu. V opisu biografije uporabite naslednje ključne besede:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3307, '90', 'th-TH', 'เขียนชีวประวัติของ Pinterest อย่างสร้างสรรค์ โดยใช้คำหลักต่อไปนี้ในคำอธิบายชีวประวัติ:\n ##keywords## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3308, '90', 'uk-UA', 'Напишіть креативну біографію Pinterest, використовуючи наступні ключові слова в описі біографії:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3309, '90', 'lt-LT', 'Parašykite kūrybingą Pinterest biografiją Naudodami šiuos raktinius žodžius biografijos aprašyme:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3310, '90', 'bg-BG', 'Напишете творческа биография в Pinterest, като използвате следните ключови думи в описанието на биографията:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3311, '91', 'en-US', 'Write creative replay for the following review :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3312, '91', 'ar-AE', 'اكتب إعادة إبداعية للمراجعة التالية :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3313, '91', 'cmn-CN', '为以下评论撰写创意重播 :\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3314, '91', 'hr-HR', 'Napišite kreativno ponovitev za naslednji pregled :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3315, '91', 'cs-CZ', 'Napište kreativní záznam pro následující recenzi :\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3316, '91', 'da-DK', 'Skriv kreativ gentagelse til den følgende anmeldelse :\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3317, '91', 'nl-NL', 'Schrijf een creatieve herhaling voor de volgende recensie :\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3318, '91', 'et-EE', 'Kirjutage järgmise ülevaate jaoks loominguline kordus :\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3319, '91', 'fi-FI', 'Kirjoita luova uusinta seuraavaa arvostelua varten :\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3320, '91', 'fr-FR', 'Rédiger une rediffusion créative pour l\'examen suivant :\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3321, '91', 'de-DE', 'Schreiben Sie eine kreative Wiederholung für die folgende Rezension :\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3322, '91', 'el-GR', 'Γράψτε επανάληψη δημιουργικού για την ακόλουθη κριτική :\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3323, '91', 'he-IL', 'כתוב שידור חוזר יצירתי עבור הסקירה הבאה :\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3324, '91', 'hi-IN', 'निम्नलिखित समीक्षा के लिए क्रिएटिव रिप्ले लिखें :\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3325, '91', 'hu-HU', 'Írjon kreatív újrajátszást a következő áttekintéshez :\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3326, '91', 'is-IS', 'Skrifaðu skapandi endursýningu fyrir eftirfarandi umsögn :\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3327, '91', 'id-ID', 'Tulis tayangan ulang kreatif untuk ulasan berikut :\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3328, '91', 'it-IT', 'Scrivi un replay creativo per la seguente recensione :\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3329, '91', 'ja-JP', '次のレビュー用にクリエイティブ リプレイを作成します :\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3330, '91', 'ko-KR', '다음 리뷰를 위한 크리에이티브 리플레이 작성 :\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(3331, '91', 'ms-MY', 'Tulis ulang tayang kreatif untuk ulasan berikut :\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3332, '91', 'nb-NO', 'Skriv kreativ reprise for følgende anmeldelse :\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3333, '91', 'pl-PL', 'Napisz twórczą powtórkę do następnej recenzji :\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3334, '91', 'pt-PT', 'Escrever replay criativo para a seguinte revisão :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3335, '91', 'ru-RU', 'Напишите творческий повтор для следующего обзора :\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3336, '91', 'es-ES', 'Escriba una repetición creativa para la siguiente reseña :\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3337, '91', 'sv-SE', 'Skriv kreativ repris för följande recension :\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3338, '91', 'tr-TR', 'Bir sonraki inceleme için reklam öğesi tekrarını yazın :\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3339, '91', 'pt-BR', 'Escrever replay criativo para a seguinte revisão :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3340, '91', 'ro-RO', 'Scrieți reluare creativă pentru următoarea recenzie :\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3341, '91', 'vi-VN', 'Viết phát lại sáng tạo cho đánh giá sau :\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3342, '91', 'sw-KE', 'Andika ubunifu wa kurudia kwa ukaguzi ufuatao :\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3343, '91', 'sl-SI', 'Napišite kreativno ponovitev za naslednji pregled :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3344, '91', 'th-TH', 'เขียนรีเพลย์เชิงสร้างสรรค์สำหรับบทวิจารณ์ต่อไปนี้ :\n\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3345, '91', 'uk-UA', 'Напишіть творчий повтор для наступного огляду :\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3346, '91', 'lt-LT', 'Parašykite kūrybinį pakartojimą kitai peržiūrai :\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3347, '91', 'bg-BG', 'Напишете творческо повторение за следния преглед :\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3348, '92', 'en-US', 'Write 10 catchy Slogan for the following:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3349, '92', 'ar-AE', 'اكتب 10 شعارات جذابة لما يلي:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3350, '92', 'cmn-CN', '为以下内容写10个朗朗上口的Slogan:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3351, '92', 'hr-HR', 'Napišite 10 privlačnih slogana za sljedeće:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3352, '92', 'cs-CZ', 'Napište 10 chytlavých sloganů pro následující:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3353, '92', 'da-DK', 'Skriv 10 fængende slogan til følgende:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3354, '92', 'nl-NL', 'Schrijf 10 pakkende Slogan voor het volgende:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3355, '92', 'et-EE', 'Kirjutage 10 meeldejäävat loosungit järgmise jaoks:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3356, '92', 'fi-FI', 'Kirjoita 10 tarttuvaa iskulausetta seuraavalle:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3357, '92', 'fr-FR', 'Rédigez 10 slogans accrocheurs pour les éléments suivants:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3358, '92', 'de-DE', 'Schreiben Sie 10 einprägsame Slogans für Folgendes:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3359, '92', 'el-GR', 'Γράψτε 10 πιασάρικα σύνθημα για τα παρακάτω:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3360, '92', 'he-IL', 'כתוב 10 סלוגן קליט עבור הדברים הבאים:\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3361, '92', 'hi-IN', 'निम्नलिखित के लिए 10 आकर्षक स्लोगन लिखिए:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3362, '92', 'hu-HU', 'Írj 10 fülbemászó szlogent a következőkhöz:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3363, '92', 'is-IS', 'Skrifaðu 10 grípandi slagorð fyrir eftirfarandi:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3364, '92', 'id-ID', 'Tuliskan 10 Slogan yang menarik berikut ini:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3365, '92', 'it-IT', 'Scrivi 10 slogan accattivanti per quanto segue:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3366, '92', 'ja-JP', '以下のキャッチーなスローガンを 10 個書いてください:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3367, '92', 'ko-KR', '다음과 같은 10가지 눈에 띄는 슬로건 작성:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3368, '92', 'ms-MY', 'Tulis 10 Slogan yang menarik untuk yang berikut:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3369, '92', 'nb-NO', 'Skriv 10 fengende slagord for følgende:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3370, '92', 'pl-PL', 'Napisz 10 chwytliwych sloganów dla następujących osób:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3371, '92', 'pt-PT', 'Escreva 10 slogans apelativos para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3372, '92', 'ru-RU', 'Напишите 10 броских слоганов для следующих:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3373, '92', 'es-ES', 'Escriba 10 lemas pegadizos para lo siguiente:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3374, '92', 'sv-SE', 'Skriv 10 catchy slogan för följande:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3375, '92', 'tr-TR', 'Aşağıdakiler için akılda kalıcı 10 Slogan yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3376, '92', 'pt-BR', 'Escreva 10 slogans atraentes para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3377, '92', 'ro-RO', 'Scrieți 10 sloganuri captivante pentru următoarele:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3378, '92', 'vi-VN', 'Viết 10 Slogan hấp dẫn cho những điều sau đây:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3379, '92', 'sw-KE', 'Andika Kauli mbi 10 ya kuvutia kwa yafuatayo:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3380, '92', 'sl-SI', 'Napišite 10 privlačnih sloganov za naslednje:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3381, '92', 'th-TH', 'เขียน 10 สโลแกนติดหูต่อไปนี้: \\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3382, '92', 'uk-UA', 'Напишіть 10 яскравих слоганів для наступного:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3383, '92', 'lt-LT', 'Parašykite 10 intriguojančių šūkių:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3384, '92', 'bg-BG', 'Напишете 10 закачливи лозунга за следното:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3385, '93', 'en-US', 'Write creative TikTok bio Using following keywords in the bio description:\\n ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3386, '93', 'ar-AE', 'اكتب السيرة الذاتية الإبداعية لـ TikTok باستخدام الكلمات الرئيسية التالية في وصف السيرة الذاتية:\\n ##keywords## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3387, '93', 'cmn-CN', '撰写有创意的 TikTok bio 在 bio 描述中使用以下关键字:\\n ##keywords## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3388, '93', 'hr-HR', 'Napišite kreativnu TikTok biografiju koristeći sljedeće ključne riječi u opisu biografije:\\n ##keywords## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3389, '93', 'cs-CZ', 'Napište kreativní TikTok bio Pomocí následujících klíčových slov v popisu bio:\\n ##keywords## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3390, '93', 'da-DK', 'Skriv kreativ TikTok-bio ved at bruge følgende nøgleord i biobeskrivelsen:\\n ##keywords## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3391, '93', 'nl-NL', 'Schrijf creatieve TikTok-bio Gebruik de volgende trefwoorden in de biobeschrijving:\\n ##keywords## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3392, '93', 'et-EE', 'Kirjutage loominguline TikToki biograafia, kasutades biokirjelduses järgmisi märksõnu:\\n ##keywords## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3393, '93', 'fi-FI', 'Kirjoita luova TikTok bio käyttämällä seuraavia avainsanoja biokuvauksessa:\\n ##keywords## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3394, '93', 'fr-FR', 'Rédigez une bio TikTok créative en utilisant les mots-clés suivants dans la description de la bio:\\n ##keywords## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3395, '93', 'de-DE', 'Schreiben Sie eine kreative TikTok-Biografie und verwenden Sie dabei die folgenden Schlüsselwörter in der Biografiebeschreibung:\\n ##keywords## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3396, '93', 'el-GR', 'Γράψτε δημιουργικό TikTok bio Χρησιμοποιώντας τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του βιογραφικού:\\n ##keywords## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3397, '93', 'he-IL', 'כתוב ביוגרפיה יצירתית של TikTok באמצעות מילות מפתח הבאות בתיאור הביולוגי:\\n ##keywords## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3398, '93', 'hi-IN', 'बायो डिस्क्रिप्शन में निम्नलिखित कीवर्ड्स का उपयोग करके क्रिएटिव टिकटॉक बायो लिखें:\\n ##keywords## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3399, '93', 'hu-HU', 'Írjon kreatív TikTok életrajzot Az alábbi kulcsszavak használatával az életrajz leírásában:\\n ##keywords## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3400, '93', 'is-IS', 'Skrifaðu skapandi TikTok líf með því að nota eftirfarandi leitarorð í líflýsingunni:\\n ##keywords## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3401, '93', 'id-ID', 'Tulis bio TikTok yang kreatif Menggunakan kata kunci berikut dalam deskripsi bio:\\n ##keywords## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3402, '93', 'it-IT', 'Scrivi una biografia TikTok creativa utilizzando le seguenti parole chiave nella descrizione della biografia:\\n ##keywords## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3403, '93', 'ja-JP', 'クリエイティブな TikTok プロフィールを作成します。プロフィールの説明に次のキーワードを使用します。:\\n ##keywords## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3404, '93', 'ko-KR', '약력 설명에 다음 키워드를 사용하여 창의적인 TikTok 약력 작성:\\n ##keywords## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3405, '93', 'ms-MY', 'Tulis bio TikTok kreatif Menggunakan kata kunci berikut dalam huraian bio:\\n ##keywords## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3406, '93', 'nb-NO', 'Skriv kreativ TikTok-bio ved å bruke følgende nøkkelord i biobeskrivelsen:\\n ##keywords## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3407, '93', 'pl-PL', 'Napisz kreatywną biografię TikTok, używając następujących słów kluczowych w opisie biografii:\\n ##keywords## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3408, '93', 'pt-PT', 'Escrever uma biografia criativa para o TikTok Utilizar as seguintes palavras-chave na descrição da biografia:\\n ##keywords## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3409, '93', 'ru-RU', 'Напишите креативную биографию TikTok, используя следующие ключевые слова в описании биографии:\\n ##keywords## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3410, '93', 'es-ES', 'Escriba una biografía creativa de TikTok usando las siguientes palabras clave en la descripción de la biografía:\\n ##keywords## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3411, '93', 'sv-SE', 'Skriv kreativa TikTok-bio Använd följande nyckelord i biobeskrivningen:\\n ##keywords## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3412, '93', 'tr-TR', 'Biyo açıklamasında aşağıdaki anahtar kelimeleri kullanarak yaratıcı TikTok biyografisi yazın:\\n ##keywords## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3413, '93', 'pt-BR', 'Escreva uma biografia criativa no TikTok Usando as seguintes palavras-chave na descrição da biografia:\\n ##keywords## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3414, '93', 'ro-RO', 'Scrieți o biografie creativa TikTok Folosind următoarele cuvinte cheie în descrierea biografiei:\\n ##keywords## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3415, '93', 'vi-VN', 'Viết tiểu sử TikTok sáng tạo Sử dụng các từ khóa sau trong mô tả sinh học:\\n ##keywords## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(3416, '93', 'sw-KE', 'Andika wasifu wa ubunifu wa TikTok Kwa kutumia maneno muhimu yafuatayo kwenye maelezo ya wasifu:\\n ##keywords## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3417, '93', 'sl-SI', 'Napišite ustvarjalni TikTok življenjepis z uporabo naslednjih ključnih besed v opisu biografije:\\n ##keywords## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3418, '93', 'th-TH', 'เขียนชีวประวัติของ TikTok อย่างสร้างสรรค์โดยใช้คำหลักต่อไปนี้ในคำอธิบายชีวประวัติ: \\n ##keywords## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3419, '93', 'uk-UA', 'Напишіть творчу біографію TikTok, використовуючи наступні ключові слова в описі біографії:\\n ##keywords## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3420, '93', 'lt-LT', 'Parašykite kūrybišką TikTok biografiją Naudodami šiuos raktinius žodžius biografijos aprašyme:\\n ##keywords## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3421, '93', 'bg-BG', 'Напишете творческа биография на TikTok, като използвате следните ключови думи в описанието на биографията:\\n ##keywords## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3422, '94', 'en-US', 'Write a cover letter for ##description## email \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3423, '94', 'ar-AE', 'اكتب خطاب تغطية ##description## بريد إلكتروني \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3424, '94', 'cmn-CN', '写求职信 ##description## 电子邮件 \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3425, '94', 'hr-HR', 'Napišite propratno pismo ##description## elektronička pošta \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3426, '94', 'cs-CZ', 'Napište motivační dopis ##description## e-mailem \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3427, '94', 'da-DK', 'Skriv et følgebrev ##description## e-mail \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3428, '94', 'nl-NL', 'Schrijf een begeleidende brief ##description## e-mailen \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3429, '94', 'et-EE', 'Kirjutage kaaskiri ##description## meili \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3430, '94', 'fi-FI', 'Kirjoita saatekirje ##description## sähköposti \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3431, '94', 'fr-FR', 'Rédiger une lettre de motivation ##description## e-Courrier électronique \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3432, '94', 'de-DE', 'Schreiben Sie ein Anschreiben ##description## Email\\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3433, '94', 'el-GR', 'Γράψτε μια συνοδευτική επιστολή ##description## ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3434, '94', 'he-IL', 'כתוב מכתב מקדים ##description## אימייל \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3435, '94', 'hi-IN', 'एक कवर लेटर लिखें ##description## ईमेल\\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3436, '94', 'hu-HU', 'Írj kísérőlevelet ##description## email \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3437, '94', 'is-IS', 'Skrifaðu kynningarbréf ##description## tölvupósti \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3438, '94', 'id-ID', 'Tulis surat pengantar ##description## surel \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3439, '94', 'it-IT', 'Scrivi una lettera di presentazione ##description## e-mail \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3440, '94', 'ja-JP', 'カバーレターを書く ##description## Eメール \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3441, '94', 'ko-KR', '커버 레터 작성 ##description## 이메일 \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3442, '94', 'ms-MY', 'Tulis surat iringan ##description## emel \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3443, '94', 'nb-NO', 'Skriv et følgebrev ##description## e-post \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3444, '94', 'pl-PL', 'Napisz list motywacyjny ##description## wiadomość e-mail \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3445, '94', 'pt-PT', 'Escrever uma carta de apresentação para ##description## e-mail \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3446, '94', 'ru-RU', 'Написать сопроводительное письмо ##description## электронная почта \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3447, '94', 'es-ES', 'Escribe una carta de presentación ##description## correo electrónico \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3448, '94', 'sv-SE', 'Skriv ett följebrev ##description## e-post \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3449, '94', 'tr-TR', 'Bir ön yazı yaz ##description## e-posta \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3450, '94', 'pt-BR', 'Escreva uma carta de apresentação para ##description## e-mail \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3451, '94', 'ro-RO', 'Scrieți o scrisoare de intenție ##description## e-mail \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3452, '94', 'vi-VN', 'Viết thư xin việc ##description## e-mail \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3453, '94', 'sw-KE', 'Andika barua ya kazi ##description## barua pepe \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3454, '94', 'sl-SI', 'Napišite spremno pismo ##description## E-naslov \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3455, '94', 'th-TH', 'เขียนจดหมายปะหน้า ##description## อีเมล \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3456, '94', 'uk-UA', 'Напишіть супровідний лист ##description## електронною поштою \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3457, '94', 'lt-LT', 'Parašykite motyvacinį laišką ##description## paštu \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3458, '94', 'bg-BG', 'Напишете мотивационно писмо ##description## електронна поща \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3459, '95', 'en-US', 'Write a personal intro which i can used at ##description## for myself \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3460, '95', 'ar-AE', 'اكتب مقدمة شخصية يمكنني استخدامها في ##description## لنفسي \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3461, '95', 'cmn-CN', '写一个我可以使用的个人介绍 ##description## 为了我自己 \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3462, '95', 'hr-HR', 'Napišite osobni intro koji mogu koristiti ##description## Za sebe \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3463, '95', 'cs-CZ', 'Napište osobní intro, které mohu použít ##description## pro mě \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3464, '95', 'da-DK', 'Skriv en personlig intro, som jeg kan bruge på ##description## v \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3465, '95', 'nl-NL', 'Schrijf een persoonlijke intro waar ik bij kan gebruiken ##description## voor mezelf \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3466, '95', 'et-EE', 'Kirjutage isiklik tutvustus, mida saan kasutada ##description## enda jaoks \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3467, '95', 'fi-FI', 'Kirjoita henkilökohtainen esittely, jota voin käyttää ##description## itselleni \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3468, '95', 'fr-FR', 'Écrivez une introduction personnelle que je peux utiliser à ##description## pour moi-même \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3469, '95', 'de-DE', 'Schreiben Sie ein persönliches Intro, das ich verwenden kann ##description## für mich\\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3470, '95', 'el-GR', 'Γράψτε μια προσωπική εισαγωγή στην οποία μπορώ να χρησιμοποιήσω ##description## για τον εαυτό μου \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3471, '95', 'he-IL', 'כתוב מבוא אישי שבו אני יכול להשתמש ##description## בשבילי \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3472, '95', 'hi-IN', 'एक व्यक्तिगत परिचय लिखें जिसका मैं उपयोग कर सकता हूं ##description## अपने आप के लिए \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3475, '95', 'id-ID', 'Tulis intro pribadi yang bisa saya gunakan ##description## untuk diriku \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3476, '95', 'it-IT', 'Scrivi unintroduzione personale che posso usare su ##description## per me \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3477, '95', 'ja-JP', 'で使用できる個人的な紹介文を書きます ##description## 自分のため \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3479, '95', 'ms-MY', 'Tulis intro peribadi yang boleh saya gunakan ##description## untuk diri saya sendiri \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3481, '95', 'pl-PL', 'Napisz osobiste wprowadzenie, którego będę mógł użyć ##description## dla siebie \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3482, '95', 'pt-PT', 'Escrever uma introdução pessoal que possa ser utilizada em ##description## para mim próprio \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3483, '95', 'ru-RU', 'Напишите личное введение, которое я могу использовать на ##description## для меня \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3484, '95', 'es-ES', 'Escribe una introducción personal que pueda usar en ##description## para mí \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3485, '95', 'sv-SE', 'Skriv ett personligt intro som jag kan använda vid ##description## för mig själv \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3486, '95', 'tr-TR', 'Kullanabileceğim kişisel bir giriş yaz ##description## kendim için \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3487, '95', 'pt-BR', 'Escreva uma introdução pessoal que eu possa usar em ##description## para mim mesmo \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3488, '95', 'ro-RO', 'Scrie o introducere personală pe care să o pot folosi ##description## pentru mine \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3489, '95', 'vi-VN', 'Viết phần giới thiệu cá nhân mà tôi có thể sử dụng tại ##description## cho bản thân mình \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3490, '95', 'sw-KE', 'Andika utangulizi wa kibinafsi ambao ninaweza kutumia ##description## kwa ajili yangu mwenyewe \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3491, '95', 'sl-SI', 'Napišite osebni uvod, ki ga lahko uporabim pri ##description## zame \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3492, '95', 'th-TH', 'เขียนคำนำส่วนตัวที่ฉันสามารถใช้ได้ ##description## สำหรับตัวฉันเอง \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3493, '95', 'uk-UA', 'Напишіть особисте інтро, яке я можу використати ##description## v \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3494, '95', 'lt-LT', 'Parašykite asmeninį įvadą, kurį galėčiau panaudoti ##description## sau pačiam \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3495, '95', 'bg-BG', 'Напишете лично въведение, което мога да използвам ##description## за мен \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3496, '96', 'en-US', 'Write 10 catchy motivation quote for the following :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3497, '96', 'ar-AE', 'اكتب 10 اقتباسات دافعة جذابة لما يلي :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3498, '96', 'cmn-CN', '為下列項目撰寫 10 個朗朗文動機報價 :\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3499, '96', 'hr-HR', 'Napišite 10 privlačnih motivacijskih citata za sljedeće :\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3500, '96', 'cs-CZ', 'Napište 10 chytlavých motivačních citátů pro následující :\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3501, '96', 'da-DK', 'Skriv 10 fængende motivationscitater til følgende :\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3502, '96', 'nl-NL', 'Schrijf 10 pakkende motivatiecitaten voor het volgende :\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3503, '96', 'et-EE', 'Kirjutage 10 meeldejäävat motivatsioonitsitaati järgmise jaoks :\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3504, '96', 'fi-FI', 'Kirjoita 10 tarttuvaa motivaatiolainausta seuraavaan :\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3505, '96', 'fr-FR', 'Rédigez 10 citations de motivation accrocheuses pour les éléments suivants :\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3506, '96', 'de-DE', 'Schreiben Sie 10 einprägsame Motivationszitate für Folgendes :\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3507, '96', 'el-GR', 'Γράψτε 10 συναρπαστικά κίνητρα για τα παρακάτω :\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3508, '96', 'he-IL', 'כתוב 10 ציטוטי מוטיבציה קליטים עבור הדברים הבאים :\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3509, '96', 'hi-IN', 'निम्नलिखित के लिए 10 आकर्षक प्रेरक उद्धरण लिखिए :\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3510, '96', 'hu-HU', 'Írj 10 fülbemászó motivációs idézetet a következőkhöz! :\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3511, '96', 'is-IS', 'Skrifaðu 10 grípandi hvatningartilvitnanir fyrir eftirfarandi :\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3512, '96', 'id-ID', 'Tulis 10 kutipan motivasi yang menarik untuk yang berikut ini :\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3513, '96', 'it-IT', 'Scrivi 10 citazioni motivazionali accattivanti per quanto segue :\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3514, '96', 'ja-JP', '以下のキャッチーな動機付けの引用を 10 個書いてください :\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3515, '96', 'ko-KR', '다음에 대해 기억하기 쉬운 동기 부여 인용문 10개를 작성하십시오. :\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3516, '96', 'ms-MY', 'Tulis 10 petikan motivasi yang menarik untuk yang berikut :\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3517, '96', 'nb-NO', 'Skriv 10 fengende motivasjonssitat for følgende :\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3518, '96', 'pl-PL', 'Napisz 10 chwytliwych cytatów motywacyjnych dla następujących osób :\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3519, '96', 'pt-PT', 'Escreva 10 citações cativantes de motivação para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3520, '96', 'ru-RU', 'Напишите 10 броских мотивационных цитат для следующего :\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3521, '96', 'es-ES', 'Escriba 10 citas de motivación pegadizas para lo siguiente :\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3522, '96', 'sv-SE', 'Skriv 10 catchy motivationscitat för följande :\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3523, '96', 'tr-TR', 'Aşağıdakiler için 10 akılda kalıcı motivasyon teklifi yazın :\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3524, '96', 'pt-BR', 'Escreva 10 citações cativantes de motivação para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3525, '96', 'ro-RO', 'Scrieți 10 citate de motivație captivante pentru următoarele :\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3526, '96', 'vi-VN', 'Viết 10 trích dẫn động lực hấp dẫn cho những điều sau đây :\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3527, '96', 'sw-KE', 'Andika nukuu 10 za motisha kwa zifuatazo :\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3528, '96', 'sl-SI', 'Napišite 10 privlačnih motivacijskih citatov za naslednje :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3529, '96', 'th-TH', 'เขียน 10 คำพูดสร้างแรงบันดาลใจลวงต่อไปนี้ :\n\n ##description## \n\n โทนเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3530, '96', 'uk-UA', 'Напишіть 10 привабливих мотиваційних цитат для наступного :\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3531, '96', 'lt-LT', 'Parašykite 10 patrauklių motyvacijos citatų toliau nurodytam klausimui :\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3532, '96', 'bg-BG', 'Напишете 10 закачливи мотивационни цитата за следното :\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3533, '97', 'en-US', 'Write a descriptive motivation speech for the following :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3534, '97', 'ar-AE', 'اكتب خطاب دافع وصفي لما يلي :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3535, '97', 'cmn-CN', '為下列項目撰寫敘述性動機語音 :\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3536, '97', 'hr-HR', 'Napišite opisni motivacijski govor za sljedeće :\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3537, '97', 'cs-CZ', 'Napište popisný motivační projev pro následující :\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3538, '97', 'da-DK', 'Skriv en beskrivende motivationstale til følgende :\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3539, '97', 'nl-NL', 'Schrijf een beschrijvende motivatietoespraak voor het volgende :\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3540, '97', 'et-EE', 'Kirjutage kirjeldav motivatsioonikõne järgneva jaoks :\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3541, '97', 'fi-FI', 'Kirjoita kuvaava motivaatiopuhe seuraavaa varten :\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3542, '97', 'fr-FR', 'Rédigez un discours de motivation descriptif pour les éléments suivants :\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3543, '97', 'de-DE', 'Schreiben Sie eine beschreibende Motivationsrede für Folgendes :\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3544, '97', 'el-GR', 'Γράψτε μια περιγραφική ομιλία κινήτρων για τα παρακάτω :\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3545, '97', 'he-IL', 'כתוב נאום מוטיבציה תיאורי עבור הדברים הבאים :\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3546, '97', 'hi-IN', 'निम्नलिखित के लिए वर्णनात्मक प्रेरक भाषण लिखिए :\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3547, '97', 'hu-HU', 'Írjon leíró motivációs beszédet a következőkhöz! :\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3548, '97', 'is-IS', 'Skrifaðu lýsandi hvatningarræðu fyrir eftirfarandi :\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3549, '97', 'id-ID', 'Tulis pidato motivasi deskriptif untuk yang berikut ini :\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3550, '97', 'it-IT', 'Scrivi un discorso motivazionale descrittivo per quanto segue :\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3551, '97', 'ja-JP', '次のような動機を説明するスピーチを書いてください。 :\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3552, '97', 'ko-KR', '다음에 대한 설명적인 동기 연설을 작성하십시오. :\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3553, '97', 'ms-MY', 'Tulis ucapan motivasi deskriptif untuk perkara berikut :\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3554, '97', 'nb-NO', 'Skriv en beskrivende motivasjonstale for følgende :\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3555, '97', 'pl-PL', 'Napisz opisowe przemówienie motywacyjne dla poniższych osób :\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3556, '97', 'pt-PT', 'Escreva um discurso de motivação descritivo para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3557, '97', 'ru-RU', 'Напишите описательную мотивационную речь для следующего :\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3558, '97', 'es-ES', 'Escriba un discurso de motivación descriptivo para los siguientes :\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3559, '97', 'sv-SE', 'Skriv ett beskrivande motivationstal för följande :\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3560, '97', 'tr-TR', 'Aşağıdakiler için açıklayıcı bir motivasyon konuşması yazın :\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3561, '97', 'pt-BR', 'Escreva um discurso de motivação descritivo para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3562, '97', 'ro-RO', 'Scrieți un discurs descriptiv de motivare pentru următoarele :\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3563, '97', 'vi-VN', 'Viết một bài phát biểu động cơ mô tả cho những điều sau đây :\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3564, '97', 'sw-KE', 'Andika hotuba ya maelezo ya motisha kwa yafuatayo :\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'); +INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(3565, '97', 'sl-SI', 'Napišite opisni motivacijski govor za naslednje :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3566, '97', 'th-TH', 'เขียนบรรยายแรงจูงใจต่อไปนี้ :\n\n ##description## \n\n โทนเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3567, '97', 'uk-UA', 'Напишіть описову мотиваційну промову для наступного :\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3568, '97', 'lt-LT', 'Parašykite aprašomąją motyvacinę kalbą dėl šių dalykų :\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3569, '97', 'bg-BG', 'Напишете описателна мотивационна реч за следното :\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3570, '98', 'en-US', 'Write 10 catchy good wishes for the following occasion : ##occasion## for my : ##relation## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3571, '98', 'ar-AE', 'اكتب 10 تمنيات طيبة وجذابة للمناسبة التالية : ##occasion## لاجلي : ##relation## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3572, '98', 'cmn-CN', '为以下场合写下 10 个朗朗上口的美好祝福 : ##occasion## 为了我的 : ##relation## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3573, '98', 'hr-HR', 'Napišite 10 lijepih lijepih želja za sljedeću priliku : ##occasion## za moj : ##relation## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3574, '98', 'cs-CZ', 'Napište 10 chytlavých přání všeho dobrého pro následující příležitost : ##occasion## pro mě : ##relation## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3575, '98', 'da-DK', 'Skriv 10 fængende gode ønsker til den følgende lejlighed : ##occasion## for min : ##relation## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3576, '98', 'nl-NL', 'Schrijf 10 pakkende goede wensen voor de volgende gelegenheid : ##occasion## voor mijn : ##relation## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3577, '98', 'et-EE', 'Kirjutage järgmiseks puhuks 10 meeldejäävat head soovi : ##occasion## minu : ##relation## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3578, '98', 'fi-FI', 'Kirjoita 10 tarttuvaa onnentoivotusta seuraavaan tilaisuuteen : ##occasion## minun puolestani : ##relation## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3579, '98', 'fr-FR', 'Écrivez 10 bons vœux accrocheurs pour l\'occasion suivante : ##occasion## pour mon : ##relation## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3580, '98', 'de-DE', 'Schreiben Sie 10 einprägsame Glückwünsche für den folgenden Anlass : ##occasion## für mein : ##relation## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3581, '98', 'el-GR', 'Γράψε 10 πιασάρικες ευχές για την επόμενη περίσταση : ##occasion## για τη δικιά μου : ##relation## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3582, '98', 'he-IL', 'כתבו 10 איחולים קליטים לאירוע הבא : ##occasion## עבור שלי : ##relation## \n\nטון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3583, '98', 'hi-IN', 'निम्नलिखित अवसर के लिए 10 आकर्षक शुभकामनाएं लिखें : ##occasion## मेरे लिए : ##relation## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3584, '98', 'hu-HU', 'Írj 10 fülbemászó jókívánságot a következő alkalomra : ##occasion## az én : ##relation## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3585, '98', 'is-IS', 'Skrifaðu 10 grípandi góðar óskir fyrir næsta tilefni : ##occasion## fyrir mig : ##relation## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3586, '98', 'id-ID', 'Tulis 10 harapan baik yang menarik untuk kesempatan berikut : ##occasion## untuk ku : ##relation## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3587, '98', 'it-IT', 'Scrivi 10 accattivanti auguri per la prossima occasione : ##occasion## per me : ##relation## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3588, '98', 'ja-JP', '次の機会に向けて、キャッチーな良い願いを 10 個書いてください : ##occasion## 私のために : ##relation## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3589, '98', 'ko-KR', '다음 행사에 대한 10가지 좋은 소원을 적어보세요 : ##occasion## 나를 위해 : ##relation## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3590, '98', 'ms-MY', 'Tulis 10 ucapan selamat yang menarik untuk majlis berikut : ##occasion## untuk saya : ##relation## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3591, '98', 'nb-NO', 'Skriv 10 fengende lykkeønskninger for neste anledning : ##occasion## for min : ##relation## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3592, '98', 'pl-PL', 'Napisz 10 chwytliwych życzeń na następną okazję : ##occasion## dla mnie : ##relation## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3593, '98', 'pt-PT', 'Escreva 10 bons desejos cativantes para a seguinte ocasião : ##occasion## para o meu : ##relation## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3594, '98', 'ru-RU', 'Напишите 10 запоминающихся добрых пожеланий на следующий случай : ##occasion## для меня : ##relation## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3595, '98', 'es-ES', 'Escribe 10 buenos deseos pegadizos para la próxima ocasión : ##occasion## para mi : ##relation## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3596, '98', 'sv-SE', 'Skriv 10 catchy lyckönskningar för följande tillfälle : ##occasion## för min : ##relation## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3597, '98', 'tr-TR', 'Bir sonraki durum için akılda kalıcı 10 iyi dilek yazın : ##occasion## benim için : ##relation## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3598, '98', 'pt-BR', 'Escreva 10 bons votos cativantes para a seguinte ocasião : ##occasion## para mim : ##relation## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3599, '98', 'ro-RO', 'Scrie 10 urări de bine atrăgătoare pentru următoarea ocazie : ##occasion## pentru a mea : ##relation## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3600, '98', 'vi-VN', 'Viết 10 lời chúc hấp dẫn cho dịp sau : ##occasion## cho tôi : ##relation## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3601, '98', 'sw-KE', 'Andika matashi 10 mazuri kwa hafla ifuatayo : ##occasion## kwa wangu : ##relation## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3602, '98', 'sl-SI', 'Napišite 10 privlačnih dobrih želja za naslednjo priložnost : ##occasion## za moj : ##relation## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3603, '98', 'th-TH', 'เขียนความปรารถนาดีลวง 10 ประการต่อไปนี้ : ##occasion## สำหรับฉัน : ##relation## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3604, '98', 'uk-UA', 'Напишіть 10 яскравих побажань на наступну подію : ##occasion## для мого : ##relation## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3605, '98', 'lt-LT', 'Parašykite 10 patrauklių linkėjimų kitai progai : ##occasion## už mano : ##relation## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3606, '98', 'bg-BG', 'Напишете 10 запомнящи се добри пожелания за следващия повод : ##occasion## за моя : ##relation## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3607, '99', 'en-US', 'Write creative & convincing bid for the following project :\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3608, '99', 'ar-AE', 'اكتب محاولة إبداعية ومقنعة للمشروع التالي\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3609, '99', 'cmn-CN', '为以下项目写出有创意和有说服力的标书:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3610, '99', 'hr-HR', 'Napišite kreativnu i uvjerljivu ponudu za sljedeći projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3611, '99', 'cs-CZ', 'Napište kreativní a přesvědčivou nabídku pro následující projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3612, '99', 'da-DK', 'Skriv et kreativt og overbevisende bud på følgende projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3613, '99', 'nl-NL', 'Schrijven van een creatief & overtuigend bod voor het volgende project:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3614, '99', 'et-EE', 'Kirjutage loov ja veenev pakkumine järgmise projekti jaoks:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3615, '99', 'fi-FI', 'Kirjoita luova ja vakuuttava tarjous seuraavaan projektiin:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3616, '99', 'fr-FR', 'Rédiger une offre créative et convaincante pour le projet suivant :\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3617, '99', 'de-DE', 'Schreiben Sie ein kreatives und überzeugendes Angebot für das folgende Projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3618, '99', 'el-GR', 'Γράψτε δημιουργική και πειστική προσφορά για το παρακάτω έργο:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3619, '99', 'he-IL', 'כתוב הצעה יצירתית ומשכנעת עבור הפרויקט הבא:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3620, '99', 'hi-IN', 'निम्नलिखित परियोजना के लिए रचनात्मक और विश्वसनीय बोली लिखें:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3621, '99', 'hu-HU', 'Írjon kreatív és meggyőző ajánlatot a következő projektre:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3622, '99', 'is-IS', 'Skrifaðu skapandi og sannfærandi tilboð í eftirfarandi verkefni:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3623, '99', 'id-ID', 'Tulis tawaran yang kreatif & meyakinkan untuk proyek berikut :\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3624, '99', 'it-IT', 'Scrivi un\'offerta creativa e convincente per il seguente progetto:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3625, '99', 'ja-JP', '次のプロジェクトに対してクリエイティブで説得力のある入札書を作成します:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3626, '99', 'ko-KR', '다음 프로젝트에 대한 창의적이고 설득력 있는 입찰가 작성:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3627, '99', 'ms-MY', 'Tulis tawaran yang kreatif & meyakinkan untuk projek berikut:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3628, '99', 'nb-NO', 'Skriv et kreativt og overbevisende bud på følgende prosjekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3629, '99', 'pl-PL', 'Napisz kreatywną i przekonującą ofertę na następujący projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3630, '99', 'pt-PT', 'Escreva um lance criativo e convincente para o seguinte projeto:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3631, '99', 'ru-RU', 'Напишите креативную и убедительную заявку на следующий проект:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3632, '99', 'es-ES', 'Escriba una oferta creativa y convincente para el siguiente proyecto:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3633, '99', 'sv-SE', 'Skriv ett kreativt och övertygande bud på följande projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3634, '99', 'tr-TR', 'Aşağıdaki proje için yaratıcı ve ikna edici teklif yazın:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3635, '99', 'pt-BR', 'Escreva uma proposta criativa e convincente para o seguinte projeto:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3636, '99', 'ro-RO', 'Scrieți o ofertă creativă și convingătoare pentru următorul proiect:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3637, '99', 'vi-VN', 'Viết giá thầu sáng tạo & thuyết phục cho dự án sau:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3638, '99', 'sw-KE', 'Andika zabuni ya ubunifu na ya kushawishi kwa mradi ufuatao:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3639, '99', 'sl-SI', 'Napišite kreativno in prepričljivo ponudbo za naslednji projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3640, '99', 'th-TH', 'เขียนการเสนอราคาที่สร้างสรรค์และน่าเชื่อถือสำหรับโครงการต่อไปนี้:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3641, '99', 'uk-UA', 'Напишіть творчу та переконливу заявку на наступний проект:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3642, '99', 'lt-LT', 'Parašykite kūrybišką ir įtikinamą pasiūlymą kitam projektui:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3643, '99', 'bg-BG', 'Напишете креативна и убедителна оферта за следния проект:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3644, '19', 'he-IL', 'כתוב מודעה יצירתית עבור המוצר הבא שיוצג בפייסבוק שמטרתה:\n\n ##audience## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n גוון הקול של המודעה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3773, '95', 'hu-HU', 'Írj egy személyes bemutatkozást, amit felhasználhatok ##description## magamnak \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3774, '95', 'is-IS', 'Skrifaðu persónulegt kynningu sem ég get notað á ##description## fyrir mig \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3778, '95', 'ko-KR', '내가 사용할 수있는 개인 소개 쓰기 ##description## 나 자신을 위해 \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(3780, '95', 'nb-NO', 'Skriv en personlig intro som jeg kan bruke på ##description## for meg selv \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `allowances` +-- + +CREATE TABLE `allowances` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `allowance_type_id` bigint(20) UNSIGNED NOT NULL, + `type` enum('fixed','percentage') NOT NULL, + `amount` decimal(10,2) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `allowances` +-- + +INSERT INTO `allowances` (`id`, `employee_id`, `allowance_type_id`, `type`, `amount`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 10, 1, 'fixed', 4200.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(2, 10, 7, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(3, 10, 3, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(4, 10, 5, 'percentage', 8.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(5, 16, 9, 'fixed', 3000.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(6, 16, 4, 'fixed', 6400.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(7, 16, 7, 'fixed', 3000.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(8, 16, 8, 'percentage', 10.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(9, 14, 5, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(10, 14, 4, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(11, 14, 3, 'fixed', 6400.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(12, 14, 7, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(13, 18, 5, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(14, 18, 10, 'fixed', 7500.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(15, 18, 9, 'percentage', 8.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(16, 18, 3, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(17, 22, 3, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(18, 22, 6, 'percentage', 20.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(19, 22, 10, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 22, 7, 'fixed', 4200.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 12, 10, 'fixed', 3000.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 12, 9, 'percentage', 8.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 12, 8, 'fixed', 7500.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 12, 2, 'percentage', 20.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 26, 8, 'percentage', 20.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 26, 1, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 26, 2, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 26, 10, 'fixed', 1600.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(29, 8, 1, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(30, 8, 9, 'fixed', 7500.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(31, 8, 7, 'percentage', 5.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(32, 8, 10, 'percentage', 8.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(33, 24, 8, 'fixed', 6400.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(34, 24, 4, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(35, 24, 10, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(36, 24, 3, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(37, 20, 1, 'percentage', 18.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(38, 20, 9, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(39, 20, 2, 'percentage', 15.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(40, 20, 6, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `allowance_types` +-- + +CREATE TABLE `allowance_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `description` longtext DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `allowance_types` +-- + +INSERT INTO `allowance_types` (`id`, `name`, `description`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'House Rent Allowance (HRA)', 'Monthly allowance for accommodation expenses including rent and utilities.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(2, 'Medical Allowance', 'Healthcare allowance covering medical expenses and insurance premiums.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(3, 'Transport Allowance', 'Travel allowance for daily commuting and transportation expenses.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(4, 'Food Allowance', 'Meal allowance covering lunch and food expenses during working hours.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(5, 'Mobile Allowance', 'Communication allowance for mobile phone and internet expenses.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(6, 'Education Allowance', 'Educational support allowance for employees children school fees.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(7, 'Performance Bonus', 'Merit-based allowance for exceptional performance and achievements.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(8, 'Overtime Allowance', 'Additional compensation for work beyond regular working hours.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(9, 'Shift Allowance', 'Extra allowance for night shifts and non-standard working hours.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(10, 'Travel Allowance', 'Business travel expenses including accommodation and meals.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `announcements` +-- + +CREATE TABLE `announcements` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(255) NOT NULL, + `announcement_category_id` bigint(20) UNSIGNED DEFAULT NULL, + `start_date` date DEFAULT NULL, + `end_date` date DEFAULT NULL, + `priority` varchar(255) DEFAULT NULL, + `status` enum('active','inactive','draft') NOT NULL DEFAULT 'draft', + `description` longtext DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED DEFAULT NULL, + `approved_by` bigint(20) 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 `announcements` +-- + +INSERT INTO `announcements` (`id`, `title`, `announcement_category_id`, `start_date`, `end_date`, `priority`, `status`, `description`, `creator_id`, `created_by`, `approved_by`, `created_at`, `updated_at`) VALUES +(1, 'Annual Company Holiday Schedule 2025', 1, '2025-09-20', '2026-09-20', 'high', 'active', 'Official holiday calendar for 2025 has been finalized including national holidays, company closure dates, and optional floating holidays for employee planning.', 2, 2, 8, '2025-09-20 09:32:49', '2025-09-20 09:32:49'), +(2, 'Enhanced Health Insurance Benefits Launch', 2, '2025-09-25', '2026-09-25', 'high', 'active', 'New comprehensive health insurance policy with expanded coverage, dental benefits, and wellness programs will be automatically enrolled for all eligible employees.', 2, 2, 10, '2025-09-25 10:47:49', '2025-09-25 10:47:49'), +(3, 'Office Infrastructure Renovation Project', 3, '2025-09-30', '2026-04-18', 'medium', 'active', 'Third floor renovation will commence next week requiring temporary relocation of affected departments to fifth floor with minimal disruption to operations.', 2, 2, 12, '2025-09-30 15:02:49', '2025-09-30 15:02:49'), +(4, 'Quarterly Performance Evaluation Process', 4, '2025-10-05', '2026-05-03', 'medium', 'draft', 'Performance review cycle begins next month requiring self-assessments, supervisor meetings, and goal setting sessions for all employees across departments.', 2, 2, NULL, '2025-10-05 11:37:49', '2025-10-05 11:37:49'), +(5, 'Enhanced Security Protocol Implementation', 5, '2025-10-10', '2026-09-15', 'high', 'active', 'New security measures including mandatory ID card display, updated access procedures, and visitor management system will be enforced across premises.', 2, 2, 16, '2025-10-10 13:27:49', '2025-10-10 13:27:49'), +(6, 'Annual Team Building Adventure Event', 6, '2025-10-15', '2026-04-08', 'low', 'active', 'Join our exciting team building activities at city park featuring outdoor games, catered lunch, networking sessions, and prize competitions for departments.', 2, 2, 18, '2025-10-15 15:52:49', '2025-10-15 15:52:49'), +(7, 'Professional Development Training Program', 7, '2025-10-20', '2026-05-13', 'medium', 'active', 'Comprehensive skill enhancement workshops covering leadership, technical skills, and career advancement opportunities available for all employee levels and departments.', 2, 2, 20, '2025-10-20 09:07:49', '2025-10-20 09:07:49'), +(8, 'Remote Work Policy Update', 8, '2025-10-25', '2026-07-12', 'medium', 'draft', 'Updated remote work guidelines including hybrid schedules, productivity expectations, communication protocols, and equipment provision for eligible positions.', 2, 2, NULL, '2025-10-25 12:42:49', '2025-10-25 12:42:49'), +(9, 'Employee Wellness Initiative Launch', 9, '2025-10-31', '2026-06-12', 'medium', 'active', 'New wellness program featuring fitness memberships, mental health support, nutrition counseling, and stress management workshops for employee wellbeing enhancement.', 2, 2, 24, '2025-10-30 16:57:49', '2025-10-30 16:57:49'), +(10, 'IT System Maintenance Schedule', 10, '2025-11-04', '2026-03-29', 'high', 'active', 'Planned system maintenance and upgrades will occur during weekend hours with minimal impact on daily operations and enhanced security features.', 2, 2, 26, '2025-11-04 10:12:49', '2025-11-04 10:12:49'), +(11, 'Diversity and Inclusion Workshop Series', 11, '2025-11-09', '2026-04-28', 'high', 'active', 'Mandatory diversity training sessions promoting inclusive workplace culture, unconscious bias awareness, and respectful communication practices for all staff members.', 2, 2, 8, '2025-11-09 11:32:49', '2025-11-09 11:32:49'), +(12, 'Environmental Sustainability Campaign', 12, '2025-11-14', '2026-09-10', 'low', 'draft', 'Green initiative promoting eco-friendly practices including recycling programs, energy conservation, paperless operations, and sustainable commuting options for employees.', 2, 2, NULL, '2025-11-14 14:47:49', '2025-11-14 14:47:49'), +(13, 'Customer Service Excellence Training', 13, '2025-11-19', '2026-04-13', 'medium', 'active', 'Comprehensive customer service training program focusing on communication skills, problem resolution, and customer satisfaction improvement for client-facing departments.', 2, 2, 12, '2025-11-19 11:02:49', '2025-11-19 11:02:49'), +(14, 'Annual Budget Planning Meeting', 14, '2025-11-24', '2026-04-03', 'high', 'active', 'Department heads and managers are required to attend budget planning sessions for next fiscal year including resource allocation and strategic planning.', 2, 2, 14, '2025-11-24 13:37:49', '2025-11-24 13:37:49'), +(15, 'Employee Recognition Awards Ceremony', 15, '2025-11-29', '2025-12-09', 'medium', 'inactive', 'Annual awards ceremony celebrating outstanding employee achievements, service milestones, and exceptional contributions to company success across all departments.', 2, 2, NULL, '2025-11-29 15:27:49', '2025-11-29 15:27:49'), +(16, 'Cybersecurity Awareness Training', 16, '2025-12-04', '2026-04-23', 'high', 'active', 'Mandatory cybersecurity training covering phishing prevention, password security, data protection protocols, and safe internet practices for all employees.', 2, 2, 18, '2025-12-04 08:52:49', '2025-12-04 08:52:49'), +(17, 'New Employee Orientation Program', 17, '2025-12-09', '2027-03-14', 'medium', 'active', 'Comprehensive onboarding program for new hires including company culture introduction, policy briefings, department tours, and mentor assignment processes.', 2, 2, 20, '2025-12-09 13:07:49', '2025-12-09 13:07:49'), +(18, 'Flexible Working Hours Policy', 18, '2025-12-15', '2026-06-12', 'medium', 'draft', 'New flexible schedule options allowing core hours flexibility, compressed workweeks, and alternative arrangements to improve work-life balance for employees.', 2, 2, NULL, '2025-12-14 16:42:49', '2025-12-14 16:42:49'), +(19, 'Emergency Evacuation Drill Exercise', 19, '2025-12-19', '2026-03-24', 'high', 'active', 'Mandatory emergency preparedness drill testing evacuation procedures, assembly points, and safety protocols to ensure employee safety and compliance.', 2, 2, 24, '2025-12-19 09:57:49', '2025-12-19 09:57:49'), +(20, 'Innovation Challenge Competition', 20, '2025-12-24', '2026-05-28', 'low', 'active', 'Company-wide innovation contest encouraging creative solutions, process improvements, and technological advancements with prizes for winning ideas and implementations.', 2, 2, 26, '2025-12-24 12:12:49', '2025-12-24 12:12:49'), +(21, 'Mental Health Awareness Week', 21, '2025-12-29', '2026-01-05', 'medium', 'inactive', 'Dedicated week promoting mental health awareness featuring workshops, counseling sessions, stress management techniques, and wellness resources for employee support.', 2, 2, NULL, '2025-12-29 14:32:49', '2025-12-29 14:32:49'), +(22, 'Quality Management System Certification', 22, '2026-01-03', '2026-07-12', 'high', 'active', 'Company pursuing ISO quality certification requiring employee training, process documentation, and compliance procedures across all operational departments.', 2, 2, 10, '2026-01-03 10:47:49', '2026-01-03 10:47:49'), +(23, 'Employee Feedback Survey Campaign', 23, '2026-01-08', '2026-04-13', 'medium', 'active', 'Anonymous employee satisfaction survey collecting feedback on workplace culture, management effectiveness, benefits, and suggestions for organizational improvements.', 2, 2, 12, '2026-01-08 14:02:49', '2026-01-08 14:02:49'), +(24, 'Technology Upgrade Implementation', 24, '2026-01-13', '2026-08-11', 'high', 'draft', 'Major technology infrastructure upgrade including new software systems, hardware replacements, and digital transformation initiatives across all departments.', 2, 2, NULL, '2026-01-13 15:37:49', '2026-01-13 15:37:49'), +(25, 'Cross-Department Collaboration Project', 25, '2026-01-18', '2026-06-07', 'medium', 'active', 'Initiative promoting interdepartmental cooperation through joint projects, shared goals, and collaborative problem-solving to enhance organizational efficiency.', 2, 2, 16, '2026-01-18 08:27:49', '2026-01-18 08:27:49'), +(26, 'Workplace Safety Inspection Schedule', 26, '2026-01-23', '2027-03-14', 'high', 'active', 'Regular safety inspections ensuring compliance with occupational health standards, equipment maintenance, and hazard identification across all work areas.', 2, 2, 18, '2026-01-23 12:52:49', '2026-01-23 12:52:49'), +(27, 'Leadership Development Program', 27, '2026-01-29', '2026-02-27', 'medium', 'inactive', 'Executive leadership training program for managers and supervisors focusing on team management, strategic thinking, and organizational leadership skills.', 2, 2, NULL, '2026-01-28 17:07:49', '2026-01-28 17:07:49'), +(28, 'Company Social Responsibility Initiative', 28, '2026-02-02', '2026-09-30', 'low', 'active', 'Community outreach program encouraging employee volunteerism, charitable contributions, and social impact projects supporting local community development.', 2, 2, 22, '2026-02-02 09:42:49', '2026-02-02 09:42:49'), +(29, 'Digital Communication Platform Launch', 29, '2026-02-07', '2026-05-13', 'medium', 'draft', 'New internal communication system featuring instant messaging, video conferencing, file sharing, and collaboration tools for enhanced workplace connectivity.', 2, 2, NULL, '2026-02-07 11:57:49', '2026-02-07 11:57:49'), +(30, 'Year-End Performance Bonus Distribution', 30, '2026-02-12', '2026-04-28', 'high', 'active', 'Annual performance bonus calculation and distribution based on individual achievements, department goals, and company performance metrics for eligible employees.', 2, 2, 26, '2026-02-12 15:12:49', '2026-02-12 15:12:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `announcement_categories` +-- + +CREATE TABLE `announcement_categories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `announcement_category` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `announcement_categories` +-- + +INSERT INTO `announcement_categories` (`id`, `announcement_category`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Executive Communications', 2, 2, '2025-09-15 09:17:49', '2025-09-15 09:17:49'), +(2, 'Human Resources Updates', 2, 2, '2025-09-17 10:47:49', '2025-09-17 10:47:49'), +(3, 'Policy & Procedure Changes', 2, 2, '2025-09-20 11:32:49', '2025-09-20 11:32:49'), +(4, 'Company Events & Celebrations', 2, 2, '2025-09-23 15:02:49', '2025-09-23 15:02:49'), +(5, 'Training & Development Programs', 2, 2, '2025-09-25 13:37:49', '2025-09-25 13:37:49'), +(6, 'Benefits & Compensation Updates', 2, 2, '2025-09-27 15:27:49', '2025-09-27 15:27:49'), +(7, 'Safety & Security Alerts', 2, 2, '2025-09-30 12:17:49', '2025-09-30 12:17:49'), +(8, 'Technology & IT Updates', 2, 2, '2025-10-03 16:47:49', '2025-10-03 16:47:49'), +(9, 'Finance & Budget Notices', 2, 2, '2025-10-05 11:02:49', '2025-10-05 11:02:49'), +(10, 'Operations & Process Updates', 2, 2, '2025-10-07 14:32:49', '2025-10-07 14:32:49'), +(11, 'Employee Recognition & Awards', 2, 2, '2025-10-10 08:47:49', '2025-10-10 08:47:49'), +(12, 'Health & Wellness Programs', 2, 2, '2025-10-13 09:17:49', '2025-10-13 09:17:49'), +(13, 'Organizational Changes', 2, 2, '2025-10-15 11:37:49', '2025-10-15 11:37:49'), +(14, 'Project & Initiative Updates', 2, 2, '2025-10-17 14:02:49', '2025-10-17 14:02:49'), +(15, 'Customer & Client Relations', 2, 2, '2025-10-20 15:42:49', '2025-10-20 15:42:49'), +(16, 'Compliance & Regulatory Updates', 2, 2, '2025-10-23 12:27:49', '2025-10-23 12:27:49'), +(17, 'Facility & Infrastructure News', 2, 2, '2025-10-25 14:52:49', '2025-10-25 14:52:49'), +(18, 'Quality & Performance Metrics', 2, 2, '2025-10-27 16:17:49', '2025-10-27 16:17:49'), +(19, 'Environmental & Sustainability', 2, 2, '2025-10-30 11:07:49', '2025-10-30 11:07:49'), +(20, 'Partnership & Collaboration News', 2, 2, '2025-11-02 13:32:49', '2025-11-02 13:32:49'), +(21, 'Innovation & Research Updates', 2, 2, '2025-11-04 11:57:49', '2025-11-04 11:57:49'), +(22, 'Market & Industry Insights', 2, 2, '2025-11-06 15:22:49', '2025-11-06 15:22:49'), +(23, 'Emergency & Crisis Communications', 2, 2, '2025-11-09 09:42:49', '2025-11-09 09:42:49'), +(24, 'Diversity & Inclusion Initiatives', 2, 2, '2025-11-12 13:12:49', '2025-11-12 13:12:49'), +(25, 'Remote Work & Flexibility Updates', 2, 2, '2025-11-14 14:37:49', '2025-11-14 14:37:49'), +(26, 'Performance Review & Feedback', 2, 2, '2025-11-16 17:02:49', '2025-11-16 17:02:49'), +(27, 'Career Development Opportunities', 2, 2, '2025-11-19 08:27:49', '2025-11-19 08:27:49'), +(28, 'Social & Community Engagement', 2, 2, '2025-11-22 10:52:49', '2025-11-22 10:52:49'), +(29, 'Vendor & Supplier Communications', 2, 2, '2025-11-24 13:17:49', '2025-11-24 13:17:49'), +(30, 'General Company Information', 2, 2, '2025-11-26 15:47:49', '2025-11-26 15:47:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `announcement_departments` +-- + +CREATE TABLE `announcement_departments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `announcement_id` bigint(20) UNSIGNED NOT NULL, + `department_id` bigint(20) UNSIGNED NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `announcement_departments` +-- + +INSERT INTO `announcement_departments` (`id`, `announcement_id`, `department_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 9, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(2, 1, 11, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(3, 1, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(4, 2, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(5, 2, 21, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(6, 2, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(7, 3, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(8, 3, 9, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(9, 3, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(10, 4, 18, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(11, 4, 27, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(12, 5, 8, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(13, 5, 28, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(14, 6, 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(15, 6, 11, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(16, 6, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(17, 7, 3, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(18, 7, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(19, 7, 22, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(20, 8, 11, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(21, 9, 3, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(22, 9, 14, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(23, 9, 20, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(24, 10, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(25, 11, 14, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(26, 11, 19, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(27, 11, 20, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(28, 12, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(29, 13, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(30, 13, 28, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(31, 13, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(32, 14, 2, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(33, 14, 20, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(34, 15, 6, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(35, 15, 27, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(36, 16, 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(37, 16, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(38, 16, 12, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(39, 17, 4, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(40, 17, 6, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(41, 17, 28, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(42, 18, 3, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(43, 18, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(44, 18, 10, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(45, 19, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(46, 19, 18, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(47, 20, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(48, 20, 20, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(49, 20, 25, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(50, 21, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(51, 21, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(52, 22, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(53, 23, 3, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(54, 23, 21, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(55, 24, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(56, 25, 18, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(57, 26, 9, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(58, 26, 14, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(59, 27, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(60, 28, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(61, 28, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(62, 29, 4, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(63, 29, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(64, 30, 21, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(65, 30, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `apikey_setiings` +-- + +CREATE TABLE `apikey_setiings` ( + `id` bigint(20) UNSIGNED NOT NULL, + `key` text NOT NULL, + `provider` varchar(255) NOT NULL DEFAULT 'gemini', + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `created_by` bigint(20) UNSIGNED 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 `assistant_templates` +-- + +CREATE TABLE `assistant_templates` ( + `id` bigint(20) UNSIGNED NOT NULL, + `template_name` varchar(255) NOT NULL, + `template_module` varchar(255) NOT NULL, + `module` varchar(255) NOT NULL, + `prompt` text NOT NULL, + `field_json` text NOT NULL, + `is_tone` 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 `attendances` +-- + +CREATE TABLE `attendances` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `shift_id` bigint(20) UNSIGNED NOT NULL, + `date` date NOT NULL, + `clock_in` datetime NOT NULL, + `clock_out` datetime DEFAULT NULL, + `break_hour` decimal(8,2) DEFAULT 0.00, + `total_hour` decimal(8,2) DEFAULT 0.00, + `overtime_hours` decimal(8,2) DEFAULT 0.00, + `overtime_amount` decimal(10,2) DEFAULT 0.00, + `late_hours` decimal(8,2) DEFAULT 0.00, + `early_hours` decimal(8,2) DEFAULT 0.00, + `working_hours` decimal(8,2) DEFAULT 0.00, + `is_holiday` tinyint(1) NOT NULL DEFAULT 0, + `is_weekend` tinyint(1) NOT NULL DEFAULT 0, + `is_half_day` tinyint(1) NOT NULL DEFAULT 0, + `late_reason` varchar(255) DEFAULT NULL, + `early_checkout_reason` varchar(255) DEFAULT NULL, + `approved_by_id` bigint(20) UNSIGNED DEFAULT NULL, + `approved_at` datetime DEFAULT NULL, + `status` enum('present','half day','absent') NOT NULL DEFAULT 'present', + `notes` longtext DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `attendances` +-- + +INSERT INTO `attendances` (`id`, `employee_id`, `shift_id`, `date`, `clock_in`, `clock_out`, `break_hour`, `total_hour`, `overtime_hours`, `overtime_amount`, `late_hours`, `early_hours`, `working_hours`, `is_holiday`, `is_weekend`, `is_half_day`, `late_reason`, `early_checkout_reason`, `approved_by_id`, `approved_at`, `status`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 8, 6, '2025-07-01', '2025-07-01 08:00:00', '2025-07-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(2, 12, 6, '2025-07-01', '2025-07-01 08:00:00', '2025-07-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(3, 14, 4, '2025-07-01', '2025-07-01 06:00:00', '2025-07-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(4, 18, 4, '2025-07-01', '2025-07-01 06:00:00', '2025-07-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(5, 20, 3, '2025-07-01', '2025-07-01 22:00:00', '2025-07-01 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(6, 24, 3, '2025-07-01', '2025-07-01 22:00:00', '2025-07-01 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(7, 26, 2, '2025-07-01', '2025-07-01 14:00:00', '2025-07-01 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(8, 8, 6, '2025-07-02', '2025-07-02 08:00:00', '2025-07-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(9, 10, 5, '2025-07-02', '2025-07-02 10:00:00', '2025-07-02 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(10, 12, 6, '2025-07-02', '2025-07-02 08:00:00', '2025-07-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(11, 14, 4, '2025-07-02', '2025-07-02 06:00:00', '2025-07-02 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(12, 16, 3, '2025-07-02', '2025-07-02 22:00:00', '2025-07-02 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(13, 18, 4, '2025-07-02', '2025-07-02 06:00:00', '2025-07-02 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(14, 20, 3, '2025-07-02', '2025-07-02 22:00:00', '2025-07-02 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(15, 22, 2, '2025-07-02', '2025-07-02 14:00:00', '2025-07-02 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(16, 24, 3, '2025-07-02', '2025-07-02 22:00:00', '2025-07-02 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(17, 26, 2, '2025-07-02', '2025-07-02 14:00:00', '2025-07-02 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(18, 8, 6, '2025-07-03', '2025-07-03 08:00:00', '2025-07-03 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(19, 10, 5, '2025-07-03', '2025-07-03 10:00:00', '2025-07-03 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(20, 12, 6, '2025-07-03', '2025-07-03 08:00:00', '2025-07-03 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(21, 14, 4, '2025-07-03', '2025-07-03 06:00:00', '2025-07-03 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(22, 16, 3, '2025-07-03', '2025-07-03 22:00:00', '2025-07-03 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(23, 18, 4, '2025-07-03', '2025-07-03 06:00:00', '2025-07-03 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(24, 20, 3, '2025-07-03', '2025-07-03 22:00:00', '2025-07-03 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(25, 22, 2, '2025-07-03', '2025-07-03 14:00:00', '2025-07-03 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(26, 24, 3, '2025-07-03', '2025-07-03 22:00:00', '2025-07-03 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(27, 26, 2, '2025-07-03', '2025-07-03 14:00:00', '2025-07-03 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(28, 8, 6, '2025-07-04', '2025-07-04 08:00:00', '2025-07-04 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(29, 10, 5, '2025-07-04', '2025-07-04 10:00:00', '2025-07-04 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(30, 12, 6, '2025-07-04', '2025-07-04 08:00:00', '2025-07-04 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(31, 14, 4, '2025-07-04', '2025-07-04 06:00:00', '2025-07-04 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(32, 16, 3, '2025-07-04', '2025-07-04 22:00:00', '2025-07-04 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(33, 18, 4, '2025-07-04', '2025-07-04 06:00:00', '2025-07-04 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(34, 20, 3, '2025-07-04', '2025-07-04 22:00:00', '2025-07-04 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(35, 22, 2, '2025-07-04', '2025-07-04 14:00:00', '2025-07-04 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(36, 24, 3, '2025-07-04', '2025-07-04 22:00:00', '2025-07-04 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(37, 26, 2, '2025-07-04', '2025-07-04 14:00:00', '2025-07-04 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(38, 10, 5, '2025-07-07', '2025-07-07 10:00:00', '2025-07-07 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(39, 12, 6, '2025-07-07', '2025-07-07 08:00:00', '2025-07-07 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(40, 16, 3, '2025-07-07', '2025-07-07 22:00:00', '2025-07-07 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(41, 18, 4, '2025-07-07', '2025-07-07 06:00:00', '2025-07-07 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(42, 22, 2, '2025-07-07', '2025-07-07 14:00:00', '2025-07-07 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(43, 24, 3, '2025-07-07', '2025-07-07 22:00:00', '2025-07-07 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(44, 10, 5, '2025-07-08', '2025-07-08 10:00:00', '2025-07-08 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(45, 12, 6, '2025-07-08', '2025-07-08 08:00:00', '2025-07-08 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(46, 16, 3, '2025-07-08', '2025-07-08 22:00:00', '2025-07-08 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(47, 18, 4, '2025-07-08', '2025-07-08 06:00:00', '2025-07-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(48, 22, 2, '2025-07-08', '2025-07-08 14:00:00', '2025-07-08 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(49, 24, 3, '2025-07-08', '2025-07-08 22:00:00', '2025-07-08 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(50, 8, 6, '2025-07-09', '2025-07-09 08:00:00', '2025-07-09 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(51, 10, 5, '2025-07-09', '2025-07-09 10:00:00', '2025-07-09 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(52, 14, 4, '2025-07-09', '2025-07-09 06:00:00', '2025-07-09 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(53, 16, 3, '2025-07-09', '2025-07-09 22:00:00', '2025-07-09 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(54, 20, 3, '2025-07-09', '2025-07-09 22:00:00', '2025-07-09 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(55, 22, 2, '2025-07-09', '2025-07-09 14:00:00', '2025-07-09 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(56, 26, 2, '2025-07-09', '2025-07-09 14:00:00', '2025-07-09 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(57, 8, 6, '2025-07-10', '2025-07-10 08:00:00', '2025-07-10 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(58, 10, 5, '2025-07-10', '2025-07-10 10:00:00', '2025-07-10 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(59, 14, 4, '2025-07-10', '2025-07-10 06:00:00', '2025-07-10 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(60, 16, 3, '2025-07-10', '2025-07-10 22:00:00', '2025-07-10 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(61, 20, 3, '2025-07-10', '2025-07-10 22:00:00', '2025-07-10 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(62, 22, 2, '2025-07-10', '2025-07-10 14:00:00', '2025-07-10 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(63, 26, 2, '2025-07-10', '2025-07-10 14:00:00', '2025-07-10 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(64, 8, 6, '2025-07-11', '2025-07-11 08:00:00', '2025-07-11 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(65, 10, 5, '2025-07-11', '2025-07-11 10:00:00', '2025-07-11 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(66, 14, 4, '2025-07-11', '2025-07-11 06:00:00', '2025-07-11 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(67, 16, 3, '2025-07-11', '2025-07-11 22:00:00', '2025-07-11 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(68, 20, 3, '2025-07-11', '2025-07-11 22:00:00', '2025-07-11 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(69, 22, 2, '2025-07-11', '2025-07-11 14:00:00', '2025-07-11 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(70, 26, 2, '2025-07-11', '2025-07-11 14:00:00', '2025-07-11 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(71, 8, 6, '2025-07-14', '2025-07-14 08:00:00', '2025-07-14 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(72, 12, 6, '2025-07-14', '2025-07-14 08:00:00', '2025-07-14 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(73, 14, 4, '2025-07-14', '2025-07-14 06:00:00', '2025-07-14 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(74, 18, 4, '2025-07-14', '2025-07-14 06:00:00', '2025-07-14 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(75, 20, 3, '2025-07-14', '2025-07-14 22:00:00', '2025-07-14 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(76, 24, 3, '2025-07-14', '2025-07-14 22:00:00', '2025-07-14 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(77, 26, 2, '2025-07-14', '2025-07-14 14:00:00', '2025-07-14 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(78, 8, 6, '2025-07-15', '2025-07-15 08:00:00', '2025-07-15 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(79, 10, 5, '2025-07-15', '2025-07-15 10:00:00', '2025-07-15 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(80, 12, 6, '2025-07-15', '2025-07-15 08:00:00', '2025-07-15 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(81, 14, 4, '2025-07-15', '2025-07-15 06:00:00', '2025-07-15 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(82, 16, 3, '2025-07-15', '2025-07-15 22:00:00', '2025-07-15 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(83, 18, 4, '2025-07-15', '2025-07-15 06:00:00', '2025-07-15 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(84, 20, 3, '2025-07-15', '2025-07-15 22:00:00', '2025-07-15 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(85, 22, 2, '2025-07-15', '2025-07-15 14:00:00', '2025-07-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(86, 24, 3, '2025-07-15', '2025-07-15 22:00:00', '2025-07-15 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(87, 26, 2, '2025-07-15', '2025-07-15 14:00:00', '2025-07-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(88, 8, 6, '2025-07-16', '2025-07-16 08:00:00', '2025-07-16 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(89, 10, 5, '2025-07-16', '2025-07-16 10:00:00', '2025-07-16 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(90, 12, 6, '2025-07-16', '2025-07-16 08:00:00', '2025-07-16 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(91, 14, 4, '2025-07-16', '2025-07-16 06:00:00', '2025-07-16 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(92, 16, 3, '2025-07-16', '2025-07-16 22:00:00', '2025-07-16 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(93, 18, 4, '2025-07-16', '2025-07-16 06:00:00', '2025-07-16 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(94, 20, 3, '2025-07-16', '2025-07-16 22:00:00', '2025-07-16 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(95, 22, 2, '2025-07-16', '2025-07-16 14:00:00', '2025-07-16 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(96, 24, 3, '2025-07-16', '2025-07-16 22:00:00', '2025-07-16 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(97, 26, 2, '2025-07-16', '2025-07-16 14:00:00', '2025-07-16 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(98, 10, 5, '2025-07-17', '2025-07-17 10:00:00', '2025-07-17 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(99, 12, 6, '2025-07-17', '2025-07-17 08:00:00', '2025-07-17 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(100, 16, 3, '2025-07-17', '2025-07-17 22:00:00', '2025-07-17 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(101, 18, 4, '2025-07-17', '2025-07-17 06:00:00', '2025-07-17 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(102, 22, 2, '2025-07-17', '2025-07-17 14:00:00', '2025-07-17 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(103, 24, 3, '2025-07-17', '2025-07-17 22:00:00', '2025-07-17 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(104, 10, 5, '2025-07-18', '2025-07-18 10:00:00', '2025-07-18 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(105, 12, 6, '2025-07-18', '2025-07-18 08:00:00', '2025-07-18 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(106, 16, 3, '2025-07-18', '2025-07-18 22:00:00', '2025-07-18 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(107, 18, 4, '2025-07-18', '2025-07-18 06:00:00', '2025-07-18 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(108, 22, 2, '2025-07-18', '2025-07-18 14:00:00', '2025-07-18 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(109, 24, 3, '2025-07-18', '2025-07-18 22:00:00', '2025-07-18 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(110, 8, 6, '2025-07-21', '2025-07-21 08:00:00', '2025-07-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(111, 10, 5, '2025-07-21', '2025-07-21 10:00:00', '2025-07-21 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(112, 12, 6, '2025-07-21', '2025-07-21 08:00:00', '2025-07-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(113, 14, 4, '2025-07-21', '2025-07-21 06:00:00', '2025-07-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(114, 16, 3, '2025-07-21', '2025-07-21 22:00:00', '2025-07-21 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(115, 18, 4, '2025-07-21', '2025-07-21 06:00:00', '2025-07-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(116, 20, 3, '2025-07-21', '2025-07-21 22:00:00', '2025-07-21 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(117, 22, 2, '2025-07-21', '2025-07-21 14:00:00', '2025-07-21 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(118, 24, 3, '2025-07-21', '2025-07-21 22:00:00', '2025-07-21 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(119, 26, 2, '2025-07-21', '2025-07-21 14:00:00', '2025-07-21 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(120, 8, 6, '2025-07-22', '2025-07-22 08:00:00', '2025-07-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(121, 10, 5, '2025-07-22', '2025-07-22 10:00:00', '2025-07-22 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(122, 12, 6, '2025-07-22', '2025-07-22 08:00:00', '2025-07-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(123, 14, 4, '2025-07-22', '2025-07-22 06:00:00', '2025-07-22 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(124, 16, 3, '2025-07-22', '2025-07-22 22:00:00', '2025-07-22 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(125, 18, 4, '2025-07-22', '2025-07-22 06:00:00', '2025-07-22 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(126, 20, 3, '2025-07-22', '2025-07-22 22:00:00', '2025-07-22 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(127, 22, 2, '2025-07-22', '2025-07-22 14:00:00', '2025-07-22 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(128, 24, 3, '2025-07-22', '2025-07-22 22:00:00', '2025-07-22 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(129, 26, 2, '2025-07-22', '2025-07-22 14:00:00', '2025-07-22 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(130, 8, 6, '2025-07-23', '2025-07-23 08:00:00', '2025-07-23 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(131, 10, 5, '2025-07-23', '2025-07-23 10:00:00', '2025-07-23 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(132, 12, 6, '2025-07-23', '2025-07-23 08:00:00', '2025-07-23 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(133, 14, 4, '2025-07-23', '2025-07-23 06:00:00', '2025-07-23 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(134, 16, 3, '2025-07-23', '2025-07-23 22:00:00', '2025-07-23 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(135, 18, 4, '2025-07-23', '2025-07-23 06:00:00', '2025-07-23 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(136, 20, 3, '2025-07-23', '2025-07-23 22:00:00', '2025-07-23 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(137, 22, 2, '2025-07-23', '2025-07-23 14:00:00', '2025-07-23 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(138, 24, 3, '2025-07-23', '2025-07-23 22:00:00', '2025-07-23 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(139, 26, 2, '2025-07-23', '2025-07-23 14:00:00', '2025-07-23 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(140, 8, 6, '2025-07-24', '2025-07-24 08:00:00', '2025-07-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(141, 10, 5, '2025-07-24', '2025-07-24 10:00:00', '2025-07-24 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(142, 12, 6, '2025-07-24', '2025-07-24 08:00:00', '2025-07-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(143, 14, 4, '2025-07-24', '2025-07-24 06:00:00', '2025-07-24 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(144, 16, 3, '2025-07-24', '2025-07-24 22:00:00', '2025-07-24 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(145, 18, 4, '2025-07-24', '2025-07-24 06:00:00', '2025-07-24 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(146, 20, 3, '2025-07-24', '2025-07-24 22:00:00', '2025-07-24 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(147, 22, 2, '2025-07-24', '2025-07-24 14:00:00', '2025-07-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(148, 24, 3, '2025-07-24', '2025-07-24 22:00:00', '2025-07-24 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(149, 26, 2, '2025-07-24', '2025-07-24 14:00:00', '2025-07-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(150, 8, 6, '2025-07-25', '2025-07-25 08:00:00', '2025-07-25 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(151, 10, 5, '2025-07-25', '2025-07-25 10:00:00', '2025-07-25 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(152, 12, 6, '2025-07-25', '2025-07-25 08:00:00', '2025-07-25 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(153, 14, 4, '2025-07-25', '2025-07-25 06:00:00', '2025-07-25 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(154, 16, 3, '2025-07-25', '2025-07-25 22:00:00', '2025-07-25 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(155, 18, 4, '2025-07-25', '2025-07-25 06:00:00', '2025-07-25 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(156, 20, 3, '2025-07-25', '2025-07-25 22:00:00', '2025-07-25 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(157, 22, 2, '2025-07-25', '2025-07-25 14:00:00', '2025-07-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(158, 24, 3, '2025-07-25', '2025-07-25 22:00:00', '2025-07-25 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(159, 26, 2, '2025-07-25', '2025-07-25 14:00:00', '2025-07-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(160, 8, 6, '2025-07-28', '2025-07-28 08:00:00', '2025-07-28 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(161, 10, 5, '2025-07-28', '2025-07-28 10:00:00', '2025-07-28 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(162, 12, 6, '2025-07-28', '2025-07-28 08:00:00', '2025-07-28 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(163, 14, 4, '2025-07-28', '2025-07-28 06:00:00', '2025-07-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(164, 16, 3, '2025-07-28', '2025-07-28 22:00:00', '2025-07-28 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(165, 18, 4, '2025-07-28', '2025-07-28 06:00:00', '2025-07-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(166, 20, 3, '2025-07-28', '2025-07-28 22:00:00', '2025-07-28 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(167, 22, 2, '2025-07-28', '2025-07-28 14:00:00', '2025-07-28 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(168, 24, 3, '2025-07-28', '2025-07-28 22:00:00', '2025-07-28 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(169, 26, 2, '2025-07-28', '2025-07-28 14:00:00', '2025-07-28 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(170, 8, 6, '2025-07-29', '2025-07-29 08:00:00', '2025-07-29 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(171, 10, 5, '2025-07-29', '2025-07-29 10:00:00', '2025-07-29 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(172, 12, 6, '2025-07-29', '2025-07-29 08:00:00', '2025-07-29 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(173, 14, 4, '2025-07-29', '2025-07-29 06:00:00', '2025-07-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(174, 16, 3, '2025-07-29', '2025-07-29 22:00:00', '2025-07-29 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(175, 18, 4, '2025-07-29', '2025-07-29 06:00:00', '2025-07-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(176, 20, 3, '2025-07-29', '2025-07-29 22:00:00', '2025-07-29 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(177, 22, 2, '2025-07-29', '2025-07-29 14:00:00', '2025-07-29 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(178, 24, 3, '2025-07-29', '2025-07-29 22:00:00', '2025-07-29 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(179, 26, 2, '2025-07-29', '2025-07-29 14:00:00', '2025-07-29 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(180, 8, 6, '2025-07-30', '2025-07-30 08:00:00', '2025-07-30 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(181, 10, 5, '2025-07-30', '2025-07-30 10:00:00', '2025-07-30 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(182, 12, 6, '2025-07-30', '2025-07-30 08:00:00', '2025-07-30 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(183, 14, 4, '2025-07-30', '2025-07-30 06:00:00', '2025-07-30 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(184, 16, 3, '2025-07-30', '2025-07-30 22:00:00', '2025-07-30 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(185, 18, 4, '2025-07-30', '2025-07-30 06:00:00', '2025-07-30 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(186, 20, 3, '2025-07-30', '2025-07-30 22:00:00', '2025-07-30 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(187, 22, 2, '2025-07-30', '2025-07-30 14:00:00', '2025-07-30 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(188, 24, 3, '2025-07-30', '2025-07-30 22:00:00', '2025-07-30 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(189, 26, 2, '2025-07-30', '2025-07-30 14:00:00', '2025-07-30 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(190, 8, 6, '2025-07-31', '2025-07-31 08:00:00', '2025-07-31 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(191, 10, 5, '2025-07-31', '2025-07-31 10:00:00', '2025-07-31 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(192, 12, 6, '2025-07-31', '2025-07-31 08:00:00', '2025-07-31 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(193, 14, 4, '2025-07-31', '2025-07-31 06:00:00', '2025-07-31 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(194, 16, 3, '2025-07-31', '2025-07-31 22:00:00', '2025-07-31 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(195, 18, 4, '2025-07-31', '2025-07-31 06:00:00', '2025-07-31 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(196, 20, 3, '2025-07-31', '2025-07-31 22:00:00', '2025-07-31 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(197, 22, 2, '2025-07-31', '2025-07-31 14:00:00', '2025-07-31 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(198, 24, 3, '2025-07-31', '2025-07-31 22:00:00', '2025-07-31 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(199, 26, 2, '2025-07-31', '2025-07-31 14:00:00', '2025-07-31 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(200, 8, 6, '2025-08-01', '2025-08-01 08:00:00', '2025-08-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(201, 10, 5, '2025-08-01', '2025-08-01 10:00:00', '2025-08-01 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(202, 12, 6, '2025-08-01', '2025-08-01 08:00:00', '2025-08-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(203, 14, 4, '2025-08-01', '2025-08-01 06:00:00', '2025-08-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(204, 16, 3, '2025-08-01', '2025-08-01 22:00:00', '2025-08-01 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(205, 18, 4, '2025-08-01', '2025-08-01 06:00:00', '2025-08-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(206, 20, 3, '2025-08-01', '2025-08-01 22:00:00', '2025-08-01 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(207, 22, 2, '2025-08-01', '2025-08-01 14:00:00', '2025-08-01 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(208, 24, 3, '2025-08-01', '2025-08-01 22:00:00', '2025-08-01 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(209, 26, 2, '2025-08-01', '2025-08-01 14:00:00', '2025-08-01 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(210, 10, 5, '2025-08-04', '2025-08-04 10:00:00', '2025-08-04 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'); +INSERT INTO `attendances` (`id`, `employee_id`, `shift_id`, `date`, `clock_in`, `clock_out`, `break_hour`, `total_hour`, `overtime_hours`, `overtime_amount`, `late_hours`, `early_hours`, `working_hours`, `is_holiday`, `is_weekend`, `is_half_day`, `late_reason`, `early_checkout_reason`, `approved_by_id`, `approved_at`, `status`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(211, 12, 6, '2025-08-04', '2025-08-04 08:00:00', '2025-08-04 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(212, 16, 3, '2025-08-04', '2025-08-04 22:00:00', '2025-08-04 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(213, 18, 4, '2025-08-04', '2025-08-04 06:00:00', '2025-08-04 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(214, 22, 2, '2025-08-04', '2025-08-04 14:00:00', '2025-08-04 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(215, 24, 3, '2025-08-04', '2025-08-04 22:00:00', '2025-08-04 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(216, 8, 6, '2025-08-05', '2025-08-05 08:00:00', '2025-08-05 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(217, 10, 5, '2025-08-05', '2025-08-05 10:00:00', '2025-08-05 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(218, 12, 6, '2025-08-05', '2025-08-05 08:00:00', '2025-08-05 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(219, 14, 4, '2025-08-05', '2025-08-05 06:00:00', '2025-08-05 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(220, 16, 3, '2025-08-05', '2025-08-05 22:00:00', '2025-08-05 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(221, 18, 4, '2025-08-05', '2025-08-05 06:00:00', '2025-08-05 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(222, 20, 3, '2025-08-05', '2025-08-05 22:00:00', '2025-08-05 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(223, 22, 2, '2025-08-05', '2025-08-05 14:00:00', '2025-08-05 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(224, 24, 3, '2025-08-05', '2025-08-05 22:00:00', '2025-08-05 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(225, 26, 2, '2025-08-05', '2025-08-05 14:00:00', '2025-08-05 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(226, 8, 6, '2025-08-06', '2025-08-06 08:00:00', '2025-08-06 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(227, 10, 5, '2025-08-06', '2025-08-06 10:00:00', '2025-08-06 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(228, 14, 4, '2025-08-06', '2025-08-06 06:00:00', '2025-08-06 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(229, 16, 3, '2025-08-06', '2025-08-06 22:00:00', '2025-08-06 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(230, 20, 3, '2025-08-06', '2025-08-06 22:00:00', '2025-08-06 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(231, 22, 2, '2025-08-06', '2025-08-06 14:00:00', '2025-08-06 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(232, 26, 2, '2025-08-06', '2025-08-06 14:00:00', '2025-08-06 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(233, 8, 6, '2025-08-07', '2025-08-07 08:00:00', '2025-08-07 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(234, 10, 5, '2025-08-07', '2025-08-07 10:00:00', '2025-08-07 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(235, 14, 4, '2025-08-07', '2025-08-07 06:00:00', '2025-08-07 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(236, 16, 3, '2025-08-07', '2025-08-07 22:00:00', '2025-08-07 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(237, 20, 3, '2025-08-07', '2025-08-07 22:00:00', '2025-08-07 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(238, 22, 2, '2025-08-07', '2025-08-07 14:00:00', '2025-08-07 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(239, 26, 2, '2025-08-07', '2025-08-07 14:00:00', '2025-08-07 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(240, 8, 6, '2025-08-08', '2025-08-08 08:00:00', '2025-08-08 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(241, 10, 5, '2025-08-08', '2025-08-08 10:00:00', '2025-08-08 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(242, 12, 6, '2025-08-08', '2025-08-08 08:00:00', '2025-08-08 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(243, 14, 4, '2025-08-08', '2025-08-08 06:00:00', '2025-08-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(244, 16, 3, '2025-08-08', '2025-08-08 22:00:00', '2025-08-08 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(245, 18, 4, '2025-08-08', '2025-08-08 06:00:00', '2025-08-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(246, 20, 3, '2025-08-08', '2025-08-08 22:00:00', '2025-08-08 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(247, 22, 2, '2025-08-08', '2025-08-08 14:00:00', '2025-08-08 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(248, 24, 3, '2025-08-08', '2025-08-08 22:00:00', '2025-08-08 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(249, 26, 2, '2025-08-08', '2025-08-08 14:00:00', '2025-08-08 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(250, 8, 6, '2025-08-11', '2025-08-11 08:00:00', '2025-08-11 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(251, 12, 6, '2025-08-11', '2025-08-11 08:00:00', '2025-08-11 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(252, 14, 4, '2025-08-11', '2025-08-11 06:00:00', '2025-08-11 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(253, 18, 4, '2025-08-11', '2025-08-11 06:00:00', '2025-08-11 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(254, 20, 3, '2025-08-11', '2025-08-11 22:00:00', '2025-08-11 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(255, 24, 3, '2025-08-11', '2025-08-11 22:00:00', '2025-08-11 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(256, 26, 2, '2025-08-11', '2025-08-11 14:00:00', '2025-08-11 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(257, 8, 6, '2025-08-12', '2025-08-12 08:00:00', '2025-08-12 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(258, 12, 6, '2025-08-12', '2025-08-12 08:00:00', '2025-08-12 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(259, 14, 4, '2025-08-12', '2025-08-12 06:00:00', '2025-08-12 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(260, 18, 4, '2025-08-12', '2025-08-12 06:00:00', '2025-08-12 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(261, 20, 3, '2025-08-12', '2025-08-12 22:00:00', '2025-08-12 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(262, 24, 3, '2025-08-12', '2025-08-12 22:00:00', '2025-08-12 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(263, 26, 2, '2025-08-12', '2025-08-12 14:00:00', '2025-08-12 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(264, 8, 6, '2025-08-13', '2025-08-13 08:00:00', '2025-08-13 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(265, 12, 6, '2025-08-13', '2025-08-13 08:00:00', '2025-08-13 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(266, 14, 4, '2025-08-13', '2025-08-13 06:00:00', '2025-08-13 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(267, 18, 4, '2025-08-13', '2025-08-13 06:00:00', '2025-08-13 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(268, 20, 3, '2025-08-13', '2025-08-13 22:00:00', '2025-08-13 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(269, 24, 3, '2025-08-13', '2025-08-13 22:00:00', '2025-08-13 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(270, 26, 2, '2025-08-13', '2025-08-13 14:00:00', '2025-08-13 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(271, 10, 5, '2025-08-14', '2025-08-14 10:00:00', '2025-08-14 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(272, 12, 6, '2025-08-14', '2025-08-14 08:00:00', '2025-08-14 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(273, 16, 3, '2025-08-14', '2025-08-14 22:00:00', '2025-08-14 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(274, 18, 4, '2025-08-14', '2025-08-14 06:00:00', '2025-08-14 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(275, 22, 2, '2025-08-14', '2025-08-14 14:00:00', '2025-08-14 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(276, 24, 3, '2025-08-14', '2025-08-14 22:00:00', '2025-08-14 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(277, 8, 6, '2025-08-15', '2025-08-15 08:00:00', '2025-08-15 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(278, 10, 5, '2025-08-15', '2025-08-15 10:00:00', '2025-08-15 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(279, 12, 6, '2025-08-15', '2025-08-15 08:00:00', '2025-08-15 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(280, 14, 4, '2025-08-15', '2025-08-15 06:00:00', '2025-08-15 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(281, 16, 3, '2025-08-15', '2025-08-15 22:00:00', '2025-08-15 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(282, 18, 4, '2025-08-15', '2025-08-15 06:00:00', '2025-08-15 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(283, 20, 3, '2025-08-15', '2025-08-15 22:00:00', '2025-08-15 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(284, 22, 2, '2025-08-15', '2025-08-15 14:00:00', '2025-08-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(285, 24, 3, '2025-08-15', '2025-08-15 22:00:00', '2025-08-15 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(286, 26, 2, '2025-08-15', '2025-08-15 14:00:00', '2025-08-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(287, 8, 6, '2025-08-18', '2025-08-18 08:00:00', '2025-08-18 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(288, 10, 5, '2025-08-18', '2025-08-18 10:00:00', '2025-08-18 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(289, 14, 4, '2025-08-18', '2025-08-18 06:00:00', '2025-08-18 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(290, 16, 3, '2025-08-18', '2025-08-18 22:00:00', '2025-08-18 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(291, 20, 3, '2025-08-18', '2025-08-18 22:00:00', '2025-08-18 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(292, 22, 2, '2025-08-18', '2025-08-18 14:00:00', '2025-08-18 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(293, 26, 2, '2025-08-18', '2025-08-18 14:00:00', '2025-08-18 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(294, 8, 6, '2025-08-19', '2025-08-19 08:00:00', '2025-08-19 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(295, 10, 5, '2025-08-19', '2025-08-19 10:00:00', '2025-08-19 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(296, 14, 4, '2025-08-19', '2025-08-19 06:00:00', '2025-08-19 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(297, 16, 3, '2025-08-19', '2025-08-19 22:00:00', '2025-08-19 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(298, 20, 3, '2025-08-19', '2025-08-19 22:00:00', '2025-08-19 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(299, 22, 2, '2025-08-19', '2025-08-19 14:00:00', '2025-08-19 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(300, 26, 2, '2025-08-19', '2025-08-19 14:00:00', '2025-08-19 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(301, 8, 6, '2025-08-20', '2025-08-20 08:00:00', '2025-08-20 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(302, 10, 5, '2025-08-20', '2025-08-20 10:00:00', '2025-08-20 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(303, 12, 6, '2025-08-20', '2025-08-20 08:00:00', '2025-08-20 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(304, 14, 4, '2025-08-20', '2025-08-20 06:00:00', '2025-08-20 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(305, 16, 3, '2025-08-20', '2025-08-20 22:00:00', '2025-08-20 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(306, 18, 4, '2025-08-20', '2025-08-20 06:00:00', '2025-08-20 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(307, 20, 3, '2025-08-20', '2025-08-20 22:00:00', '2025-08-20 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(308, 22, 2, '2025-08-20', '2025-08-20 14:00:00', '2025-08-20 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(309, 24, 3, '2025-08-20', '2025-08-20 22:00:00', '2025-08-20 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(310, 26, 2, '2025-08-20', '2025-08-20 14:00:00', '2025-08-20 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(311, 8, 6, '2025-08-21', '2025-08-21 08:00:00', '2025-08-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(312, 10, 5, '2025-08-21', '2025-08-21 10:00:00', '2025-08-21 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(313, 12, 6, '2025-08-21', '2025-08-21 08:00:00', '2025-08-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(314, 14, 4, '2025-08-21', '2025-08-21 06:00:00', '2025-08-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(315, 16, 3, '2025-08-21', '2025-08-21 22:00:00', '2025-08-21 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(316, 18, 4, '2025-08-21', '2025-08-21 06:00:00', '2025-08-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(317, 20, 3, '2025-08-21', '2025-08-21 22:00:00', '2025-08-21 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(318, 22, 2, '2025-08-21', '2025-08-21 14:00:00', '2025-08-21 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(319, 24, 3, '2025-08-21', '2025-08-21 22:00:00', '2025-08-21 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(320, 26, 2, '2025-08-21', '2025-08-21 14:00:00', '2025-08-21 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(321, 8, 6, '2025-08-22', '2025-08-22 08:00:00', '2025-08-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(322, 10, 5, '2025-08-22', '2025-08-22 10:00:00', '2025-08-22 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(323, 12, 6, '2025-08-22', '2025-08-22 08:00:00', '2025-08-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(324, 14, 4, '2025-08-22', '2025-08-22 06:00:00', '2025-08-22 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(325, 16, 3, '2025-08-22', '2025-08-22 22:00:00', '2025-08-22 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(326, 18, 4, '2025-08-22', '2025-08-22 06:00:00', '2025-08-22 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(327, 20, 3, '2025-08-22', '2025-08-22 22:00:00', '2025-08-22 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(328, 22, 2, '2025-08-22', '2025-08-22 14:00:00', '2025-08-22 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(329, 24, 3, '2025-08-22', '2025-08-22 22:00:00', '2025-08-22 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(330, 26, 2, '2025-08-22', '2025-08-22 14:00:00', '2025-08-22 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(331, 8, 6, '2025-08-25', '2025-08-25 08:00:00', '2025-08-25 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(332, 10, 5, '2025-08-25', '2025-08-25 10:00:00', '2025-08-25 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(333, 12, 6, '2025-08-25', '2025-08-25 08:00:00', '2025-08-25 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(334, 14, 4, '2025-08-25', '2025-08-25 06:00:00', '2025-08-25 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(335, 16, 3, '2025-08-25', '2025-08-25 22:00:00', '2025-08-25 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(336, 18, 4, '2025-08-25', '2025-08-25 06:00:00', '2025-08-25 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(337, 20, 3, '2025-08-25', '2025-08-25 22:00:00', '2025-08-25 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(338, 22, 2, '2025-08-25', '2025-08-25 14:00:00', '2025-08-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(339, 24, 3, '2025-08-25', '2025-08-25 22:00:00', '2025-08-25 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(340, 26, 2, '2025-08-25', '2025-08-25 14:00:00', '2025-08-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(341, 8, 6, '2025-08-26', '2025-08-26 08:00:00', '2025-08-26 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(342, 10, 5, '2025-08-26', '2025-08-26 10:00:00', '2025-08-26 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(343, 12, 6, '2025-08-26', '2025-08-26 08:00:00', '2025-08-26 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(344, 14, 4, '2025-08-26', '2025-08-26 06:00:00', '2025-08-26 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(345, 16, 3, '2025-08-26', '2025-08-26 22:00:00', '2025-08-26 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(346, 18, 4, '2025-08-26', '2025-08-26 06:00:00', '2025-08-26 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(347, 20, 3, '2025-08-26', '2025-08-26 22:00:00', '2025-08-26 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(348, 22, 2, '2025-08-26', '2025-08-26 14:00:00', '2025-08-26 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(349, 24, 3, '2025-08-26', '2025-08-26 22:00:00', '2025-08-26 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(350, 26, 2, '2025-08-26', '2025-08-26 14:00:00', '2025-08-26 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(351, 8, 6, '2025-08-27', '2025-08-27 08:00:00', '2025-08-27 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(352, 10, 5, '2025-08-27', '2025-08-27 10:00:00', '2025-08-27 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(353, 12, 6, '2025-08-27', '2025-08-27 08:00:00', '2025-08-27 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(354, 14, 4, '2025-08-27', '2025-08-27 06:00:00', '2025-08-27 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(355, 16, 3, '2025-08-27', '2025-08-27 22:00:00', '2025-08-27 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(356, 18, 4, '2025-08-27', '2025-08-27 06:00:00', '2025-08-27 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(357, 20, 3, '2025-08-27', '2025-08-27 22:00:00', '2025-08-27 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(358, 22, 2, '2025-08-27', '2025-08-27 14:00:00', '2025-08-27 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(359, 24, 3, '2025-08-27', '2025-08-27 22:00:00', '2025-08-27 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(360, 26, 2, '2025-08-27', '2025-08-27 14:00:00', '2025-08-27 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(361, 8, 6, '2025-08-28', '2025-08-28 08:00:00', '2025-08-28 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(362, 10, 5, '2025-08-28', '2025-08-28 10:00:00', '2025-08-28 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(363, 12, 6, '2025-08-28', '2025-08-28 08:00:00', '2025-08-28 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(364, 14, 4, '2025-08-28', '2025-08-28 06:00:00', '2025-08-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(365, 16, 3, '2025-08-28', '2025-08-28 22:00:00', '2025-08-28 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(366, 18, 4, '2025-08-28', '2025-08-28 06:00:00', '2025-08-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(367, 20, 3, '2025-08-28', '2025-08-28 22:00:00', '2025-08-28 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(368, 22, 2, '2025-08-28', '2025-08-28 14:00:00', '2025-08-28 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(369, 24, 3, '2025-08-28', '2025-08-28 22:00:00', '2025-08-28 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(370, 26, 2, '2025-08-28', '2025-08-28 14:00:00', '2025-08-28 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(371, 8, 6, '2025-08-29', '2025-08-29 08:00:00', '2025-08-29 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(372, 10, 5, '2025-08-29', '2025-08-29 10:00:00', '2025-08-29 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(373, 12, 6, '2025-08-29', '2025-08-29 08:00:00', '2025-08-29 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(374, 14, 4, '2025-08-29', '2025-08-29 06:00:00', '2025-08-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(375, 16, 3, '2025-08-29', '2025-08-29 22:00:00', '2025-08-29 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(376, 18, 4, '2025-08-29', '2025-08-29 06:00:00', '2025-08-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(377, 20, 3, '2025-08-29', '2025-08-29 22:00:00', '2025-08-29 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(378, 22, 2, '2025-08-29', '2025-08-29 14:00:00', '2025-08-29 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(379, 24, 3, '2025-08-29', '2025-08-29 22:00:00', '2025-08-29 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(380, 26, 2, '2025-08-29', '2025-08-29 14:00:00', '2025-08-29 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(381, 8, 6, '2025-09-01', '2025-09-01 08:00:00', '2025-09-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(382, 10, 5, '2025-09-01', '2025-09-01 10:00:00', '2025-09-01 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(383, 12, 6, '2025-09-01', '2025-09-01 08:00:00', '2025-09-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(384, 14, 4, '2025-09-01', '2025-09-01 06:00:00', '2025-09-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(385, 16, 3, '2025-09-01', '2025-09-01 22:00:00', '2025-09-01 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(386, 18, 4, '2025-09-01', '2025-09-01 06:00:00', '2025-09-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(387, 20, 3, '2025-09-01', '2025-09-01 22:00:00', '2025-09-01 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(388, 22, 2, '2025-09-01', '2025-09-01 14:00:00', '2025-09-01 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(389, 24, 3, '2025-09-01', '2025-09-01 22:00:00', '2025-09-01 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(390, 26, 2, '2025-09-01', '2025-09-01 14:00:00', '2025-09-01 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(391, 8, 6, '2025-09-02', '2025-09-02 08:00:00', '2025-09-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(392, 10, 5, '2025-09-02', '2025-09-02 10:00:00', '2025-09-02 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(393, 12, 6, '2025-09-02', '2025-09-02 08:00:00', '2025-09-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(394, 14, 4, '2025-09-02', '2025-09-02 06:00:00', '2025-09-02 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(395, 16, 3, '2025-09-02', '2025-09-02 22:00:00', '2025-09-02 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(396, 18, 4, '2025-09-02', '2025-09-02 06:00:00', '2025-09-02 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(397, 20, 3, '2025-09-02', '2025-09-02 22:00:00', '2025-09-02 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(398, 22, 2, '2025-09-02', '2025-09-02 14:00:00', '2025-09-02 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(399, 24, 3, '2025-09-02', '2025-09-02 22:00:00', '2025-09-02 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(400, 26, 2, '2025-09-02', '2025-09-02 14:00:00', '2025-09-02 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(401, 8, 6, '2025-09-03', '2025-09-03 08:00:00', '2025-09-03 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(402, 10, 5, '2025-09-03', '2025-09-03 10:00:00', '2025-09-03 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(403, 14, 4, '2025-09-03', '2025-09-03 06:00:00', '2025-09-03 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(404, 16, 3, '2025-09-03', '2025-09-03 22:00:00', '2025-09-03 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), +(405, 20, 3, '2025-09-03', '2025-09-03 22:00:00', '2025-09-03 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(406, 22, 2, '2025-09-03', '2025-09-03 14:00:00', '2025-09-03 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(407, 26, 2, '2025-09-03', '2025-09-03 14:00:00', '2025-09-03 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(408, 8, 6, '2025-09-04', '2025-09-04 08:00:00', '2025-09-04 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(409, 10, 5, '2025-09-04', '2025-09-04 10:00:00', '2025-09-04 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(410, 12, 6, '2025-09-04', '2025-09-04 08:00:00', '2025-09-04 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(411, 14, 4, '2025-09-04', '2025-09-04 06:00:00', '2025-09-04 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(412, 16, 3, '2025-09-04', '2025-09-04 22:00:00', '2025-09-04 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(413, 18, 4, '2025-09-04', '2025-09-04 06:00:00', '2025-09-04 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(414, 20, 3, '2025-09-04', '2025-09-04 22:00:00', '2025-09-04 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(415, 22, 2, '2025-09-04', '2025-09-04 14:00:00', '2025-09-04 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(416, 24, 3, '2025-09-04', '2025-09-04 22:00:00', '2025-09-04 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(417, 26, 2, '2025-09-04', '2025-09-04 14:00:00', '2025-09-04 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(418, 8, 6, '2025-09-05', '2025-09-05 08:00:00', '2025-09-05 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(419, 10, 5, '2025-09-05', '2025-09-05 10:00:00', '2025-09-05 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'); +INSERT INTO `attendances` (`id`, `employee_id`, `shift_id`, `date`, `clock_in`, `clock_out`, `break_hour`, `total_hour`, `overtime_hours`, `overtime_amount`, `late_hours`, `early_hours`, `working_hours`, `is_holiday`, `is_weekend`, `is_half_day`, `late_reason`, `early_checkout_reason`, `approved_by_id`, `approved_at`, `status`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(420, 12, 6, '2025-09-05', '2025-09-05 08:00:00', '2025-09-05 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(421, 14, 4, '2025-09-05', '2025-09-05 06:00:00', '2025-09-05 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(422, 16, 3, '2025-09-05', '2025-09-05 22:00:00', '2025-09-05 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(423, 18, 4, '2025-09-05', '2025-09-05 06:00:00', '2025-09-05 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(424, 20, 3, '2025-09-05', '2025-09-05 22:00:00', '2025-09-05 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(425, 22, 2, '2025-09-05', '2025-09-05 14:00:00', '2025-09-05 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(426, 24, 3, '2025-09-05', '2025-09-05 22:00:00', '2025-09-05 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(427, 26, 2, '2025-09-05', '2025-09-05 14:00:00', '2025-09-05 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(428, 8, 6, '2025-09-08', '2025-09-08 08:00:00', '2025-09-08 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(429, 12, 6, '2025-09-08', '2025-09-08 08:00:00', '2025-09-08 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(430, 14, 4, '2025-09-08', '2025-09-08 06:00:00', '2025-09-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(431, 18, 4, '2025-09-08', '2025-09-08 06:00:00', '2025-09-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(432, 20, 3, '2025-09-08', '2025-09-08 22:00:00', '2025-09-08 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(433, 24, 3, '2025-09-08', '2025-09-08 22:00:00', '2025-09-08 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(434, 26, 2, '2025-09-08', '2025-09-08 14:00:00', '2025-09-08 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(435, 8, 6, '2025-09-09', '2025-09-09 08:00:00', '2025-09-09 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(436, 12, 6, '2025-09-09', '2025-09-09 08:00:00', '2025-09-09 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(437, 14, 4, '2025-09-09', '2025-09-09 06:00:00', '2025-09-09 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(438, 18, 4, '2025-09-09', '2025-09-09 06:00:00', '2025-09-09 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(439, 20, 3, '2025-09-09', '2025-09-09 22:00:00', '2025-09-09 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(440, 24, 3, '2025-09-09', '2025-09-09 22:00:00', '2025-09-09 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(441, 26, 2, '2025-09-09', '2025-09-09 14:00:00', '2025-09-09 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(442, 8, 6, '2025-09-10', '2025-09-10 08:00:00', '2025-09-10 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(443, 10, 5, '2025-09-10', '2025-09-10 10:00:00', '2025-09-10 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(444, 12, 6, '2025-09-10', '2025-09-10 08:00:00', '2025-09-10 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(445, 14, 4, '2025-09-10', '2025-09-10 06:00:00', '2025-09-10 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(446, 16, 3, '2025-09-10', '2025-09-10 22:00:00', '2025-09-10 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(447, 18, 4, '2025-09-10', '2025-09-10 06:00:00', '2025-09-10 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(448, 20, 3, '2025-09-10', '2025-09-10 22:00:00', '2025-09-10 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(449, 22, 2, '2025-09-10', '2025-09-10 14:00:00', '2025-09-10 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(450, 24, 3, '2025-09-10', '2025-09-10 22:00:00', '2025-09-10 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(451, 26, 2, '2025-09-10', '2025-09-10 14:00:00', '2025-09-10 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(452, 10, 5, '2025-09-11', '2025-09-11 10:00:00', '2025-09-11 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(453, 12, 6, '2025-09-11', '2025-09-11 08:00:00', '2025-09-11 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(454, 16, 3, '2025-09-11', '2025-09-11 22:00:00', '2025-09-11 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(455, 18, 4, '2025-09-11', '2025-09-11 06:00:00', '2025-09-11 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(456, 22, 2, '2025-09-11', '2025-09-11 14:00:00', '2025-09-11 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(457, 24, 3, '2025-09-11', '2025-09-11 22:00:00', '2025-09-11 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(458, 10, 5, '2025-09-12', '2025-09-12 10:00:00', '2025-09-12 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(459, 12, 6, '2025-09-12', '2025-09-12 08:00:00', '2025-09-12 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(460, 16, 3, '2025-09-12', '2025-09-12 22:00:00', '2025-09-12 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(461, 18, 4, '2025-09-12', '2025-09-12 06:00:00', '2025-09-12 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(462, 22, 2, '2025-09-12', '2025-09-12 14:00:00', '2025-09-12 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(463, 24, 3, '2025-09-12', '2025-09-12 22:00:00', '2025-09-12 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(464, 10, 5, '2025-09-15', '2025-09-15 10:00:00', '2025-09-15 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(465, 16, 3, '2025-09-15', '2025-09-15 22:00:00', '2025-09-15 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(466, 22, 2, '2025-09-15', '2025-09-15 14:00:00', '2025-09-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(467, 8, 6, '2025-09-16', '2025-09-16 08:00:00', '2025-09-16 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(468, 10, 5, '2025-09-16', '2025-09-16 10:00:00', '2025-09-16 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(469, 12, 6, '2025-09-16', '2025-09-16 08:00:00', '2025-09-16 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(470, 14, 4, '2025-09-16', '2025-09-16 06:00:00', '2025-09-16 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(471, 16, 3, '2025-09-16', '2025-09-16 22:00:00', '2025-09-16 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(472, 18, 4, '2025-09-16', '2025-09-16 06:00:00', '2025-09-16 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(473, 20, 3, '2025-09-16', '2025-09-16 22:00:00', '2025-09-16 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(474, 22, 2, '2025-09-16', '2025-09-16 14:00:00', '2025-09-16 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(475, 24, 3, '2025-09-16', '2025-09-16 22:00:00', '2025-09-16 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(476, 26, 2, '2025-09-16', '2025-09-16 14:00:00', '2025-09-16 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(477, 8, 6, '2025-09-17', '2025-09-17 08:00:00', '2025-09-17 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(478, 10, 5, '2025-09-17', '2025-09-17 10:00:00', '2025-09-17 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(479, 12, 6, '2025-09-17', '2025-09-17 08:00:00', '2025-09-17 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(480, 14, 4, '2025-09-17', '2025-09-17 06:00:00', '2025-09-17 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(481, 16, 3, '2025-09-17', '2025-09-17 22:00:00', '2025-09-17 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(482, 18, 4, '2025-09-17', '2025-09-17 06:00:00', '2025-09-17 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(483, 20, 3, '2025-09-17', '2025-09-17 22:00:00', '2025-09-17 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(484, 22, 2, '2025-09-17', '2025-09-17 14:00:00', '2025-09-17 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(485, 24, 3, '2025-09-17', '2025-09-17 22:00:00', '2025-09-17 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(486, 26, 2, '2025-09-17', '2025-09-17 14:00:00', '2025-09-17 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(487, 8, 6, '2025-09-18', '2025-09-18 08:00:00', '2025-09-18 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(488, 10, 5, '2025-09-18', '2025-09-18 10:00:00', '2025-09-18 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(489, 12, 6, '2025-09-18', '2025-09-18 08:00:00', '2025-09-18 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(490, 14, 4, '2025-09-18', '2025-09-18 06:00:00', '2025-09-18 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(491, 16, 3, '2025-09-18', '2025-09-18 22:00:00', '2025-09-18 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(492, 18, 4, '2025-09-18', '2025-09-18 06:00:00', '2025-09-18 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(493, 20, 3, '2025-09-18', '2025-09-18 22:00:00', '2025-09-18 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(494, 22, 2, '2025-09-18', '2025-09-18 14:00:00', '2025-09-18 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(495, 24, 3, '2025-09-18', '2025-09-18 22:00:00', '2025-09-18 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(496, 26, 2, '2025-09-18', '2025-09-18 14:00:00', '2025-09-18 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(497, 8, 6, '2025-09-19', '2025-09-19 08:00:00', '2025-09-19 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(498, 12, 6, '2025-09-19', '2025-09-19 08:00:00', '2025-09-19 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(499, 14, 4, '2025-09-19', '2025-09-19 06:00:00', '2025-09-19 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(500, 18, 4, '2025-09-19', '2025-09-19 06:00:00', '2025-09-19 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(501, 20, 3, '2025-09-19', '2025-09-19 22:00:00', '2025-09-19 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(502, 24, 3, '2025-09-19', '2025-09-19 22:00:00', '2025-09-19 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(503, 26, 2, '2025-09-19', '2025-09-19 14:00:00', '2025-09-19 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(504, 8, 6, '2025-09-22', '2025-09-22 08:00:00', '2025-09-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(505, 12, 6, '2025-09-22', '2025-09-22 08:00:00', '2025-09-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(506, 14, 4, '2025-09-22', '2025-09-22 06:00:00', '2025-09-22 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(507, 18, 4, '2025-09-22', '2025-09-22 06:00:00', '2025-09-22 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(508, 20, 3, '2025-09-22', '2025-09-22 22:00:00', '2025-09-22 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(509, 24, 3, '2025-09-22', '2025-09-22 22:00:00', '2025-09-22 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(510, 26, 2, '2025-09-22', '2025-09-22 14:00:00', '2025-09-22 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(511, 8, 6, '2025-09-23', '2025-09-23 08:00:00', '2025-09-23 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(512, 10, 5, '2025-09-23', '2025-09-23 10:00:00', '2025-09-23 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(513, 12, 6, '2025-09-23', '2025-09-23 08:00:00', '2025-09-23 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(514, 14, 4, '2025-09-23', '2025-09-23 06:00:00', '2025-09-23 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(515, 16, 3, '2025-09-23', '2025-09-23 22:00:00', '2025-09-23 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(516, 18, 4, '2025-09-23', '2025-09-23 06:00:00', '2025-09-23 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(517, 20, 3, '2025-09-23', '2025-09-23 22:00:00', '2025-09-23 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(518, 22, 2, '2025-09-23', '2025-09-23 14:00:00', '2025-09-23 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(519, 24, 3, '2025-09-23', '2025-09-23 22:00:00', '2025-09-23 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(520, 26, 2, '2025-09-23', '2025-09-23 14:00:00', '2025-09-23 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(521, 8, 6, '2025-09-24', '2025-09-24 08:00:00', '2025-09-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(522, 10, 5, '2025-09-24', '2025-09-24 10:00:00', '2025-09-24 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(523, 12, 6, '2025-09-24', '2025-09-24 08:00:00', '2025-09-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(524, 14, 4, '2025-09-24', '2025-09-24 06:00:00', '2025-09-24 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(525, 16, 3, '2025-09-24', '2025-09-24 22:00:00', '2025-09-24 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(526, 18, 4, '2025-09-24', '2025-09-24 06:00:00', '2025-09-24 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(527, 20, 3, '2025-09-24', '2025-09-24 22:00:00', '2025-09-24 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(528, 22, 2, '2025-09-24', '2025-09-24 14:00:00', '2025-09-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(529, 24, 3, '2025-09-24', '2025-09-24 22:00:00', '2025-09-24 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(530, 26, 2, '2025-09-24', '2025-09-24 14:00:00', '2025-09-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(531, 8, 6, '2025-09-25', '2025-09-25 08:00:00', '2025-09-25 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(532, 10, 5, '2025-09-25', '2025-09-25 10:00:00', '2025-09-25 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(533, 12, 6, '2025-09-25', '2025-09-25 08:00:00', '2025-09-25 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(534, 14, 4, '2025-09-25', '2025-09-25 06:00:00', '2025-09-25 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(535, 16, 3, '2025-09-25', '2025-09-25 22:00:00', '2025-09-25 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(536, 18, 4, '2025-09-25', '2025-09-25 06:00:00', '2025-09-25 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(537, 20, 3, '2025-09-25', '2025-09-25 22:00:00', '2025-09-25 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(538, 22, 2, '2025-09-25', '2025-09-25 14:00:00', '2025-09-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(539, 24, 3, '2025-09-25', '2025-09-25 22:00:00', '2025-09-25 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(540, 26, 2, '2025-09-25', '2025-09-25 14:00:00', '2025-09-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(541, 8, 6, '2025-09-26', '2025-09-26 08:00:00', '2025-09-26 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(542, 10, 5, '2025-09-26', '2025-09-26 10:00:00', '2025-09-26 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(543, 12, 6, '2025-09-26', '2025-09-26 08:00:00', '2025-09-26 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(544, 14, 4, '2025-09-26', '2025-09-26 06:00:00', '2025-09-26 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(545, 16, 3, '2025-09-26', '2025-09-26 22:00:00', '2025-09-26 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(546, 18, 4, '2025-09-26', '2025-09-26 06:00:00', '2025-09-26 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(547, 20, 3, '2025-09-26', '2025-09-26 22:00:00', '2025-09-26 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(548, 22, 2, '2025-09-26', '2025-09-26 14:00:00', '2025-09-26 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(549, 24, 3, '2025-09-26', '2025-09-26 22:00:00', '2025-09-26 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(550, 26, 2, '2025-09-26', '2025-09-26 14:00:00', '2025-09-26 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(551, 8, 6, '2025-09-29', '2025-09-29 08:00:00', '2025-09-29 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(552, 10, 5, '2025-09-29', '2025-09-29 10:00:00', '2025-09-29 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(553, 12, 6, '2025-09-29', '2025-09-29 08:00:00', '2025-09-29 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(554, 14, 4, '2025-09-29', '2025-09-29 06:00:00', '2025-09-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(555, 16, 3, '2025-09-29', '2025-09-29 22:00:00', '2025-09-29 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(556, 18, 4, '2025-09-29', '2025-09-29 06:00:00', '2025-09-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(557, 20, 3, '2025-09-29', '2025-09-29 22:00:00', '2025-09-29 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(558, 22, 2, '2025-09-29', '2025-09-29 14:00:00', '2025-09-29 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(559, 24, 3, '2025-09-29', '2025-09-29 22:00:00', '2025-09-29 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(560, 26, 2, '2025-09-29', '2025-09-29 14:00:00', '2025-09-29 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(561, 8, 6, '2025-09-30', '2025-09-30 08:00:00', '2025-09-30 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(562, 10, 5, '2025-09-30', '2025-09-30 10:00:00', '2025-09-30 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(563, 12, 6, '2025-09-30', '2025-09-30 08:00:00', '2025-09-30 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(564, 14, 4, '2025-09-30', '2025-09-30 06:00:00', '2025-09-30 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(565, 16, 3, '2025-09-30', '2025-09-30 22:00:00', '2025-09-30 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(566, 18, 4, '2025-09-30', '2025-09-30 06:00:00', '2025-09-30 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(567, 20, 3, '2025-09-30', '2025-09-30 22:00:00', '2025-09-30 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(568, 22, 2, '2025-09-30', '2025-09-30 14:00:00', '2025-09-30 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(569, 24, 3, '2025-09-30', '2025-09-30 22:00:00', '2025-09-30 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(570, 26, 2, '2025-09-30', '2025-09-30 14:00:00', '2025-09-30 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(571, 8, 6, '2025-10-01', '2025-10-01 08:00:00', '2025-10-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(572, 12, 6, '2025-10-01', '2025-10-01 08:00:00', '2025-10-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(573, 14, 4, '2025-10-01', '2025-10-01 06:00:00', '2025-10-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(574, 18, 4, '2025-10-01', '2025-10-01 06:00:00', '2025-10-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(575, 20, 3, '2025-10-01', '2025-10-01 22:00:00', '2025-10-01 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(576, 24, 3, '2025-10-01', '2025-10-01 22:00:00', '2025-10-01 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(577, 26, 2, '2025-10-01', '2025-10-01 14:00:00', '2025-10-01 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(578, 8, 6, '2025-10-02', '2025-10-02 08:00:00', '2025-10-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(579, 10, 5, '2025-10-02', '2025-10-02 10:00:00', '2025-10-02 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(580, 12, 6, '2025-10-02', '2025-10-02 08:00:00', '2025-10-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(581, 14, 4, '2025-10-02', '2025-10-02 06:00:00', '2025-10-02 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(582, 16, 3, '2025-10-02', '2025-10-02 22:00:00', '2025-10-02 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(583, 18, 4, '2025-10-02', '2025-10-02 06:00:00', '2025-10-02 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(584, 20, 3, '2025-10-02', '2025-10-02 22:00:00', '2025-10-02 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(585, 22, 2, '2025-10-02', '2025-10-02 14:00:00', '2025-10-02 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(586, 24, 3, '2025-10-02', '2025-10-02 22:00:00', '2025-10-02 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(587, 26, 2, '2025-10-02', '2025-10-02 14:00:00', '2025-10-02 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(588, 8, 6, '2025-10-03', '2025-10-03 08:00:00', '2025-10-03 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(589, 10, 5, '2025-10-03', '2025-10-03 10:00:00', '2025-10-03 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(590, 12, 6, '2025-10-03', '2025-10-03 08:00:00', '2025-10-03 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(591, 14, 4, '2025-10-03', '2025-10-03 06:00:00', '2025-10-03 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(592, 16, 3, '2025-10-03', '2025-10-03 22:00:00', '2025-10-03 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(593, 18, 4, '2025-10-03', '2025-10-03 06:00:00', '2025-10-03 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(594, 20, 3, '2025-10-03', '2025-10-03 22:00:00', '2025-10-03 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(595, 22, 2, '2025-10-03', '2025-10-03 14:00:00', '2025-10-03 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(596, 24, 3, '2025-10-03', '2025-10-03 22:00:00', '2025-10-03 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(597, 26, 2, '2025-10-03', '2025-10-03 14:00:00', '2025-10-03 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(598, 10, 5, '2025-10-06', '2025-10-06 10:00:00', '2025-10-06 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(599, 12, 6, '2025-10-06', '2025-10-06 08:00:00', '2025-10-06 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(600, 16, 3, '2025-10-06', '2025-10-06 22:00:00', '2025-10-06 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(601, 18, 4, '2025-10-06', '2025-10-06 06:00:00', '2025-10-06 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(602, 22, 2, '2025-10-06', '2025-10-06 14:00:00', '2025-10-06 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(603, 24, 3, '2025-10-06', '2025-10-06 22:00:00', '2025-10-06 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(604, 10, 5, '2025-10-07', '2025-10-07 10:00:00', '2025-10-07 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(605, 12, 6, '2025-10-07', '2025-10-07 08:00:00', '2025-10-07 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(606, 16, 3, '2025-10-07', '2025-10-07 22:00:00', '2025-10-07 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(607, 18, 4, '2025-10-07', '2025-10-07 06:00:00', '2025-10-07 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(608, 22, 2, '2025-10-07', '2025-10-07 14:00:00', '2025-10-07 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(609, 24, 3, '2025-10-07', '2025-10-07 22:00:00', '2025-10-07 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(610, 8, 6, '2025-10-08', '2025-10-08 08:00:00', '2025-10-08 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(611, 10, 5, '2025-10-08', '2025-10-08 10:00:00', '2025-10-08 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(612, 12, 6, '2025-10-08', '2025-10-08 08:00:00', '2025-10-08 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(613, 14, 4, '2025-10-08', '2025-10-08 06:00:00', '2025-10-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(614, 16, 3, '2025-10-08', '2025-10-08 22:00:00', '2025-10-08 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(615, 18, 4, '2025-10-08', '2025-10-08 06:00:00', '2025-10-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(616, 20, 3, '2025-10-08', '2025-10-08 22:00:00', '2025-10-08 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(617, 22, 2, '2025-10-08', '2025-10-08 14:00:00', '2025-10-08 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(618, 24, 3, '2025-10-08', '2025-10-08 22:00:00', '2025-10-08 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(619, 26, 2, '2025-10-08', '2025-10-08 14:00:00', '2025-10-08 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(620, 8, 6, '2025-10-09', '2025-10-09 08:00:00', '2025-10-09 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(621, 10, 5, '2025-10-09', '2025-10-09 10:00:00', '2025-10-09 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(622, 14, 4, '2025-10-09', '2025-10-09 06:00:00', '2025-10-09 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(623, 16, 3, '2025-10-09', '2025-10-09 22:00:00', '2025-10-09 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(624, 20, 3, '2025-10-09', '2025-10-09 22:00:00', '2025-10-09 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(625, 22, 2, '2025-10-09', '2025-10-09 14:00:00', '2025-10-09 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(626, 26, 2, '2025-10-09', '2025-10-09 14:00:00', '2025-10-09 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(627, 8, 6, '2025-10-10', '2025-10-10 08:00:00', '2025-10-10 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(628, 10, 5, '2025-10-10', '2025-10-10 10:00:00', '2025-10-10 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'); +INSERT INTO `attendances` (`id`, `employee_id`, `shift_id`, `date`, `clock_in`, `clock_out`, `break_hour`, `total_hour`, `overtime_hours`, `overtime_amount`, `late_hours`, `early_hours`, `working_hours`, `is_holiday`, `is_weekend`, `is_half_day`, `late_reason`, `early_checkout_reason`, `approved_by_id`, `approved_at`, `status`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(629, 14, 4, '2025-10-10', '2025-10-10 06:00:00', '2025-10-10 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(630, 16, 3, '2025-10-10', '2025-10-10 22:00:00', '2025-10-10 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(631, 20, 3, '2025-10-10', '2025-10-10 22:00:00', '2025-10-10 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(632, 22, 2, '2025-10-10', '2025-10-10 14:00:00', '2025-10-10 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(633, 26, 2, '2025-10-10', '2025-10-10 14:00:00', '2025-10-10 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(634, 8, 6, '2025-10-13', '2025-10-13 08:00:00', '2025-10-13 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(635, 14, 4, '2025-10-13', '2025-10-13 06:00:00', '2025-10-13 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(636, 20, 3, '2025-10-13', '2025-10-13 22:00:00', '2025-10-13 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(637, 26, 2, '2025-10-13', '2025-10-13 14:00:00', '2025-10-13 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(638, 8, 6, '2025-10-14', '2025-10-14 08:00:00', '2025-10-14 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(639, 10, 5, '2025-10-14', '2025-10-14 10:00:00', '2025-10-14 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(640, 12, 6, '2025-10-14', '2025-10-14 08:00:00', '2025-10-14 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(641, 14, 4, '2025-10-14', '2025-10-14 06:00:00', '2025-10-14 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(642, 16, 3, '2025-10-14', '2025-10-14 22:00:00', '2025-10-14 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(643, 18, 4, '2025-10-14', '2025-10-14 06:00:00', '2025-10-14 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(644, 20, 3, '2025-10-14', '2025-10-14 22:00:00', '2025-10-14 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(645, 22, 2, '2025-10-14', '2025-10-14 14:00:00', '2025-10-14 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(646, 24, 3, '2025-10-14', '2025-10-14 22:00:00', '2025-10-14 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(647, 26, 2, '2025-10-14', '2025-10-14 14:00:00', '2025-10-14 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(648, 8, 6, '2025-10-15', '2025-10-15 08:00:00', '2025-10-15 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(649, 10, 5, '2025-10-15', '2025-10-15 10:00:00', '2025-10-15 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(650, 12, 6, '2025-10-15', '2025-10-15 08:00:00', '2025-10-15 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(651, 14, 4, '2025-10-15', '2025-10-15 06:00:00', '2025-10-15 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(652, 16, 3, '2025-10-15', '2025-10-15 22:00:00', '2025-10-15 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(653, 18, 4, '2025-10-15', '2025-10-15 06:00:00', '2025-10-15 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(654, 20, 3, '2025-10-15', '2025-10-15 22:00:00', '2025-10-15 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(655, 22, 2, '2025-10-15', '2025-10-15 14:00:00', '2025-10-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(656, 24, 3, '2025-10-15', '2025-10-15 22:00:00', '2025-10-15 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(657, 26, 2, '2025-10-15', '2025-10-15 14:00:00', '2025-10-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(658, 8, 6, '2025-10-16', '2025-10-16 08:00:00', '2025-10-16 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(659, 10, 5, '2025-10-16', '2025-10-16 10:00:00', '2025-10-16 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(660, 12, 6, '2025-10-16', '2025-10-16 08:00:00', '2025-10-16 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(661, 14, 4, '2025-10-16', '2025-10-16 06:00:00', '2025-10-16 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(662, 16, 3, '2025-10-16', '2025-10-16 22:00:00', '2025-10-16 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(663, 18, 4, '2025-10-16', '2025-10-16 06:00:00', '2025-10-16 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(664, 20, 3, '2025-10-16', '2025-10-16 22:00:00', '2025-10-16 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(665, 22, 2, '2025-10-16', '2025-10-16 14:00:00', '2025-10-16 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(666, 24, 3, '2025-10-16', '2025-10-16 22:00:00', '2025-10-16 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(667, 26, 2, '2025-10-16', '2025-10-16 14:00:00', '2025-10-16 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(668, 10, 5, '2025-10-17', '2025-10-17 10:00:00', '2025-10-17 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(669, 12, 6, '2025-10-17', '2025-10-17 08:00:00', '2025-10-17 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(670, 16, 3, '2025-10-17', '2025-10-17 22:00:00', '2025-10-17 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(671, 18, 4, '2025-10-17', '2025-10-17 06:00:00', '2025-10-17 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(672, 22, 2, '2025-10-17', '2025-10-17 14:00:00', '2025-10-17 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(673, 24, 3, '2025-10-17', '2025-10-17 22:00:00', '2025-10-17 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(674, 10, 5, '2025-10-20', '2025-10-20 10:00:00', '2025-10-20 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(675, 12, 6, '2025-10-20', '2025-10-20 08:00:00', '2025-10-20 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(676, 16, 3, '2025-10-20', '2025-10-20 22:00:00', '2025-10-20 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(677, 18, 4, '2025-10-20', '2025-10-20 06:00:00', '2025-10-20 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(678, 22, 2, '2025-10-20', '2025-10-20 14:00:00', '2025-10-20 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(679, 24, 3, '2025-10-20', '2025-10-20 22:00:00', '2025-10-20 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(680, 8, 6, '2025-10-21', '2025-10-21 08:00:00', '2025-10-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(681, 10, 5, '2025-10-21', '2025-10-21 10:00:00', '2025-10-21 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(682, 12, 6, '2025-10-21', '2025-10-21 08:00:00', '2025-10-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(683, 14, 4, '2025-10-21', '2025-10-21 06:00:00', '2025-10-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(684, 16, 3, '2025-10-21', '2025-10-21 22:00:00', '2025-10-21 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(685, 18, 4, '2025-10-21', '2025-10-21 06:00:00', '2025-10-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(686, 20, 3, '2025-10-21', '2025-10-21 22:00:00', '2025-10-21 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(687, 22, 2, '2025-10-21', '2025-10-21 14:00:00', '2025-10-21 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(688, 24, 3, '2025-10-21', '2025-10-21 22:00:00', '2025-10-21 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(689, 26, 2, '2025-10-21', '2025-10-21 14:00:00', '2025-10-21 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(690, 8, 6, '2025-10-22', '2025-10-22 08:00:00', '2025-10-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(691, 10, 5, '2025-10-22', '2025-10-22 10:00:00', '2025-10-22 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(692, 12, 6, '2025-10-22', '2025-10-22 08:00:00', '2025-10-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(693, 14, 4, '2025-10-22', '2025-10-22 06:00:00', '2025-10-22 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(694, 16, 3, '2025-10-22', '2025-10-22 22:00:00', '2025-10-22 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(695, 18, 4, '2025-10-22', '2025-10-22 06:00:00', '2025-10-22 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(696, 20, 3, '2025-10-22', '2025-10-22 22:00:00', '2025-10-22 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(697, 22, 2, '2025-10-22', '2025-10-22 14:00:00', '2025-10-22 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(698, 24, 3, '2025-10-22', '2025-10-22 22:00:00', '2025-10-22 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(699, 26, 2, '2025-10-22', '2025-10-22 14:00:00', '2025-10-22 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(700, 8, 6, '2025-10-23', '2025-10-23 08:00:00', '2025-10-23 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(701, 10, 5, '2025-10-23', '2025-10-23 10:00:00', '2025-10-23 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(702, 12, 6, '2025-10-23', '2025-10-23 08:00:00', '2025-10-23 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(703, 14, 4, '2025-10-23', '2025-10-23 06:00:00', '2025-10-23 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(704, 16, 3, '2025-10-23', '2025-10-23 22:00:00', '2025-10-23 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(705, 18, 4, '2025-10-23', '2025-10-23 06:00:00', '2025-10-23 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(706, 20, 3, '2025-10-23', '2025-10-23 22:00:00', '2025-10-23 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(707, 22, 2, '2025-10-23', '2025-10-23 14:00:00', '2025-10-23 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(708, 24, 3, '2025-10-23', '2025-10-23 22:00:00', '2025-10-23 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(709, 26, 2, '2025-10-23', '2025-10-23 14:00:00', '2025-10-23 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(710, 8, 6, '2025-10-24', '2025-10-24 08:00:00', '2025-10-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(711, 10, 5, '2025-10-24', '2025-10-24 10:00:00', '2025-10-24 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(712, 12, 6, '2025-10-24', '2025-10-24 08:00:00', '2025-10-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(713, 14, 4, '2025-10-24', '2025-10-24 06:00:00', '2025-10-24 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(714, 16, 3, '2025-10-24', '2025-10-24 22:00:00', '2025-10-24 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(715, 18, 4, '2025-10-24', '2025-10-24 06:00:00', '2025-10-24 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(716, 20, 3, '2025-10-24', '2025-10-24 22:00:00', '2025-10-24 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(717, 22, 2, '2025-10-24', '2025-10-24 14:00:00', '2025-10-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(718, 24, 3, '2025-10-24', '2025-10-24 22:00:00', '2025-10-24 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(719, 26, 2, '2025-10-24', '2025-10-24 14:00:00', '2025-10-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(720, 8, 6, '2025-10-27', '2025-10-27 08:00:00', '2025-10-27 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(721, 10, 5, '2025-10-27', '2025-10-27 10:00:00', '2025-10-27 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(722, 12, 6, '2025-10-27', '2025-10-27 08:00:00', '2025-10-27 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(723, 14, 4, '2025-10-27', '2025-10-27 06:00:00', '2025-10-27 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(724, 16, 3, '2025-10-27', '2025-10-27 22:00:00', '2025-10-27 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(725, 18, 4, '2025-10-27', '2025-10-27 06:00:00', '2025-10-27 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(726, 20, 3, '2025-10-27', '2025-10-27 22:00:00', '2025-10-27 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(727, 22, 2, '2025-10-27', '2025-10-27 14:00:00', '2025-10-27 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(728, 24, 3, '2025-10-27', '2025-10-27 22:00:00', '2025-10-27 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(729, 26, 2, '2025-10-27', '2025-10-27 14:00:00', '2025-10-27 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(730, 8, 6, '2025-10-28', '2025-10-28 08:00:00', '2025-10-28 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(731, 10, 5, '2025-10-28', '2025-10-28 10:00:00', '2025-10-28 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(732, 12, 6, '2025-10-28', '2025-10-28 08:00:00', '2025-10-28 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(733, 14, 4, '2025-10-28', '2025-10-28 06:00:00', '2025-10-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(734, 16, 3, '2025-10-28', '2025-10-28 22:00:00', '2025-10-28 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(735, 18, 4, '2025-10-28', '2025-10-28 06:00:00', '2025-10-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(736, 20, 3, '2025-10-28', '2025-10-28 22:00:00', '2025-10-28 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(737, 22, 2, '2025-10-28', '2025-10-28 14:00:00', '2025-10-28 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(738, 24, 3, '2025-10-28', '2025-10-28 22:00:00', '2025-10-28 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(739, 26, 2, '2025-10-28', '2025-10-28 14:00:00', '2025-10-28 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(740, 8, 6, '2025-10-29', '2025-10-29 08:00:00', '2025-10-29 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(741, 10, 5, '2025-10-29', '2025-10-29 10:00:00', '2025-10-29 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(742, 12, 6, '2025-10-29', '2025-10-29 08:00:00', '2025-10-29 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(743, 14, 4, '2025-10-29', '2025-10-29 06:00:00', '2025-10-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(744, 16, 3, '2025-10-29', '2025-10-29 22:00:00', '2025-10-29 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(745, 18, 4, '2025-10-29', '2025-10-29 06:00:00', '2025-10-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(746, 20, 3, '2025-10-29', '2025-10-29 22:00:00', '2025-10-29 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(747, 22, 2, '2025-10-29', '2025-10-29 14:00:00', '2025-10-29 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(748, 24, 3, '2025-10-29', '2025-10-29 22:00:00', '2025-10-29 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(749, 26, 2, '2025-10-29', '2025-10-29 14:00:00', '2025-10-29 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(750, 8, 6, '2025-10-30', '2025-10-30 08:00:00', '2025-10-30 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(751, 10, 5, '2025-10-30', '2025-10-30 10:00:00', '2025-10-30 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(752, 12, 6, '2025-10-30', '2025-10-30 08:00:00', '2025-10-30 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(753, 14, 4, '2025-10-30', '2025-10-30 06:00:00', '2025-10-30 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(754, 16, 3, '2025-10-30', '2025-10-30 22:00:00', '2025-10-30 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(755, 18, 4, '2025-10-30', '2025-10-30 06:00:00', '2025-10-30 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(756, 20, 3, '2025-10-30', '2025-10-30 22:00:00', '2025-10-30 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(757, 22, 2, '2025-10-30', '2025-10-30 14:00:00', '2025-10-30 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(758, 24, 3, '2025-10-30', '2025-10-30 22:00:00', '2025-10-30 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(759, 26, 2, '2025-10-30', '2025-10-30 14:00:00', '2025-10-30 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(760, 8, 6, '2025-10-31', '2025-10-31 08:00:00', '2025-10-31 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(761, 10, 5, '2025-10-31', '2025-10-31 10:00:00', '2025-10-31 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(762, 12, 6, '2025-10-31', '2025-10-31 08:00:00', '2025-10-31 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(763, 14, 4, '2025-10-31', '2025-10-31 06:00:00', '2025-10-31 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(764, 16, 3, '2025-10-31', '2025-10-31 22:00:00', '2025-10-31 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(765, 18, 4, '2025-10-31', '2025-10-31 06:00:00', '2025-10-31 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(766, 20, 3, '2025-10-31', '2025-10-31 22:00:00', '2025-10-31 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(767, 22, 2, '2025-10-31', '2025-10-31 14:00:00', '2025-10-31 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(768, 24, 3, '2025-10-31', '2025-10-31 22:00:00', '2025-10-31 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(769, 26, 2, '2025-10-31', '2025-10-31 14:00:00', '2025-10-31 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(770, 71, 55, '2026-02-07', '2026-02-07 12:00:00', '2026-02-07 19:00:00', 0.00, 7.00, 0.00, 0.00, 12.00, 0.00, 7.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-07 11:19:56', '2026-02-26 22:47:40'), +(771, 71, 86, '2026-01-12', '2026-01-12 15:23:00', '2026-01-13 00:30:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:48:37', '2026-02-26 22:39:52'), +(772, 71, 86, '2026-01-14', '2026-01-14 15:12:00', '2026-01-15 00:30:00', 0.00, 9.30, 0.30, 0.00, 0.00, 0.00, 9.30, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:49:13', '2026-02-26 22:39:52'), +(773, 71, 90, '2026-01-16', '2026-01-16 17:21:00', '2026-01-17 02:30:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:49:50', '2026-02-26 22:39:52'), +(774, 71, 90, '2026-01-17', '2026-01-17 17:21:00', '2026-01-18 02:30:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:51:45', '2026-02-26 22:39:52'), +(775, 71, 86, '2026-01-19', '2026-01-19 14:29:00', '2026-01-20 00:30:00', 0.00, 10.02, 1.02, 0.00, 0.00, 0.00, 10.02, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:53:14', '2026-02-26 22:39:52'), +(776, 71, 86, '2026-01-20', '2026-01-20 15:13:00', '2026-01-21 00:30:00', 0.00, 9.28, 0.28, 0.00, 0.00, 0.00, 9.28, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:53:50', '2026-02-26 22:39:52'), +(777, 71, 86, '2026-01-21', '2026-01-21 14:51:00', '2026-01-22 00:30:00', 0.00, 9.65, 0.65, 0.00, 0.00, 0.00, 9.65, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:54:26', '2026-02-26 22:39:52'), +(778, 71, 90, '2026-01-23', '2026-01-23 17:11:00', '2026-01-24 02:30:00', 0.00, 9.32, 0.32, 0.00, 0.00, 0.00, 9.32, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:55:16', '2026-02-26 22:39:52'), +(779, 72, 86, '2026-01-12', '2026-01-12 15:24:00', '2026-01-13 00:30:00', 0.00, 9.10, 0.10, 0.00, 0.00, 0.00, 9.10, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(780, 75, 86, '2026-01-12', '2026-01-12 15:23:00', '2026-01-13 00:30:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), +(781, 76, 86, '2026-01-12', '2026-01-12 15:23:00', '2026-01-13 00:30:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), +(782, 77, 71, '2026-01-12', '2026-01-12 07:54:00', '2026-01-12 17:06:00', 0.00, 9.20, 0.20, 0.00, 0.00, 0.00, 9.20, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-03-10 08:28:40'), +(783, 72, 86, '2026-01-13', '2026-01-13 15:17:00', '2026-01-14 00:30:00', 0.00, 9.22, 0.22, 0.00, 0.00, 0.00, 9.22, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(784, 74, 86, '2026-01-13', '2026-01-13 15:26:00', '2026-01-14 00:30:00', 0.00, 9.07, 0.07, 0.00, 0.00, 0.00, 9.07, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(785, 75, 86, '2026-01-13', '2026-01-13 15:15:00', '2026-01-14 00:30:00', 0.00, 9.25, 0.25, 0.00, 0.00, 0.00, 9.25, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), +(786, 76, 86, '2026-01-13', '2026-01-13 15:28:00', '2026-01-14 00:30:00', 0.00, 9.03, 0.03, 0.00, 0.00, 0.00, 9.03, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), +(787, 77, 71, '2026-01-13', '2026-01-13 07:54:00', '2026-01-13 17:06:00', 0.00, 9.20, 0.20, 0.00, 0.00, 0.00, 9.20, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-03-10 08:28:40'), +(788, 73, 86, '2026-01-14', '2026-01-14 15:23:00', '2026-01-15 00:30:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(789, 74, 90, '2026-01-14', '2026-01-14 17:24:00', '2026-01-15 02:31:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-03-11 10:16:54'), +(790, 75, 86, '2026-01-14', '2026-01-14 15:25:00', '2026-01-15 00:30:00', 0.00, 9.08, 0.08, 0.00, 0.00, 0.00, 9.08, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), +(791, 77, 71, '2026-01-14', '2026-01-14 08:14:00', '2026-01-14 17:03:00', 0.00, 8.82, 0.00, 0.00, 0.23, 0.00, 8.82, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-03-10 08:28:40'), +(792, 78, 86, '2026-01-14', '2026-01-14 15:16:00', '2026-01-15 00:30:00', 0.00, 9.23, 0.23, 0.00, 0.00, 0.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(793, 79, 86, '2026-01-14', '2026-01-14 15:05:00', '2026-01-15 00:31:00', 0.00, 9.43, 0.43, 0.00, 0.00, 0.00, 9.43, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(794, 73, 86, '2026-01-15', '2026-01-15 15:14:00', '2026-01-16 00:30:00', 0.00, 9.27, 0.27, 0.00, 0.00, 0.00, 9.27, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(795, 75, 86, '2026-01-15', '2026-01-15 15:23:00', '2026-01-16 00:31:00', 0.00, 9.13, 0.13, 0.00, 0.00, 0.00, 9.13, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), +(796, 78, 86, '2026-01-15', '2026-01-15 15:23:00', '2026-01-16 00:32:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(797, 79, 86, '2026-01-15', '2026-01-15 15:16:00', '2026-01-16 00:30:00', 0.00, 9.23, 0.23, 0.00, 0.00, 0.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(798, 72, 86, '2026-01-16', '2026-01-16 15:27:00', '2026-01-17 00:34:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(799, 73, 86, '2026-01-16', '2026-01-16 15:09:00', '2026-01-17 00:32:00', 0.00, 9.38, 0.38, 0.00, 0.00, 0.00, 9.38, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(800, 75, 90, '2026-01-16', '2026-01-16 17:16:00', '2026-01-17 02:30:00', 0.00, 9.23, 0.23, 0.00, 0.00, 0.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), +(801, 76, 90, '2026-01-16', '2026-01-16 17:21:00', '2026-01-17 02:30:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), +(802, 77, 71, '2026-01-16', '2026-01-16 07:54:00', '2026-01-16 17:06:00', 0.00, 9.20, 0.20, 0.00, 0.00, 0.00, 9.20, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), +(803, 78, 86, '2026-01-16', '2026-01-16 15:18:00', '2026-01-17 00:33:00', 0.00, 9.25, 0.25, 0.00, 0.00, 0.00, 9.25, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(804, 79, 90, '2026-01-16', '2026-01-16 16:45:00', '2026-01-17 02:30:00', 0.00, 9.75, 0.75, 0.00, 0.00, 0.00, 9.75, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), +(805, 75, 86, '2026-01-19', '2026-01-19 15:19:00', '2026-01-20 00:30:00', 0.00, 9.18, 0.18, 0.00, 0.00, 0.00, 9.18, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(806, 78, 86, '2026-01-19', '2026-01-19 15:20:00', '2026-01-20 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(807, 74, 86, '2026-01-20', '2026-01-20 15:23:00', '2026-01-21 12:30:00', 0.00, 21.12, 12.12, 0.00, 0.00, 0.00, 21.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(808, 75, 86, '2026-01-20', '2026-01-20 15:20:00', '2026-01-21 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(809, 76, 86, '2026-01-20', '2026-01-20 15:22:00', '2026-01-21 00:30:00', 0.00, 9.13, 0.13, 0.00, 0.00, 0.00, 9.13, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(810, 77, 71, '2026-01-20', '2026-01-20 07:51:00', '2026-01-20 17:05:00', 0.00, 9.23, 0.23, 0.00, 0.00, 0.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(811, 73, 86, '2026-01-21', '2026-01-21 15:30:00', '2026-01-22 12:30:00', 0.00, 21.00, 12.00, 0.00, 0.00, 0.00, 21.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(812, 74, 86, '2026-01-21', '2026-01-21 15:29:00', '2026-01-22 00:30:00', 0.00, 9.02, 0.02, 0.00, 0.00, 0.00, 9.02, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(813, 75, 86, '2026-01-21', '2026-01-21 15:13:00', '2026-01-21 22:31:00', 0.00, 7.30, 0.00, 0.00, 0.00, 1.98, 7.30, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(814, 77, 71, '2026-01-21', '2026-01-21 07:59:00', '2026-01-21 17:01:00', 0.00, 9.03, 0.03, 0.00, 0.00, 0.00, 9.03, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(815, 78, 86, '2026-01-21', '2026-01-21 15:16:00', '2026-01-22 00:30:00', 0.00, 9.23, 0.23, 0.00, 0.00, 0.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(816, 79, 86, '2026-01-21', '2026-01-21 14:51:00', '2026-01-22 00:30:00', 0.00, 9.65, 0.65, 0.00, 0.00, 0.00, 9.65, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(817, 74, 86, '2026-01-22', '2026-01-22 15:26:00', '2026-01-23 00:31:00', 0.00, 9.08, 0.08, 0.00, 0.00, 0.00, 9.08, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(818, 75, 86, '2026-01-22', '2026-01-22 15:21:00', '2026-01-23 00:30:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(819, 77, 71, '2026-01-22', '2026-01-22 07:58:00', '2026-01-22 17:08:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(820, 78, 86, '2026-01-22', '2026-01-22 15:24:00', '2026-01-23 00:30:00', 0.00, 9.10, 0.10, 0.00, 0.00, 0.00, 9.10, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(821, 79, 86, '2026-01-22', '2026-01-22 15:05:00', '2026-01-23 00:30:00', 0.00, 9.42, 0.42, 0.00, 0.00, 0.00, 9.42, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(822, 72, 86, '2026-01-23', '2026-01-23 15:57:00', '2026-01-24 00:34:00', 0.00, 8.62, 0.00, 0.00, 0.45, 0.00, 8.62, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(823, 73, 86, '2026-01-23', '2026-01-23 15:17:00', '2026-01-24 00:32:00', 0.00, 9.25, 0.25, 0.00, 0.00, 0.00, 9.25, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(824, 74, 90, '2026-01-23', '2026-01-23 17:29:00', '2026-01-24 02:30:00', 0.00, 9.02, 0.02, 0.00, 0.00, 0.00, 9.02, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(825, 75, 90, '2026-01-23', '2026-01-23 17:01:00', '2026-01-24 02:30:00', 0.00, 9.48, 0.48, 0.00, 0.00, 0.00, 9.48, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(826, 76, 86, '2026-01-23', '2026-01-23 15:21:00', '2026-01-24 00:32:00', 0.00, 9.18, 0.18, 0.00, 0.00, 0.00, 9.18, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), +(827, 78, 90, '2026-01-23', '2026-01-23 17:04:00', '2026-01-24 02:30:00', 0.00, 9.43, 0.43, 0.00, 0.00, 0.00, 9.43, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(828, 79, 90, '2026-01-23', '2026-01-23 17:05:00', '2026-01-24 02:30:00', 0.00, 9.42, 0.42, 0.00, 0.00, 0.00, 9.42, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), +(829, 79, 86, '2026-01-11', '2026-01-11 15:03:00', '2026-01-12 00:30:00', 0.00, 9.45, 0.45, 0.00, 0.00, 0.00, 9.45, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:18:45', '2026-02-26 22:39:52'), +(830, 79, 90, '2026-01-17', '2026-01-17 17:04:00', '2026-01-18 02:30:00', 0.00, 9.43, 0.43, 0.00, 0.00, 0.00, 9.43, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:21:13', '2026-02-26 22:39:52'), +(831, 79, 86, '2026-01-18', '2026-01-18 15:17:00', '2026-01-19 00:30:00', 0.00, 9.22, 0.22, 0.00, 0.00, 0.00, 9.22, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:21:50', '2026-02-26 22:39:52'), +(832, 79, 90, '2026-01-24', '2026-01-24 17:10:00', '2026-01-25 02:30:00', 0.00, 9.33, 0.33, 0.00, 0.00, 0.00, 9.33, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:24:08', '2026-02-26 22:39:52'), +(833, 79, 86, '2026-01-25', '2026-01-25 14:53:00', '2026-01-26 00:30:00', 0.00, 9.62, 0.62, 0.00, 0.00, 0.00, 9.62, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:24:53', '2026-02-26 22:39:52'), +(834, 72, 86, '2026-01-11', '2026-01-11 15:20:00', '2026-01-12 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:32:56', '2026-02-26 22:39:52'), +(835, 72, 86, '2026-01-17', '2026-01-17 15:25:00', '2026-01-17 21:39:00', 0.00, 6.23, 0.00, 0.00, 0.00, 2.85, 6.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:35:19', '2026-02-26 22:39:52'), +(836, 72, 86, '2026-01-24', '2026-01-24 15:18:00', '2026-01-25 00:30:00', 0.00, 9.20, 0.20, 0.00, 0.00, 0.00, 9.20, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:36:25', '2026-02-26 22:39:52'), +(837, 72, 86, '2026-01-25', '2026-01-25 15:28:00', '2026-01-26 00:30:00', 0.00, 9.03, 0.03, 0.00, 0.00, 0.00, 9.03, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:36:58', '2026-02-26 22:39:52'), +(838, 76, 86, '2026-01-11', '2026-01-11 15:23:00', '2026-01-12 00:30:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-18 15:40:32', '2026-02-26 22:39:53'), +(839, 76, 90, '2026-01-17', '2026-01-17 17:26:00', '2026-01-18 02:30:00', 0.00, 9.07, 0.07, 0.00, 0.00, 0.00, 9.07, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-18 15:42:40', '2026-02-26 22:39:53'), +(840, 76, 86, '2026-01-18', '2026-01-18 15:22:00', '2026-01-19 00:30:00', 0.00, 9.13, 0.13, 0.00, 0.00, 0.00, 9.13, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-18 15:44:16', '2026-02-26 22:39:53'), +(841, 76, 86, '2026-01-24', '2026-01-24 15:20:00', '2026-01-25 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-18 15:46:40', '2026-02-26 22:39:53'), +(842, 76, 86, '2026-01-25', '2026-01-25 15:20:00', '2026-01-26 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-18 15:47:06', '2026-02-26 22:39:53'); +INSERT INTO `attendances` (`id`, `employee_id`, `shift_id`, `date`, `clock_in`, `clock_out`, `break_hour`, `total_hour`, `overtime_hours`, `overtime_amount`, `late_hours`, `early_hours`, `working_hours`, `is_holiday`, `is_weekend`, `is_half_day`, `late_reason`, `early_checkout_reason`, `approved_by_id`, `approved_at`, `status`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(843, 74, 90, '2026-01-17', '2026-01-17 17:27:00', '2026-01-18 02:30:00', 0.00, 9.05, 0.05, 0.00, 0.00, 0.00, 9.05, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:32:11', '2026-02-26 22:39:52'), +(844, 74, 90, '2026-01-24', '2026-01-24 17:29:00', '2026-01-25 00:30:00', 0.00, 7.02, 0.00, 0.00, 0.00, 2.00, 7.02, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:37:11', '2026-02-26 22:39:53'), +(845, 78, 86, '2026-01-17', '2026-01-17 15:25:00', '2026-01-18 00:32:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:41:14', '2026-02-26 22:39:52'), +(846, 78, 86, '2026-01-18', '2026-01-18 15:20:00', '2026-01-19 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:41:48', '2026-02-26 22:39:52'), +(847, 78, 90, '2026-01-24', '2026-01-24 15:16:00', '2026-01-25 00:30:00', 0.00, 9.23, 0.23, 0.00, 0.00, 2.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:45:26', '2026-03-11 10:18:10'), +(848, 73, 86, '2026-01-11', '2026-01-11 15:21:00', '2026-01-12 00:30:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:51:28', '2026-02-26 22:39:52'), +(849, 73, 86, '2026-01-18', '2026-01-18 15:20:00', '2026-01-19 00:31:00', 0.00, 9.18, 0.18, 0.00, 0.00, 0.00, 9.18, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:53:28', '2026-02-26 22:39:52'), +(850, 73, 90, '2026-01-24', '2026-01-24 17:22:00', '2026-01-25 02:30:00', 0.00, 9.13, 0.13, 0.00, 0.00, 0.00, 9.13, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:55:56', '2026-02-26 22:39:52'), +(851, 73, 86, '2026-01-25', '2026-01-25 15:17:00', '2026-01-26 00:30:00', 0.00, 9.22, 0.22, 0.00, 0.00, 0.00, 9.22, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:56:33', '2026-02-26 22:39:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `attendance_logs` +-- + +CREATE TABLE `attendance_logs` ( + `id` bigint(20) UNSIGNED NOT NULL, + `attendance_id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `date` date NOT NULL, + `time` time DEFAULT NULL, + `logged_at` datetime NOT NULL, + `type` varchar(255) NOT NULL, + `shift_id` bigint(20) UNSIGNED DEFAULT NULL, + `break_type` varchar(255) DEFAULT NULL, + `break_duration` int(11) DEFAULT NULL, + `latitude` decimal(10,7) DEFAULT NULL, + `longitude` decimal(10,7) DEFAULT NULL, + `source` varchar(255) DEFAULT NULL, + `notes` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `attendance_logs` +-- + +INSERT INTO `attendance_logs` (`id`, `attendance_id`, `user_id`, `date`, `time`, `logged_at`, `type`, `shift_id`, `break_type`, `break_duration`, `latitude`, `longitude`, `source`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 770, 71, '2026-02-07', NULL, '2026-02-07 12:00:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-07 11:19:56', '2026-02-07 11:19:56'), +(2, 770, 71, '2026-02-07', NULL, '2026-02-07 12:00:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-07 11:19:56', '2026-02-07 11:19:56'), +(3, 771, 71, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:48:37', '2026-02-09 13:48:37'), +(4, 771, 71, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:48:37', '2026-02-09 13:48:37'), +(5, 772, 71, '2026-01-14', NULL, '2026-01-14 15:12:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:49:13', '2026-02-09 13:49:13'), +(6, 772, 71, '2026-01-14', NULL, '2026-01-14 15:12:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:49:13', '2026-02-09 13:49:13'), +(7, 773, 71, '2026-01-16', NULL, '2026-01-16 17:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:49:50', '2026-02-09 13:49:50'), +(8, 773, 71, '2026-01-16', NULL, '2026-01-16 17:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:49:50', '2026-02-09 13:49:50'), +(9, 774, 71, '2026-01-17', NULL, '2026-01-17 17:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:51:45', '2026-02-09 13:51:45'), +(10, 774, 71, '2026-01-17', NULL, '2026-01-17 17:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:51:45', '2026-02-09 13:51:45'), +(11, 775, 71, '2026-01-19', NULL, '2026-01-19 14:29:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:53:14', '2026-02-09 13:53:14'), +(12, 775, 71, '2026-01-19', NULL, '2026-01-19 14:29:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:53:14', '2026-02-09 13:53:14'), +(13, 776, 71, '2026-01-20', NULL, '2026-01-20 15:13:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:53:50', '2026-02-09 13:53:50'), +(14, 776, 71, '2026-01-20', NULL, '2026-01-20 15:13:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:53:50', '2026-02-09 13:53:50'), +(15, 777, 71, '2026-01-21', NULL, '2026-01-21 14:51:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:54:26', '2026-02-09 13:54:26'), +(16, 777, 71, '2026-01-21', NULL, '2026-01-21 14:51:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:54:26', '2026-02-09 13:54:26'), +(17, 778, 71, '2026-01-23', NULL, '2026-01-23 17:11:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:55:16', '2026-02-09 13:55:16'), +(18, 778, 71, '2026-01-23', NULL, '2026-01-23 17:11:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:55:16', '2026-02-09 13:55:16'), +(19, 780, 75, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:09:29', '2026-02-09 14:09:29'), +(20, 780, 75, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:09:29', '2026-02-09 14:09:29'), +(21, 785, 75, '2026-01-13', NULL, '2026-01-13 15:15:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:10:02', '2026-02-09 14:10:02'), +(22, 785, 75, '2026-01-13', NULL, '2026-01-13 15:15:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:10:02', '2026-02-09 14:10:02'), +(23, 790, 75, '2026-01-14', NULL, '2026-01-14 15:25:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:10:32', '2026-02-09 14:10:32'), +(24, 790, 75, '2026-01-14', NULL, '2026-01-14 15:25:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:10:32', '2026-02-09 14:10:32'), +(25, 795, 75, '2026-01-15', NULL, '2026-01-15 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:11:34', '2026-02-09 14:11:34'), +(26, 795, 75, '2026-01-15', NULL, '2026-01-15 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:11:34', '2026-02-09 14:11:34'), +(27, 800, 75, '2026-01-16', NULL, '2026-01-16 17:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:12:01', '2026-02-09 14:12:01'), +(28, 800, 75, '2026-01-16', NULL, '2026-01-16 17:16:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:12:01', '2026-02-09 14:12:01'), +(29, 805, 75, '2026-01-19', NULL, '2026-01-19 15:19:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:12:33', '2026-02-09 14:12:33'), +(30, 805, 75, '2026-01-19', NULL, '2026-01-19 15:19:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:12:33', '2026-02-09 14:12:33'), +(31, 808, 75, '2026-01-20', NULL, '2026-01-20 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:13:15', '2026-02-09 14:13:15'), +(32, 808, 75, '2026-01-20', NULL, '2026-01-20 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:13:15', '2026-02-09 14:13:15'), +(33, 813, 75, '2026-01-21', NULL, '2026-01-21 15:13:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:14:10', '2026-02-09 14:14:10'), +(34, 813, 75, '2026-01-21', NULL, '2026-01-21 15:13:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:14:10', '2026-02-09 14:14:10'), +(35, 818, 75, '2026-01-22', NULL, '2026-01-22 15:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:14:45', '2026-02-09 14:14:45'), +(36, 818, 75, '2026-01-22', NULL, '2026-01-22 15:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:14:45', '2026-02-09 14:14:45'), +(37, 825, 75, '2026-01-23', NULL, '2026-01-23 17:01:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:15:32', '2026-02-09 14:15:32'), +(38, 825, 75, '2026-01-23', NULL, '2026-01-23 17:01:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:15:32', '2026-02-09 14:15:32'), +(39, 829, 79, '2026-01-11', NULL, '2026-01-11 15:03:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:18:45', '2026-02-09 14:18:45'), +(40, 829, 79, '2026-01-11', NULL, '2026-01-11 15:03:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:18:45', '2026-02-09 14:18:45'), +(41, 793, 79, '2026-01-14', NULL, '2026-01-14 15:05:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:19:25', '2026-02-09 14:19:25'), +(42, 793, 79, '2026-01-14', NULL, '2026-01-14 15:05:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:19:25', '2026-02-09 14:19:25'), +(43, 797, 79, '2026-01-15', NULL, '2026-01-15 15:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:19:55', '2026-02-09 14:19:55'), +(44, 797, 79, '2026-01-15', NULL, '2026-01-15 15:16:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:19:55', '2026-02-09 14:19:55'), +(45, 804, 79, '2026-01-16', NULL, '2026-01-16 16:45:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:20:38', '2026-02-09 14:20:38'), +(46, 804, 79, '2026-01-16', NULL, '2026-01-16 16:45:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:20:38', '2026-02-09 14:20:38'), +(47, 830, 79, '2026-01-17', NULL, '2026-01-17 17:04:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:21:13', '2026-02-09 14:21:13'), +(48, 830, 79, '2026-01-17', NULL, '2026-01-17 17:04:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:21:13', '2026-02-09 14:21:13'), +(49, 831, 79, '2026-01-18', NULL, '2026-01-18 15:17:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:21:50', '2026-02-09 14:21:50'), +(50, 831, 79, '2026-01-18', NULL, '2026-01-18 15:17:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:21:50', '2026-02-09 14:21:50'), +(51, 816, 79, '2026-01-21', NULL, '2026-01-21 14:51:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:22:25', '2026-02-09 14:22:25'), +(52, 816, 79, '2026-01-21', NULL, '2026-01-21 14:51:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:22:25', '2026-02-09 14:22:25'), +(53, 821, 79, '2026-01-22', NULL, '2026-01-22 15:05:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:22:59', '2026-02-09 14:22:59'), +(54, 821, 79, '2026-01-22', NULL, '2026-01-22 15:05:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:22:59', '2026-02-09 14:22:59'), +(55, 828, 79, '2026-01-23', NULL, '2026-01-23 17:05:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:23:29', '2026-02-09 14:23:29'), +(56, 828, 79, '2026-01-23', NULL, '2026-01-23 17:05:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:23:29', '2026-02-09 14:23:29'), +(57, 832, 79, '2026-01-24', NULL, '2026-01-24 17:10:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:24:08', '2026-02-09 14:24:08'), +(58, 832, 79, '2026-01-24', NULL, '2026-01-24 17:10:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:24:08', '2026-02-09 14:24:08'), +(59, 833, 79, '2026-01-25', NULL, '2026-01-25 14:53:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:24:53', '2026-02-09 14:24:53'), +(60, 833, 79, '2026-01-25', NULL, '2026-01-25 14:53:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:24:53', '2026-02-09 14:24:53'), +(61, 834, 72, '2026-01-11', NULL, '2026-01-11 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:32:56', '2026-02-09 14:32:56'), +(62, 834, 72, '2026-01-11', NULL, '2026-01-11 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:32:56', '2026-02-09 14:32:56'), +(63, 779, 72, '2026-01-12', NULL, '2026-01-12 15:24:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:33:32', '2026-02-09 14:33:32'), +(64, 779, 72, '2026-01-12', NULL, '2026-01-12 15:24:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:33:32', '2026-02-09 14:33:32'), +(65, 783, 72, '2026-01-13', NULL, '2026-01-13 15:17:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:34:13', '2026-02-09 14:34:13'), +(66, 783, 72, '2026-01-13', NULL, '2026-01-13 15:17:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:34:13', '2026-02-09 14:34:13'), +(67, 798, 72, '2026-01-16', NULL, '2026-01-16 15:27:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:34:43', '2026-02-09 14:34:43'), +(68, 798, 72, '2026-01-16', NULL, '2026-01-16 15:27:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:34:43', '2026-02-09 14:34:43'), +(69, 835, 72, '2026-01-17', NULL, '2026-01-17 15:25:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:35:19', '2026-02-09 14:35:19'), +(70, 835, 72, '2026-01-17', NULL, '2026-01-17 15:25:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:35:19', '2026-02-09 14:35:19'), +(71, 822, 72, '2026-01-23', NULL, '2026-01-23 15:57:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:35:58', '2026-02-09 14:35:58'), +(72, 822, 72, '2026-01-23', NULL, '2026-01-23 15:57:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:35:58', '2026-02-09 14:35:58'), +(73, 836, 72, '2026-01-24', NULL, '2026-01-24 15:18:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:36:25', '2026-02-09 14:36:25'), +(74, 836, 72, '2026-01-24', NULL, '2026-01-24 15:18:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:36:25', '2026-02-09 14:36:25'), +(75, 837, 72, '2026-01-25', NULL, '2026-01-25 15:28:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:36:58', '2026-02-09 14:36:58'), +(76, 837, 72, '2026-01-25', NULL, '2026-01-25 15:28:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:36:58', '2026-02-09 14:36:58'), +(77, 838, 76, '2026-01-11', NULL, '2026-01-11 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:40:32', '2026-02-18 15:40:32'), +(78, 838, 76, '2026-01-11', NULL, '2026-01-11 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:40:32', '2026-02-18 15:40:32'), +(79, 781, 76, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:41:11', '2026-02-18 15:41:11'), +(80, 781, 76, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:41:11', '2026-02-18 15:41:11'), +(81, 786, 76, '2026-01-13', NULL, '2026-01-13 15:28:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:41:38', '2026-02-18 15:41:38'), +(82, 786, 76, '2026-01-13', NULL, '2026-01-13 15:28:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:41:38', '2026-02-18 15:41:38'), +(83, 801, 76, '2026-01-16', NULL, '2026-01-16 17:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:42:08', '2026-02-18 15:42:08'), +(84, 801, 76, '2026-01-16', NULL, '2026-01-16 17:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:42:08', '2026-02-18 15:42:08'), +(85, 839, 76, '2026-01-17', NULL, '2026-01-17 17:26:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:42:40', '2026-02-18 15:42:40'), +(86, 839, 76, '2026-01-17', NULL, '2026-01-17 17:26:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:42:40', '2026-02-18 15:42:40'), +(87, 840, 76, '2026-01-18', NULL, '2026-01-18 15:22:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:44:16', '2026-02-18 15:44:16'), +(88, 840, 76, '2026-01-18', NULL, '2026-01-18 15:22:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:44:16', '2026-02-18 15:44:16'), +(89, 809, 76, '2026-01-20', NULL, '2026-01-20 15:22:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:44:50', '2026-02-18 15:44:50'), +(90, 809, 76, '2026-01-20', NULL, '2026-01-20 15:22:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:44:50', '2026-02-18 15:44:50'), +(91, 826, 76, '2026-01-23', NULL, '2026-01-23 15:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:45:37', '2026-02-18 15:45:37'), +(92, 826, 76, '2026-01-23', NULL, '2026-01-23 15:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:45:37', '2026-02-18 15:45:37'), +(93, 841, 76, '2026-01-24', NULL, '2026-01-24 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:46:40', '2026-02-18 15:46:40'), +(94, 841, 76, '2026-01-24', NULL, '2026-01-24 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:46:40', '2026-02-18 15:46:40'), +(95, 842, 76, '2026-01-25', NULL, '2026-01-25 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:47:06', '2026-02-18 15:47:06'), +(96, 842, 76, '2026-01-25', NULL, '2026-01-25 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:47:06', '2026-02-18 15:47:06'), +(97, 784, 74, '2026-01-13', NULL, '2026-01-13 15:26:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:30:40', '2026-02-20 09:30:40'), +(98, 784, 74, '2026-01-13', NULL, '2026-01-13 15:26:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:30:40', '2026-02-20 09:30:40'), +(99, 789, 74, '2026-01-14', NULL, '2026-01-14 17:24:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:31:27', '2026-02-20 09:31:28'), +(100, 789, 74, '2026-01-14', NULL, '2026-01-14 17:24:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:31:27', '2026-02-20 09:31:28'), +(101, 789, 74, '2026-01-14', NULL, '2026-01-14 17:24:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:31:28', '2026-02-20 09:31:28'), +(102, 789, 74, '2026-01-14', NULL, '2026-01-14 17:24:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:31:28', '2026-02-20 09:31:28'), +(103, 843, 74, '2026-01-17', NULL, '2026-01-17 17:27:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:32:11', '2026-02-20 09:32:11'), +(104, 843, 74, '2026-01-17', NULL, '2026-01-17 17:27:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:32:11', '2026-02-20 09:32:11'), +(105, 807, 74, '2026-01-20', NULL, '2026-01-20 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:32:53', '2026-02-20 09:32:53'), +(106, 807, 74, '2026-01-20', NULL, '2026-01-20 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:32:53', '2026-02-20 09:32:53'), +(107, 812, 74, '2026-01-21', NULL, '2026-01-21 15:29:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:34:11', '2026-02-20 09:34:11'), +(108, 812, 74, '2026-01-21', NULL, '2026-01-21 15:29:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:34:11', '2026-02-20 09:34:11'), +(109, 817, 74, '2026-01-22', NULL, '2026-01-22 15:26:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:35:24', '2026-02-20 09:35:24'), +(110, 817, 74, '2026-01-22', NULL, '2026-01-22 15:26:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:35:24', '2026-02-20 09:35:24'), +(111, 824, 74, '2026-01-23', NULL, '2026-01-23 17:29:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:36:28', '2026-02-20 09:36:28'), +(112, 824, 74, '2026-01-23', NULL, '2026-01-23 17:29:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:36:28', '2026-02-20 09:36:28'), +(113, 844, 74, '2026-01-24', NULL, '2026-01-24 17:29:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:37:11', '2026-02-20 09:37:11'), +(114, 844, 74, '2026-01-24', NULL, '2026-01-24 17:29:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:37:11', '2026-02-20 09:37:11'), +(115, 792, 78, '2026-01-14', NULL, '2026-01-14 15:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:39:29', '2026-02-20 09:39:29'), +(116, 792, 78, '2026-01-14', NULL, '2026-01-14 15:16:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:39:29', '2026-02-20 09:39:29'), +(117, 796, 78, '2026-01-15', NULL, '2026-01-15 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:40:01', '2026-02-20 09:40:01'), +(118, 796, 78, '2026-01-15', NULL, '2026-01-15 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:40:01', '2026-02-20 09:40:01'), +(119, 803, 78, '2026-01-16', NULL, '2026-01-16 15:18:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:40:34', '2026-02-20 09:40:34'), +(120, 803, 78, '2026-01-16', NULL, '2026-01-16 15:18:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:40:34', '2026-02-20 09:40:34'), +(121, 845, 78, '2026-01-17', NULL, '2026-01-17 15:25:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:41:14', '2026-02-20 09:41:14'), +(122, 845, 78, '2026-01-17', NULL, '2026-01-17 15:25:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:41:14', '2026-02-20 09:41:14'), +(123, 846, 78, '2026-01-18', NULL, '2026-01-18 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:41:48', '2026-02-20 09:41:48'), +(124, 846, 78, '2026-01-18', NULL, '2026-01-18 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:41:48', '2026-02-20 09:41:48'), +(125, 806, 78, '2026-01-19', NULL, '2026-01-19 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:43:08', '2026-02-20 09:43:08'), +(126, 806, 78, '2026-01-19', NULL, '2026-01-19 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:43:08', '2026-02-20 09:43:08'), +(127, 815, 78, '2026-01-21', NULL, '2026-01-21 15:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:43:42', '2026-02-20 09:43:42'), +(128, 815, 78, '2026-01-21', NULL, '2026-01-21 15:16:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:43:42', '2026-02-20 09:43:42'), +(129, 820, 78, '2026-01-22', NULL, '2026-01-22 15:24:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:44:18', '2026-02-20 09:44:18'), +(130, 820, 78, '2026-01-22', NULL, '2026-01-22 15:24:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:44:18', '2026-02-20 09:44:18'), +(131, 827, 78, '2026-01-23', NULL, '2026-01-23 17:04:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:44:48', '2026-02-20 09:44:48'), +(132, 827, 78, '2026-01-23', NULL, '2026-01-23 17:04:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:44:48', '2026-02-20 09:44:48'), +(133, 847, 78, '2026-01-24', NULL, '2026-01-24 15:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:45:26', '2026-03-11 10:18:10'), +(134, 847, 78, '2026-01-24', NULL, '2026-01-24 15:16:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:45:26', '2026-03-11 10:18:10'), +(135, 848, 73, '2026-01-11', NULL, '2026-01-11 15:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:51:28', '2026-02-20 09:51:28'), +(136, 848, 73, '2026-01-11', NULL, '2026-01-11 15:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:51:28', '2026-02-20 09:51:28'), +(137, 788, 73, '2026-01-14', NULL, '2026-01-14 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:52:02', '2026-02-20 09:52:02'), +(138, 788, 73, '2026-01-14', NULL, '2026-01-14 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:52:02', '2026-02-20 09:52:02'), +(139, 794, 73, '2026-01-15', NULL, '2026-01-15 15:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:52:34', '2026-02-20 09:54:54'), +(140, 794, 73, '2026-01-15', NULL, '2026-01-15 15:14:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:52:34', '2026-02-20 09:54:54'), +(141, 799, 73, '2026-01-16', NULL, '2026-01-16 15:09:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:53:01', '2026-02-20 09:53:01'), +(142, 799, 73, '2026-01-16', NULL, '2026-01-16 15:09:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:53:01', '2026-02-20 09:53:01'), +(143, 849, 73, '2026-01-18', NULL, '2026-01-18 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:53:28', '2026-02-20 09:53:28'), +(144, 849, 73, '2026-01-18', NULL, '2026-01-18 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:53:28', '2026-02-20 09:53:28'), +(145, 811, 73, '2026-01-21', NULL, '2026-01-21 15:30:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:54:27', '2026-02-20 09:54:27'), +(146, 811, 73, '2026-01-21', NULL, '2026-01-21 15:30:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:54:27', '2026-02-20 09:54:27'), +(147, 794, 73, '2026-01-15', NULL, '2026-01-15 15:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:54:54', '2026-02-20 09:54:54'), +(148, 794, 73, '2026-01-15', NULL, '2026-01-15 15:14:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:54:54', '2026-02-20 09:54:54'), +(149, 823, 73, '2026-01-23', NULL, '2026-01-23 15:17:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:55:22', '2026-02-20 09:55:22'), +(150, 823, 73, '2026-01-23', NULL, '2026-01-23 15:17:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:55:22', '2026-02-20 09:55:22'), +(151, 850, 73, '2026-01-24', NULL, '2026-01-24 17:22:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:55:56', '2026-02-20 09:55:56'), +(152, 850, 73, '2026-01-24', NULL, '2026-01-24 17:22:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:55:56', '2026-02-20 09:55:56'), +(153, 851, 73, '2026-01-25', NULL, '2026-01-25 15:17:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:56:33', '2026-02-20 09:56:33'), +(154, 851, 73, '2026-01-25', NULL, '2026-01-25 15:17:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:56:33', '2026-02-20 09:56:33'), +(155, 782, 77, '2026-01-12', NULL, '2026-01-12 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:58:03', '2026-02-20 10:17:21'), +(156, 782, 77, '2026-01-12', NULL, '2026-01-12 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:58:03', '2026-02-20 10:17:21'), +(157, 787, 77, '2026-01-13', NULL, '2026-01-13 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:58:35', '2026-02-20 10:17:54'), +(158, 787, 77, '2026-01-13', NULL, '2026-01-13 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:58:35', '2026-02-20 10:17:54'), +(159, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:59:14', '2026-02-20 10:03:15'), +(160, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:59:14', '2026-02-20 10:03:15'), +(161, 802, 77, '2026-01-16', NULL, '2026-01-16 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:59:47', '2026-02-20 10:19:01'), +(162, 802, 77, '2026-01-16', NULL, '2026-01-16 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:59:47', '2026-02-20 10:19:01'), +(163, 810, 77, '2026-01-20', NULL, '2026-01-20 07:51:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:00:26', '2026-02-20 10:19:32'), +(164, 810, 77, '2026-01-20', NULL, '2026-01-20 07:51:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:00:26', '2026-02-20 10:19:32'), +(165, 814, 77, '2026-01-21', NULL, '2026-01-21 07:59:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:01:14', '2026-02-20 10:20:02'), +(166, 814, 77, '2026-01-21', NULL, '2026-01-21 07:59:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:01:14', '2026-02-20 10:20:02'), +(167, 819, 77, '2026-01-22', NULL, '2026-01-22 07:58:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:01:44', '2026-02-20 10:20:37'), +(168, 819, 77, '2026-01-22', NULL, '2026-01-22 07:58:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:01:44', '2026-02-20 10:20:37'), +(169, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:03:15', '2026-02-20 10:15:21'), +(170, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:15:21', '2026-02-20 10:18:23'), +(171, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:15:21', '2026-02-20 10:18:23'), +(172, 782, 77, '2026-01-12', NULL, '2026-01-12 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:17:21', '2026-02-20 10:17:21'), +(173, 782, 77, '2026-01-12', NULL, '2026-01-12 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:17:21', '2026-02-20 10:17:21'), +(174, 787, 77, '2026-01-13', NULL, '2026-01-13 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:17:54', '2026-02-20 10:17:54'), +(175, 787, 77, '2026-01-13', NULL, '2026-01-13 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:17:54', '2026-02-20 10:17:54'), +(176, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:18:23', '2026-02-20 10:18:23'), +(177, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:18:23', '2026-02-20 10:18:23'), +(178, 802, 77, '2026-01-16', NULL, '2026-01-16 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:19:01', '2026-02-20 10:19:01'), +(179, 802, 77, '2026-01-16', NULL, '2026-01-16 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:19:01', '2026-02-20 10:19:01'), +(180, 810, 77, '2026-01-20', NULL, '2026-01-20 07:51:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:19:32', '2026-02-20 10:19:32'), +(181, 810, 77, '2026-01-20', NULL, '2026-01-20 07:51:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:19:32', '2026-02-20 10:19:32'), +(182, 814, 77, '2026-01-21', NULL, '2026-01-21 07:59:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:20:02', '2026-02-20 10:20:02'), +(183, 814, 77, '2026-01-21', NULL, '2026-01-21 07:59:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:20:02', '2026-02-20 10:20:02'), +(184, 819, 77, '2026-01-22', NULL, '2026-01-22 07:58:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:20:37', '2026-02-20 10:20:37'), +(185, 819, 77, '2026-01-22', NULL, '2026-01-22 07:58:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:20:37', '2026-02-20 10:20:37'), +(186, 847, 78, '2026-01-24', '15:16:00', '2026-01-24 15:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-03-11 10:18:10', '2026-03-11 10:18:10'), +(187, 847, 78, '2026-01-24', '00:30:00', '2026-01-25 00:30:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-03-11 10:18:10', '2026-03-11 10:18:10'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `awards` +-- + +CREATE TABLE `awards` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `award_type_id` bigint(20) UNSIGNED NOT NULL, + `award_date` varchar(255) NOT NULL, + `description` varchar(255) DEFAULT NULL, + `certificate` varchar(255) DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `awards` +-- + +INSERT INTO `awards` (`id`, `employee_id`, `award_type_id`, `award_date`, `description`, `certificate`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 26, 15, '2026-02-12 00:00:00', 'Innovation in automation for implementing cutting-edge technologies that revolutionized traditional business processes effectively.', 'award3.png', 2, 2, '2026-02-14 16:54:48', '2026-02-14 12:05:48'), +(2, 16, 10, '2026-01-18 00:00:00', 'Project management excellence for delivering critical business initiatives on time and within budget constraints.', 'award1.png', 2, 2, '2026-01-20 09:37:48', '2026-01-20 13:12:48'), +(3, 22, 8, '2025-10-25 00:00:00', 'Leadership development award for successfully managing cross-functional teams and driving organizational transformation initiatives.', 'award2.png', 2, 2, '2025-10-27 17:03:48', '2025-10-27 17:17:48'), +(4, 20, 7, '2025-10-20 00:00:00', 'Technical expertise recognition for mastering advanced technologies and providing innovative solutions to complex problems.', 'award1.png', 2, 2, '2025-10-22 16:06:48', '2025-10-22 08:28:48'), +(5, 10, 12, '2025-11-14 00:00:00', 'Environmental sustainability award for implementing green practices and promoting corporate social responsibility programs.', 'award3.png', 2, 2, '2025-11-16 11:48:48', '2025-11-16 14:26:48'), +(6, 16, 15, '2025-11-29 00:00:00', 'Vendor management recognition for negotiating favorable contracts and building strategic partnerships with suppliers.', 'award3.png', 2, 2, '2025-12-01 16:22:48', '2025-12-01 16:41:48'), +(7, 20, 2, '2025-12-09 00:00:00', 'Change management leadership for successfully guiding organizational adaptation and maintaining high employee engagement.', 'award2.png', 2, 2, '2025-12-11 15:47:48', '2025-12-11 16:54:48'), +(8, 14, 4, '2025-10-05 00:00:00', 'Team collaboration award for fostering positive work environment and successfully mentoring junior colleagues.', 'award1.png', 2, 2, '2025-10-07 13:12:48', '2025-10-07 16:12:48'), +(9, 18, 6, '2025-10-15 00:00:00', 'Sales achievement award for exceeding quarterly targets and establishing new market penetration strategies.', 'award3.png', 2, 2, '2025-10-17 16:11:48', '2025-10-17 15:47:48'), +(10, 18, 11, '2026-01-23 00:00:00', 'Strategic planning recognition for long-term vision development and successful implementation of business growth strategies.', 'award2.png', 2, 2, '2026-01-25 15:46:48', '2026-01-25 14:48:48'), +(11, 10, 7, '2026-01-03 00:00:00', 'Compliance and governance excellence for ensuring regulatory requirements are consistently met across operations.', 'award1.png', 2, 2, '2026-01-05 11:27:48', '2026-01-05 13:52:48'), +(12, 8, 6, '2025-12-29 00:00:00', 'Financial management recognition for cost optimization initiatives and budget management that improved departmental performance.', 'award3.png', 2, 2, '2025-12-31 14:55:48', '2025-12-31 12:12:48'), +(13, 22, 13, '2026-02-02 00:00:00', 'Mentorship and coaching recognition for developing talent pipeline and fostering professional growth of team members.', 'award1.png', 2, 2, '2026-02-04 08:51:48', '2026-02-04 13:16:48'), +(14, 22, 3, '2025-12-14 00:00:00', 'International business development for expanding company presence in global markets and cultural adaptation.', 'award3.png', 2, 2, '2025-12-16 11:33:48', '2025-12-16 15:21:48'), +(15, 26, 10, '2025-11-04 00:00:00', 'Safety excellence award for maintaining impeccable safety records and promoting workplace safety culture.', 'award1.png', 2, 2, '2025-11-06 08:34:48', '2025-11-06 09:16:48'), +(16, 20, 12, '2026-01-28 00:00:00', 'Communication excellence award for effective stakeholder management and clear information dissemination across organization.', 'award3.png', 2, 2, '2026-01-30 17:00:48', '2026-01-30 14:46:48'), +(17, 12, 8, '2026-01-08 00:00:00', 'Community engagement award for representing company values and building positive public relations in society.', 'award2.png', 2, 2, '2026-01-10 15:08:48', '2026-01-10 09:49:48'), +(18, 8, 11, '2025-11-09 00:00:00', 'Training and development recognition for creating comprehensive learning programs and knowledge transfer initiatives.', 'award2.png', 2, 2, '2025-11-11 17:12:48', '2025-11-11 17:19:48'), +(19, 26, 5, '2025-12-24 00:00:00', 'Research and development excellence for breakthrough innovations and successful patent applications in technology.', 'award2.png', 2, 2, '2025-12-26 10:48:48', '2025-12-26 15:24:48'), +(20, 12, 13, '2025-11-19 00:00:00', 'Digital transformation leadership for driving technology adoption and modernizing legacy systems across departments.', 'award1.png', 2, 2, '2025-11-21 16:36:48', '2025-11-21 09:39:48'), +(21, 18, 1, '2025-12-04 00:00:00', 'Data analytics excellence for providing actionable insights that drove informed business decision-making processes.', 'award1.png', 2, 2, '2025-12-06 10:08:48', '2025-12-06 13:24:48'), +(22, 24, 9, '2025-10-30 00:00:00', 'Process improvement recognition for streamlining workflows and implementing automation that enhanced productivity significantly.', 'award3.png', 2, 2, '2025-11-01 09:03:48', '2025-11-01 16:42:48'), +(23, 14, 9, '2026-01-13 00:00:00', 'Diversity and inclusion leadership for creating inclusive workplace culture and promoting equal opportunities.', 'award3.png', 2, 2, '2026-01-15 16:43:48', '2026-01-15 11:25:48'), +(24, 24, 4, '2025-12-19 00:00:00', 'Supply chain optimization recognition for improving efficiency and reducing operational costs through strategic planning.', 'award1.png', 2, 2, '2025-12-21 14:29:48', '2025-12-21 11:12:48'), +(25, 12, 3, '2025-09-30 00:00:00', 'Customer service excellence recognition for maintaining highest satisfaction ratings and building strong client relationships.', 'award3.png', 2, 2, '2025-10-02 17:56:48', '2025-10-02 15:42:48'), +(26, 14, 14, '2025-11-24 00:00:00', 'Crisis management excellence for demonstrating exceptional problem-solving skills during challenging organizational situations.', 'award2.png', 2, 2, '2025-11-26 10:04:48', '2025-11-26 13:57:48'), +(27, 8, 1, '2025-09-20 00:00:00', 'Outstanding performance excellence and exceptional leadership skills demonstrated consistently throughout the evaluation period.', 'award1.png', 2, 2, '2025-09-22 14:15:48', '2025-09-22 12:49:48'), +(28, 10, 2, '2025-09-25 00:00:00', 'Innovation award for developing creative solutions that significantly improved operational efficiency and cost reduction.', 'award2.png', 2, 2, '2025-09-27 13:44:48', '2025-09-27 14:16:48'), +(29, 16, 5, '2025-10-10 00:00:00', 'Quality assurance excellence for maintaining zero-defect standards and implementing robust quality control processes.', 'award2.png', 2, 2, '2025-10-12 08:42:48', '2025-10-12 15:48:48'), +(30, 24, 14, '2026-02-07 00:00:00', 'Operational excellence award for maintaining high standards of service delivery and continuous improvement initiatives.', 'award2.png', 2, 2, '2026-02-09 11:04:48', '2026-02-09 11:36:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `award_types` +-- + +CREATE TABLE `award_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `description` varchar(255) DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `award_types` +-- + +INSERT INTO `award_types` (`id`, `name`, `description`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Employee of the Month', 'Awarded to the best performing employee each month.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Best Team Player', 'Recognizes outstanding collaboration and teamwork.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'Customer Hero Award', 'For delivering exceptional customer service.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Innovation Champion', 'Honors employees who introduce creative solutions.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'Leadership Excellence', 'Awarded for demonstrating strong leadership qualities.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 'Rookie of the Year', 'For the most promising new employee of the year.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 'Outstanding Attendance', 'Recognizes consistent punctuality and attendance.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 'Sales Star', 'Awarded for achieving top sales performance.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 'Excellence in Quality', 'For maintaining exceptional standards of work quality.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 'Community Contributor', 'Recognizes employees who contribute to community initiatives.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, 'Tech Innovator', 'For creating or improving technology-based processes.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, 'Mentor of the Year', 'For providing exceptional guidance and mentorship.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(13, 'Best Problem Solver', 'Awarded to the employee with outstanding analytical skills.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 'Long Service Award', 'Recognizes employees for long-term dedication and service.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, 'Culture Champion', 'For embodying and promoting company values consistently.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `bank_accounts` +-- + +CREATE TABLE `bank_accounts` ( + `id` bigint(20) UNSIGNED NOT NULL, + `account_number` varchar(255) NOT NULL, + `account_name` varchar(255) NOT NULL, + `bank_name` varchar(255) NOT NULL, + `branch_name` varchar(255) DEFAULT NULL, + `account_type` varchar(255) NOT NULL DEFAULT '0', + `payment_gateway` varchar(255) DEFAULT NULL, + `opening_balance` decimal(10,2) DEFAULT NULL, + `current_balance` decimal(10,2) DEFAULT NULL, + `iban` varchar(255) DEFAULT NULL, + `swift_code` varchar(255) DEFAULT NULL, + `routing_number` varchar(255) DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 0, + `gl_account_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `bank_accounts` +-- + +INSERT INTO `bank_accounts` (`id`, `account_number`, `account_name`, `bank_name`, `branch_name`, `account_type`, `payment_gateway`, `opening_balance`, `current_balance`, `iban`, `swift_code`, `routing_number`, `is_active`, `gl_account_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, '1234567890', 'Business Checking Account', 'Chase Bank', 'Downtown Branch', '0', 'Stripe', 500000.00, 750000.00, 'US64SVBKUS6S3300958879', 'CHASUS33', '021000021', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, '9876543210', 'Savings Account', 'Bank of America', 'Main Street Branch', '1', 'PayPal', 1000000.00, 1250000.00, 'US29NFCU0000000001001808', 'BOFAUS3N', '026009593', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, '5555666677', 'Credit Line Account', 'Wells Fargo', 'Business Center', '2', 'Square', 0.00, 2500000.00, 'US12WFBIUS6S', 'WFBIUS6S', '121000248', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, '1111222233', 'Equipment Loan Account', 'Citibank', 'Corporate Branch', '3', 'Razorpay', 2500000.00, 3500000.00, 'US33CITIUS33', 'CITIUS33', '021000089', 1, 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, '7777888899', 'Petty Cash Account', 'TD Bank', 'Local Branch', '0', NULL, 10000.00, 85000.00, 'US44TDBUS33', 'TDBKUS33', '031201360', 0, 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `bank_transactions` +-- + +CREATE TABLE `bank_transactions` ( + `id` bigint(20) UNSIGNED NOT NULL, + `bank_account_id` bigint(20) UNSIGNED NOT NULL, + `transaction_date` date NOT NULL, + `transaction_type` enum('debit','credit') NOT NULL, + `reference_number` varchar(255) DEFAULT NULL, + `description` text NOT NULL, + `amount` decimal(15,2) NOT NULL, + `running_balance` decimal(15,2) NOT NULL, + `transaction_status` enum('pending','cleared','cancelled') NOT NULL DEFAULT 'pending', + `reconciliation_status` enum('unreconciled','reconciled') NOT NULL DEFAULT 'unreconciled', + `created_by` bigint(20) UNSIGNED 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 `bank_transfers` +-- + +CREATE TABLE `bank_transfers` ( + `id` bigint(20) UNSIGNED NOT NULL, + `transfer_number` varchar(255) NOT NULL, + `transfer_date` date NOT NULL, + `from_account_id` bigint(20) UNSIGNED NOT NULL, + `to_account_id` bigint(20) UNSIGNED NOT NULL, + `transfer_amount` decimal(15,2) NOT NULL, + `transfer_charges` decimal(15,2) NOT NULL DEFAULT 0.00, + `reference_number` varchar(255) DEFAULT NULL, + `description` text NOT NULL, + `status` enum('pending','completed','failed') NOT NULL DEFAULT 'pending', + `journal_entry_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED 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 `bank_transfer_payments` +-- + +CREATE TABLE `bank_transfer_payments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `price` decimal(10,2) DEFAULT NULL, + `order_id` varchar(255) NOT NULL, + `status` enum('pending','approved','rejected') NOT NULL DEFAULT 'pending', + `price_currency` varchar(3) NOT NULL DEFAULT 'USD', + `attachment` varchar(255) DEFAULT NULL, + `request` longtext DEFAULT NULL, + `type` varchar(255) DEFAULT NULL, + `created_by` bigint(20) 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 `bank_transfer_payments` +-- + +INSERT INTO `bank_transfer_payments` (`id`, `user_id`, `price`, `order_id`, `status`, `price_currency`, `attachment`, `request`, `type`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 2, 394.95, '9B4A92C4FD2A', 'approved', 'USD', NULL, '\"{\\\"plan_id\\\":2,\\\"user_counter_input\\\":1,\\\"storage_counter_input\\\":0,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Dibbert-O\'Kon Bank\\\",\\\"account_holder\\\":\\\"Hector Gottlieb\\\",\\\"account_number\\\":\\\"443237351722\\\",\\\"transaction_id\\\":\\\"3a85e742-ea5d-3918-88f4-440e3c8256b1\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 4, 223.49, '9B4A92C50227', 'approved', 'EUR', 'https://via.placeholder.com/640x480.png/003399?text=business+id', '\"{\\\"plan_id\\\":3,\\\"user_counter_input\\\":4,\\\"storage_counter_input\\\":5,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Leuschke Inc Bank\\\",\\\"account_holder\\\":\\\"Jevon Hansen\\\",\\\"account_number\\\":\\\"796141101966\\\",\\\"transaction_id\\\":\\\"5357bbb4-a56b-3d3e-a9e1-f849f842b50a\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 2, 48.90, '9B4A92C50731', 'rejected', 'EUR', 'https://via.placeholder.com/640x480.png/0044bb?text=business+id', '\"{\\\"plan_id\\\":2,\\\"user_counter_input\\\":9,\\\"storage_counter_input\\\":4,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Crist-Ryan Bank\\\",\\\"account_holder\\\":\\\"Javier West MD\\\",\\\"account_number\\\":\\\"694528432\\\",\\\"transaction_id\\\":\\\"c38b1763-2073-3972-946a-4f20b329fea9\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 4, 158.32, '9B4A92C50DF0', 'rejected', 'EUR', 'https://via.placeholder.com/640x480.png/00ee22?text=business+accusantium', '\"{\\\"plan_id\\\":3,\\\"user_counter_input\\\":7,\\\"storage_counter_input\\\":4,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"DuBuque, Reynolds and Harber Bank\\\",\\\"account_holder\\\":\\\"Brady Bins\\\",\\\"account_number\\\":\\\"7291232669\\\",\\\"transaction_id\\\":\\\"79b6e624-76c9-3659-8b59-4fc8da69481d\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 5, 231.19, '9B4A92C512D8', 'rejected', 'GBP', 'https://via.placeholder.com/640x480.png/00ff55?text=business+quisquam', '\"{\\\"plan_id\\\":4,\\\"user_counter_input\\\":9,\\\"storage_counter_input\\\":5,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Mraz LLC Bank\\\",\\\"account_holder\\\":\\\"Prof. Maxime Gibson III\\\",\\\"account_number\\\":\\\"16855706643\\\",\\\"transaction_id\\\":\\\"4216cbef-6fdc-354a-9b87-2bb79aa60544\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 2, 397.76, '9B4A92C517A7', 'pending', 'USD', 'https://via.placeholder.com/640x480.png/00bbee?text=business+eum', '\"{\\\"plan_id\\\":3,\\\"user_counter_input\\\":8,\\\"storage_counter_input\\\":1,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Goodwin, Shields and Spinka Bank\\\",\\\"account_holder\\\":\\\"Sabrina Wintheiser\\\",\\\"account_number\\\":\\\"5317042593285\\\",\\\"transaction_id\\\":\\\"761abacd-c9c7-391a-833d-d3d9f0c84b5c\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 2, 423.19, '9B4A92C51C9F', 'approved', 'GBP', NULL, '\"{\\\"plan_id\\\":1,\\\"user_counter_input\\\":3,\\\"storage_counter_input\\\":2,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Wolff Ltd Bank\\\",\\\"account_holder\\\":\\\"Miss Marie Runolfsdottir DDS\\\",\\\"account_number\\\":\\\"9809154071666\\\",\\\"transaction_id\\\":\\\"c0f3e7f9-c6ef-3db9-ae82-d97dc158f17a\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 2, 229.71, '9B4A92C52115', 'pending', 'GBP', NULL, '\"{\\\"plan_id\\\":1,\\\"user_counter_input\\\":5,\\\"storage_counter_input\\\":3,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Casper-Bednar Bank\\\",\\\"account_holder\\\":\\\"Lillian Heaney\\\",\\\"account_number\\\":\\\"18237611\\\",\\\"transaction_id\\\":\\\"61c89b5b-a717-3261-bf1f-6ce5e2484a23\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 3, 496.26, '9B4A92C5257E', 'pending', 'EUR', 'https://via.placeholder.com/640x480.png/006677?text=business+officia', '\"{\\\"plan_id\\\":3,\\\"user_counter_input\\\":2,\\\"storage_counter_input\\\":5,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Larson, Lesch and Sporer Bank\\\",\\\"account_holder\\\":\\\"Landen Dooley\\\",\\\"account_number\\\":\\\"8400799882751854\\\",\\\"transaction_id\\\":\\\"55f13ac8-a98c-365c-9e31-a03f39dfedc2\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 4, 296.84, '9B4A92C52A6B', 'approved', 'USD', 'https://via.placeholder.com/640x480.png/007733?text=business+voluptas', '\"{\\\"plan_id\\\":2,\\\"user_counter_input\\\":8,\\\"storage_counter_input\\\":0,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Spinka, Weber and Barton Bank\\\",\\\"account_holder\\\":\\\"Glennie Leuschke\\\",\\\"account_number\\\":\\\"131944787\\\",\\\"transaction_id\\\":\\\"09d731ae-ddb2-3501-afac-16ad6eee0539\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, 6, 129.67, '9B4A92C52F4C', 'approved', 'USD', NULL, '\"{\\\"plan_id\\\":4,\\\"user_counter_input\\\":9,\\\"storage_counter_input\\\":2,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Sporer, Mante and Heathcote Bank\\\",\\\"account_holder\\\":\\\"Tillman Bartoletti\\\",\\\"account_number\\\":\\\"54300852\\\",\\\"transaction_id\\\":\\\"f57a26b4-11bd-378c-9bb6-80b8018600f7\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, 4, 397.12, '9B4A92C533AF', 'pending', 'GBP', 'https://via.placeholder.com/640x480.png/0022ff?text=business+cum', '\"{\\\"plan_id\\\":1,\\\"user_counter_input\\\":6,\\\"storage_counter_input\\\":4,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"McClure-Heathcote Bank\\\",\\\"account_holder\\\":\\\"Odell Hettinger\\\",\\\"account_number\\\":\\\"2614036927\\\",\\\"transaction_id\\\":\\\"3b36b776-6767-3019-bab2-6b53f5f8ed77\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(13, 6, 198.22, '9B4A92C53881', 'pending', 'EUR', NULL, '\"{\\\"plan_id\\\":4,\\\"user_counter_input\\\":9,\\\"storage_counter_input\\\":0,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Spinka, Hegmann and Dibbert Bank\\\",\\\"account_holder\\\":\\\"Yasmin Parisian\\\",\\\"account_number\\\":\\\"966772483382656\\\",\\\"transaction_id\\\":\\\"60d4fb2d-58e4-39eb-8219-2e909747e446\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 3, 117.17, '9B4A92C53D1C', 'approved', 'EUR', 'https://via.placeholder.com/640x480.png/009955?text=business+assumenda', '\"{\\\"plan_id\\\":4,\\\"user_counter_input\\\":3,\\\"storage_counter_input\\\":1,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Lakin Group Bank\\\",\\\"account_holder\\\":\\\"Prof. Darrin Olson PhD\\\",\\\"account_number\\\":\\\"7096635773\\\",\\\"transaction_id\\\":\\\"05628cbd-8992-31e3-be10-7035946d036f\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, 3, 194.53, '9B4A92C54224', 'approved', 'GBP', 'https://via.placeholder.com/640x480.png/00dd66?text=business+veniam', '\"{\\\"plan_id\\\":3,\\\"user_counter_input\\\":6,\\\"storage_counter_input\\\":0,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Lebsack, Prohaska and Wiegand Bank\\\",\\\"account_holder\\\":\\\"Miss Meghan Strosin II\\\",\\\"account_number\\\":\\\"554524525032490\\\",\\\"transaction_id\\\":\\\"d7128f4d-2018-3b2f-b24a-4a732aa3ec2b\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `bookings` +-- + +CREATE TABLE `bookings` ( + `id` bigint(20) UNSIGNED NOT NULL, + `customer_name` int(11) NOT NULL, + `vehicle_name` int(11) NOT NULL, + `driver_name` int(11) NOT NULL, + `trip_type` varchar(255) NOT NULL, + `start_date` timestamp NULL DEFAULT NULL, + `end_date` timestamp NULL DEFAULT NULL, + `start_address` varchar(255) NOT NULL, + `end_address` varchar(255) NOT NULL, + `total_price` int(11) NOT NULL DEFAULT 0, + `status` varchar(255) NOT NULL, + `notes` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `bookings_appointments` +-- + +CREATE TABLE `bookings_appointments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `appointment_id` int(11) NOT NULL, + `date` date NOT NULL, + `service` int(11) NOT NULL, + `package` varchar(255) NOT NULL, + `staff` varchar(255) NOT NULL, + `client_id` varchar(255) NOT NULL, + `start_time` varchar(255) NOT NULL, + `end_time` varchar(255) NOT NULL, + `your_country` varchar(255) NOT NULL, + `your_state` varchar(255) NOT NULL, + `your_city` varchar(255) NOT NULL, + `your_address` varchar(255) NOT NULL, + `your_zip_code` int(11) NOT NULL, + `our_country` varchar(255) NOT NULL, + `our_state` varchar(255) NOT NULL, + `our_city` varchar(255) NOT NULL, + `our_zip_code` int(11) NOT NULL, + `payment` varchar(255) DEFAULT NULL, + `stage_id` int(11) DEFAULT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `bookings_business_hours` +-- + +CREATE TABLE `bookings_business_hours` ( + `id` bigint(20) UNSIGNED NOT NULL, + `day_name` varchar(255) NOT NULL, + `start_time` time NOT NULL, + `end_time` time NOT NULL, + `day_off` varchar(255) NOT NULL DEFAULT 'off', + `break_hours` varchar(255) DEFAULT NULL, + `workspace_id` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `bookings_customers` +-- + +CREATE TABLE `bookings_customers` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `number` varchar(255) NOT NULL, + `email` varchar(255) NOT NULL, + `client_id` varchar(255) DEFAULT NULL, + `customer` varchar(255) DEFAULT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `bookings_duration` +-- + +CREATE TABLE `bookings_duration` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` varchar(255) NOT NULL, + `duration` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `bookings_extra_services` +-- + +CREATE TABLE `bookings_extra_services` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `status` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `bookings_packages` +-- + +CREATE TABLE `bookings_packages` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `item` varchar(255) NOT NULL, + `services` varchar(255) NOT NULL, + `delivery_time` varchar(255) NOT NULL, + `delivery_period` varchar(255) NOT NULL, + `price` varchar(255) DEFAULT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `bookings_staff` +-- + +CREATE TABLE `bookings_staff` ( + `id` bigint(20) UNSIGNED NOT NULL, + `staff` varchar(255) NOT NULL, + `service` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `branches` +-- + +CREATE TABLE `branches` ( + `id` bigint(20) UNSIGNED NOT NULL, + `branch_name` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `branches` +-- + +INSERT INTO `branches` (`id`, `branch_name`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Main Office', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Downtown Branch', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'North Branch', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'South Branch', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'East Branch', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 'West Branch', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 'Corporate Headquarters', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 'Regional Office', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 'Sales Office', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 'Customer Service Center', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `bug_comments` +-- + +CREATE TABLE `bug_comments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `bug_id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `comment` 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 `bug_comments` +-- + +INSERT INTO `bug_comments` (`id`, `bug_id`, `user_id`, `comment`, `created_at`, `updated_at`) VALUES +(1, 1, 16, 'Closed after successful testing and validation.', '2026-02-14 00:17:53', '2026-03-14 00:17:53'), +(2, 2, 26, 'User confirmation received, issue considered closed.', '2026-02-20 00:17:53', '2026-03-14 00:17:53'), +(3, 2, 26, 'User confirmation received, issue considered closed.', '2026-03-13 00:17:53', '2026-03-14 00:17:53'), +(4, 3, 26, 'Additional logs and screenshots requested from reporter.', '2026-03-11 00:17:53', '2026-03-14 00:17:53'), +(5, 4, 16, 'Testing potential fix in development environment.', '2026-03-09 00:17:53', '2026-03-14 00:17:53'), +(6, 5, 20, 'Temporary workaround applied while final fix is prepared.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), +(7, 5, 16, 'Testing potential fix in development environment.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'), +(8, 6, 20, 'User confirmation received, issue considered closed.', '2026-03-04 00:17:53', '2026-03-14 00:17:53'), +(9, 6, 20, 'User confirmation received, issue considered closed.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), +(10, 7, 22, 'Assigned to development team for analysis.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), +(11, 8, 16, 'Fix verified and working as expected.', '2026-03-04 00:17:53', '2026-03-14 00:17:53'), +(12, 8, 16, 'Issue resolved, monitoring for any recurrence.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), +(13, 9, 18, 'Fix verified and working as expected.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'), +(14, 10, 26, 'Resolution documented for future reference.', '2026-03-08 00:17:53', '2026-03-14 00:17:53'), +(15, 11, 18, 'User confirmation received, issue considered closed.', '2026-02-15 00:17:53', '2026-03-14 00:17:53'), +(16, 11, 18, 'User confirmation received, issue considered closed.', '2026-02-21 00:17:53', '2026-03-14 00:17:53'), +(17, 12, 18, 'Resolution documented for future reference.', '2026-03-03 00:17:53', '2026-03-14 00:17:53'), +(18, 13, 26, 'Fix verified and working as expected.', '2026-02-18 00:17:53', '2026-03-14 00:17:53'), +(19, 14, 26, 'Closed after successful testing and validation.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), +(20, 14, 18, 'Issue resolved, monitoring for any recurrence.', '2026-03-09 00:17:53', '2026-03-14 00:17:53'), +(21, 15, 26, 'Issue resolved, monitoring for any recurrence.', '2026-02-17 00:17:53', '2026-03-14 00:17:53'), +(22, 16, 18, 'Resolution documented for future reference.', '2026-02-15 00:17:53', '2026-03-14 00:17:53'), +(23, 16, 26, 'Resolution documented for future reference.', '2026-02-28 00:17:53', '2026-03-14 00:17:53'), +(24, 17, 12, 'Additional logs and screenshots requested from reporter.', '2026-02-19 00:17:53', '2026-03-14 00:17:53'), +(25, 18, 26, 'Initial triage completed, awaiting further details.', '2026-02-15 00:17:53', '2026-03-14 00:17:53'), +(26, 19, 26, 'Additional logs and screenshots requested from reporter.', '2026-03-12 00:17:53', '2026-03-14 00:17:53'), +(27, 19, 12, 'Priority set based on impact assessment.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), +(28, 20, 12, 'Additional logs and screenshots requested from reporter.', '2026-03-09 00:17:53', '2026-03-14 00:17:53'), +(29, 20, 12, 'Priority set based on impact assessment.', '2026-03-10 00:17:53', '2026-03-14 00:17:53'), +(30, 21, 18, 'Bug reported and needs investigation.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), +(31, 21, 22, 'Reproducing the issue to understand root cause.', '2026-02-20 00:17:53', '2026-03-14 00:17:53'), +(32, 22, 22, 'Initial triage completed, awaiting further details.', '2026-03-11 00:17:53', '2026-03-14 00:17:53'), +(33, 23, 22, 'Initial triage completed, awaiting further details.', '2026-03-03 00:17:53', '2026-03-14 00:17:53'), +(34, 24, 20, 'Initial triage completed, awaiting further details.', '2026-02-19 00:17:53', '2026-03-14 00:17:53'), +(35, 25, 20, 'Bug reported and needs investigation.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), +(36, 25, 10, 'Initial triage completed, awaiting further details.', '2026-03-10 00:17:53', '2026-03-14 00:17:53'), +(37, 26, 10, 'Priority set based on impact assessment.', '2026-03-08 00:17:53', '2026-03-14 00:17:53'), +(38, 26, 10, 'Assigned to development team for analysis.', '2026-03-02 00:17:53', '2026-03-14 00:17:53'), +(39, 27, 20, 'Additional logs and screenshots requested from reporter.', '2026-02-25 00:17:53', '2026-03-14 00:17:53'), +(40, 27, 10, 'Additional logs and screenshots requested from reporter.', '2026-03-02 00:17:53', '2026-03-14 00:17:53'), +(41, 28, 14, 'Bug reported and needs investigation.', '2026-03-09 00:17:53', '2026-03-14 00:17:53'), +(42, 29, 22, 'Priority set based on impact assessment.', '2026-03-04 00:17:53', '2026-03-14 00:17:53'), +(43, 30, 22, 'Reproducing the issue to understand root cause.', '2026-02-18 00:17:53', '2026-03-14 00:17:53'), +(44, 30, 26, 'Bug reported and needs investigation.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), +(45, 31, 14, 'Reproducing the issue to understand root cause.', '2026-02-25 00:17:53', '2026-03-14 00:17:53'), +(46, 31, 26, 'Additional logs and screenshots requested from reporter.', '2026-02-26 00:17:53', '2026-03-14 00:17:53'), +(47, 32, 22, 'Initial triage completed, awaiting further details.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), +(48, 33, 18, 'Additional logs and screenshots requested from reporter.', '2026-03-08 00:17:53', '2026-03-14 00:17:53'), +(49, 33, 18, 'Bug reported and needs investigation.', '2026-02-18 00:17:53', '2026-03-14 00:17:53'), +(50, 34, 22, 'Priority set based on impact assessment.', '2026-02-16 00:17:53', '2026-03-14 00:17:53'), +(51, 34, 22, 'Additional logs and screenshots requested from reporter.', '2026-03-01 00:17:53', '2026-03-14 00:17:53'), +(52, 35, 18, 'Bug reported and needs investigation.', '2026-02-25 00:17:53', '2026-03-14 00:17:53'), +(53, 36, 14, 'Reproducing the issue to understand root cause.', '2026-03-05 00:17:53', '2026-03-14 00:17:53'), +(54, 36, 14, 'Reproducing the issue to understand root cause.', '2026-02-23 00:17:53', '2026-03-14 00:17:53'), +(55, 37, 14, 'Assigned to development team for analysis.', '2026-03-04 00:17:53', '2026-03-14 00:17:53'), +(56, 38, 14, 'Assigned to development team for analysis.', '2026-02-19 00:17:53', '2026-03-14 00:17:53'), +(57, 38, 14, 'Assigned to development team for analysis.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), +(58, 39, 20, 'Additional logs and screenshots requested from reporter.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'), +(59, 40, 22, 'Reproducing the issue to understand root cause.', '2026-03-06 00:17:53', '2026-03-14 00:17:53'), +(60, 41, 22, 'Assigned to development team for analysis.', '2026-03-05 00:17:53', '2026-03-14 00:17:53'), +(61, 41, 22, 'Bug reported and needs investigation.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), +(62, 42, 20, 'Additional logs and screenshots requested from reporter.', '2026-02-15 00:17:53', '2026-03-14 00:17:53'), +(63, 42, 20, 'Priority set based on impact assessment.', '2026-03-07 00:17:53', '2026-03-14 00:17:53'), +(64, 43, 16, 'Additional logs and screenshots requested from reporter.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'), +(65, 43, 14, 'Initial triage completed, awaiting further details.', '2026-02-14 00:17:53', '2026-03-14 00:17:53'), +(66, 44, 14, 'Assigned to development team for analysis.', '2026-02-19 00:17:53', '2026-03-14 00:17:53'), +(67, 45, 16, 'Priority set based on impact assessment.', '2026-03-11 00:17:53', '2026-03-14 00:17:53'), +(68, 46, 16, 'Bug reported and needs investigation.', '2026-03-01 00:17:53', '2026-03-14 00:17:53'), +(69, 46, 14, 'Initial triage completed, awaiting further details.', '2026-03-13 00:17:53', '2026-03-14 00:17:53'), +(70, 47, 8, 'Reproducing the issue to understand root cause.', '2026-02-17 00:17:53', '2026-03-14 00:17:53'), +(71, 47, 26, 'Bug reported and needs investigation.', '2026-03-06 00:17:53', '2026-03-14 00:17:53'), +(72, 48, 8, 'Priority set based on impact assessment.', '2026-03-08 00:17:53', '2026-03-14 00:17:53'), +(73, 48, 8, 'Assigned to development team for analysis.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'), +(74, 49, 26, 'Additional logs and screenshots requested from reporter.', '2026-02-25 00:17:53', '2026-03-14 00:17:53'), +(75, 50, 26, 'Bug reported and needs investigation.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), +(76, 51, 26, 'Initial triage completed, awaiting further details.', '2026-02-23 00:17:53', '2026-03-14 00:17:53'), +(77, 51, 16, 'Priority set based on impact assessment.', '2026-02-21 00:17:53', '2026-03-14 00:17:53'), +(78, 52, 16, 'Additional logs and screenshots requested from reporter.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), +(79, 53, 26, 'Assigned to development team for analysis.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), +(80, 53, 26, 'Initial triage completed, awaiting further details.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `bug_stages` +-- + +CREATE TABLE `bug_stages` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `color` varchar(255) NOT NULL DEFAULT '#77b6ea', + `complete` tinyint(1) NOT NULL, + `order` int(11) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `bug_stages` +-- + +INSERT INTO `bug_stages` (`id`, `name`, `color`, `complete`, `order`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Unconfirmed', '#77b6ea', 0, 0, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 'Confirmed', '#6e00ff', 0, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 'In Progress', '#3cb8d9', 0, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 'Resolved', '#37b37e', 0, 3, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 'Verified', '#545454', 1, 4, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `cache` +-- + +CREATE TABLE `cache` ( + `key` varchar(255) NOT NULL, + `value` mediumtext NOT NULL, + `expiration` int(11) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `cache_locks` +-- + +CREATE TABLE `cache_locks` ( + `key` varchar(255) NOT NULL, + `owner` varchar(255) NOT NULL, + `expiration` int(11) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `certifications` +-- + +CREATE TABLE `certifications` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `issuing_body` varchar(255) DEFAULT NULL, + `validity_months` int(11) DEFAULT NULL, + `is_required` tinyint(1) NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `created_by` bigint(20) UNSIGNED NOT NULL, + `is_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 `certification_renewals` +-- + +CREATE TABLE `certification_renewals` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_certification_id` bigint(20) UNSIGNED NOT NULL, + `previous_expiry_date` date NOT NULL, + `new_expiry_date` date NOT NULL, + `renewed_date` date NOT NULL, + `renewed_by` bigint(20) UNSIGNED NOT NULL, + `document_path` varchar(255) DEFAULT NULL, + `notes` 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 `chart_of_accounts` +-- + +CREATE TABLE `chart_of_accounts` ( + `id` bigint(20) UNSIGNED NOT NULL, + `account_code` varchar(255) NOT NULL, + `account_name` varchar(255) NOT NULL, + `account_type_id` bigint(20) UNSIGNED NOT NULL, + `parent_account_id` bigint(20) UNSIGNED DEFAULT NULL, + `level` int(11) NOT NULL DEFAULT 1, + `normal_balance` enum('debit','credit') NOT NULL, + `opening_balance` decimal(15,2) NOT NULL DEFAULT 0.00, + `current_balance` decimal(15,2) NOT NULL DEFAULT 0.00, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `is_system_account` tinyint(1) NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `chart_of_accounts` +-- + +INSERT INTO `chart_of_accounts` (`id`, `account_code`, `account_name`, `account_type_id`, `parent_account_id`, `level`, `normal_balance`, `opening_balance`, `current_balance`, `is_active`, `is_system_account`, `description`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, '1000', 'Cash', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Physical cash in office', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, '1005', 'Petty Cash', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Small cash for minor expenses', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, '1010', 'Bank Account - Main', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Primary bank checking account', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, '1020', 'Bank Account - Savings', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business savings account', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, '1030', 'Bank Account - Payroll', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Dedicated payroll account', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, '1040', 'Cash in Transit', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Cash being transferred between accounts', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, '1100', 'Accounts Receivable', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Money owed by customers', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, '1200', 'Inventory', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Goods held for sale', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, '1300', 'Prepaid Expenses', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Expenses paid in advance', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, '1400', 'Deposits', 3, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Security deposits paid', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, '1500', 'Tax Receivable (VAT/GST Input)', 3, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Tax refunds due', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, '1600', 'Equipment', 2, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Office and business equipment', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(13, '1610', 'Accumulated Depreciation - Equipment', 2, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated depreciation on equipment', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, '1700', 'Buildings', 2, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Building assets', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, '1710', 'Accumulated Depreciation - Buildings', 2, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated depreciation on buildings', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(16, '2000', 'Accounts Payable', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Money owed to suppliers', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(17, '2100', 'Accrued Expenses', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Expenses incurred but not yet paid', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(18, '2200', 'Tax Payable (Income Tax)', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Taxes owed', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(19, '2210', 'VAT Payable (Sales Tax Output)', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'VAT owed to government', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(20, '2220', 'GST Payable', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'GST owed to government', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(21, '2300', 'Short-term Loans', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Loans due within one year', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(22, '2350', 'Customer Deposits', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Advance payments from customers for future services', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(23, '2400', 'Payroll Liabilities', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Unpaid employee salaries and benefits', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(24, '2500', 'Long-term Debt', 5, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Debts due after one year', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(25, '3100', 'Share Capital', 6, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Owner\'s investment in business', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(26, '3200', 'Retained Earnings', 7, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated business profits', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(27, '4100', 'Sales Revenue', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from product sales', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(28, '4010', 'Product Sales', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from product sales', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(29, '4200', 'Service Revenue', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from services provided', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(30, '4030', 'Consulting Revenue', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from consulting services', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(31, '4040', 'Subscription Revenue', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from subscription services', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(32, '4110', 'Commission Income', 9, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from commissions', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(33, '4120', 'Rental Income', 9, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from rental properties', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(34, '4130', 'Maintenance Income', 9, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from maintenance services', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(35, '4140', 'Training Income', 9, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from training services', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(36, '4300', 'Other Income', 9, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Miscellaneous income', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(37, '4400', 'Project Revenue', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from project-based work', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(38, '5100', 'Cost of Goods Sold', 10, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Direct cost of products sold', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(39, '5200', 'Salaries Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Employee salaries', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(40, '5210', 'Employee Benefits', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Employee benefits and insurance', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(41, '5220', 'Sales Commission Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Commission paid to sales agents', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(42, '5300', 'Rent Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Office rent payments', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(43, '5305', 'Dairy Cattle Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Dairy cattle related expenses', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(44, '5306', 'Catering Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Catering related expenses', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(45, '5310', 'Office Supplies', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'General office supplies', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(46, '5320', 'Marketing Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Marketing and advertising costs', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(47, '5330', 'Travel Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business travel expenses', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(48, '5400', 'Utilities Expense', 12, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Electricity, water, internet', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(49, '5410', 'Insurance Expense', 12, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business insurance premiums', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(50, '5420', 'Professional Fees', 12, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Legal and accounting fees', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(51, '5430', 'Depreciation Expense', 12, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Depreciation on fixed assets', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(52, '5500', 'Interest Expense', 13, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Interest on loans and debt', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(53, '5510', 'Bank Charges', 13, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Bank fees and charges', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(54, '5600', 'Tax Expense', 14, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Income tax expense', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(55, '5700', 'Bad Debt Expense', 15, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Uncollectible accounts expense', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(56, '5800', 'Miscellaneous Expense', 15, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Other miscellaneous expenses', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(57, '1000', 'Cash', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Physical cash in office', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(58, '1005', 'Petty Cash', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Small cash for minor expenses', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(59, '1010', 'Bank Account - Main', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Primary bank checking account', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(60, '1020', 'Bank Account - Savings', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business savings account', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(61, '1030', 'Bank Account - Payroll', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Dedicated payroll account', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(62, '1040', 'Cash in Transit', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Cash being transferred between accounts', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(63, '1100', 'Accounts Receivable', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Money owed by customers', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(64, '1200', 'Inventory', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Goods held for sale', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(65, '1300', 'Prepaid Expenses', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Expenses paid in advance', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(66, '1400', 'Deposits', 18, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Security deposits paid', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(67, '1500', 'Tax Receivable (VAT/GST Input)', 18, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Tax refunds due', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(68, '1600', 'Equipment', 17, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Office and business equipment', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(69, '1610', 'Accumulated Depreciation - Equipment', 17, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated depreciation on equipment', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(70, '1700', 'Buildings', 17, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Building assets', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(71, '1710', 'Accumulated Depreciation - Buildings', 17, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated depreciation on buildings', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(72, '2000', 'Accounts Payable', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Money owed to suppliers', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(73, '2100', 'Accrued Expenses', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Expenses incurred but not yet paid', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(74, '2200', 'Tax Payable (Income Tax)', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Taxes owed', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(75, '2210', 'VAT Payable (Sales Tax Output)', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'VAT owed to government', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(76, '2220', 'GST Payable', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'GST owed to government', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(77, '2300', 'Short-term Loans', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Loans due within one year', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(78, '2350', 'Customer Deposits', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Advance payments from customers for future services', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(79, '2400', 'Payroll Liabilities', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Unpaid employee salaries and benefits', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(80, '2500', 'Long-term Debt', 20, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Debts due after one year', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(81, '3100', 'Share Capital', 21, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Owner\'s investment in business', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(82, '3200', 'Retained Earnings', 22, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated business profits', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(83, '4100', 'Sales Revenue', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from product sales', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(84, '4010', 'Product Sales', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from product sales', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(85, '4200', 'Service Revenue', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from services provided', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(86, '4030', 'Consulting Revenue', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from consulting services', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(87, '4040', 'Subscription Revenue', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from subscription services', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(88, '4110', 'Commission Income', 24, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from commissions', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(89, '4120', 'Rental Income', 24, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from rental properties', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(90, '4130', 'Maintenance Income', 24, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from maintenance services', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(91, '4140', 'Training Income', 24, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from training services', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(92, '4300', 'Other Income', 24, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Miscellaneous income', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(93, '4400', 'Project Revenue', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from project-based work', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(94, '5100', 'Cost of Goods Sold', 25, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Direct cost of products sold', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(95, '5200', 'Salaries Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Employee salaries', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(96, '5210', 'Employee Benefits', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Employee benefits and insurance', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(97, '5220', 'Sales Commission Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Commission paid to sales agents', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(98, '5300', 'Rent Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Office rent payments', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(99, '5305', 'Dairy Cattle Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Dairy cattle related expenses', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(100, '5306', 'Catering Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Catering related expenses', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(101, '5310', 'Office Supplies', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'General office supplies', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(102, '5320', 'Marketing Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Marketing and advertising costs', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(103, '5330', 'Travel Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business travel expenses', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(104, '5400', 'Utilities Expense', 27, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Electricity, water, internet', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(105, '5410', 'Insurance Expense', 27, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business insurance premiums', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(106, '5420', 'Professional Fees', 27, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Legal and accounting fees', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(107, '5430', 'Depreciation Expense', 27, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Depreciation on fixed assets', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(108, '5500', 'Interest Expense', 28, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Interest on loans and debt', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(109, '5510', 'Bank Charges', 28, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Bank fees and charges', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(110, '5600', 'Tax Expense', 29, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Income tax expense', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(111, '5700', 'Bad Debt Expense', 30, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Uncollectible accounts expense', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(112, '5800', 'Miscellaneous Expense', 30, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Other miscellaneous expenses', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ch_favorites` +-- + +CREATE TABLE `ch_favorites` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) NOT NULL, + `favorite_id` bigint(20) 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 `ch_favorites` +-- + +INSERT INTO `ch_favorites` (`id`, `user_id`, `favorite_id`, `created_at`, `updated_at`) VALUES +(1, 8, 17, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 9, 14, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 10, 8, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 10, 13, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ch_messages` +-- + +CREATE TABLE `ch_messages` ( + `id` bigint(20) UNSIGNED NOT NULL, + `from_id` bigint(20) NOT NULL, + `to_id` bigint(20) NOT NULL, + `body` varchar(5000) DEFAULT NULL, + `attachment` varchar(255) DEFAULT NULL, + `seen` tinyint(1) NOT NULL DEFAULT 0, + `deleted_by_sender` tinyint(1) NOT NULL DEFAULT 0, + `deleted_by_receiver` 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 `ch_messages` +-- + +INSERT INTO `ch_messages` (`id`, `from_id`, `to_id`, `body`, `attachment`, `seen`, `deleted_by_sender`, `deleted_by_receiver`, `created_at`, `updated_at`) VALUES +(1, 2, 8, 'Hi there! How\'s your day going?', NULL, 1, 0, 0, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 8, 2, 'Hey! Pretty good, thanks for asking. How about you?', NULL, 1, 0, 0, '2026-03-14 00:19:48', '2026-03-14 00:17:48'), +(3, 2, 8, 'Not bad at all. Just working on the quarterly report.', NULL, 1, 0, 0, '2026-03-14 00:45:48', '2026-03-14 00:17:48'), +(4, 8, 2, 'Oh nice! Need any help with that?', NULL, 1, 0, 0, '2026-03-14 00:32:48', '2026-03-14 00:17:48'), +(5, 2, 8, 'Actually, yes. Could you review the financial section?', NULL, 1, 0, 0, '2026-03-14 00:25:48', '2026-03-14 00:17:48'), +(6, 8, 2, 'Of course! Send it over and I\'ll take a look.', NULL, 1, 0, 0, '2026-03-14 01:12:48', '2026-03-14 00:17:48'), +(7, 2, 8, 'Perfect, sending it now. Thanks!', NULL, 1, 0, 0, '2026-03-14 01:35:48', '2026-03-14 00:17:48'), +(8, 8, 2, 'No problem, happy to help 😊', NULL, 1, 0, 0, '2026-03-14 01:34:48', '2026-03-14 00:17:48'), +(9, 2, 9, 'Good morning! Ready for today\'s meeting?', NULL, 1, 0, 0, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 9, 2, 'Morning! Yes, I\'ve prepared all the materials.', NULL, 1, 0, 0, '2026-03-14 00:25:48', '2026-03-14 00:17:48'), +(11, 2, 9, 'Great! What time should we start?', NULL, 1, 0, 0, '2026-03-14 00:31:48', '2026-03-14 00:17:48'), +(12, 9, 2, 'How about 10 AM? That works for everyone.', NULL, 1, 0, 0, '2026-03-14 00:41:48', '2026-03-14 00:17:48'), +(13, 2, 9, 'Perfect. I\'ll send the calendar invite.', NULL, 1, 0, 0, '2026-03-14 00:29:48', '2026-03-14 00:17:48'), +(14, 9, 2, 'Sounds good. See you then!', NULL, 1, 0, 0, '2026-03-14 01:27:48', '2026-03-14 00:17:48'), +(15, 2, 10, 'The client loved the presentation!', NULL, 1, 0, 0, '2026-03-08 00:17:48', '2026-03-14 00:17:48'), +(16, 10, 2, 'Really? That\'s fantastic news!', NULL, 1, 0, 0, '2026-03-08 00:32:48', '2026-03-14 00:17:48'), +(17, 2, 10, 'Yes, they want to move forward with the project.', NULL, 1, 0, 0, '2026-03-08 00:35:48', '2026-03-14 00:17:48'), +(18, 10, 2, 'Excellent work! This calls for a celebration 🎉', NULL, 1, 0, 0, '2026-03-08 00:29:48', '2026-03-14 00:17:48'), +(19, 2, 10, 'Definitely! Drinks after work?', NULL, 1, 0, 0, '2026-03-08 00:49:48', '2026-03-14 00:17:48'), +(20, 10, 2, 'Count me in!', NULL, 0, 0, 0, '2026-03-08 01:12:48', '2026-03-14 00:17:48'), +(21, 2, 11, 'Quick question about the budget', NULL, 1, 0, 0, '2026-03-08 00:17:48', '2026-03-14 00:17:48'), +(22, 11, 2, 'Sure, what\'s up?', NULL, 1, 0, 0, '2026-03-08 00:28:48', '2026-03-14 00:17:48'), +(23, 2, 11, 'Do we have approval for the additional resources?', NULL, 1, 0, 0, '2026-03-08 00:43:48', '2026-03-14 00:17:48'), +(24, 11, 2, 'Let me check with management and get back to you.', NULL, 1, 0, 0, '2026-03-08 00:53:48', '2026-03-14 00:17:48'), +(25, 2, 11, 'Thanks, no rush but would be good to know soon.', NULL, 1, 0, 0, '2026-03-08 01:13:48', '2026-03-14 00:17:48'), +(26, 11, 2, 'I\'ll follow up by end of day.', NULL, 1, 0, 0, '2026-03-08 00:27:48', '2026-03-14 00:17:48'), +(27, 2, 11, 'Perfect, appreciate it!', NULL, 1, 0, 0, '2026-03-08 00:47:48', '2026-03-14 00:17:48'), +(28, 2, 12, 'Hey, are you free for a quick call?', NULL, 1, 0, 0, '2026-03-12 00:17:48', '2026-03-14 00:17:48'), +(29, 12, 2, 'Sure! What\'s it about?', NULL, 1, 0, 0, '2026-03-12 00:27:48', '2026-03-14 00:17:48'), +(30, 2, 12, 'Need to discuss the timeline for the new feature.', NULL, 1, 0, 0, '2026-03-12 00:43:48', '2026-03-14 00:17:48'), +(31, 12, 2, 'Ah yes, I was thinking about that too.', NULL, 1, 0, 0, '2026-03-12 00:23:48', '2026-03-14 00:17:48'), +(32, 2, 12, 'Great minds think alike! 😄', NULL, 1, 0, 0, '2026-03-12 01:17:48', '2026-03-14 00:17:48'), +(33, 12, 2, 'Haha exactly! Give me 5 minutes?', NULL, 1, 0, 0, '2026-03-12 01:17:48', '2026-03-14 00:17:48'), +(34, 2, 12, 'Perfect, I\'ll call you then.', NULL, 0, 0, 0, '2026-03-12 00:41:48', '2026-03-14 00:17:48'), +(35, 2, 13, 'Hi there! How\'s your day going?', NULL, 1, 0, 0, '2026-03-08 00:17:48', '2026-03-14 00:17:48'), +(36, 13, 2, 'Hey! Pretty good, thanks for asking. How about you?', NULL, 1, 0, 0, '2026-03-08 00:26:48', '2026-03-14 00:17:48'), +(37, 2, 13, 'Not bad at all. Just working on the quarterly report.', NULL, 1, 0, 0, '2026-03-08 00:31:48', '2026-03-14 00:17:48'), +(38, 13, 2, 'Oh nice! Need any help with that?', NULL, 1, 0, 0, '2026-03-08 01:02:48', '2026-03-14 00:17:48'), +(39, 2, 13, 'Actually, yes. Could you review the financial section?', NULL, 1, 0, 0, '2026-03-08 00:29:48', '2026-03-14 00:17:48'), +(40, 13, 2, 'Of course! Send it over and I\'ll take a look.', NULL, 1, 0, 0, '2026-03-08 00:27:48', '2026-03-14 00:17:48'), +(41, 2, 13, 'Perfect, sending it now. Thanks!', NULL, 1, 0, 0, '2026-03-08 00:47:48', '2026-03-14 00:17:48'), +(42, 13, 2, 'No problem, happy to help 😊', NULL, 0, 0, 0, '2026-03-08 00:38:48', '2026-03-14 00:17:48'), +(43, 2, 14, 'Good morning! Ready for today\'s meeting?', NULL, 1, 0, 0, '2026-03-07 00:17:48', '2026-03-14 00:17:48'), +(44, 14, 2, 'Morning! Yes, I\'ve prepared all the materials.', NULL, 1, 0, 0, '2026-03-07 00:26:48', '2026-03-14 00:17:48'), +(45, 2, 14, 'Great! What time should we start?', NULL, 1, 0, 0, '2026-03-07 00:45:48', '2026-03-14 00:17:48'), +(46, 14, 2, 'How about 10 AM? That works for everyone.', NULL, 1, 0, 0, '2026-03-07 00:53:48', '2026-03-14 00:17:48'), +(47, 2, 14, 'Perfect. I\'ll send the calendar invite.', NULL, 0, 0, 0, '2026-03-07 00:37:48', '2026-03-14 00:17:48'), +(48, 14, 2, 'Sounds good. See you then!', NULL, 1, 0, 0, '2026-03-07 00:42:48', '2026-03-14 00:17:48'), +(49, 2, 15, 'The client loved the presentation!', NULL, 1, 0, 0, '2026-03-11 00:17:48', '2026-03-14 00:17:48'), +(50, 15, 2, 'Really? That\'s fantastic news!', NULL, 1, 0, 0, '2026-03-11 00:22:48', '2026-03-14 00:17:48'), +(51, 2, 15, 'Yes, they want to move forward with the project.', NULL, 1, 0, 0, '2026-03-11 00:39:48', '2026-03-14 00:17:48'), +(52, 15, 2, 'Excellent work! This calls for a celebration 🎉', NULL, 1, 0, 0, '2026-03-11 00:44:48', '2026-03-14 00:17:48'), +(53, 2, 15, 'Definitely! Drinks after work?', NULL, 0, 0, 0, '2026-03-11 00:41:48', '2026-03-14 00:17:48'), +(54, 15, 2, 'Count me in!', NULL, 1, 0, 0, '2026-03-11 01:32:48', '2026-04-08 10:17:15'), +(55, 2, 16, 'Quick question about the budget', NULL, 1, 0, 0, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(56, 16, 2, 'Sure, what\'s up?', NULL, 1, 0, 0, '2026-03-14 00:27:48', '2026-03-14 00:17:48'), +(57, 2, 16, 'Do we have approval for the additional resources?', NULL, 1, 0, 0, '2026-03-14 00:41:48', '2026-03-14 00:17:48'), +(58, 16, 2, 'Let me check with management and get back to you.', NULL, 1, 0, 0, '2026-03-14 00:35:48', '2026-03-14 00:17:48'), +(59, 2, 16, 'Thanks, no rush but would be good to know soon.', NULL, 1, 0, 0, '2026-03-14 01:13:48', '2026-03-14 00:17:48'), +(60, 16, 2, 'I\'ll follow up by end of day.', NULL, 1, 0, 0, '2026-03-14 01:02:48', '2026-03-16 14:56:33'), +(61, 2, 16, 'Perfect, appreciate it!', NULL, 1, 0, 0, '2026-03-14 01:35:48', '2026-03-14 00:17:48'), +(62, 2, 17, 'Hey, are you free for a quick call?', NULL, 1, 0, 0, '2026-03-09 00:17:48', '2026-03-14 00:17:48'), +(63, 17, 2, 'Sure! What\'s it about?', NULL, 1, 0, 0, '2026-03-09 00:32:48', '2026-03-14 00:17:48'), +(64, 2, 17, 'Need to discuss the timeline for the new feature.', NULL, 1, 0, 0, '2026-03-09 00:33:48', '2026-03-14 00:17:48'), +(65, 17, 2, 'Ah yes, I was thinking about that too.', NULL, 1, 0, 0, '2026-03-09 00:53:48', '2026-03-14 00:17:48'), +(66, 2, 17, 'Great minds think alike! 😄', NULL, 1, 0, 0, '2026-03-09 00:57:48', '2026-03-14 00:17:48'), +(67, 17, 2, 'Haha exactly! Give me 5 minutes?', NULL, 1, 0, 0, '2026-03-09 00:27:48', '2026-03-14 00:17:48'), +(68, 2, 17, 'Perfect, I\'ll call you then.', NULL, 0, 0, 0, '2026-03-09 01:11:48', '2026-03-14 00:17:48'), +(69, 8, 9, 'Hey, got a minute?', NULL, 1, 0, 0, '2026-03-10 00:17:48', '2026-03-14 00:17:48'), +(70, 9, 8, 'Sure! What\'s up?', NULL, 1, 0, 0, '2026-03-10 00:21:48', '2026-03-14 00:17:48'), +(71, 8, 9, 'Can you help me with this task?', NULL, 1, 0, 0, '2026-03-10 00:23:48', '2026-03-14 00:17:48'), +(72, 9, 8, 'Of course! What do you need?', NULL, 1, 0, 0, '2026-03-10 00:41:48', '2026-03-14 00:17:48'), +(73, 9, 10, 'Thanks for yesterday\'s help!', NULL, 1, 0, 0, '2026-03-12 00:17:48', '2026-03-14 00:17:48'), +(74, 10, 9, 'No problem at all!', NULL, 1, 0, 0, '2026-03-12 00:25:48', '2026-03-14 00:17:48'), +(75, 9, 10, 'Really saved me a lot of time.', NULL, 1, 0, 0, '2026-03-12 00:27:48', '2026-03-14 00:17:48'), +(76, 10, 9, 'Glad I could help! 😊', NULL, 1, 0, 0, '2026-03-12 00:44:48', '2026-03-14 00:17:48'), +(77, 10, 11, 'Are you joining the team lunch?', NULL, 1, 0, 0, '2026-03-09 00:17:48', '2026-03-14 00:17:48'), +(78, 11, 10, 'Definitely! What time?', NULL, 1, 0, 0, '2026-03-09 00:22:48', '2026-03-14 00:17:48'), +(79, 10, 11, '12:30 at the usual place', NULL, 1, 0, 0, '2026-03-09 00:35:48', '2026-03-14 00:17:48'), +(80, 11, 10, 'Perfect, see you there!', NULL, 0, 0, 0, '2026-03-09 00:38:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ch_pinned` +-- + +CREATE TABLE `ch_pinned` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `pinned_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; + +-- +-- Dumping data for table `ch_pinned` +-- + +INSERT INTO `ch_pinned` (`id`, `user_id`, `pinned_id`, `created_at`, `updated_at`) VALUES +(1, 8, 10, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 9, 14, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 9, 15, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 10, 11, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 10, 17, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `client_deals` +-- + +CREATE TABLE `client_deals` ( + `id` bigint(20) UNSIGNED NOT NULL, + `client_id` bigint(20) UNSIGNED NOT NULL, + `deal_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; + +-- +-- Dumping data for table `client_deals` +-- + +INSERT INTO `client_deals` (`id`, `client_id`, `deal_id`, `created_at`, `updated_at`) VALUES +(1, 44, 1, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 11, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 17, 3, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 54, 4, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 47, 5, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 51, 6, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 27, 11, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 21, 12, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 13, 13, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 55, 14, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 43, 15, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 56, 16, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `client_permissions` +-- + +CREATE TABLE `client_permissions` ( + `id` bigint(20) UNSIGNED NOT NULL, + `client_id` bigint(20) UNSIGNED NOT NULL, + `deal_id` bigint(20) UNSIGNED NOT NULL, + `permissions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`permissions`)), + `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 `complaints` +-- + +CREATE TABLE `complaints` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `against_employee_id` bigint(20) UNSIGNED DEFAULT NULL, + `complaint_type_id` bigint(20) UNSIGNED DEFAULT NULL, + `subject` varchar(255) NOT NULL, + `description` longtext NOT NULL, + `complaint_date` date NOT NULL, + `status` enum('pending','in review','assigned','in progress','resolved') NOT NULL DEFAULT 'pending', + `document` varchar(255) DEFAULT NULL, + `resolved_by` bigint(20) UNSIGNED DEFAULT NULL, + `resolution_date` date DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `complaints` +-- + +INSERT INTO `complaints` (`id`, `employee_id`, `against_employee_id`, `complaint_type_id`, `subject`, `description`, `complaint_date`, `status`, `document`, `resolved_by`, `resolution_date`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 8, 14, 1, 'Workplace Harassment - Inappropriate Comments and Behavior', 'Employee experiencing inappropriate comments and unwelcome behavior from colleagues creating hostile work environment affecting productivity.', '2025-09-20', 'resolved', 'complaint1.png', 33, '2025-10-14', 2, 2, '2025-09-21 11:15:49', '2025-09-21 16:49:49'), +(2, 10, 26, 2, 'Discrimination Based on Gender and Age Factors', 'Discrimination complaints regarding unfair treatment based on gender and age factors affecting career advancement opportunities.', '2025-09-25', 'assigned', NULL, NULL, NULL, 2, 2, '2025-09-26 08:59:49', '2025-09-26 16:33:49'), +(3, 12, 22, 3, 'Bullying and Intimidation by Senior Colleagues', 'Bullying and intimidation tactics used by senior colleagues creating psychological stress and affecting work performance.', '2025-09-30', 'assigned', 'complaint4.png', NULL, NULL, 2, 2, '2025-10-01 12:12:49', '2025-10-01 14:56:49'), +(4, 14, 8, 4, 'Unfair Treatment in Performance Evaluation Process', 'Unfair treatment during performance evaluation process with biased assessment and lack of objective criteria application.', '2025-10-05', 'pending', NULL, NULL, NULL, 2, 2, '2025-10-06 08:49:49', '2025-10-06 09:24:49'), +(5, 16, 8, 5, 'Hostile Work Environment - Verbal Abuse', 'Hostile work environment characterized by verbal abuse and unprofessional language affecting employee mental health.', '2025-10-10', 'resolved', 'complaint3.png', 32, '2025-11-09', 2, 2, '2025-10-11 18:03:49', '2025-10-11 10:46:49'), +(6, 18, 10, 6, 'Sexual Harassment - Unwanted Advances and Comments', 'Sexual harassment incidents involving unwanted advances and inappropriate comments creating uncomfortable workplace atmosphere.', '2025-10-15', 'resolved', NULL, 9, '2025-10-27', 2, 2, '2025-10-16 17:10:49', '2025-10-16 12:22:49'), +(7, 20, 14, 7, 'Racial Discrimination in Promotion Opportunities', 'Racial discrimination in promotion opportunities with qualified candidates overlooked based on ethnic background considerations.', '2025-10-20', 'in progress', 'complaint2.png', NULL, NULL, 2, 2, '2025-10-21 16:36:49', '2025-10-21 08:26:49'), +(8, 22, 14, 8, 'Retaliation for Whistleblowing Activities', 'Retaliation activities following whistleblowing reports including isolation and negative performance reviews affecting career progression.', '2025-10-25', 'resolved', NULL, 57, '2025-11-22', 2, 2, '2025-10-26 15:10:49', '2025-10-26 08:23:49'), +(9, 24, 8, 9, 'Unsafe Working Conditions - Equipment Malfunction', 'Unsafe working conditions due to equipment malfunction and inadequate maintenance creating potential safety hazards.', '2025-10-30', 'in review', 'complaint3.png', NULL, NULL, 2, 2, '2025-10-31 12:28:49', '2025-10-31 10:24:49'), +(10, 26, 8, 10, 'Wage and Hour Violations - Overtime Issues', 'Wage and hour violations including unpaid overtime and incorrect calculation of compensation affecting financial stability.', '2025-11-04', 'in progress', NULL, NULL, NULL, 2, 2, '2025-11-05 11:55:49', '2025-11-05 09:05:49'), +(11, 8, 20, 11, 'Privacy Violation - Personal Information Misuse', 'Privacy violation through misuse of personal information and unauthorized access to confidential employee data.', '2025-11-09', 'in review', 'complaint3.png', NULL, NULL, 2, 2, '2025-11-10 11:44:49', '2025-11-10 10:53:49'), +(12, 10, 18, 12, 'Favoritism in Task Assignment and Recognition', 'Favoritism in task assignment and recognition programs creating unequal opportunities and affecting team morale.', '2025-11-14', 'assigned', NULL, NULL, NULL, 2, 2, '2025-11-15 12:34:49', '2025-11-15 17:07:49'), +(13, 12, 24, 13, 'Breach of Confidentiality Agreement Terms', 'Breach of confidentiality agreement terms through unauthorized disclosure of sensitive company information to competitors.', '2025-11-19', 'resolved', 'complaint4.png', 57, '2025-12-17', 2, 2, '2025-11-20 17:30:49', '2025-11-20 11:18:49'), +(14, 14, 20, 14, 'Unprofessional Conduct by Management Personnel', 'Unprofessional conduct by management personnel including inappropriate behavior and failure to maintain professional standards.', '2025-11-24', 'in review', NULL, NULL, NULL, 2, 2, '2025-11-25 13:20:49', '2025-11-25 09:13:49'), +(15, 16, 8, 15, 'Workplace Violence - Threats and Aggressive Behavior', 'Workplace violence incidents involving threats and aggressive behavior creating fear and unsafe working environment.', '2025-11-29', 'resolved', 'complaint3.png', 20, '2025-12-11', 2, 2, '2025-11-30 16:54:49', '2025-11-30 13:47:49'), +(16, 18, 26, 16, 'Disability Discrimination - Accommodation Denial', 'Disability discrimination through denial of reasonable accommodation requests affecting ability to perform job functions.', '2025-12-04', 'in progress', NULL, NULL, NULL, 2, 2, '2025-12-05 16:32:49', '2025-12-05 11:55:49'), +(17, 20, 12, 17, 'Religious Discrimination - Prayer Time Restrictions', 'Religious discrimination including restrictions on prayer time and religious observance affecting spiritual well-being.', '2025-12-09', 'in progress', 'complaint4.png', NULL, NULL, 2, 2, '2025-12-10 15:27:49', '2025-12-10 17:20:49'), +(18, 22, 16, 18, 'Age Discrimination in Training Opportunities', 'Age discrimination in training opportunities with younger employees receiving preferential treatment in professional development.', '2025-12-14', 'assigned', NULL, NULL, NULL, 2, 2, '2025-12-15 11:03:49', '2025-12-15 15:58:49'), +(19, 24, 22, 19, 'Wrongful Termination Threat and Intimidation', 'Wrongful termination threats and intimidation tactics used to suppress legitimate complaints and concerns.', '2025-12-19', 'resolved', 'complaint3.png', 10, '2025-12-31', 2, 2, '2025-12-20 13:02:49', '2025-12-20 12:54:49'), +(20, 26, 16, 20, 'Health and Safety Protocol Violations', 'Health and safety protocol violations including failure to provide protective equipment and safety training.', '2025-12-24', 'resolved', NULL, 36, '2026-01-22', 2, 2, '2025-12-25 15:48:49', '2025-12-25 13:08:49'), +(21, 8, 22, 21, 'Theft of Personal Property from Workspace', 'Theft of personal property from workspace including electronic devices and personal belongings affecting security.', '2025-12-29', 'resolved', 'complaint1.png', 51, '2026-01-16', 2, 2, '2025-12-30 08:22:49', '2025-12-30 14:30:49'), +(22, 10, 12, 22, 'Misuse of Company Resources and Equipment', 'Misuse of company resources and equipment for personal purposes violating organizational policies and procedures.', '2026-01-03', 'in progress', NULL, NULL, NULL, 2, 2, '2026-01-04 15:40:49', '2026-01-04 17:34:49'), +(23, 12, 8, 23, 'Conflict of Interest - Undisclosed Relationships', 'Conflict of interest situations involving undisclosed relationships affecting business decisions and fairness.', '2026-01-08', 'resolved', 'complaint4.png', 28, '2026-01-30', 2, 2, '2026-01-09 16:06:49', '2026-01-09 17:06:49'), +(24, 14, 16, 24, 'Substance Abuse in Workplace Environment', 'Substance abuse incidents in workplace environment creating safety concerns and affecting professional atmosphere.', '2026-01-13', 'resolved', NULL, 22, '2026-02-01', 2, 2, '2026-01-14 16:08:49', '2026-01-14 14:23:49'), +(25, 16, 18, 25, 'Data Security Breach - Unauthorized Access', 'Data security breach through unauthorized access to confidential information affecting company and client privacy.', '2026-01-18', 'resolved', 'complaint3.png', 56, '2026-02-06', 2, 2, '2026-01-19 11:19:49', '2026-01-19 09:38:49'), +(26, 18, 20, 26, 'Environmental Health Hazards - Chemical Exposure', 'Environmental health hazards including chemical exposure and inadequate ventilation affecting employee health and safety.', '2026-01-23', 'in progress', NULL, NULL, NULL, 2, 2, '2026-01-24 18:04:49', '2026-01-24 12:50:49'), +(27, 20, 16, 27, 'Ergonomic Issues - Repetitive Strain Injuries', 'Ergonomic issues causing repetitive strain injuries due to inadequate workspace design and equipment configuration.', '2026-01-28', 'in progress', 'complaint4.png', NULL, NULL, 2, 2, '2026-01-29 08:31:49', '2026-01-29 15:39:49'), +(28, 22, 24, 28, 'Noise Pollution - Excessive Workplace Disturbance', 'Noise pollution from excessive workplace disturbance affecting concentration and productivity during work hours.', '2026-02-02', 'assigned', NULL, NULL, NULL, 2, 2, '2026-02-03 10:14:49', '2026-02-03 17:39:49'), +(29, 24, 8, 29, 'Temperature Control - Uncomfortable Working Conditions', 'Temperature control issues creating uncomfortable working conditions affecting employee comfort and performance.', '2026-02-07', 'pending', 'complaint2.png', NULL, NULL, 2, 2, '2026-02-08 13:18:49', '2026-02-08 14:56:49'), +(30, 26, 14, 30, 'Parking and Transportation Issues Resolution', 'Parking and transportation issues requiring resolution to improve employee accessibility and convenience.', '2026-02-12', 'in progress', NULL, NULL, NULL, 2, 2, '2026-02-13 13:20:49', '2026-02-13 09:28:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `complaint_types` +-- + +CREATE TABLE `complaint_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `complaint_type` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `complaint_types` +-- + +INSERT INTO `complaint_types` (`id`, `complaint_type`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Workplace Harassment', 2, 2, '2025-09-15 09:17:49', '2025-09-15 09:17:49'), +(2, 'Discrimination & Bias', 2, 2, '2025-09-17 10:47:49', '2025-09-17 10:47:49'), +(3, 'Workplace Safety Violations', 2, 2, '2025-09-20 11:32:49', '2025-09-20 11:32:49'), +(4, 'Policy & Procedure Violations', 2, 2, '2025-09-23 15:02:49', '2025-09-23 15:02:49'), +(5, 'Unfair Treatment & Favoritism', 2, 2, '2025-09-25 13:37:49', '2025-09-25 13:37:49'), +(6, 'Workplace Environment Issues', 2, 2, '2025-09-27 15:27:49', '2025-09-27 15:27:49'), +(7, 'Compensation & Benefits Disputes', 2, 2, '2025-09-30 12:17:49', '2025-09-30 12:17:49'), +(8, 'Performance Management Issues', 2, 2, '2025-10-03 16:47:49', '2025-10-03 16:47:49'), +(9, 'Communication & Interpersonal Conflicts', 2, 2, '2025-10-05 11:02:49', '2025-10-05 11:02:49'), +(10, 'Work Schedule & Time Management', 2, 2, '2025-10-07 14:32:49', '2025-10-07 14:32:49'), +(11, 'Technology & System Issues', 2, 2, '2025-10-10 08:47:49', '2025-10-10 08:47:49'), +(12, 'Training & Development Concerns', 2, 2, '2025-10-13 09:17:49', '2025-10-13 09:17:49'), +(13, 'Resource & Equipment Shortages', 2, 2, '2025-10-15 11:37:49', '2025-10-15 11:37:49'), +(14, 'Ethical & Compliance Violations', 2, 2, '2025-10-17 14:02:49', '2025-10-17 14:02:49'), +(15, 'Workplace Bullying & Intimidation', 2, 2, '2025-10-20 15:42:49', '2025-10-20 15:42:49'), +(16, 'Privacy & Confidentiality Breaches', 2, 2, '2025-10-23 12:27:49', '2025-10-23 12:27:49'), +(17, 'Leave & Attendance Disputes', 2, 2, '2025-10-25 14:52:49', '2025-10-25 14:52:49'), +(18, 'Facility & Infrastructure Problems', 2, 2, '2025-10-27 16:17:49', '2025-10-27 16:17:49'), +(19, 'Health & Wellness Concerns', 2, 2, '2025-10-30 11:07:49', '2025-10-30 11:07:49'), +(20, 'Career Development & Promotion Issues', 2, 2, '2025-11-02 13:32:49', '2025-11-02 13:32:49'), +(21, 'Vendor & External Relations', 2, 2, '2025-11-04 11:57:49', '2025-11-04 11:57:49'), +(22, 'Quality & Process Improvement', 2, 2, '2025-11-06 15:22:49', '2025-11-06 15:22:49'), +(23, 'Customer Service & Relations', 2, 2, '2025-11-09 09:42:49', '2025-11-09 09:42:49'), +(24, 'Financial & Budget Concerns', 2, 2, '2025-11-12 13:12:49', '2025-11-12 13:12:49'), +(25, 'Environmental & Sustainability Issues', 2, 2, '2025-11-14 14:37:49', '2025-11-14 14:37:49'), +(26, 'Security & Access Control', 2, 2, '2025-11-16 17:02:49', '2025-11-16 17:02:49'), +(27, 'Remote Work & Flexibility Issues', 2, 2, '2025-11-19 08:27:49', '2025-11-19 08:27:49'), +(28, 'Diversity & Inclusion Concerns', 2, 2, '2025-11-22 10:52:49', '2025-11-22 10:52:49'), +(29, 'Legal & Regulatory Compliance', 2, 2, '2025-11-24 13:17:49', '2025-11-24 13:17:49'), +(30, 'General Administrative Issues', 2, 2, '2025-11-26 15:47:49', '2025-11-26 15:47:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `cost_rates` +-- + +CREATE TABLE `cost_rates` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `hourly_cost` decimal(10,2) NOT NULL DEFAULT 0.00, + `billing_rate` decimal(10,2) DEFAULT NULL, + `effective_date` date NOT NULL, + `created_by` 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 `coupons` +-- + +CREATE TABLE `coupons` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `description` text DEFAULT NULL, + `code` varchar(255) NOT NULL, + `discount` decimal(10,2) NOT NULL, + `limit` int(11) DEFAULT NULL, + `type` enum('percentage','flat','fixed') NOT NULL, + `minimum_spend` decimal(10,2) DEFAULT NULL, + `maximum_spend` decimal(10,2) DEFAULT NULL, + `limit_per_user` int(11) DEFAULT NULL, + `expiry_date` timestamp NULL DEFAULT NULL, + `included_module` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`included_module`)), + `excluded_module` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`excluded_module`)), + `status` tinyint(1) NOT NULL DEFAULT 1, + `created_by` bigint(20) 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 `coupons` +-- + +INSERT INTO `coupons` (`id`, `name`, `description`, `code`, `discount`, `limit`, `type`, `minimum_spend`, `maximum_spend`, `limit_per_user`, `expiry_date`, `included_module`, `excluded_module`, `status`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Welcome Discount', 'Welcome discount for new customers', 'WELCOME10', 10.00, 100, 'percentage', 50.00, NULL, 1, '2026-06-14 00:17:35', NULL, NULL, 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(2, 'Flat Discount', 'Flat $20 off on orders', 'FLAT20', 20.00, 50, 'flat', 100.00, NULL, 2, '2026-09-14 00:17:35', NULL, NULL, 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(3, 'Premium Plan Fixed', 'Fixed price for premium plan', 'PREMIUM99', 99.00, 25, 'fixed', NULL, NULL, 1, '2027-03-14 00:17:35', '[\"premium\"]', NULL, 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `credit_notes` +-- + +CREATE TABLE `credit_notes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `credit_note_number` varchar(255) NOT NULL, + `credit_note_date` date NOT NULL, + `customer_id` bigint(20) UNSIGNED NOT NULL, + `invoice_id` bigint(20) UNSIGNED DEFAULT NULL, + `return_id` bigint(20) UNSIGNED DEFAULT NULL, + `reason` varchar(255) NOT NULL, + `status` enum('draft','approved','partial','applied','cancelled') NOT NULL DEFAULT 'draft', + `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `applied_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `balance_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `notes` text DEFAULT NULL, + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `credit_notes` +-- + +INSERT INTO `credit_notes` (`id`, `credit_note_number`, `credit_note_date`, `customer_id`, `invoice_id`, `return_id`, `reason`, `status`, `subtotal`, `tax_amount`, `discount_amount`, `total_amount`, `applied_amount`, `balance_amount`, `notes`, `approved_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'CN-2026-04-001', '2026-04-09', 17, 5, 5, 'Sales return - other', 'draft', 2811.91, 337.43, 0.00, 3149.34, 0.00, 3149.34, NULL, NULL, 2, 2, '2026-04-09 09:53:21', '2026-04-09 09:53:21'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `credit_note_applications` +-- + +CREATE TABLE `credit_note_applications` ( + `id` bigint(20) UNSIGNED NOT NULL, + `credit_note_id` bigint(20) UNSIGNED NOT NULL, + `payment_id` bigint(20) UNSIGNED DEFAULT NULL, + `applied_amount` decimal(15,2) NOT NULL, + `application_date` date NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED 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 `credit_note_items` +-- + +CREATE TABLE `credit_note_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `credit_note_id` bigint(20) UNSIGNED NOT NULL, + `product_id` bigint(20) UNSIGNED NOT NULL, + `quantity` int(11) NOT NULL, + `unit_price` decimal(15,2) NOT NULL, + `discount_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,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 `credit_note_items` +-- + +INSERT INTO `credit_note_items` (`id`, `credit_note_id`, `product_id`, `quantity`, `unit_price`, `discount_percentage`, `discount_amount`, `tax_percentage`, `tax_amount`, `total_amount`, `created_at`, `updated_at`) VALUES +(1, 1, 8, 4, 699.99, 6.00, 168.00, 12.00, 315.84, 2947.80, '2026-04-09 09:53:21', '2026-04-09 09:53:21'), +(2, 1, 18, 5, 35.99, 0.00, 0.00, 12.00, 21.59, 201.54, '2026-04-09 09:53:21', '2026-04-09 09:53:21'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `credit_note_item_taxes` +-- + +CREATE TABLE `credit_note_item_taxes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` bigint(20) UNSIGNED NOT NULL, + `tax_name` varchar(255) NOT NULL, + `tax_rate` decimal(5,2) 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 `customers` +-- + +CREATE TABLE `customers` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED DEFAULT NULL, + `customer_code` varchar(255) NOT NULL, + `company_name` varchar(255) NOT NULL, + `contact_person_name` varchar(255) NOT NULL, + `contact_person_email` varchar(255) NOT NULL, + `contact_person_mobile` varchar(255) DEFAULT NULL, + `tax_number` varchar(255) DEFAULT NULL, + `payment_terms` varchar(255) DEFAULT NULL, + `billing_address` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`billing_address`)), + `shipping_address` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`shipping_address`)), + `same_as_billing` tinyint(1) NOT NULL DEFAULT 0, + `notes` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `customers` +-- + +INSERT INTO `customers` (`id`, `user_id`, `customer_code`, `company_name`, `contact_person_name`, `contact_person_email`, `contact_person_mobile`, `tax_number`, `payment_terms`, `billing_address`, `shipping_address`, `same_as_billing`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 9, 'CUST-0001', 'Swaniawski-King', 'Nolan Johnson', 'lockman.caleb@dibbert.org', '+9790410925577', 'TAX-15496709', 'Net 30', '{\"name\":\"Miss Janae Kovacek DDS\",\"address_line_1\":\"99357 Stone Valleys Suite 059\",\"address_line_2\":null,\"city\":\"Lempibury\",\"state\":\"Connecticut\",\"country\":\"Saint Pierre and Miquelon\",\"zip_code\":\"05347\"}', '{\"name\":\"Garett Weber\",\"address_line_1\":\"4232 Schinner Wells\",\"address_line_2\":null,\"city\":\"West Leifshire\",\"state\":\"Hawaii\",\"country\":\"Pakistan\",\"zip_code\":\"65730\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 11, 'CUST-0002', 'Douglas-Moen', 'Prof. Ethyl Altenwerth Sr.', 'garth.rutherford@becker.com', '+4265926621540', 'TAX-96403329', 'COD', '{\"name\":\"Nina Graham\",\"address_line_1\":\"4567 Kyle Passage Apt. 577\",\"address_line_2\":null,\"city\":\"South Haydenmouth\",\"state\":\"Hawaii\",\"country\":\"Paraguay\",\"zip_code\":\"25454\"}', '{\"name\":\"Dorothea Daniel\",\"address_line_1\":\"864 Rogahn Summit Apt. 915\",\"address_line_2\":\"Apt. 083\",\"city\":\"Kylemouth\",\"state\":\"Texas\",\"country\":\"Jamaica\",\"zip_code\":\"74366\"}', 1, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 13, 'CUST-0003', 'Hodkiewicz Inc', 'Cullen Welch', 'alva45@nicolas.com', '+5596751046696', 'TAX-50411031', 'COD', '{\"name\":\"Brant Dach\",\"address_line_1\":\"66800 Glenna Trafficway Apt. 935\",\"address_line_2\":\"Suite 731\",\"city\":\"West Connerfurt\",\"state\":\"Maryland\",\"country\":\"British Indian Ocean Territory (Chagos Archipelago)\",\"zip_code\":\"59512-4349\"}', '{\"name\":\"Orrin Kemmer\",\"address_line_1\":\"228 Turner Fork\",\"address_line_2\":null,\"city\":\"Nolanmouth\",\"state\":\"Arkansas\",\"country\":\"Algeria\",\"zip_code\":\"30106\"}', 0, 'Quasi sit at quia sed quia voluptas sapiente ut.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 15, 'CUST-0004', 'McLaughlin, Rutherford and Cummerata', 'Felicita Dickinson PhD', 'myundt@prosacco.com', '+9374515541326', 'TAX-16695113', 'Net 30', '{\"name\":\"Maria Glover\",\"address_line_1\":\"1676 Bauch Place\",\"address_line_2\":null,\"city\":\"West Revamouth\",\"state\":\"Iowa\",\"country\":\"Saudi Arabia\",\"zip_code\":\"58554\"}', '{\"name\":\"Maximus Ledner\",\"address_line_1\":\"29009 Angelo Shore\",\"address_line_2\":null,\"city\":\"Port Marielafurt\",\"state\":\"Alabama\",\"country\":\"Reunion\",\"zip_code\":\"77572-0999\"}', 0, 'Repellat laboriosam et illo quaerat.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 17, 'CUST-0005', 'Price PLC', 'Teresa Schroeder', 'casandra64@rath.com', '+6737078968448', 'TAX-77663729', 'COD', '{\"name\":\"Francesca Bauch\",\"address_line_1\":\"526 Powlowski Stravenue Suite 898\",\"address_line_2\":null,\"city\":\"Stiedemannfort\",\"state\":\"North Carolina\",\"country\":\"Nicaragua\",\"zip_code\":\"96296-7637\"}', '{\"name\":\"Austyn Skiles\",\"address_line_1\":\"65208 Heidenreich Islands Suite 804\",\"address_line_2\":null,\"city\":\"Port Denaville\",\"state\":\"Oklahoma\",\"country\":\"Cayman Islands\",\"zip_code\":\"33050\"}', 1, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 19, 'CUST-0006', 'Crona Group', 'Jaydon Sporer', 'mortimer.smith@franecki.com', '+1282201479194', 'TAX-97767070', 'COD', '{\"name\":\"Darrick Toy\",\"address_line_1\":\"811 Gerda Causeway Apt. 425\",\"address_line_2\":null,\"city\":\"Port Mathew\",\"state\":\"California\",\"country\":\"Tanzania\",\"zip_code\":\"95557\"}', '{\"name\":\"Eda Schoen\",\"address_line_1\":\"732 Mitchell Club Suite 166\",\"address_line_2\":\"Suite 154\",\"city\":\"North Lia\",\"state\":\"Utah\",\"country\":\"Romania\",\"zip_code\":\"59028-5521\"}', 0, 'Ducimus non molestiae beatae iste sed.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 21, 'CUST-0007', 'Herman-Schumm', 'Nannie Klocko PhD', 'genoveva.will@cole.com', '+7860030177733', 'TAX-43258883', 'Net 60', '{\"name\":\"Mr. Joaquin Ondricka\",\"address_line_1\":\"37292 Erin Terrace Apt. 673\",\"address_line_2\":null,\"city\":\"Fadelburgh\",\"state\":\"Arizona\",\"country\":\"Vanuatu\",\"zip_code\":\"76460-2452\"}', '{\"name\":\"Trinity Funk\",\"address_line_1\":\"50158 Vladimir Fort Suite 404\",\"address_line_2\":\"Apt. 702\",\"city\":\"Cristton\",\"state\":\"Kentucky\",\"country\":\"Chad\",\"zip_code\":\"00330\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 23, 'CUST-0008', 'Wunsch-Ledner', 'Dorian Lynch', 'hickle.ezequiel@hane.org', '+8913415595053', 'TAX-58202747', 'Net 15', '{\"name\":\"Kayleigh Cummerata PhD\",\"address_line_1\":\"46842 Haylee Flats Suite 750\",\"address_line_2\":\"Apt. 864\",\"city\":\"New Cecelia\",\"state\":\"North Dakota\",\"country\":\"Slovakia (Slovak Republic)\",\"zip_code\":\"29872-2938\"}', '{\"name\":\"Dr. Gracie Wintheiser\",\"address_line_1\":\"14390 Verla Manor Suite 427\",\"address_line_2\":null,\"city\":\"Lake Donnell\",\"state\":\"Mississippi\",\"country\":\"Nigeria\",\"zip_code\":\"52173-1197\"}', 0, 'Dolorem at corrupti perspiciatis et nihil culpa rem.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 25, 'CUST-0009', 'Koelpin-Stokes', 'Korey Kuhic', 'jacobi.earline@lynch.com', '+1556018551438', 'TAX-87531952', 'Net 15', '{\"name\":\"Maurice Abbott\",\"address_line_1\":\"286 Cruickshank Pike Apt. 516\",\"address_line_2\":\"Apt. 471\",\"city\":\"Pearlinefurt\",\"state\":\"Washington\",\"country\":\"United States of America\",\"zip_code\":\"53367-4234\"}', '{\"name\":\"Robert Reilly\",\"address_line_1\":\"6577 Koelpin Forest Apt. 361\",\"address_line_2\":null,\"city\":\"Port Babyfort\",\"state\":\"Iowa\",\"country\":\"Turks and Caicos Islands\",\"zip_code\":\"68195-3657\"}', 1, 'Iusto ea sunt officiis enim sit enim occaecati blanditiis.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 27, 'CUST-0010', 'Kilback-Mitchell', 'Dr. Lois Mohr', 'jada97@gaylord.com', '+4551652047397', 'TAX-35925793', 'Net 60', '{\"name\":\"Ardella Oberbrunner\",\"address_line_1\":\"191 Max Dale Suite 352\",\"address_line_2\":\"Suite 812\",\"city\":\"Schinnerfort\",\"state\":\"Maine\",\"country\":\"United Arab Emirates\",\"zip_code\":\"86941-2707\"}', '{\"name\":\"Carol Becker V\",\"address_line_1\":\"334 Zechariah Squares Apt. 008\",\"address_line_2\":\"Suite 825\",\"city\":\"New Janiya\",\"state\":\"Arkansas\",\"country\":\"Netherlands Antilles\",\"zip_code\":\"43081-3789\"}', 1, 'Enim laudantium ex suscipit molestias distinctio fuga fugiat.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, 43, 'CUST-0011', 'Muller-Murazik', 'Lavina Tillman', 'schamberger.clement@ferry.com', '+1630256232340', 'TAX-14982525', 'Net 60', '{\"name\":\"Prof. Erich O\'Keefe Jr.\",\"address_line_1\":\"668 McKenzie Circles Suite 919\",\"address_line_2\":null,\"city\":\"Letashire\",\"state\":\"Maryland\",\"country\":\"Austria\",\"zip_code\":\"53439-6973\"}', '{\"name\":\"Mr. Dejuan Price Sr.\",\"address_line_1\":\"61895 Schuppe Walks\",\"address_line_2\":null,\"city\":\"North Keyonstad\",\"state\":\"Wyoming\",\"country\":\"Western Sahara\",\"zip_code\":\"23123\"}', 0, 'Voluptatem dolorem mollitia qui debitis magni.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, 44, 'CUST-0012', 'Brekke-Lindgren', 'Josie Swaniawski', 'jhyatt@schmeler.com', '+9876015280528', 'TAX-48479901', 'Net 60', '{\"name\":\"Merl Bartell\",\"address_line_1\":\"38510 Zora Mountain\",\"address_line_2\":null,\"city\":\"Carloview\",\"state\":\"North Carolina\",\"country\":\"Bermuda\",\"zip_code\":\"46495\"}', '{\"name\":\"Rhea Deckow II\",\"address_line_1\":\"1771 Quitzon Knoll\",\"address_line_2\":\"Apt. 750\",\"city\":\"Cassinport\",\"state\":\"Alaska\",\"country\":\"Wallis and Futuna\",\"zip_code\":\"08645\"}', 1, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(13, 45, 'CUST-0013', 'Brown-Turner', 'Ms. Bailee Hessel V', 'collier.unique@boyle.com', '+2306117605410', 'TAX-45916072', 'Net 15', '{\"name\":\"Sean Treutel\",\"address_line_1\":\"181 Osinski Island Suite 793\",\"address_line_2\":null,\"city\":\"Lake Chance\",\"state\":\"Wyoming\",\"country\":\"Norway\",\"zip_code\":\"12366-7869\"}', '{\"name\":\"Gust Kessler\",\"address_line_1\":\"9503 Labadie Centers\",\"address_line_2\":\"Suite 560\",\"city\":\"Port Horacio\",\"state\":\"Arkansas\",\"country\":\"Kazakhstan\",\"zip_code\":\"11567-8516\"}', 1, 'Assumenda sunt nihil illo eligendi voluptatum.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 46, 'CUST-0014', 'Rodriguez-Strosin', 'Clair Schamberger', 'cecilia07@walter.com', '+5887084048046', 'TAX-05577638', 'Net 60', '{\"name\":\"Mr. Trenton Christiansen Jr.\",\"address_line_1\":\"9499 West Dale Apt. 293\",\"address_line_2\":null,\"city\":\"Moenchester\",\"state\":\"Nebraska\",\"country\":\"Lesotho\",\"zip_code\":\"16791-5491\"}', '{\"name\":\"Kyler Connelly\",\"address_line_1\":\"8195 Feeney Shoal\",\"address_line_2\":\"Apt. 801\",\"city\":\"Littelland\",\"state\":\"Alabama\",\"country\":\"Bahamas\",\"zip_code\":\"99677\"}', 1, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, 47, 'CUST-0015', 'McDermott, Jenkins and Johnston', 'Heidi Grant', 'saul.langworth@prohaska.com', '+4691475964155', 'TAX-26673206', 'Net 30', '{\"name\":\"Maximo Zemlak\",\"address_line_1\":\"4211 Cristobal Glen Apt. 023\",\"address_line_2\":\"Suite 516\",\"city\":\"East Toney\",\"state\":\"Ohio\",\"country\":\"Poland\",\"zip_code\":\"65368-2819\"}', '{\"name\":\"Ashton Kovacek\",\"address_line_1\":\"76906 Etha Stravenue\",\"address_line_2\":\"Suite 461\",\"city\":\"Port Antonemouth\",\"state\":\"Missouri\",\"country\":\"Saint Martin\",\"zip_code\":\"97842\"}', 1, 'Est odit esse a impedit est libero fugit.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(16, 90, 'C-1ZEFC', 'Ullrich-Adams Clinic', 'Percy Conroy', 'audrey.upton@example.net', NULL, NULL, NULL, '{\"name\":\"Percy Conroy\",\"address_line_1\":\"63A\\/37 Ebert Shore\",\"city\":\"Vigan\",\"state\":\"VT\",\"country\":\"Philippines\",\"zip_code\":\"4856\"}', '{\"name\":\"Percy Conroy\",\"address_line_1\":\"79 Crist Passage\",\"city\":\"Samal\",\"state\":\"OH\",\"country\":\"Philippines\",\"zip_code\":\"5215\"}', 1, NULL, 2, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), +(17, 91, 'C-DX2AZ', 'Stehr, Schuster and Ernser Clinic', 'Felix Simonis', 'teagan.christiansen@example.net', NULL, NULL, NULL, '{\"name\":\"Felix Simonis\",\"address_line_1\":\"16 Luettgen Run Suite 970\",\"city\":\"Tacloban\",\"state\":\"MI\",\"country\":\"Philippines\",\"zip_code\":\"7556\"}', '{\"name\":\"Felix Simonis\",\"address_line_1\":\"84\\/68 Schmidt Vista Suite 301\",\"city\":\"Antipolo\",\"state\":\"SD\",\"country\":\"Philippines\",\"zip_code\":\"5457\"}', 1, NULL, 2, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), +(18, 92, 'C-GYQ6Y', 'Upton-Cremin Clinic', 'Vivianne Eichmann', 'oberbrunner.jaquelin@example.com', NULL, NULL, NULL, '{\"name\":\"Vivianne Eichmann\",\"address_line_1\":\"22\\/53 Davis Mews\",\"city\":\"Sipalay\",\"state\":\"OH\",\"country\":\"Philippines\",\"zip_code\":\"3184\"}', '{\"name\":\"Vivianne Eichmann\",\"address_line_1\":\"22A\\/64 Hill Valleys\",\"city\":\"Dumaguete\",\"state\":\"UT\",\"country\":\"Philippines\",\"zip_code\":\"1765\"}', 1, NULL, 2, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), +(19, 93, 'C-ROGZ9', 'Casper-Botsford Clinic', 'Miss Charlene Borer', 'veum.bernita@example.com', NULL, NULL, NULL, '{\"name\":\"Miss Charlene Borer\",\"address_line_1\":\"85 Strosin Via Apt. 671\",\"city\":\"Bacolod\",\"state\":\"LA\",\"country\":\"Philippines\",\"zip_code\":\"8218\"}', '{\"name\":\"Miss Charlene Borer\",\"address_line_1\":\"96A Waelchi Harbor\",\"city\":\"San Fernando\",\"state\":\"PA\",\"country\":\"Philippines\",\"zip_code\":\"5570\"}', 1, NULL, 2, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), +(20, 94, 'C-WCMDL', 'Marquardt-Murphy Clinic', 'Prof. Heloise Yundt Sr.', 'turner.ashleigh@example.org', NULL, NULL, NULL, '{\"name\":\"Prof. Heloise Yundt Sr.\",\"address_line_1\":\"30A\\/90 Dach Plaza Suite 446\",\"city\":\"Cabadbaran\",\"state\":\"DC\",\"country\":\"Philippines\",\"zip_code\":\"6669\"}', '{\"name\":\"Prof. Heloise Yundt Sr.\",\"address_line_1\":\"04A Jast Glens Apt. 749\",\"city\":\"Pasay\",\"state\":\"NY\",\"country\":\"Philippines\",\"zip_code\":\"3340\"}', 1, NULL, 2, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), +(21, 100, 'C-I5INP', 'Wuckert and Sons Clinic', 'Lacey Dickens', 'dariana27@example.org', NULL, NULL, NULL, '{\"name\":\"Lacey Dickens\",\"address_line_1\":\"89\\/11 Lesch Harbors\",\"city\":\"San Jose\",\"state\":\"AK\",\"country\":\"Philippines\",\"zip_code\":\"7408\"}', '{\"name\":\"Lacey Dickens\",\"address_line_1\":\"26 Prohaska Plaza Apt. 165\",\"city\":\"Mu\\u00f1oz\",\"state\":\"CA\",\"country\":\"Philippines\",\"zip_code\":\"5817\"}', 1, NULL, 2, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), +(22, 101, 'C-UXCSF', 'Price, Ruecker and Friesen Clinic', 'Sterling Douglas DVM', 'gusikowski.stanford@example.net', NULL, NULL, NULL, '{\"name\":\"Sterling Douglas DVM\",\"address_line_1\":\"82A Kub Squares\",\"city\":\"Tangub\",\"state\":\"MA\",\"country\":\"Philippines\",\"zip_code\":\"7640\"}', '{\"name\":\"Sterling Douglas DVM\",\"address_line_1\":\"12\\/79 Collins Unions\",\"city\":\"Calapan\",\"state\":\"LA\",\"country\":\"Philippines\",\"zip_code\":\"9958\"}', 1, NULL, 2, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), +(23, 102, 'C-RYSLT', 'Hirthe, Bartell and Doyle Clinic', 'Miss Destany Armstrong', 'esta50@example.net', NULL, NULL, NULL, '{\"name\":\"Miss Destany Armstrong\",\"address_line_1\":\"09A Homenick Hollow\",\"city\":\"Victorias\",\"state\":\"FL\",\"country\":\"Philippines\",\"zip_code\":\"7519\"}', '{\"name\":\"Miss Destany Armstrong\",\"address_line_1\":\"57\\/95 Beatty Stravenue Suite 123\",\"city\":\"Passi\",\"state\":\"KY\",\"country\":\"Philippines\",\"zip_code\":\"4654\"}', 1, NULL, 2, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), +(24, 103, 'C-JEOCH', 'Kling Group Clinic', 'Dr. Garrick Reichert Jr.', 'barry.green@example.org', NULL, NULL, NULL, '{\"name\":\"Dr. Garrick Reichert Jr.\",\"address_line_1\":\"85\\/27 Weimann Rapid\",\"city\":\"Cadiz\",\"state\":\"VA\",\"country\":\"Philippines\",\"zip_code\":\"7460\"}', '{\"name\":\"Dr. Garrick Reichert Jr.\",\"address_line_1\":\"72 Hyatt Circles Suite 329\",\"city\":\"Malolos\",\"state\":\"NY\",\"country\":\"Philippines\",\"zip_code\":\"3989\"}', 1, NULL, 2, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), +(25, 104, 'C-QCJA6', 'Schmeler-Stoltenberg Clinic', 'Mr. Norris Wehner Sr.', 'sdouglas@example.net', NULL, NULL, NULL, '{\"name\":\"Mr. Norris Wehner Sr.\",\"address_line_1\":\"93\\/59 Schaden Junction Suite 935\",\"city\":\"Malabon\",\"state\":\"WY\",\"country\":\"Philippines\",\"zip_code\":\"6986\"}', '{\"name\":\"Mr. Norris Wehner Sr.\",\"address_line_1\":\"58\\/70 Tromp Vista\",\"city\":\"Meycauayan\",\"state\":\"MD\",\"country\":\"Philippines\",\"zip_code\":\"3109\"}', 1, NULL, 2, 2, '2026-05-01 21:45:29', '2026-05-01 21:45:29'), +(26, 110, 'C-6PM7Z', 'Mosciski-Koch Clinic', 'Jackie Farrell V', 'lloyd.thiel@example.com', NULL, NULL, NULL, '{\"name\":\"Jackie Farrell V\",\"address_line_1\":\"22 Kemmer Greens\",\"city\":\"Vigan\",\"state\":\"NH\",\"country\":\"Philippines\",\"zip_code\":\"2938\"}', '{\"name\":\"Jackie Farrell V\",\"address_line_1\":\"50A\\/94 Schneider Islands\",\"city\":\"Mu\\u00f1oz\",\"state\":\"VA\",\"country\":\"Philippines\",\"zip_code\":\"6859\"}', 1, NULL, 2, 2, '2026-05-01 21:47:55', '2026-05-01 21:47:55'), +(27, 111, 'C-NX828', 'Denesik-Dickens Clinic', 'Dr. Odie Gleichner', 'pouros.vernie@example.com', NULL, NULL, NULL, '{\"name\":\"Dr. Odie Gleichner\",\"address_line_1\":\"92 Durgan Prairie\",\"city\":\"San Carlos\",\"state\":\"IL\",\"country\":\"Philippines\",\"zip_code\":\"6961\"}', '{\"name\":\"Dr. Odie Gleichner\",\"address_line_1\":\"75\\/25 Dare Knolls\",\"city\":\"Borongan\",\"state\":\"FL\",\"country\":\"Philippines\",\"zip_code\":\"9285\"}', 1, NULL, 2, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), +(28, 112, 'C-APQXS', 'Kemmer, Orn and O\'Reilly Clinic', 'Ms. Mariela Leannon PhD', 'wisozk.herman@example.net', NULL, NULL, NULL, '{\"name\":\"Ms. Mariela Leannon PhD\",\"address_line_1\":\"28\\/61 Hahn Loaf Suite 845\",\"city\":\"Quezon City\",\"state\":\"NM\",\"country\":\"Philippines\",\"zip_code\":\"1053\"}', '{\"name\":\"Ms. Mariela Leannon PhD\",\"address_line_1\":\"25A\\/96 Morar Village Suite 185\",\"city\":\"Marawi\",\"state\":\"ND\",\"country\":\"Philippines\",\"zip_code\":\"1024\"}', 1, NULL, 2, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), +(29, 113, 'C-3XITP', 'Greenfelder PLC Clinic', 'Warren Ward', 'feil.susana@example.com', NULL, NULL, NULL, '{\"name\":\"Warren Ward\",\"address_line_1\":\"90 Oberbrunner Circle Suite 254\",\"city\":\"Sagay\",\"state\":\"RI\",\"country\":\"Philippines\",\"zip_code\":\"7596\"}', '{\"name\":\"Warren Ward\",\"address_line_1\":\"22 Kovacek Gardens Suite 930\",\"city\":\"Gingoog\",\"state\":\"ND\",\"country\":\"Philippines\",\"zip_code\":\"5329\"}', 1, NULL, 2, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), +(30, 114, 'C-WLEBZ', 'Kuvalis-Wunsch Clinic', 'Ms. Nichole Gleichner', 'francesca37@example.net', NULL, NULL, NULL, '{\"name\":\"Ms. Nichole Gleichner\",\"address_line_1\":\"09A Casper Trail Apt. 485\",\"city\":\"Cebu City\",\"state\":\"UT\",\"country\":\"Philippines\",\"zip_code\":\"8676\"}', '{\"name\":\"Ms. Nichole Gleichner\",\"address_line_1\":\"48\\/34 Schinner Fields Suite 440\",\"city\":\"Himamaylan\",\"state\":\"WV\",\"country\":\"Philippines\",\"zip_code\":\"0396\"}', 1, NULL, 2, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), +(31, 120, 'C-C65PV', 'Goodwin, Dicki and Lockman Clinic', 'Ms. Lenna Jakubowski', 'antonia.simonis@example.org', NULL, NULL, NULL, '{\"name\":\"Ms. Lenna Jakubowski\",\"address_line_1\":\"49 Hamill Plain\",\"city\":\"Dumaguete\",\"state\":\"OH\",\"country\":\"Philippines\",\"zip_code\":\"7585\"}', '{\"name\":\"Ms. Lenna Jakubowski\",\"address_line_1\":\"73A\\/53 Kshlerin Throughway\",\"city\":\"Cabuyao\",\"state\":\"VT\",\"country\":\"Philippines\",\"zip_code\":\"7261\"}', 1, NULL, 2, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), +(32, 121, 'C-5PKOX', 'Kutch-Brown Clinic', 'Ms. Aryanna Murazik IV', 'kuhlman.margaretta@example.net', NULL, NULL, NULL, '{\"name\":\"Ms. Aryanna Murazik IV\",\"address_line_1\":\"61A Bechtelar Isle Apt. 422\",\"city\":\"Caloocan\",\"state\":\"GA\",\"country\":\"Philippines\",\"zip_code\":\"8074\"}', '{\"name\":\"Ms. Aryanna Murazik IV\",\"address_line_1\":\"47A Greenfelder Station Apt. 446\",\"city\":\"Ligao\",\"state\":\"CT\",\"country\":\"Philippines\",\"zip_code\":\"7205\"}', 1, NULL, 2, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), +(33, 122, 'C-5LIBE', 'Homenick Ltd Clinic', 'Berneice Collier', 'oswaldo.dickinson@example.org', NULL, NULL, NULL, '{\"name\":\"Berneice Collier\",\"address_line_1\":\"23 Gusikowski Land Suite 915\",\"city\":\"Tagum\",\"state\":\"CA\",\"country\":\"Philippines\",\"zip_code\":\"3618\"}', '{\"name\":\"Berneice Collier\",\"address_line_1\":\"80A Romaguera Rue Suite 573\",\"city\":\"Santiago\",\"state\":\"NE\",\"country\":\"Philippines\",\"zip_code\":\"0432\"}', 1, NULL, 2, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), +(34, 123, 'C-J5B8X', 'Stehr-Emard Clinic', 'Tony Gorczany', 'sigmund.kuhic@example.org', NULL, NULL, NULL, '{\"name\":\"Tony Gorczany\",\"address_line_1\":\"40\\/68 Hammes Prairie Suite 635\",\"city\":\"Bacolod\",\"state\":\"NY\",\"country\":\"Philippines\",\"zip_code\":\"1986\"}', '{\"name\":\"Tony Gorczany\",\"address_line_1\":\"68\\/55 Feest Mount Apt. 250\",\"city\":\"Mati\",\"state\":\"CO\",\"country\":\"Philippines\",\"zip_code\":\"0209\"}', 1, NULL, 2, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), +(35, 124, 'C-CTA72', 'Bahringer PLC Clinic', 'Timothy Brakus', 'yziemann@example.com', NULL, NULL, NULL, '{\"name\":\"Timothy Brakus\",\"address_line_1\":\"41 Jacobi Heights Apt. 733\",\"city\":\"Tagaytay\",\"state\":\"ID\",\"country\":\"Philippines\",\"zip_code\":\"1845\"}', '{\"name\":\"Timothy Brakus\",\"address_line_1\":\"90A\\/39 Turner Forks Suite 074\",\"city\":\"Danao\",\"state\":\"NJ\",\"country\":\"Philippines\",\"zip_code\":\"3983\"}', 1, NULL, 2, 2, '2026-05-01 21:48:48', '2026-05-01 21:48:48'), +(36, 130, 'C-PSSDT', 'Hills Group Clinic', 'Arno Schmitt', 'luettgen.declan@example.org', NULL, NULL, NULL, '{\"name\":\"Arno Schmitt\",\"address_line_1\":\"94A\\/38 Cremin Mountain Apt. 822\",\"city\":\"Cauayan\",\"state\":\"MA\",\"country\":\"Philippines\",\"zip_code\":\"3136\"}', '{\"name\":\"Arno Schmitt\",\"address_line_1\":\"45 Conn Place\",\"city\":\"Talisay\",\"state\":\"ME\",\"country\":\"Philippines\",\"zip_code\":\"6007\"}', 1, NULL, 2, 2, '2026-05-01 21:49:37', '2026-05-01 21:49:37'), +(37, 131, 'C-ZTQIR', 'Hill, Medhurst and Boehm Clinic', 'Prof. Georgiana Pfeffer II', 'renner.julian@example.net', NULL, NULL, NULL, '{\"name\":\"Prof. Georgiana Pfeffer II\",\"address_line_1\":\"70 Bartoletti Springs\",\"city\":\"Cavite City\",\"state\":\"RI\",\"country\":\"Philippines\",\"zip_code\":\"4427\"}', '{\"name\":\"Prof. Georgiana Pfeffer II\",\"address_line_1\":\"91A\\/35 Hegmann Key\",\"city\":\"Bayawan\",\"state\":\"AZ\",\"country\":\"Philippines\",\"zip_code\":\"0611\"}', 1, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(38, 132, 'C-NL6VF', 'Lakin-Larkin Clinic', 'Rhiannon Dickinson', 'wilderman.roxanne@example.com', NULL, NULL, NULL, '{\"name\":\"Rhiannon Dickinson\",\"address_line_1\":\"72A\\/51 Douglas Camp\",\"city\":\"Marikina\",\"state\":\"WI\",\"country\":\"Philippines\",\"zip_code\":\"1452\"}', '{\"name\":\"Rhiannon Dickinson\",\"address_line_1\":\"25\\/52 Rippin Course Suite 933\",\"city\":\"Borongan\",\"state\":\"DE\",\"country\":\"Philippines\",\"zip_code\":\"5129\"}', 1, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(39, 133, 'C-BM3NR', 'Schinner LLC Clinic', 'Deon Ratke', 'prince48@example.com', NULL, NULL, NULL, '{\"name\":\"Deon Ratke\",\"address_line_1\":\"91\\/23 Ebert Coves\",\"city\":\"Baguio\",\"state\":\"WY\",\"country\":\"Philippines\",\"zip_code\":\"8857\"}', '{\"name\":\"Deon Ratke\",\"address_line_1\":\"31\\/39 Ullrich Curve\",\"city\":\"San Carlos\",\"state\":\"ME\",\"country\":\"Philippines\",\"zip_code\":\"2843\"}', 1, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(40, 134, 'C-XMKHW', 'Herzog-Roberts Clinic', 'Mr. Ryann Dach', 'okeefe.domenick@example.net', NULL, NULL, NULL, '{\"name\":\"Mr. Ryann Dach\",\"address_line_1\":\"39 Ernser Shore\",\"city\":\"Panabo\",\"state\":\"VT\",\"country\":\"Philippines\",\"zip_code\":\"8271\"}', '{\"name\":\"Mr. Ryann Dach\",\"address_line_1\":\"89A\\/05 Hermann Motorway\",\"city\":\"Bogo\",\"state\":\"ND\",\"country\":\"Philippines\",\"zip_code\":\"2545\"}', 1, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `customer_payments` +-- + +CREATE TABLE `customer_payments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `payment_number` varchar(50) NOT NULL, + `payment_date` date NOT NULL, + `customer_id` bigint(20) UNSIGNED NOT NULL, + `bank_account_id` bigint(20) UNSIGNED NOT NULL, + `reference_number` varchar(100) DEFAULT NULL, + `payment_amount` decimal(15,2) NOT NULL, + `status` enum('pending','cleared','cancelled') NOT NULL DEFAULT 'pending', + `notes` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED 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 `customer_payment_allocations` +-- + +CREATE TABLE `customer_payment_allocations` ( + `id` bigint(20) UNSIGNED NOT NULL, + `payment_id` bigint(20) UNSIGNED NOT NULL, + `invoice_id` bigint(20) UNSIGNED NOT NULL, + `allocated_amount` decimal(15,2) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED 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 `custom_fields` +-- + +CREATE TABLE `custom_fields` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `type` varchar(255) NOT NULL, + `module` varchar(255) NOT NULL, + `is_required` varchar(255) NOT NULL DEFAULT '0', + `sub_module` varchar(255) NOT NULL, + `created_by` int(11) NOT NULL DEFAULT 0, + `workspace_id` 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 `custom_fields_module_list` +-- + +CREATE TABLE `custom_fields_module_list` ( + `id` bigint(20) UNSIGNED NOT NULL, + `module` varchar(255) DEFAULT NULL, + `sub_module` varchar(255) DEFAULT NULL, + `status` varchar(255) NOT NULL DEFAULT 'active', + `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 `custom_field_values` +-- + +CREATE TABLE `custom_field_values` ( + `id` bigint(20) UNSIGNED NOT NULL, + `record_id` bigint(20) UNSIGNED NOT NULL, + `field_id` bigint(20) UNSIGNED NOT NULL, + `value` varchar(255) 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 `custom_pages` +-- + +CREATE TABLE `custom_pages` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(255) NOT NULL, + `slug` varchar(255) NOT NULL, + `content` longtext NOT NULL, + `meta_title` varchar(255) DEFAULT NULL, + `meta_description` text DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `is_disabled` 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 `deals` +-- + +CREATE TABLE `deals` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `price` decimal(10,2) DEFAULT NULL, + `pipeline_id` bigint(20) UNSIGNED NOT NULL, + `stage_id` bigint(20) UNSIGNED NOT NULL, + `sources` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`sources`)), + `products` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`products`)), + `notes` longtext DEFAULT NULL, + `labels` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`labels`)), + `status` varchar(255) NOT NULL DEFAULT '0', + `order` int(11) DEFAULT 0, + `phone` varchar(20) DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 0, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `deals` +-- + +INSERT INTO `deals` (`id`, `name`, `price`, `pipeline_id`, `stage_id`, `sources`, `products`, `notes`, `labels`, `status`, `order`, `phone`, `is_active`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Product Demo Request - From Lead', 35000.00, 1, 1, '[\"14,3\"]', NULL, 'Initial contact established through multiple touchpoints with strong interest demonstrated. Follow-up meeting scheduled to discuss specific requirements and next steps.', '\"4,5\"', 'Active', 0, '+861035911179', 1, 2, 2, '2025-09-15 23:49:20', '2026-03-14 00:17:52'), +(2, 'Partnership Inquiry - From Lead', 45000.00, 1, 1, '[\"12,11\"]', NULL, 'Productive discussion completed with key decision makers present. Budget parameters confirmed and approval process timeline established for moving forward with evaluation.', '\"3\"', 'Active', 0, '+338064392654', 1, 2, 2, '2025-09-22 12:50:48', '2026-03-14 00:17:52'), +(3, 'Pricing Information - From Lead', 65000.00, 1, 1, '[\"13,12\"]', NULL, 'Detailed information package sent including pricing structure and implementation timeline. Client team currently reviewing materials and will provide feedback within one week.', '\"1,2,3\"', 'Active', 0, '+817506878434', 1, 2, 2, '2025-10-01 03:45:08', '2026-03-14 00:17:52'), +(4, 'Solution Consultation - From Lead', 25000.00, 1, 1, '[\"4,8\"]', NULL, 'Comprehensive presentation delivered covering all requested topics and use cases. Positive reception received with several technical questions answered during the session.', '\"2,4\"', 'Active', 0, '+911449682485', 1, 2, 2, '2025-10-04 15:21:45', '2026-03-14 00:17:52'), +(5, 'Service Integration - From Lead', 35000.00, 1, 2, '[\"11,6,14\"]', NULL, 'Requirements gathering session completed with thorough documentation of current processes. Gap analysis shows significant opportunities for improvement and efficiency gains.', '\"2,3,4\"', 'Active', 0, '+394742789724', 1, 2, 2, '2025-10-09 16:56:36', '2026-03-14 00:17:52'), +(6, 'Custom Development - From Lead', 28000.00, 1, 2, '[\"3\"]', NULL, 'Technical evaluation meeting scheduled with IT team to assess compatibility requirements. Infrastructure review and integration planning discussion will be primary focus.', '\"2\"', 'Active', 0, '+73099331965', 1, 2, 2, '2025-10-19 08:57:14', '2026-03-14 00:17:52'), +(7, 'Email Marketing Automation', 22000.00, 1, 2, '[15,14,6,10,3,5,11]', NULL, 'Executive presentation delivered to senior leadership team highlighting strategic benefits and competitive advantages. Management approval secured for proceeding with full-scale deployment.', '\"1,2,4\"', 'Won', 0, '+912740910933', 0, 2, 2, '2025-10-22 02:37:11', '2026-03-14 06:00:19'), +(8, 'Video Production Services', 55000.00, 1, 3, '[8,1,12,6,13,7]', NULL, 'Technical architecture review completed with systems integration requirements documented. API specifications and data migration strategy approved by client IT department and security team.', '\"1,2,3\"', 'Won', 0, '+919046805727', 0, 2, 2, '2025-10-28 12:36:39', '2026-03-14 06:00:19'), +(9, 'Marketing Analytics Platform', 42000.00, 1, 3, '[8,3,5,1,2,11,13]', NULL, 'Vendor evaluation process concluded with our solution selected as preferred choice. Reference customer calls completed successfully and due diligence phase finalized with positive outcome.', '\"2,3\"', 'Won', 0, '+448870810643', 0, 2, 2, '2025-11-03 07:03:03', '2026-03-14 06:00:19'), +(10, 'Lead Generation Campaign', 38000.00, 1, 4, '[5,7,15,8,11,12,9]', NULL, 'Budget approval obtained from finance committee with investment justification accepted. Purchase order processing initiated and contract execution scheduled for next business week.', '\"5\"', 'Loss', 0, '+619320803287', 0, 2, 2, '2025-11-09 02:30:26', '2026-03-14 06:00:19'), +(11, 'Cloud Migration - From Lead', 48000.00, 2, 6, '[\"3,5,15\"]', NULL, 'Security and compliance review completed with all requirements thoroughly addressed. Documentation provided covering data protection, access controls, and audit trail capabilities.', '\"7,9\"', 'Active', 0, '+273436354376', 1, 2, 2, '2025-11-18 15:22:06', '2026-03-14 00:17:52'), +(12, 'Data Analysis Tools - From Lead', 32000.00, 2, 6, '[\"11,13\"]', NULL, 'Budget approval process initiated with finance committee reviewing investment proposal. Cost-benefit analysis demonstrates strong return on investment within reasonable timeframe.', '\"9\"', 'Active', 0, '+77216721645', 1, 2, 2, '2025-11-24 08:52:30', '2026-03-14 00:17:52'), +(13, 'Mobile App Development - From Lead', 28000.00, 2, 6, '[\"7,1\"]', NULL, 'Executive briefing delivered to senior leadership team covering strategic benefits. Management support confirmed for proceeding with detailed evaluation and selection process.', '\"6,9\"', 'Active', 0, '+551952040203', 1, 2, 2, '2025-11-30 00:37:56', '2026-03-14 00:17:52'), +(14, 'Security Assessment - From Lead', 35000.00, 2, 7, '[\"11,8\"]', NULL, 'Technical architecture review completed with systems integration requirements documented. API capabilities and data flow requirements assessed for seamless connectivity.', '\"10\"', 'Active', 0, '+824076321779', 1, 2, 2, '2025-12-02 20:32:48', '2026-03-14 00:17:52'), +(15, 'E-commerce Platform - From Lead', 25000.00, 2, 7, '[\"4,11\"]', NULL, 'Vendor comparison analysis provided highlighting key differentiators and competitive advantages. Evaluation criteria matrix completed showing strong alignment with organizational needs.', '\"8,9,10\"', 'Active', 0, '+343301003144', 1, 2, 2, '2025-12-11 16:14:37', '2026-03-14 00:17:52'), +(16, 'Payment Gateway - From Lead', 45000.00, 2, 7, '[\"10,5\"]', NULL, 'Proof of concept development approved with specific success criteria established. Limited scope pilot will demonstrate core functionality using real organizational data.', '\"8,10\"', 'Active', 0, '+446942871979', 1, 2, 2, '2025-12-18 06:32:05', '2026-03-14 00:17:52'), +(17, 'Marketing Technology Stack', 65000.00, 2, 8, '[14,6,2,13,9,12]', NULL, 'Risk assessment and mitigation strategies developed for potential implementation challenges. Contingency plans established and escalation procedures defined for smooth project execution.', '\"10\"', 'Won', 0, '+336100784475', 0, 2, 2, '2025-12-20 22:06:14', '2026-03-14 06:00:19'), +(18, 'Customer Segmentation Analysis', 32000.00, 2, 8, '[1,5,12,13,6]', NULL, 'Change management strategy implemented with comprehensive communication plan and stakeholder engagement. User adoption metrics tracked and training effectiveness measured throughout deployment.', '\"7\"', 'Won', 0, '+12524628857', 0, 2, 2, '2025-12-24 13:47:39', '2026-03-14 06:00:19'), +(19, 'Conversion Rate Optimization', 38000.00, 2, 9, '[3,7,11,8,10]', NULL, 'Quality assurance framework established with testing protocols and performance benchmarks. Continuous improvement process defined for ongoing optimization and feature enhancement.', '\"7,9,10\"', 'Won', 0, '+397018158256', 0, 2, 2, '2025-12-30 14:30:05', '2026-03-14 06:00:08'), +(20, 'Marketing Automation Setup', 42000.00, 2, 9, '[15,1,2,13,4]', NULL, 'Service level agreements finalized with response time commitments and availability guarantees. Support structure established with dedicated account management and technical assistance.', '\"6,8,9\"', 'Loss', 0, '+278681377569', 0, 2, 2, '2026-01-05 02:04:42', '2026-03-14 06:00:09'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `deal_activity_logs` +-- + +CREATE TABLE `deal_activity_logs` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `deal_id` bigint(20) UNSIGNED NOT NULL, + `log_type` varchar(255) NOT NULL, + `remark` 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 `deal_activity_logs` +-- + +INSERT INTO `deal_activity_logs` (`id`, `user_id`, `deal_id`, `log_type`, `remark`, `created_at`, `updated_at`) VALUES +(1, 2, 1, 'Create Deal Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 2, 1, 'Create Deal Email', '{\"title\":\"Exclusive Industry Insights\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 2, 1, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 2, 1, 'Create Deal Email', '{\"title\":\"Creative Assets Approval\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 2, 1, 'Move', '{\"title\":\"Product Demo Request - From Lead\",\"old_status\":\"Nurturing\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 2, 2, 'Create Deal Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 2, 2, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 2, 2, 'Create Deal Email', '{\"title\":\"Creative Assets Approval\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 2, 2, 'Move', '{\"title\":\"Partnership Inquiry - From Lead\",\"old_status\":\"Qualification\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 2, 3, 'Create Deal Call', '{\"title\":\"Prospect Evaluation Call\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 2, 4, 'Create Deal Call', '{\"title\":\"Interest Assessment Meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 2, 5, 'Create Task', '{\"title\":\"Schedule product demonstration session\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 2, 5, 'Create Task', '{\"title\":\"Prepare technical specifications document\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 2, 5, 'Create Task', '{\"title\":\"Conduct stakeholder presentation meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 2, 6, 'Create Deal Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 2, 6, 'Create Deal Email', '{\"title\":\"Performance Metrics Update\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 2, 6, 'Create Task', '{\"title\":\"Send pricing quotation details\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 2, 7, 'Upload File', '{\"file_name\":\"deal_file_7.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 2, 7, 'Move', '{\"title\":\"Email Marketing Automation\",\"old_status\":\"Lead Generation\",\"new_status\":\"Lead Generation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 2, 8, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 2, 8, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 2, 8, 'Move', '{\"title\":\"Video Production Services\",\"old_status\":\"Nurturing\",\"new_status\":\"Nurturing\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 2, 9, 'Move', '{\"title\":\"Marketing Analytics Platform\",\"old_status\":\"Handoff\",\"new_status\":\"Nurturing\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 2, 10, 'Create Deal Email', '{\"title\":\"Lead Qualification Update\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 2, 10, 'Create Deal Email', '{\"title\":\"Sales Handoff Preparation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 2, 11, 'Create Task', '{\"title\":\"Schedule contract signing appointment\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 2, 11, 'Create Task', '{\"title\":\"Prepare onboarding documentation package\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(29, 2, 11, 'Create Task', '{\"title\":\"Conduct project kickoff meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(30, 2, 11, 'Move', '{\"title\":\"Cloud Migration - From Lead\",\"old_status\":\"Needs Assessment\",\"new_status\":\"Initial Contact\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(31, 2, 12, 'Create Deal Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(32, 2, 12, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(33, 2, 12, 'Upload File', '{\"file_name\":\"deal_file_12.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(34, 2, 13, 'Create Deal Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(35, 2, 13, 'Create Deal Email', '{\"title\":\"Alternative Solutions\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(36, 2, 13, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(37, 2, 13, 'Upload File', '{\"file_name\":\"deal_file_13.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(38, 2, 14, 'Create Deal Call', '{\"title\":\"Criteria Review Discussion\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(39, 2, 14, 'Create Deal Call', '{\"title\":\"Status Follow-up Meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(40, 2, 14, 'Move', '{\"title\":\"Security Assessment - From Lead\",\"old_status\":\"Solution Fit\",\"new_status\":\"Needs Assessment\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(41, 2, 15, 'Create Deal Call', '{\"title\":\"Progress Assessment Call\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(42, 2, 16, 'Create Task', '{\"title\":\"Send testing results summary\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(43, 2, 16, 'Create Task', '{\"title\":\"Schedule final approval meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(44, 2, 16, 'Move', '{\"title\":\"Payment Gateway - From Lead\",\"old_status\":\"Solution Fit\",\"new_status\":\"Needs Assessment\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(45, 2, 17, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(46, 2, 17, 'Create Deal Email', '{\"title\":\"Technical Architecture Review\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(47, 2, 18, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(48, 2, 18, 'Create Deal Email', '{\"title\":\"Technical Architecture Review\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(49, 2, 18, 'Upload File', '{\"file_name\":\"deal_file_18.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(50, 2, 19, 'Move', '{\"title\":\"Conversion Rate Optimization\",\"old_status\":\"Needs Assessment\",\"new_status\":\"Proposal Sent\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(51, 2, 20, 'Move', '{\"title\":\"Marketing Automation Setup\",\"old_status\":\"Proposal Sent\",\"new_status\":\"Proposal Sent\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(52, 2, 1, 'Create Task', '{\"title\":\"Initial contact call with prospect\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(53, 2, 1, 'Upload File', '{\"file_name\":\"deal_file_1.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(54, 2, 2, 'Move', '{\"title\":\"Partnership Inquiry - From Lead\",\"old_status\":\"Lead Generation\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(55, 2, 3, 'Create Task', '{\"title\":\"Prepare customized presentation materials\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(56, 2, 3, 'Create Task', '{\"title\":\"Conduct needs assessment interview\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(57, 2, 3, 'Create Task', '{\"title\":\"Send detailed proposal document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(58, 2, 3, 'Upload File', '{\"file_name\":\"deal_file_3.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(59, 2, 4, 'Create Deal Call', '{\"title\":\"Interest Assessment Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(60, 2, 4, 'Create Task', '{\"title\":\"Follow up on proposal feedback\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(61, 2, 5, 'Upload File', '{\"file_name\":\"deal_file_5.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(62, 2, 6, 'Upload File', '{\"file_name\":\"deal_file_6.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(63, 2, 6, 'Move', '{\"title\":\"Custom Development - From Lead\",\"old_status\":\"Qualification\",\"new_status\":\"Lead Generation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(64, 2, 7, 'Move', '{\"title\":\"Email Marketing Automation\",\"old_status\":\"Campaign Launch\",\"new_status\":\"Lead Generation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(65, 2, 8, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(66, 2, 8, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(67, 2, 8, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(68, 2, 8, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(69, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(70, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(71, 2, 9, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(72, 2, 9, 'Move', '{\"title\":\"Marketing Analytics Platform\",\"old_status\":\"Nurturing\",\"new_status\":\"Nurturing\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(73, 2, 11, 'Create Deal Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(74, 2, 11, 'Create Deal Email', '{\"title\":\"Alternative Solutions\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(75, 2, 11, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(76, 2, 11, 'Create Deal Email', '{\"title\":\"Discovery Call Scheduled\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(77, 2, 11, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(78, 2, 11, 'Create Deal Email', '{\"title\":\"Discovery Call Scheduled\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(79, 2, 12, 'Create Deal Call', '{\"title\":\"Assessment Review Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(80, 2, 12, 'Create Deal Call', '{\"title\":\"Evaluation Planning Session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(81, 2, 12, 'Create Task', '{\"title\":\"Send welcome and next steps\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(82, 2, 12, 'Create Task', '{\"title\":\"Schedule implementation planning session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(83, 2, 12, 'Create Task', '{\"title\":\"Prepare project timeline document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(84, 2, 13, 'Create Deal Call', '{\"title\":\"Basic Qualification Check\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(85, 2, 13, 'Create Deal Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(86, 2, 13, 'Create Deal Email', '{\"title\":\"Alternative Solutions\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(87, 2, 13, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(88, 2, 13, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(89, 2, 14, 'Upload File', '{\"file_name\":\"deal_file_14.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(90, 2, 14, 'Move', '{\"title\":\"Security Assessment - From Lead\",\"old_status\":\"Initial Contact\",\"new_status\":\"Needs Assessment\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(91, 2, 15, 'Upload File', '{\"file_name\":\"deal_file_15.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(92, 2, 16, 'Create Deal Email', '{\"title\":\"Qualification Approved\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(93, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(94, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(95, 2, 16, 'Create Task', '{\"title\":\"Send testing results summary\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(96, 2, 16, 'Create Task', '{\"title\":\"Schedule final approval meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(97, 2, 17, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(98, 2, 17, 'Create Deal Email', '{\"title\":\"Technical Architecture Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(99, 2, 17, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(100, 2, 18, 'Upload File', '{\"file_name\":\"deal_file_18.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(101, 2, 19, 'Move', '{\"title\":\"Conversion Rate Optimization\",\"old_status\":\"Needs Assessment\",\"new_status\":\"Proposal Sent\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(102, 2, 1, 'Create Task', '{\"title\":\"Initial contact call with prospect\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(103, 2, 1, 'Upload File', '{\"file_name\":\"deal_file_1.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(104, 2, 2, 'Create Deal Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(105, 2, 2, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(106, 2, 2, 'Create Deal Email', '{\"title\":\"Creative Assets Approval\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(107, 2, 2, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(108, 2, 2, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(109, 2, 3, 'Create Deal Call', '{\"title\":\"Prospect Evaluation Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(110, 2, 3, 'Move', '{\"title\":\"Pricing Information - From Lead\",\"old_status\":\"Handoff\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(111, 2, 4, 'Create Deal Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(112, 2, 4, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(113, 2, 4, 'Create Deal Email', '{\"title\":\"Creative Assets Approval\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(114, 2, 4, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(115, 2, 4, 'Create Deal Email', '{\"title\":\"Creative Assets Approval\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(116, 2, 4, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(117, 2, 4, 'Create Task', '{\"title\":\"Follow up on proposal feedback\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(118, 2, 5, 'Create Deal Call', '{\"title\":\"Educational Resource Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(119, 2, 5, 'Upload File', '{\"file_name\":\"deal_file_5.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(120, 2, 6, 'Create Deal Call', '{\"title\":\"Resource Discussion Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(121, 2, 6, 'Create Deal Call', '{\"title\":\"Value Assessment Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(122, 2, 6, 'Create Deal Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(123, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(124, 2, 6, 'Create Deal Email', '{\"title\":\"Performance Metrics Update\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(125, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(126, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(127, 2, 6, 'Create Deal Email', '{\"title\":\"Performance Metrics Update\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(128, 2, 8, 'Upload File', '{\"file_name\":\"deal_file_8.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(129, 2, 8, 'Move', '{\"title\":\"Video Production Services\",\"old_status\":\"Nurturing\",\"new_status\":\"Nurturing\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(130, 2, 11, 'Create Task', '{\"title\":\"Schedule contract signing appointment\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(131, 2, 11, 'Create Task', '{\"title\":\"Prepare onboarding documentation package\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(132, 2, 11, 'Create Task', '{\"title\":\"Conduct project kickoff meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(133, 2, 12, 'Create Task', '{\"title\":\"Send welcome and next steps\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(134, 2, 12, 'Create Task', '{\"title\":\"Schedule implementation planning session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(135, 2, 12, 'Create Task', '{\"title\":\"Prepare project timeline document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(136, 2, 12, 'Move', '{\"title\":\"Data Analysis Tools - From Lead\",\"old_status\":\"Needs Assessment\",\"new_status\":\"Initial Contact\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(137, 2, 13, 'Create Task', '{\"title\":\"Conduct team introduction meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(138, 2, 13, 'Create Task', '{\"title\":\"Send training materials package\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(139, 2, 14, 'Create Deal Call', '{\"title\":\"Criteria Review Discussion\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(140, 2, 14, 'Create Deal Call', '{\"title\":\"Status Follow-up Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(141, 2, 15, 'Create Task', '{\"title\":\"Prepare go-live checklist document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(142, 2, 15, 'Create Task', '{\"title\":\"Conduct system testing session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(143, 2, 15, 'Upload File', '{\"file_name\":\"deal_file_15.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(144, 2, 16, 'Create Deal Call', '{\"title\":\"Confirmation Follow-up Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(145, 2, 17, 'Upload File', '{\"file_name\":\"deal_file_17.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(146, 2, 18, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(147, 2, 18, 'Create Deal Email', '{\"title\":\"Technical Architecture Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(148, 2, 18, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(149, 2, 18, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(150, 2, 18, 'Create Deal Email', '{\"title\":\"Technical Architecture Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(151, 2, 20, 'Create Deal Email', '{\"title\":\"Proposal Delivery Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(152, 2, 20, 'Create Deal Email', '{\"title\":\"Proposal Delivery Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(153, 2, 20, 'Create Deal Email', '{\"title\":\"Proposal Delivery Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(154, 2, 20, 'Create Deal Email', '{\"title\":\"Proposal Review Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(155, 2, 1, 'Move', '{\"title\":\"Product Demo Request - From Lead\",\"old_status\":\"Nurturing\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(156, 2, 2, 'Create Task', '{\"title\":\"Send introduction email and company overview\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(157, 2, 2, 'Create Task', '{\"title\":\"Schedule discovery meeting appointment\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(158, 2, 2, 'Create Task', '{\"title\":\"Research prospect business requirements thoroughly\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(159, 2, 3, 'Upload File', '{\"file_name\":\"deal_file_3.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(160, 2, 3, 'Move', '{\"title\":\"Pricing Information - From Lead\",\"old_status\":\"Nurturing\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(161, 2, 4, 'Create Task', '{\"title\":\"Follow up on proposal feedback\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(162, 2, 4, 'Upload File', '{\"file_name\":\"deal_file_4.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(163, 2, 5, 'Upload File', '{\"file_name\":\"deal_file_5.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(164, 2, 5, 'Move', '{\"title\":\"Service Integration - From Lead\",\"old_status\":\"Qualification\",\"new_status\":\"Lead Generation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(165, 2, 6, 'Create Deal Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(166, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(167, 2, 6, 'Create Deal Email', '{\"title\":\"Performance Metrics Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(168, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(169, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(170, 2, 6, 'Create Deal Email', '{\"title\":\"Performance Metrics Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(171, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(172, 2, 6, 'Move', '{\"title\":\"Custom Development - From Lead\",\"old_status\":\"Campaign Launch\",\"new_status\":\"Lead Generation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(173, 2, 7, 'Upload File', '{\"file_name\":\"deal_file_7.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(174, 2, 8, 'Move', '{\"title\":\"Video Production Services\",\"old_status\":\"Qualification\",\"new_status\":\"Nurturing\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(175, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(176, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(177, 2, 9, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(178, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(179, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(180, 2, 9, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(181, 2, 10, 'Create Deal Email', '{\"title\":\"Lead Qualification Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(182, 2, 10, 'Create Deal Email', '{\"title\":\"Sales Handoff Preparation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(183, 2, 10, 'Create Deal Email', '{\"title\":\"Lead Qualification Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(184, 2, 10, 'Create Deal Email', '{\"title\":\"Lead Qualification Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(185, 2, 10, 'Create Deal Email', '{\"title\":\"Lead Qualification Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(186, 2, 11, 'Create Deal Call', '{\"title\":\"Preliminary Evaluation Session\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(187, 2, 12, 'Create Deal Call', '{\"title\":\"Assessment Review Meeting\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(188, 2, 12, 'Create Deal Call', '{\"title\":\"Evaluation Planning Session\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(189, 2, 12, 'Upload File', '{\"file_name\":\"deal_file_12.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(190, 2, 13, 'Create Task', '{\"title\":\"Conduct team introduction meeting\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(191, 2, 13, 'Create Task', '{\"title\":\"Send training materials package\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(192, 2, 13, 'Move', '{\"title\":\"Mobile App Development - From Lead\",\"old_status\":\"Needs Assessment\",\"new_status\":\"Initial Contact\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(193, 2, 14, 'Create Deal Email', '{\"title\":\"Application Under Review\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(194, 2, 14, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(195, 2, 14, 'Create Deal Email', '{\"title\":\"Requirements Documentation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(196, 2, 14, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(197, 2, 14, 'Create Deal Email', '{\"title\":\"Requirements Documentation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(198, 2, 14, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(199, 2, 14, 'Create Deal Email', '{\"title\":\"Requirements Documentation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(200, 2, 14, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(201, 2, 15, 'Create Deal Call', '{\"title\":\"Progress Assessment Call\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(202, 2, 15, 'Create Task', '{\"title\":\"Prepare go-live checklist document\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(203, 2, 15, 'Create Task', '{\"title\":\"Conduct system testing session\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(204, 2, 16, 'Create Deal Email', '{\"title\":\"Qualification Approved\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(205, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(206, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(207, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(208, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(209, 2, 16, 'Move', '{\"title\":\"Payment Gateway - From Lead\",\"old_status\":\"Solution Fit\",\"new_status\":\"Needs Assessment\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(210, 2, 17, 'Move', '{\"title\":\"Marketing Technology Stack\",\"old_status\":\"Proposal Sent\",\"new_status\":\"Solution Fit\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(211, 2, 18, 'Move', '{\"title\":\"Customer Segmentation Analysis\",\"old_status\":\"Proposal Sent\",\"new_status\":\"Solution Fit\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(212, 2, 19, 'Upload File', '{\"file_name\":\"deal_file_19.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(213, 2, 20, 'Move', '{\"title\":\"Marketing Automation Setup\",\"old_status\":\"Proposal Sent\",\"new_status\":\"Proposal Sent\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `deal_calls` +-- + +CREATE TABLE `deal_calls` ( + `id` bigint(20) UNSIGNED NOT NULL, + `deal_id` bigint(20) UNSIGNED NOT NULL, + `subject` varchar(255) NOT NULL, + `call_type` varchar(255) NOT NULL, + `duration` varchar(255) NOT NULL, + `user_id` bigint(20) UNSIGNED DEFAULT NULL, + `description` longtext DEFAULT NULL, + `call_result` 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 `deal_calls` +-- + +INSERT INTO `deal_calls` (`id`, `deal_id`, `subject`, `call_type`, `duration`, `user_id`, `description`, `call_result`, `created_at`, `updated_at`) VALUES +(1, 1, 'Qualification Assessment Call', 'Outbound', '00:04:20', 38, 'Analyzed prospect profile and established qualification criteria for marketing solution and platform evaluation.', 'Brief interaction due to competing priorities, established new time for comprehensive discussion about requirements.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 1, 'Interest Assessment Meeting', 'Inbound', '00:00:54', 38, 'Established communication preferences and confirmed follow-up schedule for engagement and relationship development.', 'No answer received, will try alternative contact methods and reschedule appointment for this week.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 2, 'Engagement Analysis Discussion', 'Inbound', '00:18:11', 31, 'Reviewed prospect qualifications and established interest level for marketing automation and lead generation.', 'Valuable discussion with decision maker who provided feedback and approved continuation of evaluation process.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 3, 'Prospect Evaluation Call', 'Outbound', '00:02:57', 37, 'Reviewed prospect qualifications and established interest level for marketing automation and lead generation.', 'Unable to reach during scheduled window, proposing alternative times for connection and confirming timeline.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 4, 'Interest Assessment Meeting', 'Inbound', '00:02:17', 12, 'Coordinated prospect assessment and confirmed company profile alignment with marketing solution capabilities.', 'Unable to complete full discussion due to time constraints, rescheduled for extended session with team.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 5, 'Educational Resource Review', 'Inbound', '00:02:21', 32, 'Reviewed content marketing strategy and confirmed interest in educational resources and lead nurturing programs.', 'Interrupted by urgent matter, prospect requested reschedule for uninterrupted conversation time about budget.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 6, 'Resource Discussion Call', 'Inbound', '00:02:38', 35, 'Follow-up call to discuss marketing automation benefits and comprehensive implementation approach for business.', 'No response received despite multiple connection attempts during scheduled call window, will try alternative methods.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 6, 'Value Assessment Meeting', 'Outbound', '00:01:38', 35, 'Coordinated follow-up discussion and reviewed marketing automation benefits for lead generation and nurturing.', 'Detailed message provided with next steps and requested response regarding continued engagement and criteria.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 11, 'Preliminary Evaluation Session', 'Outbound', '00:02:12', 36, 'Conducted initial assessment call to evaluate basic qualification criteria and company fit for solution.', 'No response to call, sending calendar invitation for rescheduled meeting this week with agenda.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 12, 'Assessment Review Meeting', 'Outbound', '00:01:31', 33, 'Discussed preliminary requirements and confirmed evaluation criteria for qualification and assessment process.', 'Voicemail delivered with specific agenda items and requested confirmation of continued interest in timeline.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 12, 'Evaluation Planning Session', 'Inbound', '00:04:35', 33, 'Analyzed qualification factors and confirmed approach for future assessment and qualification process improvement.', 'Brief interaction due to competing priorities, established new time for comprehensive discussion about requirements.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 13, 'Basic Qualification Check', 'Outbound', '00:45:15', 22, 'Analyzed qualification factors and confirmed approach for future assessment and qualification process improvement.', 'Productive discussion completed with positive feedback and confirmed interest in moving forward with proposed solution implementation.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 14, 'Criteria Review Discussion', 'Inbound', '00:01:10', 39, 'Reviewed assessment progress and confirmed evaluation methodology for qualification and decision making process.', 'Left comprehensive voicemail with key discussion points and requested callback within two days for review.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 14, 'Status Follow-up Meeting', 'Outbound', '00:01:45', 34, 'Reviewed qualification progress and confirmed evaluation methodology for assessment and decision making process.', 'Left informative message summarizing previous discussion and outlining next steps for consideration by team.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 15, 'Progress Assessment Call', 'Inbound', '00:17:18', 34, 'Discussed review status and established timeline for qualification assessment and decision making process.', 'Positive interaction with engaged prospect who requested additional information and follow-up meeting with stakeholders.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 16, 'Confirmation Follow-up Call', 'Outbound', '00:04:32', 16, 'Analyzed qualification results and prepared handoff documentation for team coordination and next steps.', 'Prospect unavailable due to conflicting priority, confirmed alternative time for detailed discussion about requirements.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `deal_discussions` +-- + +CREATE TABLE `deal_discussions` ( + `id` bigint(20) UNSIGNED NOT NULL, + `deal_id` bigint(20) UNSIGNED NOT NULL, + `comment` longtext NOT NULL, + `creator_id` bigint(20) UNSIGNED NOT NULL, + `created_by` 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; + +-- +-- Dumping data for table `deal_discussions` +-- + +INSERT INTO `deal_discussions` (`id`, `deal_id`, `comment`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 37, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 2, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 37, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 2, 'Downloaded our whitepaper on digital marketing trends. Appears to be researching solutions for their growing business and evaluating different platforms for implementation.', 16, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 3, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 24, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 4, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 35, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 5, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 12, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 6, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 41, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 6, 'Email exchange initiated with marketing director. Lead provided details about their current marketing challenges and team size for solution sizing and customization.', 22, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 11, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 10, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 12, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 42, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 13, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 14, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 13, 'Budget constraints identified during qualification. Lead cannot meet our minimum investment threshold at this time but expressed interest for future consideration when budget allows.', 38, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 14, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 41, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 15, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 16, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 15, 'Documentation review in progress with evaluation team. Lead provided comprehensive information about their requirements, current systems, and implementation timeline for assessment.', 28, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 16, 'Qualification approved based on budget, authority, need, and timeline criteria. Moving to sales process with dedicated account manager for detailed solution presentation and proposal.', 16, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 1, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 29, 2, '2025-09-22 16:49:20', '2026-03-14 00:17:52'), +(18, 1, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 42, 2, '2025-10-06 12:49:20', '2026-03-14 00:17:52'), +(19, 2, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 42, 2, '2025-10-11 03:50:48', '2026-03-14 00:17:52'), +(20, 3, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 36, 2, '2025-10-12 15:45:08', '2026-03-14 00:17:52'), +(21, 3, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 41, 2, '2025-10-07 20:45:08', '2026-03-14 00:17:52'), +(22, 4, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 33, 2, '2025-10-20 08:21:45', '2026-03-14 00:17:52'), +(23, 4, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 36, 2, '2025-10-17 19:21:45', '2026-03-14 00:17:52'), +(24, 5, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 30, 2, '2025-10-13 21:56:36', '2026-03-14 00:17:52'), +(25, 5, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 32, 2, '2025-10-13 05:56:36', '2026-03-14 00:17:52'), +(26, 6, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 20, 2, '2025-11-09 16:57:14', '2026-03-14 00:17:52'), +(27, 6, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 39, 2, '2025-10-24 14:57:14', '2026-03-14 00:17:52'), +(28, 7, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 31, 2, '2025-11-03 00:37:11', '2026-03-14 00:17:52'), +(29, 8, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 8, 2, '2025-11-05 05:36:39', '2026-03-14 00:17:52'), +(30, 9, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 32, 2, '2025-11-22 13:03:03', '2026-03-14 00:17:52'), +(31, 9, 'Content performance analysis shows educational materials driving highest engagement. Webinar invitations and case studies generate most qualified lead progression.', 26, 2, '2025-11-20 22:03:03', '2026-03-14 00:17:52'), +(32, 10, 'Lead qualification process identifies 60 high-value prospects ready for immediate sales engagement. Scoring model accuracy validated through sales team feedback.', 42, 2, '2025-11-13 04:30:26', '2026-03-14 00:17:52'), +(33, 10, 'Sales handoff preparation completed with detailed lead intelligence. Each qualified lead includes engagement history, interests, and recommended approach for sales team.', 40, 2, '2025-11-27 09:30:26', '2026-03-14 00:17:52'), +(34, 11, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 36, 2, '2025-11-26 11:22:06', '2026-03-14 00:17:52'), +(35, 12, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 24, 2, '2025-12-05 03:52:30', '2026-03-14 00:17:52'), +(36, 12, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 42, 2, '2025-12-02 11:52:30', '2026-03-14 00:17:52'), +(37, 13, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 40, 2, '2025-12-03 03:37:56', '2026-03-14 00:17:52'), +(38, 14, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 14, 2, '2025-12-10 11:32:48', '2026-03-14 00:17:52'), +(39, 15, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 34, 2, '2025-12-24 14:14:37', '2026-03-14 00:17:52'), +(40, 15, 'Stakeholder interviews revealed unanimous support for digital transformation initiative. Current state analysis shows significant opportunities for efficiency improvement and cost reduction through automation.', 42, 2, '2026-01-02 13:14:37', '2026-03-14 00:17:52'), +(41, 16, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 37, 2, '2025-12-30 13:32:05', '2026-03-14 00:17:52'), +(42, 17, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 39, 2, '2026-01-04 15:06:14', '2026-03-14 00:17:52'), +(43, 18, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 29, 2, '2025-12-30 14:47:39', '2026-03-14 00:17:52'), +(44, 19, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 24, 2, '2026-01-12 05:30:05', '2026-03-14 00:17:52'), +(45, 19, 'Proposal review meeting scheduled with all stakeholders. Technical specifications and commercial terms will be discussed in detail for final evaluation.', 20, 2, '2026-01-18 16:30:05', '2026-03-14 00:17:52'), +(46, 20, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 29, 2, '2026-01-21 00:04:42', '2026-03-14 00:17:52'), +(47, 1, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 34, 2, '2025-09-28 14:49:20', '2026-03-14 06:00:09'), +(48, 2, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 37, 2, '2025-10-09 16:50:48', '2026-03-14 06:00:09'), +(49, 3, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 36, 2, '2025-10-11 20:45:08', '2026-03-14 06:00:09'), +(50, 3, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 40, 2, '2025-10-04 18:45:08', '2026-03-14 06:00:09'), +(51, 4, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 18, 2, '2025-10-21 00:21:45', '2026-03-14 06:00:09'), +(52, 5, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 12, 2, '2025-10-27 01:56:36', '2026-03-14 06:00:09'), +(53, 6, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 16, 2, '2025-10-27 14:57:14', '2026-03-14 06:00:09'), +(54, 6, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 18, 2, '2025-11-06 12:57:14', '2026-03-14 06:00:09'), +(55, 7, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 30, 2, '2025-10-30 09:37:11', '2026-03-14 06:00:09'), +(56, 7, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 35, 2, '2025-11-03 05:37:11', '2026-03-14 06:00:09'), +(57, 8, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 31, 2, '2025-11-16 13:36:39', '2026-03-14 06:00:09'), +(58, 8, 'Content performance analysis shows educational materials driving highest engagement. Webinar invitations and case studies generate most qualified lead progression.', 26, 2, '2025-11-02 04:36:39', '2026-03-14 06:00:09'), +(59, 9, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 18, 2, '2025-11-14 06:03:03', '2026-03-14 06:00:09'), +(60, 9, 'Content performance analysis shows educational materials driving highest engagement. Webinar invitations and case studies generate most qualified lead progression.', 10, 2, '2025-11-11 11:03:03', '2026-03-14 06:00:09'), +(61, 10, 'Lead qualification process identifies 60 high-value prospects ready for immediate sales engagement. Scoring model accuracy validated through sales team feedback.', 8, 2, '2025-11-12 13:30:26', '2026-03-14 06:00:09'), +(62, 10, 'Sales handoff preparation completed with detailed lead intelligence. Each qualified lead includes engagement history, interests, and recommended approach for sales team.', 8, 2, '2025-12-01 00:30:26', '2026-03-14 06:00:09'), +(63, 11, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 41, 2, '2025-11-21 20:22:06', '2026-03-14 06:00:09'), +(64, 12, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 24, 2, '2025-12-06 14:52:30', '2026-03-14 06:00:09'), +(65, 13, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 32, 2, '2025-12-13 21:37:56', '2026-03-14 06:00:09'), +(66, 13, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 40, 2, '2025-12-03 17:37:56', '2026-03-14 06:00:09'), +(67, 14, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 39, 2, '2025-12-12 11:32:48', '2026-03-14 06:00:09'), +(68, 14, 'Stakeholder interviews revealed unanimous support for digital transformation initiative. Current state analysis shows significant opportunities for efficiency improvement and cost reduction through automation.', 32, 2, '2025-12-15 02:32:48', '2026-03-14 06:00:09'), +(69, 15, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 42, 2, '2025-12-27 18:14:37', '2026-03-14 06:00:09'), +(70, 16, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 8, 2, '2026-01-04 13:32:05', '2026-03-14 06:00:09'), +(71, 17, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 26, 2, '2026-01-08 01:06:14', '2026-03-14 06:00:09'), +(72, 17, 'Technical architecture review completed successfully. Our platform integrates seamlessly with current systems while providing scalability for future growth and expansion.', 40, 2, '2026-01-11 20:06:14', '2026-03-14 06:00:09'), +(73, 18, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 20, 2, '2025-12-30 18:47:39', '2026-03-14 06:00:09'), +(74, 18, 'Technical architecture review completed successfully. Our platform integrates seamlessly with current systems while providing scalability for future growth and expansion.', 32, 2, '2026-01-06 12:47:39', '2026-03-14 06:00:09'), +(75, 19, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 18, 2, '2026-01-03 00:30:05', '2026-03-14 06:00:09'), +(76, 19, 'Proposal review meeting scheduled with all stakeholders. Technical specifications and commercial terms will be discussed in detail for final evaluation.', 35, 2, '2026-01-13 11:30:05', '2026-03-14 06:00:09'), +(77, 20, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 42, 2, '2026-01-17 11:04:42', '2026-03-14 06:00:09'), +(78, 20, 'Proposal review meeting scheduled with all stakeholders. Technical specifications and commercial terms will be discussed in detail for final evaluation.', 34, 2, '2026-01-12 13:04:42', '2026-03-14 06:00:09'), +(79, 1, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 41, 2, '2025-09-26 03:49:20', '2026-03-14 06:00:09'), +(80, 1, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 28, 2, '2025-10-03 18:49:20', '2026-03-14 06:00:09'), +(81, 2, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 26, 2, '2025-10-13 07:50:48', '2026-03-14 06:00:09'), +(82, 3, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 32, 2, '2025-10-07 11:45:08', '2026-03-14 06:00:09'), +(83, 3, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 37, 2, '2025-10-22 08:45:08', '2026-03-14 06:00:09'), +(84, 4, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 30, 2, '2025-10-21 02:21:45', '2026-03-14 06:00:09'), +(85, 5, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 20, 2, '2025-10-14 13:56:36', '2026-03-14 06:00:09'), +(86, 6, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 14, 2, '2025-11-09 14:57:14', '2026-03-14 06:00:09'), +(87, 6, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 28, 2, '2025-10-26 11:57:14', '2026-03-14 06:00:09'), +(88, 7, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 8, 2, '2025-10-28 08:37:11', '2026-03-14 06:00:09'), +(89, 7, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 34, 2, '2025-10-28 04:37:11', '2026-03-14 06:00:09'), +(90, 8, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 35, 2, '2025-11-17 22:36:39', '2026-03-14 06:00:09'), +(91, 9, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 24, 2, '2025-11-12 22:03:03', '2026-03-14 06:00:09'), +(92, 10, 'Lead qualification process identifies 60 high-value prospects ready for immediate sales engagement. Scoring model accuracy validated through sales team feedback.', 30, 2, '2025-11-15 10:30:26', '2026-03-14 06:00:09'), +(93, 10, 'Sales handoff preparation completed with detailed lead intelligence. Each qualified lead includes engagement history, interests, and recommended approach for sales team.', 40, 2, '2025-11-12 17:30:26', '2026-03-14 06:00:09'), +(94, 11, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 32, 2, '2025-11-25 23:22:06', '2026-03-14 06:00:09'), +(95, 11, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 26, 2, '2025-11-25 19:22:06', '2026-03-14 06:00:09'), +(96, 12, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 12, 2, '2025-12-03 09:52:30', '2026-03-14 06:00:09'), +(97, 12, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 38, 2, '2025-12-06 23:52:30', '2026-03-14 06:00:09'), +(98, 13, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 12, 2, '2025-12-10 12:37:56', '2026-03-14 06:00:09'), +(99, 13, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 22, 2, '2025-12-05 03:37:56', '2026-03-14 06:00:09'), +(100, 14, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 33, 2, '2025-12-11 01:32:48', '2026-03-14 06:00:09'), +(101, 15, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 32, 2, '2025-12-28 06:14:37', '2026-03-14 06:00:09'), +(102, 16, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 33, 2, '2026-01-01 07:32:05', '2026-03-14 06:00:09'), +(103, 17, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 8, 2, '2026-01-05 05:06:14', '2026-03-14 06:00:09'), +(104, 17, 'Technical architecture review completed successfully. Our platform integrates seamlessly with current systems while providing scalability for future growth and expansion.', 10, 2, '2025-12-27 07:06:14', '2026-03-14 06:00:09'), +(105, 18, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 18, 2, '2025-12-31 10:47:39', '2026-03-14 06:00:09'), +(106, 18, 'Technical architecture review completed successfully. Our platform integrates seamlessly with current systems while providing scalability for future growth and expansion.', 26, 2, '2025-12-30 18:47:39', '2026-03-14 06:00:09'), +(107, 19, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 35, 2, '2026-01-13 05:30:05', '2026-03-14 06:00:09'), +(108, 19, 'Proposal review meeting scheduled with all stakeholders. Technical specifications and commercial terms will be discussed in detail for final evaluation.', 29, 2, '2026-01-18 13:30:05', '2026-03-14 06:00:09'), +(109, 20, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 12, 2, '2026-01-10 11:04:42', '2026-03-14 06:00:09'), +(110, 1, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 34, 2, '2025-10-05 18:49:20', '2026-03-14 06:00:19'), +(111, 2, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 38, 2, '2025-10-03 15:50:48', '2026-03-14 06:00:19'), +(112, 2, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 20, 2, '2025-10-02 02:50:48', '2026-03-14 06:00:19'), +(113, 3, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 28, 2, '2025-10-06 11:45:08', '2026-03-14 06:00:19'), +(114, 3, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 16, 2, '2025-10-07 15:45:08', '2026-03-14 06:00:19'), +(115, 4, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 20, 2, '2025-10-12 06:21:45', '2026-03-14 06:00:19'), +(116, 4, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 42, 2, '2025-10-08 18:21:45', '2026-03-14 06:00:19'), +(117, 5, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 39, 2, '2025-10-28 06:56:36', '2026-03-14 06:00:19'), +(118, 6, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 22, 2, '2025-10-31 04:57:14', '2026-03-14 06:00:19'), +(119, 7, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 24, 2, '2025-11-04 14:37:11', '2026-03-14 06:00:19'), +(120, 7, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 39, 2, '2025-11-07 01:37:11', '2026-03-14 06:00:19'), +(121, 8, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 24, 2, '2025-11-04 18:36:39', '2026-03-14 06:00:19'), +(122, 9, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 36, 2, '2025-11-13 03:03:03', '2026-03-14 06:00:19'), +(123, 9, 'Content performance analysis shows educational materials driving highest engagement. Webinar invitations and case studies generate most qualified lead progression.', 22, 2, '2025-11-12 08:03:03', '2026-03-14 06:00:19'), +(124, 10, 'Lead qualification process identifies 60 high-value prospects ready for immediate sales engagement. Scoring model accuracy validated through sales team feedback.', 36, 2, '2025-11-20 11:30:26', '2026-03-14 06:00:19'), +(125, 11, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 41, 2, '2025-11-27 14:22:06', '2026-03-14 06:00:19'), +(126, 11, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 29, 2, '2025-11-24 12:22:06', '2026-03-14 06:00:19'), +(127, 12, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 18, 2, '2025-12-05 04:52:30', '2026-03-14 06:00:19'), +(128, 12, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 34, 2, '2025-12-05 18:52:30', '2026-03-14 06:00:19'), +(129, 13, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 12, 2, '2025-12-04 09:37:56', '2026-03-14 06:00:19'), +(130, 14, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 8, 2, '2025-12-09 06:32:48', '2026-03-14 06:00:19'), +(131, 15, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 38, 2, '2025-12-20 20:14:37', '2026-03-14 06:00:19'), +(132, 15, 'Stakeholder interviews revealed unanimous support for digital transformation initiative. Current state analysis shows significant opportunities for efficiency improvement and cost reduction through automation.', 14, 2, '2025-12-20 14:14:37', '2026-03-14 06:00:19'), +(133, 16, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 20, 2, '2026-01-04 04:32:05', '2026-03-14 06:00:19'), +(134, 16, 'Stakeholder interviews revealed unanimous support for digital transformation initiative. Current state analysis shows significant opportunities for efficiency improvement and cost reduction through automation.', 38, 2, '2026-01-08 15:32:05', '2026-03-14 06:00:19'), +(135, 17, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 22, 2, '2025-12-31 00:06:14', '2026-03-14 06:00:19'), +(136, 17, 'Technical architecture review completed successfully. Our platform integrates seamlessly with current systems while providing scalability for future growth and expansion.', 22, 2, '2026-01-04 10:06:14', '2026-03-14 06:00:19'), +(137, 18, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 33, 2, '2025-12-29 08:47:39', '2026-03-14 06:00:19'), +(138, 19, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 20, 2, '2026-01-06 00:30:05', '2026-03-14 06:00:19'), +(139, 19, 'Proposal review meeting scheduled with all stakeholders. Technical specifications and commercial terms will be discussed in detail for final evaluation.', 16, 2, '2026-01-18 18:30:05', '2026-03-14 06:00:19'), +(140, 20, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 32, 2, '2026-01-21 10:04:42', '2026-03-14 06:00:19'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `deal_emails` +-- + +CREATE TABLE `deal_emails` ( + `id` bigint(20) UNSIGNED NOT NULL, + `deal_id` bigint(20) UNSIGNED NOT NULL, + `to` varchar(255) NOT NULL, + `subject` varchar(255) NOT NULL, + `description` 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 `deal_emails` +-- + +INSERT INTO `deal_emails` (`id`, `deal_id`, `to`, `subject`, `description`, `created_at`, `updated_at`) VALUES +(1, 1, 'hazel.cox@gmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 1, 'hazel.cox@gmail.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 2, 'leo.ward@yahoo.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 3, 'violet.richardson@hotmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 3, 'violet.richardson@hotmail.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 4, 'ezra.butler@outlook.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 5, 'aurora.simmons@gmail.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 6, 'kai.foster@yahoo.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 11, 'paisley.griffin@gmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 11, 'paisley.griffin@gmail.com', 'Alternative Solutions', 'Although our enterprise solution might not align with your current needs, we have alternative options available.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 12, 'roman.diaz@hotmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 13, 'kinsley.hayes@outlook.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 13, 'kinsley.hayes@outlook.com', 'Alternative Solutions', 'Although our enterprise solution might not align with your current needs, we have alternative options available.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 14, 'declan.myers@gmail.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 15, 'nova.ford@yahoo.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 16, 'axel.hamilton@hotmail.com', 'Qualification Approved', 'Congratulations! Your qualification has been approved. Let us discuss the next steps in our process.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 1, 'hello@futuretech.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-17 00:49:20', '2026-03-14 00:17:52'), +(18, 1, 'maria.rodriguez@client.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-09-30 03:49:20', '2026-03-14 00:17:52'), +(19, 2, 'contact@smartsys.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-07 09:50:48', '2026-03-14 00:17:52'), +(20, 2, 'sarah.johnson@client.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-09-28 10:50:48', '2026-03-14 00:17:52'), +(21, 3, 'contact@innovcorp.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-11 12:45:08', '2026-03-14 00:17:52'), +(22, 3, 'sales@globalsol.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-10-06 01:45:08', '2026-03-14 00:17:52'), +(23, 4, 'michelle.hall@client.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-06 10:21:45', '2026-03-14 00:17:52'), +(24, 4, 'info@dynsol.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-10-13 01:21:45', '2026-03-14 00:17:52'), +(25, 5, 'info@xyzind.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-17 01:56:36', '2026-03-14 00:17:52'), +(26, 5, 'info@dynsol.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-18 17:56:36', '2026-03-14 00:17:52'), +(27, 6, 'hello@stratcon.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-31 10:57:14', '2026-03-14 00:17:52'), +(28, 6, 'sales@globalsol.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-11-03 06:57:14', '2026-03-14 00:17:52'), +(29, 7, 'sales@globalsol.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-23 19:37:11', '2026-03-14 00:17:52'), +(30, 7, 'maria.rodriguez@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-31 08:37:11', '2026-03-14 00:17:52'), +(31, 8, 'support@advsys.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-11 01:36:39', '2026-03-14 00:17:52'), +(32, 8, 'hello@techinno.com', 'Content Performance Report', 'Content performance report shows high engagement with our educational email series and webinar invitations.', '2025-11-12 07:36:39', '2026-03-14 00:17:52'), +(33, 9, 'sarah.johnson@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-07 00:03:03', '2026-03-14 00:17:52'), +(34, 10, 'lisa.anderson@client.com', 'Lead Qualification Update', 'Lead qualification process has identified 45 high-value prospects ready for sales engagement.', '2025-11-22 23:30:26', '2026-03-14 00:17:52'), +(35, 10, 'info@xyzind.com', 'Sales Handoff Preparation', 'Preparing qualified leads for sales handoff. All leads have been scored and prioritized based on fit criteria.', '2025-11-21 03:30:26', '2026-03-14 00:17:52'), +(36, 11, 'jessica.harris@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-11-28 09:22:06', '2026-03-14 00:17:52'), +(37, 11, 'michelle.hall@client.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-12-02 10:22:06', '2026-03-14 00:17:52'), +(38, 12, 'amanda.white@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-11-29 05:52:30', '2026-03-14 00:17:52'), +(39, 13, 'info@xyzind.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-02 10:37:56', '2026-03-14 00:17:52'), +(40, 14, 'contact@smartsys.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-14 21:32:48', '2026-03-14 00:17:52'), +(41, 14, 'nicole.young@client.com', 'Requirements Documentation', 'Requirements documentation has been prepared based on our detailed discussions with your team.', '2025-12-08 01:32:48', '2026-03-14 00:17:52'), +(42, 15, 'contact@smartsys.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-22 04:14:37', '2026-03-14 00:17:52'), +(43, 15, 'jessica.harris@client.com', 'Requirements Documentation', 'Requirements documentation has been prepared based on our detailed discussions with your team.', '2025-12-13 05:14:37', '2026-03-14 00:17:52'), +(44, 16, 'contact@innovcorp.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2026-01-01 00:32:05', '2026-03-14 00:17:52'), +(45, 17, 'lisa.anderson@client.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-27 14:06:14', '2026-03-14 00:17:52'), +(46, 17, 'support@primeserv.com', 'Technical Architecture Review', 'Technical architecture review completed. Our solution integrates seamlessly with your existing systems.', '2025-12-28 02:06:14', '2026-03-14 00:17:52'), +(47, 18, 'sales@qualsol.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2026-01-01 15:47:39', '2026-03-14 00:17:52'), +(48, 18, 'sarah.johnson@client.com', 'Technical Architecture Review', 'Technical architecture review completed. Our solution integrates seamlessly with your existing systems.', '2026-01-02 03:47:39', '2026-03-14 00:17:52'), +(49, 19, 'jennifer.martinez@client.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-14 02:30:05', '2026-03-14 00:17:52'), +(50, 20, 'nicole.young@client.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-16 08:04:42', '2026-03-14 00:17:52'), +(51, 1, 'jessica.harris@client.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-22 02:49:20', '2026-03-14 06:00:09'), +(52, 1, 'hello@techinno.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-09-22 17:49:20', '2026-03-14 06:00:09'), +(53, 2, 'sarah.johnson@client.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-29 13:50:48', '2026-03-14 06:00:09'), +(54, 3, 'hello@techinno.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-05 01:45:08', '2026-03-14 06:00:09'), +(55, 4, 'nicole.young@client.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-15 10:21:45', '2026-03-14 06:00:09'), +(56, 4, 'lisa.anderson@client.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-10-06 14:21:45', '2026-03-14 06:00:09'), +(57, 5, 'support@primeserv.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-24 02:56:36', '2026-03-14 06:00:09'), +(58, 5, 'info@xyzind.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-18 22:56:36', '2026-03-14 06:00:09'), +(59, 6, 'contact@innovcorp.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-23 21:57:14', '2026-03-14 06:00:09'), +(60, 7, 'jessica.harris@client.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-26 05:37:11', '2026-03-14 06:00:09'), +(61, 8, 'sarah.johnson@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-10-30 09:36:39', '2026-03-14 06:00:09'), +(62, 8, 'sales@qualsol.com', 'Content Performance Report', 'Content performance report shows high engagement with our educational email series and webinar invitations.', '2025-11-06 03:36:39', '2026-03-14 06:00:09'), +(63, 9, 'michelle.hall@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-05 12:03:03', '2026-03-14 06:00:09'), +(64, 9, 'contact@abccorp.com', 'Content Performance Report', 'Content performance report shows high engagement with our educational email series and webinar invitations.', '2025-11-11 20:03:03', '2026-03-14 06:00:09'), +(65, 10, 'support@advsys.com', 'Lead Qualification Update', 'Lead qualification process has identified 45 high-value prospects ready for sales engagement.', '2025-11-13 13:30:26', '2026-03-14 06:00:09'), +(66, 11, 'info@xyzind.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-11-24 16:22:06', '2026-03-14 06:00:09'), +(67, 11, 'amanda.white@client.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-11-29 17:22:06', '2026-03-14 06:00:09'), +(68, 12, 'support@primeserv.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-08 17:52:30', '2026-03-14 06:00:09'), +(69, 12, 'nicole.young@client.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-12-05 14:52:30', '2026-03-14 06:00:09'), +(70, 13, 'lisa.anderson@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-05 08:37:56', '2026-03-14 06:00:09'), +(71, 14, 'admin@eliteent.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-14 09:32:48', '2026-03-14 06:00:09'), +(72, 14, 'contact@relpart.com', 'Requirements Documentation', 'Requirements documentation has been prepared based on our detailed discussions with your team.', '2025-12-10 05:32:48', '2026-03-14 06:00:09'), +(73, 15, 'admin@eliteent.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-16 13:14:37', '2026-03-14 06:00:09'), +(74, 16, 'jessica.harris@client.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-22 23:32:05', '2026-03-14 06:00:09'), +(75, 17, 'info@dynsol.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-30 21:06:14', '2026-03-14 06:00:09'), +(76, 18, 'contact@smartsys.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-25 15:47:39', '2026-03-14 06:00:09'), +(77, 19, 'support@advsys.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-07 16:30:05', '2026-03-14 06:00:09'), +(78, 19, 'contact@relpart.com', 'Proposal Review Meeting', 'Proposal review meeting scheduled for next week to discuss terms, pricing, and implementation approach.', '2026-01-09 04:30:05', '2026-03-14 06:00:09'), +(79, 20, 'admin@eliteent.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-06 09:04:42', '2026-03-14 06:00:09'), +(80, 1, 'sales@globalsol.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-17 15:49:20', '2026-03-14 06:00:09'), +(81, 2, 'sales@globalsol.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-05 22:50:48', '2026-03-14 06:00:09'), +(82, 3, 'support@advsys.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-08 19:45:08', '2026-03-14 06:00:09'), +(83, 4, 'hello@stratcon.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-14 10:21:45', '2026-03-14 06:00:09'), +(84, 5, 'contact@innovcorp.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-20 11:56:36', '2026-03-14 06:00:09'), +(85, 5, 'ashley.lewis@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-16 09:56:36', '2026-03-14 06:00:09'), +(86, 6, 'emily.davis@client.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-28 18:57:14', '2026-03-14 06:00:09'), +(87, 6, 'emily.davis@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-31 22:57:14', '2026-03-14 06:00:09'), +(88, 7, 'sarah.johnson@client.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-26 08:37:11', '2026-03-14 06:00:09'), +(89, 7, 'lisa.anderson@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-11-01 06:37:11', '2026-03-14 06:00:09'), +(90, 8, 'amanda.white@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-10-30 15:36:39', '2026-03-14 06:00:09'), +(91, 9, 'contact@innovcorp.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-15 01:03:03', '2026-03-14 06:00:09'), +(92, 10, 'hello@futuretech.com', 'Lead Qualification Update', 'Lead qualification process has identified 45 high-value prospects ready for sales engagement.', '2025-11-15 19:30:26', '2026-03-14 06:00:09'), +(93, 11, 'support@primeserv.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-02 07:22:06', '2026-03-14 06:00:09'), +(94, 11, 'emily.davis@client.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-11-25 07:22:06', '2026-03-14 06:00:09'), +(95, 12, 'info@dynsol.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-11-29 17:52:30', '2026-03-14 06:00:09'), +(96, 12, 'lisa.anderson@client.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-12-08 21:52:30', '2026-03-14 06:00:09'), +(97, 13, 'nicole.young@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-10 03:37:56', '2026-03-14 06:00:09'), +(98, 13, 'contact@abccorp.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-12-03 20:37:56', '2026-03-14 06:00:09'), +(99, 14, 'support@advsys.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-05 12:32:48', '2026-03-14 06:00:09'), +(100, 14, 'contact@innovcorp.com', 'Requirements Documentation', 'Requirements documentation has been prepared based on our detailed discussions with your team.', '2025-12-07 23:32:48', '2026-03-14 06:00:09'), +(101, 15, 'contact@innovcorp.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-14 18:14:37', '2026-03-14 06:00:09'), +(102, 16, 'hello@stratcon.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-31 10:32:05', '2026-03-14 06:00:09'), +(103, 17, 'contact@smartsys.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-24 11:06:14', '2026-03-14 06:00:09'), +(104, 17, 'support@primeserv.com', 'Technical Architecture Review', 'Technical architecture review completed. Our solution integrates seamlessly with your existing systems.', '2025-12-25 17:06:14', '2026-03-14 06:00:09'), +(105, 18, 'contact@relpart.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-27 05:47:39', '2026-03-14 06:00:09'), +(106, 18, 'hello@techinno.com', 'Technical Architecture Review', 'Technical architecture review completed. Our solution integrates seamlessly with your existing systems.', '2025-12-31 06:47:39', '2026-03-14 06:00:09'), +(107, 19, 'info@xyzind.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-13 00:30:05', '2026-03-14 06:00:09'), +(108, 19, 'admin@eliteent.com', 'Proposal Review Meeting', 'Proposal review meeting scheduled for next week to discuss terms, pricing, and implementation approach.', '2026-01-12 20:30:05', '2026-03-14 06:00:09'), +(109, 20, 'info@proserv.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-09 19:04:42', '2026-03-14 06:00:09'), +(110, 20, 'jennifer.martinez@client.com', 'Proposal Review Meeting', 'Proposal review meeting scheduled for next week to discuss terms, pricing, and implementation approach.', '2026-01-14 07:04:42', '2026-03-14 06:00:09'), +(111, 1, 'info@dynsol.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-25 00:49:20', '2026-03-14 06:00:19'), +(112, 2, 'contact@abccorp.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-28 18:50:48', '2026-03-14 06:00:19'), +(113, 3, 'emily.davis@client.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-06 05:45:08', '2026-03-14 06:00:19'), +(114, 4, 'contact@relpart.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-16 21:21:45', '2026-03-14 06:00:19'), +(115, 4, 'contact@innovcorp.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-10-13 12:21:45', '2026-03-14 06:00:19'), +(116, 5, 'amanda.white@client.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-12 21:56:36', '2026-03-14 06:00:19'), +(117, 5, 'michelle.hall@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-15 00:56:36', '2026-03-14 06:00:19'), +(118, 6, 'michelle.hall@client.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-23 14:57:14', '2026-03-14 06:00:19'), +(119, 7, 'admin@eliteent.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-29 12:37:11', '2026-03-14 06:00:19'), +(120, 7, 'maria.rodriguez@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-28 09:37:11', '2026-03-14 06:00:19'), +(121, 8, 'jennifer.martinez@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-05 00:36:39', '2026-03-14 06:00:19'), +(122, 9, 'lisa.anderson@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-07 05:03:03', '2026-03-14 06:00:19'), +(123, 9, 'contact@smartsys.com', 'Content Performance Report', 'Content performance report shows high engagement with our educational email series and webinar invitations.', '2025-11-05 01:03:03', '2026-03-14 06:00:19'), +(124, 10, 'sarah.johnson@client.com', 'Lead Qualification Update', 'Lead qualification process has identified 45 high-value prospects ready for sales engagement.', '2025-11-15 07:30:26', '2026-03-14 06:00:19'), +(125, 11, 'hello@futuretech.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-11-30 02:22:06', '2026-03-14 06:00:19'), +(126, 11, 'hello@techinno.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-11-27 21:22:06', '2026-03-14 06:00:19'), +(127, 12, 'jessica.harris@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-01 21:52:30', '2026-03-14 06:00:19'), +(128, 13, 'michelle.hall@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-11 06:37:56', '2026-03-14 06:00:19'), +(129, 14, 'emily.davis@client.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-10 19:32:48', '2026-03-14 06:00:19'), +(130, 15, 'lisa.anderson@client.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-26 06:14:37', '2026-03-14 06:00:19'), +(131, 15, 'sales@globalsol.com', 'Requirements Documentation', 'Requirements documentation has been prepared based on our detailed discussions with your team.', '2025-12-17 21:14:37', '2026-03-14 06:00:19'), +(132, 16, 'support@primeserv.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-30 09:32:05', '2026-03-14 06:00:19'), +(133, 17, 'michelle.hall@client.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-25 07:06:14', '2026-03-14 06:00:19'), +(134, 18, 'support@advsys.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-26 05:47:39', '2026-03-14 06:00:19'), +(135, 19, 'emily.davis@client.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2025-12-31 22:30:05', '2026-03-14 06:00:19'), +(136, 20, 'nicole.young@client.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-14 21:04:42', '2026-03-14 06:00:19'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `deal_files` +-- + +CREATE TABLE `deal_files` ( + `id` bigint(20) UNSIGNED NOT NULL, + `deal_id` bigint(20) UNSIGNED NOT NULL, + `file_name` varchar(255) NOT NULL, + `file_path` varchar(255) 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 `deal_files` +-- + +INSERT INTO `deal_files` (`id`, `deal_id`, `file_name`, `file_path`, `created_at`, `updated_at`) VALUES +(1, 1, 'Training_Requirements_Lead_File.pdf', 'Training_Requirements_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 1, 'Training Requirements_Lead_File.jpg', 'Training Requirements_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 2, 'Budget_Evaluation_Lead_File.docx', 'Budget_Evaluation_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 3, 'Integration_Assessment_Lead_File.jpg', 'Integration_Assessment_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 4, 'ROI_Assessment_Lead_File.pdf', 'ROI_Assessment_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 4, 'ROI_Assessment_Lead_File.jpg', 'ROI_Assessment_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 5, 'Procurement_Review_Lead_File.docx', 'Procurement_Review_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 6, 'Quality_Control_System_Lead_File.png', 'Quality_Control_System_Lead_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 6, 'Quality_Control_System_Lead_File.docx', 'Quality_Control_System_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 11, 'E_commerce_Solution_Purchase_Lead_File.png', 'E_commerce_Solution_Purchase_Lead_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 12, 'Multi_Year_Contract_Lead_File.pdf', 'Multi_Year_Contract_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 12, 'Multi_Year_Contract_Lead_File.docx', 'Multi_Year_Contract_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 13, 'Payment_Processing_Deal_Lead_File.pdf', 'Payment_Processing_Deal_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 13, 'Payment_Processing_Deal_Lead_File.jpg', 'Payment_Processing_Deal_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 14, 'Payment_Processing_Deal_Lead_File.pdf', 'Payment_Processing_Deal_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 14, 'Payment_Processing_Deal_Lead_File.jpg', 'Payment_Processing_Deal_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 15, 'Healthcare_Software_License_Lead_File.docx', 'Healthcare_Software_License_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 16, 'Corporate_License_Agreement_Lead_File.png', 'Corporate_License_Agreement_Lead_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 1, 'Technology_Roadmap_Planning_Deal_File.docx', 'Technology_Roadmap_Planning_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 2, 'Procurement_Process_Review_Deal_File.docx', 'Procurement_Process_Review_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 3, 'Security_Evaluation_Services_Deal_File.docx', 'Security_Evaluation_Services_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 4, 'Budget_Planning_Services_Deal_File.docx', 'Budget_Planning_Services_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 5, 'Vendor_Selection_Consulting_Deal_File.jpg', 'Vendor_Selection_Consulting_Deal_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 5, 'Vendor_Selection_Consulting_Deal_File.pdf', 'Vendor_Selection_Consulting_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 6, 'Technology_Roadmap_Planning_Deal_File.docx', 'Technology_Roadmap_Planning_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 7, 'Technology_Roadmap_Planning_Deal_File.docx', 'Technology_Roadmap_Planning_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 8, 'Digital_Transformation_Assessment_Deal_File.jpg', 'Digital_Transformation_Assessment_Deal_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 9, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(29, 10, 'Procurement_Process_Review_Deal_File.docx', 'Procurement_Process_Review_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(30, 11, 'Asset_Tracking_System_Deal_File.pdf', 'Asset_Tracking_System_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(31, 12, 'Compliance_Management_System_Deal_File.pdf', 'Compliance_Management_System_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(32, 13, 'Cloud_Migration_Services_Package_Deal_File.png', 'Cloud_Migration_Services_Package_Deal_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(33, 14, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(34, 15, 'Strategic_Consulting_Services_Deal_File.docx', 'Strategic_Consulting_Services_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(35, 16, 'Compliance_Management_System_Deal_File.pdf', 'Compliance_Management_System_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(36, 17, 'Communication_Platform_Upgrade_Deal_File.docx', 'Communication_Platform_Upgrade_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(37, 18, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(38, 19, 'Compliance_Management_System_Deal_File.pdf', 'Compliance_Management_System_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(39, 20, 'E_commerce_Platform_Upgrade_Deal_File.pdf', 'E_commerce_Platform_Upgrade_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(40, 1, 'Security_Evaluation_Services_Deal_File.docx', 'Security_Evaluation_Services_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(41, 2, 'Business_Intelligence_Review_Deal_File.jpg', 'Business_Intelligence_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(42, 3, 'Compliance_Framework_Review_Deal_File.jpg', 'Compliance_Framework_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(43, 4, 'Vendor_Selection_Consulting_Deal_File.jpg', 'Vendor_Selection_Consulting_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(44, 4, 'Vendor_Selection_Consulting_Deal_File.pdf', 'Vendor_Selection_Consulting_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(45, 5, 'ROI_Assessment_Consulting_Deal_File.pdf', 'ROI_Assessment_Consulting_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(46, 5, 'ROI_Assessment_Consulting_Deal_File.jpg', 'ROI_Assessment_Consulting_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(47, 6, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(48, 7, 'Change_Impact_Analysis_Deal_File.png', 'Change_Impact_Analysis_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(49, 8, 'Digital_Transformation_Assessment_Deal_File.jpg', 'Digital_Transformation_Assessment_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(50, 9, 'Enterprise_Assessment_Consulting_Deal_File.png', 'Enterprise_Assessment_Consulting_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(51, 10, 'Capacity_Assessment_Services_Deal_File.jpg', 'Capacity_Assessment_Services_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(52, 10, 'Capacity_Assessment_Services_Deal_File.pdf', 'Capacity_Assessment_Services_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(53, 11, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(54, 12, 'Financial_Reporting_Dashboard_Deal_File.png', 'Financial_Reporting_Dashboard_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(55, 13, 'Strategic_Consulting_Services_Deal_File.docx', 'Strategic_Consulting_Services_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(56, 14, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(57, 15, 'Communication_Platform_Upgrade_Deal_File.docx', 'Communication_Platform_Upgrade_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(58, 16, 'Workflow_Automation_System_Deal_File.png', 'Workflow_Automation_System_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(59, 16, 'Workflow_Automation_System_Deal_File.jpg', 'Workflow_Automation_System_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(60, 17, 'Annual_Software_License_Renewal_Deal_File.png', 'Annual_Software_License_Renewal_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(61, 17, 'Annual_Software_License_Renewal_Deal_File.pdf', 'Annual_Software_License_Renewal_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(62, 18, 'Business_Process_Automation_Deal_File.pdf', 'Business_Process_Automation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(63, 19, 'Customer_Portal_Development_Deal_File.docx', 'Customer_Portal_Development_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(64, 20, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(65, 1, 'Compliance_Framework_Review_Deal_File.jpg', 'Compliance_Framework_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(66, 2, 'System_Integration_Evaluation_Deal_File.png', 'System_Integration_Evaluation_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(67, 2, 'System_Integration_Evaluation_Deal_File.pdf', 'System_Integration_Evaluation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(68, 3, 'Technology_Roadmap_Planning_Deal_File.docx', 'Technology_Roadmap_Planning_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(69, 4, 'Capacity_Assessment_Services_Deal_File.jpg', 'Capacity_Assessment_Services_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(70, 4, 'Capacity_Assessment_Services_Deal_File.pdf', 'Capacity_Assessment_Services_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(71, 5, 'Business_Intelligence_Review_Deal_File.jpg', 'Business_Intelligence_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(72, 6, 'Compliance_Framework_Review_Deal_File.jpg', 'Compliance_Framework_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(73, 7, 'Procurement_Process_Review_Deal_File.docx', 'Procurement_Process_Review_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(74, 8, 'Business_Intelligence_Review_Deal_File.jpg', 'Business_Intelligence_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(75, 9, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(76, 10, 'Compliance_Framework_Review_Deal_File.jpg', 'Compliance_Framework_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(77, 11, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(78, 12, 'E_commerce_Platform_Upgrade_Deal_File.pdf', 'E_commerce_Platform_Upgrade_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(79, 13, 'Custom_ERP_Solution_Development_Deal_File.docx', 'Custom_ERP_Solution_Development_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(80, 14, 'Workflow_Automation_System_Deal_File.png', 'Workflow_Automation_System_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(81, 14, 'Workflow_Automation_System_Deal_File.jpg', 'Workflow_Automation_System_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(82, 15, 'Compliance_Management_System_Deal_File.pdf', 'Compliance_Management_System_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(83, 16, 'Mobile_Application_Development_Deal_File.png', 'Mobile_Application_Development_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(84, 16, 'Mobile_Application_Development_Deal_File.docx', 'Mobile_Application_Development_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(85, 17, 'Financial_Reporting_Dashboard_Deal_File.png', 'Financial_Reporting_Dashboard_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(86, 18, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(87, 19, 'Strategic_Consulting_Services_Deal_File.docx', 'Strategic_Consulting_Services_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(88, 20, 'Custom_ERP_Solution_Development_Deal_File.docx', 'Custom_ERP_Solution_Development_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(89, 1, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(90, 2, 'Capacity_Assessment_Services_Deal_File.jpg', 'Capacity_Assessment_Services_Deal_File.jpg', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(91, 2, 'Capacity_Assessment_Services_Deal_File.pdf', 'Capacity_Assessment_Services_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(92, 3, 'Digital_Transformation_Assessment_Deal_File.jpg', 'Digital_Transformation_Assessment_Deal_File.jpg', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(93, 4, 'Business_Intelligence_Review_Deal_File.jpg', 'Business_Intelligence_Review_Deal_File.jpg', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(94, 5, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(95, 6, 'Technology_Roadmap_Planning_Deal_File.docx', 'Technology_Roadmap_Planning_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(96, 7, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(97, 8, 'Training_Needs_Assessment_Deal_File.pdf', 'Training_Needs_Assessment_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(98, 9, 'Procurement_Process_Review_Deal_File.docx', 'Procurement_Process_Review_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(99, 10, 'Requirements_Analysis_Services_Deal_File.pdf', 'Requirements_Analysis_Services_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(100, 11, 'Custom_ERP_Solution_Development_Deal_File.docx', 'Custom_ERP_Solution_Development_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(101, 12, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(102, 13, 'Workflow_Automation_System_Deal_File.png', 'Workflow_Automation_System_Deal_File.png', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(103, 13, 'Workflow_Automation_System_Deal_File.jpg', 'Workflow_Automation_System_Deal_File.jpg', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(104, 14, 'Customer_Portal_Development_Deal_File.docx', 'Customer_Portal_Development_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(105, 15, 'Business_Process_Automation_Deal_File.pdf', 'Business_Process_Automation_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(106, 16, 'Asset_Tracking_System_Deal_File.pdf', 'Asset_Tracking_System_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(107, 17, 'Digital_Transformation_Initiative_Deal_File.png', 'Digital_Transformation_Initiative_Deal_File.png', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(108, 17, 'Digital_Transformation_Initiative_Deal_File.pdf', 'Digital_Transformation_Initiative_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(109, 18, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(110, 19, 'Mobile_Application_Development_Deal_File.png', 'Mobile_Application_Development_Deal_File.png', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(111, 19, 'Mobile_Application_Development_Deal_File.docx', 'Mobile_Application_Development_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(112, 20, 'Custom_ERP_Solution_Development_Deal_File.docx', 'Custom_ERP_Solution_Development_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `deal_stages` +-- + +CREATE TABLE `deal_stages` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `order` int(11) DEFAULT NULL, + `pipeline_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `deal_stages` +-- + +INSERT INTO `deal_stages` (`id`, `name`, `order`, `pipeline_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Campaign Launch', 1, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 'Lead Generation', 2, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 'Nurturing', 3, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 'Qualification', 4, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 'Handoff', 5, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 'Initial Contact', 1, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 'Needs Assessment', 2, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 'Solution Fit', 3, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 'Proposal Sent', 4, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 'Decision', 5, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 'Meeting', 3, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'), +(12, 'Proposal', 4, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'), +(13, 'Close', 5, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `deal_tasks` +-- + +CREATE TABLE `deal_tasks` ( + `id` bigint(20) UNSIGNED NOT NULL, + `deal_id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `date` date NOT NULL, + `time` time NOT NULL, + `priority` varchar(255) NOT NULL, + `status` varchar(255) NOT NULL, + `created_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) 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 `deal_tasks` +-- + +INSERT INTO `deal_tasks` (`id`, `deal_id`, `name`, `date`, `time`, `priority`, `status`, `created_by`, `creator_id`, `created_at`, `updated_at`) VALUES +(1, 1, 'Initial contact call with prospect', '2025-09-22', '15:52:35', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 2, 'Send introduction email and company overview', '2025-10-14', '05:23:53', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 2, 'Schedule discovery meeting appointment', '2025-10-15', '14:06:31', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 2, 'Research prospect business requirements thoroughly', '2025-10-15', '09:56:36', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 3, 'Prepare customized presentation materials', '2025-11-09', '18:00:17', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 3, 'Conduct needs assessment interview', '2025-11-09', '07:54:52', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 3, 'Send detailed proposal document', '2025-11-11', '22:36:46', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 4, 'Follow up on proposal feedback', '2025-12-17', '15:21:05', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 5, 'Schedule product demonstration session', '2026-01-10', '22:27:39', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 5, 'Prepare technical specifications document', '2026-01-11', '23:31:30', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 5, 'Conduct stakeholder presentation meeting', '2026-01-13', '06:16:08', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 6, 'Send pricing quotation details', '2026-01-25', '13:21:09', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 11, 'Schedule contract signing appointment', '2026-03-10', '10:36:13', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 11, 'Prepare onboarding documentation package', '2026-03-11', '15:42:18', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 11, 'Conduct project kickoff meeting', '2026-03-13', '22:55:15', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 12, 'Send welcome and next steps', '2026-03-12', '08:29:44', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 12, 'Schedule implementation planning session', '2026-03-13', '00:20:28', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 12, 'Prepare project timeline document', '2026-03-14', '00:18:55', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 13, 'Conduct team introduction meeting', '2026-03-16', '15:37:59', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 13, 'Send training materials package', '2026-03-18', '03:00:20', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 14, 'Schedule training session appointment', '2026-03-19', '07:49:23', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 14, 'Follow up on training completion', '2026-03-21', '20:01:18', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 14, 'Schedule go-live planning meeting', '2026-03-22', '09:42:35', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 15, 'Prepare go-live checklist document', '2026-03-20', '13:47:27', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 15, 'Conduct system testing session', '2026-03-22', '16:54:56', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 16, 'Send testing results summary', '2026-03-23', '23:09:34', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 16, 'Schedule final approval meeting', '2026-03-25', '16:04:37', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `debit_notes` +-- + +CREATE TABLE `debit_notes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `debit_note_number` varchar(255) NOT NULL, + `debit_note_date` date NOT NULL, + `vendor_id` bigint(20) UNSIGNED NOT NULL, + `invoice_id` bigint(20) UNSIGNED DEFAULT NULL, + `return_id` bigint(20) UNSIGNED DEFAULT NULL, + `reason` varchar(255) NOT NULL, + `status` enum('draft','approved','partial','applied') NOT NULL DEFAULT 'draft', + `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `applied_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `balance_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `notes` text DEFAULT NULL, + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED 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 `debit_note_applications` +-- + +CREATE TABLE `debit_note_applications` ( + `id` bigint(20) UNSIGNED NOT NULL, + `debit_note_id` bigint(20) UNSIGNED NOT NULL, + `payment_id` bigint(20) UNSIGNED DEFAULT NULL, + `applied_amount` decimal(15,2) NOT NULL, + `application_date` date NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED 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 `debit_note_items` +-- + +CREATE TABLE `debit_note_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `debit_note_id` bigint(20) UNSIGNED NOT NULL, + `product_id` bigint(20) UNSIGNED NOT NULL, + `quantity` decimal(15,2) NOT NULL, + `unit_price` decimal(15,2) NOT NULL, + `discount_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,2) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED 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 `debit_note_item_taxes` +-- + +CREATE TABLE `debit_note_item_taxes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` bigint(20) UNSIGNED NOT NULL, + `tax_name` varchar(255) NOT NULL, + `tax_rate` decimal(5,2) 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 `deductions` +-- + +CREATE TABLE `deductions` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `deduction_type_id` bigint(20) UNSIGNED NOT NULL, + `type` enum('fixed','percentage') NOT NULL, + `amount` decimal(10,2) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `deductions` +-- + +INSERT INTO `deductions` (`id`, `employee_id`, `deduction_type_id`, `type`, `amount`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 18, 7, 'percentage', 6.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 18, 1, 'fixed', 200.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 18, 10, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 18, 9, 'fixed', 150.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 12, 5, 'percentage', 10.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 12, 8, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 12, 3, 'fixed', 350.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 12, 6, 'fixed', 150.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 14, 8, 'percentage', 6.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 14, 5, 'percentage', 7.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 14, 4, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 14, 7, 'fixed', 200.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 20, 6, 'fixed', 300.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 20, 7, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 20, 4, 'percentage', 3.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 20, 2, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 16, 8, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 16, 9, 'fixed', 100.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 16, 6, 'percentage', 5.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 16, 3, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 26, 5, 'fixed', 150.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 26, 2, 'percentage', 5.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 26, 7, 'fixed', 200.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 26, 10, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 24, 5, 'percentage', 7.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 24, 7, 'fixed', 250.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 24, 10, 'percentage', 7.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 24, 1, 'fixed', 350.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(29, 8, 1, 'fixed', 150.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(30, 8, 2, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(31, 8, 5, 'fixed', 300.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(32, 8, 9, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(33, 22, 9, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(34, 22, 2, 'percentage', 6.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(35, 22, 6, 'percentage', 7.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(36, 22, 5, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(37, 10, 5, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(38, 10, 1, 'fixed', 400.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(39, 10, 2, 'percentage', 5.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(40, 10, 4, 'percentage', 6.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `deduction_types` +-- + +CREATE TABLE `deduction_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `description` longtext DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `deduction_types` +-- + +INSERT INTO `deduction_types` (`id`, `name`, `description`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Income Tax', 'Tax deducted at source from employee salary as per government regulations.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(2, 'Provident Fund (PF)', 'Employee contribution to provident fund for retirement savings.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(3, 'Employee State Insurance (ESI)', 'Medical insurance contribution deducted from employee salary.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(4, 'Professional Tax', 'State government tax deducted from employee salary.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(5, 'Loan Deduction', 'Monthly installment deduction for employee loans and advances.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(6, 'Late Coming Fine', 'Penalty deduction for late attendance and tardiness.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(7, 'Absence Deduction', 'Salary deduction for unauthorized leaves and absences.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(8, 'Canteen Charges', 'Deduction for employee meal expenses and canteen services.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(9, 'Insurance Premium', 'Employee contribution for health and life insurance premiums.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(10, 'Uniform Charges', 'Deduction for company uniform and safety equipment costs.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `departments` +-- + +CREATE TABLE `departments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `department_name` varchar(255) NOT NULL, + `branch_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `departments` +-- + +INSERT INTO `departments` (`id`, `department_name`, `branch_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Sales & Marketing', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Operations', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'Customer Service', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Research & Development', 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'Quality Assurance', 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 'Legal & Compliance', 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 'Administration', 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 'Production', 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 'Procurement', 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 'Human Resources', 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, 'Information Technology', 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, 'Finance & Accounting', 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(13, 'Sales & Marketing', 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 'Operations', 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, 'Customer Service', 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(16, 'Research & Development', 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(17, 'Quality Assurance', 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(18, 'Legal & Compliance', 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(19, 'Administration', 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(20, 'Production', 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(21, 'Procurement', 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(22, 'Human Resources', 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(23, 'Information Technology', 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(24, 'Finance & Accounting', 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(25, 'Sales & Marketing', 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(26, 'Operations', 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(27, 'Customer Service', 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(28, 'Research & Development', 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(29, 'Quality Assurance', 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(30, 'Legal & Compliance', 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(33, 'Head Office', NULL, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(34, 'Operations', NULL, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `designations` +-- + +CREATE TABLE `designations` ( + `id` bigint(20) UNSIGNED NOT NULL, + `designation_name` varchar(255) NOT NULL, + `branch_id` bigint(20) UNSIGNED DEFAULT NULL, + `department_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `designations` +-- + +INSERT INTO `designations` (`id`, `designation_name`, `branch_id`, `department_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Executive', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Senior Analyst', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'Analyst', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Specialist', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'Coordinator', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 'Supervisor', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 'Officer', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 'Associate', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 'Senior Associate', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 'Junior Executive', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, 'Senior Consultant', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, 'Consultant', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(13, 'Administrator', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 'Senior Administrator', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, 'Assistant', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(16, 'Director', 2, 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(17, 'Manager', 2, 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(18, 'Assistant Manager', 2, 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(19, 'Team Lead', 2, 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(20, 'Executive', 2, 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(21, 'Senior Analyst', 2, 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(22, 'Analyst', 2, 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(23, 'Specialist', 2, 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(24, 'Supervisor', 2, 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(25, 'Officer', 2, 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(26, 'Associate', 2, 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(27, 'Senior Associate', 2, 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(28, 'Junior Executive', 2, 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(29, 'Senior Consultant', 3, 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(30, 'Consultant', 3, 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(31, 'Administrator', 3, 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(32, 'Senior Administrator', 3, 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(33, 'Director', 3, 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(34, 'Manager', 3, 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(35, 'Assistant Manager', 3, 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(36, 'Team Lead', 3, 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(37, 'Senior Executive', 3, 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(38, 'Executive', 3, 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(39, 'Senior Analyst', 3, 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(40, 'Analyst', 3, 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(41, 'Specialist', 3, 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(42, 'Supervisor', 4, 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(43, 'Officer', 4, 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(44, 'Associate', 4, 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(45, 'Senior Associate', 4, 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(46, 'Junior Executive', 4, 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(47, 'Senior Consultant', 4, 11, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(48, 'Consultant', 4, 11, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(49, 'Administrator', 4, 11, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(50, 'Senior Administrator', 4, 11, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(51, 'Assistant', 4, 11, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(52, 'Director', 4, 12, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(53, 'Manager', 4, 12, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(54, 'Assistant Manager', 4, 12, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(55, 'Team Lead', 4, 12, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(56, 'Senior Executive', 4, 12, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(57, 'Executive', 5, 13, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(58, 'Senior Analyst', 5, 13, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(59, 'Analyst', 5, 13, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(60, 'Specialist', 5, 13, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(61, 'Supervisor', 5, 14, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(62, 'Officer', 5, 14, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(63, 'Associate', 5, 14, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(64, 'Senior Associate', 5, 14, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(65, 'Senior Consultant', 5, 15, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(66, 'Consultant', 5, 15, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(67, 'Administrator', 5, 15, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(68, 'Senior Administrator', 5, 15, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(69, 'Director', 6, 16, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(70, 'Manager', 6, 16, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(71, 'Assistant Manager', 6, 16, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(72, 'Team Lead', 6, 16, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(73, 'Executive', 6, 17, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(74, 'Senior Analyst', 6, 17, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(75, 'Analyst', 6, 17, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(76, 'Specialist', 6, 17, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(77, 'Supervisor', 6, 18, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(78, 'Officer', 6, 18, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(79, 'Associate', 6, 18, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(80, 'Senior Associate', 6, 18, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(81, 'Senior Consultant', 7, 19, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(82, 'Consultant', 7, 19, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(83, 'Administrator', 7, 19, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(84, 'Senior Administrator', 7, 19, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(85, 'Director', 7, 20, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(86, 'Manager', 7, 20, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(87, 'Assistant Manager', 7, 20, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(88, 'Team Lead', 7, 20, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(89, 'Senior Executive', 7, 20, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(90, 'Executive', 7, 21, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(91, 'Senior Analyst', 7, 21, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(92, 'Analyst', 7, 21, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(93, 'Specialist', 7, 21, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(94, 'Supervisor', 8, 22, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(95, 'Officer', 8, 22, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(96, 'Associate', 8, 22, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(97, 'Senior Associate', 8, 22, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(98, 'Junior Executive', 8, 22, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(99, 'Senior Consultant', 8, 23, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(100, 'Consultant', 8, 23, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(101, 'Administrator', 8, 23, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(102, 'Senior Administrator', 8, 23, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(103, 'Director', 8, 24, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(104, 'Manager', 8, 24, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(105, 'Assistant Manager', 8, 24, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(106, 'Team Lead', 8, 24, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(107, 'Senior Executive', 8, 24, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(108, 'Executive', 9, 25, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(109, 'Senior Analyst', 9, 25, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(110, 'Analyst', 9, 25, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(111, 'Specialist', 9, 25, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(112, 'Coordinator', 9, 25, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(113, 'Supervisor', 9, 26, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(114, 'Officer', 9, 26, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(115, 'Associate', 9, 26, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(116, 'Senior Associate', 9, 26, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(117, 'Junior Executive', 9, 26, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(118, 'Senior Consultant', 9, 27, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(119, 'Consultant', 9, 27, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(120, 'Administrator', 9, 27, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(121, 'Senior Administrator', 9, 27, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(122, 'Assistant', 9, 27, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(123, 'Director', 10, 28, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(124, 'Manager', 10, 28, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(125, 'Assistant Manager', 10, 28, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(126, 'Team Lead', 10, 28, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(127, 'Senior Executive', 10, 28, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(128, 'Executive', 10, 29, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(129, 'Senior Analyst', 10, 29, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(130, 'Analyst', 10, 29, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(131, 'Specialist', 10, 29, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(132, 'Coordinator', 10, 29, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(133, 'Supervisor', 10, 30, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(134, 'Officer', 10, 30, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(135, 'Associate', 10, 30, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(136, 'Senior Associate', 10, 30, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(145, 'Head of Operations', NULL, 33, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(146, 'Restaurant Manager', NULL, 34, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(147, 'Assistant Restaurant Manager', NULL, 34, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(148, 'Restaurant Supervisor', NULL, 34, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(149, 'Kitchen Staff', NULL, 34, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(150, 'Dining Staff', NULL, 34, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(151, 'Graphic Artist', NULL, 33, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(152, 'Cashier', NULL, 33, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `document` +-- + +CREATE TABLE `document` ( + `id` bigint(20) UNSIGNED NOT NULL, + `subject` varchar(255) DEFAULT NULL, + `user_id` int(11) NOT NULL, + `project_id` int(11) DEFAULT NULL, + `type` int(11) NOT NULL, + `notes` varchar(255) DEFAULT NULL, + `status` varchar(255) NOT NULL DEFAULT 'pending', + `description` longtext DEFAULT NULL, + `additional_description` longtext DEFAULT NULL, + `slug` varchar(255) NOT NULL DEFAULT 'document', + `document_id` int(11) NOT NULL DEFAULT 0, + `template_id` int(11) NOT NULL DEFAULT 0, + `workspace_id` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `documents_types` +-- + +CREATE TABLE `documents_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `workspace_id` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `document_attechments` +-- + +CREATE TABLE `document_attechments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `document_id` bigint(20) UNSIGNED NOT NULL, + `user_id` varchar(255) NOT NULL, + `files` varchar(255) NOT NULL, + `workspace_id` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `document_categories` +-- + +CREATE TABLE `document_categories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `document_type` varchar(255) NOT NULL, + `status` tinyint(1) NOT NULL DEFAULT 1, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `document_categories` +-- + +INSERT INTO `document_categories` (`id`, `document_type`, `status`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Identity Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(2, 'Educational Certificates', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(3, 'Employment Records', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(4, 'Medical Records', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(5, 'Financial Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(6, 'Legal Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(7, 'Insurance Papers', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(8, 'Tax Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(9, 'Property Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(10, 'Vehicle Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(11, 'Travel Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(12, 'Professional Licenses', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(13, 'Training Certificates', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(14, 'Performance Reviews', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(15, 'Contract Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `document_comments` +-- + +CREATE TABLE `document_comments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `document_id` bigint(20) UNSIGNED NOT NULL, + `user_id` varchar(255) NOT NULL, + `comment` longtext NOT NULL, + `workspace_id` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `document_notes` +-- + +CREATE TABLE `document_notes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `document_id` bigint(20) UNSIGNED NOT NULL, + `user_id` varchar(255) NOT NULL, + `note` longtext NOT NULL, + `workspace_id` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `drivers` +-- + +CREATE TABLE `drivers` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` int(11) NOT NULL, + `select_driver_type` varchar(255) DEFAULT NULL, + `password` varchar(255) DEFAULT NULL, + `name` varchar(255) DEFAULT NULL, + `email` varchar(255) DEFAULT NULL, + `phone` varchar(255) DEFAULT NULL, + `lincese_number` varchar(255) DEFAULT NULL, + `lincese_type` int(11) DEFAULT NULL, + `expiry_date` date DEFAULT NULL, + `join_date` date DEFAULT NULL, + `address` varchar(255) DEFAULT NULL, + `dob` date DEFAULT NULL, + `Working_time` varchar(255) DEFAULT NULL, + `driver_status` varchar(255) DEFAULT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `driver_attechments` +-- + +CREATE TABLE `driver_attechments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `driver_id` varchar(255) NOT NULL, + `file_name` varchar(255) NOT NULL, + `file_path` varchar(255) NOT NULL, + `file_size` varchar(255) NOT NULL, + `file_status` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `email_templates` +-- + +CREATE TABLE `email_templates` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) DEFAULT NULL, + `from` varchar(255) DEFAULT NULL, + `module_name` varchar(255) DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `email_templates` +-- + +INSERT INTO `email_templates` (`id`, `name`, `from`, `module_name`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'New User', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(2, 'Customer Invoice Send', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(3, 'Payment Reminder', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(4, 'Invoice Payment Create', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(5, 'Proposal Send', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(6, 'New Helpdesk Ticket', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(7, 'New Helpdesk Ticket Reply', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(8, 'Purchase Send', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(9, 'Purchase Payment Create', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(10, 'Deal Assigned', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(11, 'Deal Moved', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(12, 'New Task', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(13, 'Lead Assigned', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(14, 'Lead Moved', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(15, 'Lead Emails', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(16, 'Deal Emails', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `email_template_langs` +-- + +CREATE TABLE `email_template_langs` ( + `id` bigint(20) UNSIGNED NOT NULL, + `parent_id` int(11) NOT NULL DEFAULT 0, + `lang` varchar(255) DEFAULT NULL, + `subject` varchar(255) DEFAULT NULL, + `content` text DEFAULT NULL, + `module_name` varchar(255) DEFAULT NULL, + `variables` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`variables`)), + `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 `email_template_langs` +-- + +INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES +(1, 1, 'ar', 'Login Detail', '

مرحبا، 
مرحبا بك في {app_name}.

البريد الإلكتروني : {email}
كلمه السر : {password}

{app_url}

شكر،
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(2, 1, 'da', 'Login Detail', '

Hej, 
Velkommen til {app_name}.

E-mail : {email}
Adgangskode : {password}

{app_url}

Tak,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(3, 1, 'de', 'Login Detail', '

Hallo, 
Willkommen zu {app_name}.

Email : {email}
Passwort : {password}

{app_url}

Vielen Dank,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(4, 1, 'en', 'Login Detail', '

Hello, 
Welcome to {app_name}

\n

Email : {email}
Password : {password}

\n

{app_url}

\n

Thanks,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(5, 1, 'es', 'Login Detail', '

Hola, 
Bienvenido a {app_name}.

Correo electrónico : {email}
Contraseña : {password}

{app_url}

Gracias,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(6, 1, 'fr', 'Login Detail', '

Bonjour, 
Bienvenue à {app_name}.

Email : {email}
Mot de passe : {password}

{app_url}

Merci,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(7, 1, 'it', 'Login Detail', '

Ciao, 
Benvenuto a {app_name}.

E-mail : {email}
Parola d\'ordine : {password}

{app_url}

Grazie,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(8, 1, 'ja', 'Login Detail', '

こんにちは、 
へようこそ {app_name}.

Eメール : {email}
パスワード : {password}

{app_url}

おかげで、
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(9, 1, 'nl', 'Login Detail', '

Hallo, 
Welkom bij {app_name}.

E-mail : {email}
Wachtwoord : {password}

{app_url}

Bedankt,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(10, 1, 'pl', 'Login Detail', '

Witaj, 
Witamy w {app_name}.

E-mail : {email}
Hasło : {password}

{app_url}

Dzięki,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(11, 1, 'pt', 'Login Detail', '

Olá, Bem-vindo a {app_name}.

\n

E-mail: {email}

\n

Senha: {password}

\n

{app_url}

\n

 

\n

Obrigado,

\n

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(12, 1, 'pt-BR', 'Login Detail', '

Olá, Bem-vindo a {app_name}.

\n

E-mail: {email}

\n

Senha: {password}

\n

{app_url}

\n

 

\n

Obrigado,

\n

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(13, 1, 'ru', 'Login Detail', '

Привет, 
Добро пожаловать в {app_name}.

Электронная почта : {email}
Пароль : {password}

{app_url}

Спасибо,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(14, 1, 'he', 'Login Detail', '

שלום,
ברוך הבא אל {app_name}

אימייל : {email}
סיסמה : {password}

{app_url}

תודה,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(15, 1, 'tr', 'Login Detail', '

Merhaba,
{app_name} uygulamasına hoş geldiniz

E-posta : {email}
Şifre : {password}

{app_url}

Teşekkürler,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(16, 1, 'zh', 'Login Detail', '

您好,
欢迎使用 {app_name}

邮箱 : {email}
密码 : {password}

{app_url}

谢谢,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(17, 2, 'ar', 'Customer Invoice Send', '

مرحبا ، {invoice_name}

\n

مرحبا بك في {app_name}

\n

أتمنى أن يجدك هذا البريد الإلكتروني جيدا برجاء الرجوع الى رقم الفاتورة الملحقة {invoice_number} للخدمة / الخدمة.

\n

ببساطة اضغط على الاختيار بأسفل.

\n

تحميل فاتورة

\n

دفع الفاتورة

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لك

\n

 

\n

Regards,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(18, 2, 'da', 'Customer Invoice Send', '

Hej, {invoice_name}

\n

Velkommen til {app_name}

\n

Håber denne e-mail finder dig godt! Se vedlagte fakturanummer {invoice_number} for product/service.

\n

Klik på knappen nedenfor.

\n

Download faktura

\n

Betal faktura

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

 

\n

Med venlig hilsen

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(19, 2, 'de', 'Customer Invoice Send', '

Hi, {invoice_name}

\n

Willkommen bei {app_name}

\n

Hoffe, diese E-Mail findet dich gut! Bitte beachten Sie die beigefügte Rechnungsnummer {invoice_number} für Produkt/Service.

\n

Klicken Sie einfach auf den Button unten.

\n

Download Rechnung

\n

Rechnung bezahlen

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Vielen Dank,

\n

 

\n

Betrachtet,

\n

{company_name}

\n

{app_url}

\n ', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(20, 2, 'en', 'Customer Invoice Send', '

Hi, {invoice_name}

\n

Welcome to {app_name}

\n

Hope this email finds you well! Please see attached invoice number {invoice_number} for product/service.

\n

Simply click on the button below.

\n

Download Invoice

\n

Pay Invoice

\n

Feel free to reach out if you have any questions.

\n

Thank You,

\n

Regards,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(21, 2, 'es', 'Customer Invoice Send', '

Hi, {invoice_name}

\n

 

\n

Bienvenido a {app_name}

+\n

 

\n

¡Espero que este email le encuentre bien! Consulte el número de factura adjunto {invoice_number} para el producto/servicio.

\n

 

\n

Simplemente haga clic en el botón de abajo.

\n

 

\n

Descargar factura

\n

 

\n

Factura de pago

\n

 

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

 

\n

Gracias,

\n

 

\n

Considerando,

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(22, 2, 'fr', 'Customer Invoice Send', '

Bonjour, {invoice_name}

\n

 

\n

Bienvenue dans {app_name}

\n

 

\n

Jespère que ce courriel vous trouve bien ! Voir le numéro de facture {invoice_number} pour le produit/service.

\n

 

\n

Cliquez simplement sur le bouton ci-dessous.

\n

 

\n

Télécharger la facture

\n

 

\n

Payer sa commande

\n

 

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

 

\n

Merci,

\n

 

\n

Regards,

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(23, 2, 'it', 'Customer Invoice Send', '

Ciao, {invoice_name}

\n

 

\n

Benvenuti in {app_name}

\n

 

\n

Spero che questa email ti trovi bene! Si prega di consultare il numero di fattura collegato {invoice_number} per il prodotto/servizio.

\n

 

\n

Semplicemente clicca sul pulsante sottostante.

\n

 

\n

Scarica Fattura

\n

 

\n

Pagare la fattura

\n

 

\n

Sentiti libero di raggiungere se hai domande.

\n

 

\n

Grazie,

\n

 

\n

Riguardo,

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(24, 2, 'ja', 'Customer Invoice Send', '

こんにちは、 {invoice_name}

\n

 

\n

{app_name} へようこそ

\n

 

\n

この E メールでよくご確認ください。 製品 / サービスについては、添付された請求書番号 {invoice_number} を参照してください。

\n

 

\n

以下のボタンをクリックしてください。

\n

 

\n

請求書のダウンロード

\n

 

\n

請求書の支払い

\n

 

\n

質問がある場合は、自由に連絡してください。

\n

 

\n

ありがとうございます

\n

 

\n

よろしく

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(25, 2, 'nl', 'Customer Invoice Send', '

Hallo, {invoice_name}

\n

Welkom bij {app_name}

\n

Hoop dat deze e-mail je goed vindt! Zie bijgevoegde factuurnummer {invoice_number} voor product/service.

\n

Klik gewoon op de knop hieronder.

\n

Factuur downloaden

\n

Betaal factuur

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank U,

\n

Betreft:

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(26, 2, 'pl', 'Customer Invoice Send', '

Witaj, {invoice_name}

\n

 

\n

Witamy w aplikacji {app_name }

\n

 

\n

Mam nadzieję, że ta wiadomość znajdzie Cię dobrze! Sprawdź załączoną fakturę numer {invoice_number} dla produktu/usługi.

\n

 

\n

Wystarczy kliknąć na przycisk poniżej.

\n

 

\n

Pobierz fakturę

\n

 

\n

Zapłać fakturę

\n

 

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

 

\n

Dziękuję,

\n

 

\n

W odniesieniu do

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(27, 2, 'ru', 'Customer Invoice Send', '

Привет, {invoice_name}

\n

 

\n

Вас приветствует {app_name}

\n

 

\n

Надеюсь, это электронное письмо найдет вас хорошо! См. вложенный номер счета-фактуры {invoice_number} для производства/услуги.

\n

 

\n

Просто нажмите на кнопку внизу.

\n

 

\n

Скачать счет

\n

 

\n

Оплатить счет

\n

 

\n

Не стеснитесь, если у вас есть вопросы.

\n

 

\n

Спасибо.

\n

 

\n

С уважением,

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(28, 2, 'pt', 'Customer Invoice Send', '

Oi, {invoice_name}

\n

 

\n

Bem-vindo a {app_name}

\n

 

\n

Espero que este e-mail encontre você bem! Por favor, consulte o número da fatura anexa {invoice_number} para produto/serviço.

\n

 

\n

Basta clicar no botão abaixo.

\n

 

\n

Baixe o Invoice

\n

 

\n

Fatura de pagamento

\n

 

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

 

\n

Obrigado,

\n

 

\n

Considera,

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(29, 2, 'pt-BR', 'Customer Invoice Send', '

Olá, {invoice_name}

\n

Bem-vindo(a) ao {app_name}

\n

Espero que este e-mail o(a) encontre bem! Em anexo, você encontrará a fatura número {invoice_number} referente ao produto/serviço.

\n

Basta clicar no botão abaixo.

\n

Baixar Fatura

\n

Pagar Fatura

\n

Se tiver alguma dúvida, não hesite em entrar em contato.

\n

Obrigado,

\n

Atenciosamente,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(30, 2, 'he', 'Customer Invoice Send', '

שלום, {invoice_name}

\n

ברוך הבא ל-{app_name}

\n

אני מקווה שהאימייל הזה מוצא אותך בטוב! מצורפת חשבונית מספר {invoice_number} עבור המוצר/השירות.

\n

פשוט לחץ על הכפתור למטה.

\n

הורד חשבונית

\n

שלם חשבונית

\n

אל תהסס לפנות אם יש לך שאלות.

\n

תודה,

\n

בברכה,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(31, 2, 'tr', 'Customer Invoice Send', '

Merhaba, {invoice_name}

\n

{app_name}’e hoş geldiniz

\n

Umarım bu e-posta sizi iyi bulur! {invoice_number} numaralı fatura ürün/hizmet için ektedir.

\n

Aşağıdaki butona tıklamanız yeterlidir.

\n

Faturayı İndir

\n

Faturayı Öde

\n

Herhangi bir sorunuz olursa bizimle iletişime geçmekten çekinmeyin.

\n

Teşekkürler,

\n

Saygılarımızla,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'); +INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES +(32, 2, 'zh', 'Customer Invoice Send', '

您好,{invoice_name}

\n

欢迎使用 {app_name}

\n

希望您一切安好!随信附上编号为 {invoice_number} 的发票(产品/服务)。

\n

请点击下面的按钮。

\n

下载发票

\n

支付发票

\n

如有任何问题,请随时联系我们。

\n

谢谢!

\n

此致敬礼,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(33, 3, 'ar', 'Payment Reminder', '

عزيزي ، {payment_name}

\n

آمل أن تكون بخير. هذا مجرد تذكير بأن الدفع على الفاتورة {invoice_number} الاجمالي {payment_dueAmount} ، والتي قمنا بارسالها على {payment_date} مستحق اليوم.

\n

يمكنك دفع مبلغ لحساب البنك المحدد على الفاتورة.

\n

أنا متأكد أنت مشغول ، لكني أقدر إذا أنت يمكن أن تأخذ a لحظة ونظرة على الفاتورة عندما تحصل على فرصة.

\n

إذا كان لديك أي سؤال مهما يكن ، يرجى الرد وسأكون سعيدا لتوضيحها.

\n

 

\n

شكرا 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(34, 3, 'da', 'Payment Reminder', '

Kære, {payment_name}

\n

Dette er blot en påmindelse om, at betaling på faktura {invoice_number} i alt {payment_dueAmount}, som vi sendte til {payment_date}, er forfalden i dag.

\n

Du kan foretage betalinger til den bankkonto, der er angivet på fakturaen.

\n

Jeg er sikker på du har travlt, men jeg ville sætte pris på, hvis du kunne tage et øjeblik og se på fakturaen, når du får en chance.

\n

Hvis De har nogen spørgsmål, så svar venligst, og jeg vil med glæde tydeliggøre dem.

\n

 

\n

Tak. 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(35, 3, 'de', 'Payment Reminder', '

Sehr geehrte/r, {payment_name}

\n

Ich hoffe, Sie sind gut. Dies ist nur eine Erinnerung, dass die Zahlung auf Rechnung {invoice_number} total {payment_dueAmount}, die wir gesendet am {payment_date} ist heute fällig.

\n

Sie können die Zahlung auf das auf der Rechnung angegebene Bankkonto vornehmen.

\n

Ich bin sicher, Sie sind beschäftigt, aber ich würde es begrüßen, wenn Sie einen Moment nehmen und über die Rechnung schauen könnten, wenn Sie eine Chance bekommen.

\n

Wenn Sie irgendwelche Fragen haben, antworten Sie bitte und ich würde mich freuen, sie zu klären.

\n

 

\n

Danke, 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(36, 3, 'en', 'Payment Reminder', '

Dear, {payment_name}

\n

I hope you’re well.This is just a reminder that payment on invoice {invoice_number} total dueAmount {payment_dueAmount} , which we sent on {payment_date} is due today.

\n

You can make payment to the bank account specified on the invoice.

\n

I’m sure you’re busy, but I’d appreciate if you could take a moment and look over the invoice when you get a chance.

\n

If you have any questions whatever, please reply and I’d be happy to clarify them.

\n

 

\n

Thanks, 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(37, 3, 'es', 'Payment Reminder', '

Estimado, {payment_name}

\n

Espero que estés bien. Esto es sólo un recordatorio de que el pago en la factura {invoice_number} total {payment_dueAmount}, que enviamos en {payment_date} se vence hoy.

\n

Puede realizar el pago a la cuenta bancaria especificada en la factura.

\n

Estoy seguro de que estás ocupado, pero agradecería si podrías tomar un momento y mirar sobre la factura cuando tienes una oportunidad.

\n

Si tiene alguna pregunta, por favor responda y me gustaría aclararlas.

\n

 

\n

Gracias, 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(38, 3, 'fr', 'Payment Reminder', '

Cher, {payment_name}

\n

Jespère que vous êtes bien, ce nest quun rappel que le paiement sur facture {invoice_number}total {payment_dueAmount}, que nous avons envoyé le {payment_date} est dû aujourdhui.

\n

Vous pouvez effectuer le paiement sur le compte bancaire indiqué sur la facture.

\n

Je suis sûr que vous êtes occupé, mais je vous serais reconnaissant de prendre un moment et de regarder la facture quand vous aurez une chance.

\n

Si vous avez des questions, veuillez répondre et je serais heureux de les clarifier.

\n

 

\n

Merci, 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(39, 3, 'it', 'Payment Reminder', '

Caro, {payment_name}

\n

Spero che tu stia bene, questo è solo un promemoria che il pagamento sulla fattura {invoice_number} totale {payment_dueAmount}, che abbiamo inviato su {payment_date} è dovuto oggi.

\n

È possibile effettuare il pagamento al conto bancario specificato sulla fattura.

\n

Sono sicuro che sei impegnato, ma apprezzerei se potessi prenderti un momento e guardare la fattura quando avrai una chance.

\n

Se avete domande qualunque, vi prego di rispondere e sarei felice di chiarirle.

\n

 

\n

Grazie, 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(40, 3, 'ja', 'Payment Reminder', '

ID、 {payment_name}

\n

これは、 {payment_dueAmount} の合計 {payment_dueAmount} に対する支払いが今日予定されていることを思い出させていただきたいと思います。

\n

請求書に記載されている銀行口座に対して支払いを行うことができます。

\n

お忙しいのは確かですが、機会があれば、少し時間をかけてインボイスを見渡すことができればありがたいのですが。

\n

何か聞きたいことがあるなら、お返事をお願いしますが、喜んでお答えします。

\n

 

\n

ありがとう。 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(41, 3, 'nl', 'Payment Reminder', '

Geachte, {payment_name}

\n

Ik hoop dat u goed bent. Dit is gewoon een herinnering dat betaling op factuur {invoice_number} totaal {payment_dueAmount}, die we verzonden op {payment_date} is vandaag verschuldigd.

\n

U kunt betaling doen aan de bankrekening op de factuur.

\n

Ik weet zeker dat je het druk hebt, maar ik zou het op prijs stellen als je even over de factuur kon kijken als je een kans krijgt.

\n

Als u vragen hebt, beantwoord dan uw antwoord en ik wil ze graag verduidelijken.

\n

 

\n

Bedankt. 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(42, 3, 'pl', 'Payment Reminder', '

Drogi, {payment_name}

\n

Mam nadzieję, że jesteś dobrze. To jest tylko przypomnienie, że płatność na fakturze {invoice_number} total {payment_dueAmount}, które wysłaliśmy na {payment_date} jest dzisiaj.

\n

Płatność można dokonać na rachunek bankowy podany na fakturze.

\n

Jestem pewien, że jesteś zajęty, ale byłbym wdzięczny, gdybyś mógł wziąć chwilę i spojrzeć na fakturę, kiedy masz szansę.

\n

Jeśli masz jakieś pytania, proszę o odpowiedź, a ja chętnie je wyjaśniam.

\n

 

\n

Dziękuję, 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(43, 3, 'ru', 'Payment Reminder', '

Уважаемый, {payment_name}

\n

Я надеюсь, что вы хорошо. Это просто напоминание о том, что оплата по счету {invoice_number} всего {payment_dueAmount}, которое мы отправили в {payment_date}, сегодня.

\n

Вы можете произвести платеж на банковский счет, указанный в счете-фактуре.

\n

Я уверена, что ты занята, но я была бы признательна, если бы ты смог бы поглядеться на счет, когда у тебя появится шанс.

\n

Если у вас есть вопросы, пожалуйста, ответьте, и я буду рад их прояснить.

\n

 

\n

Спасибо. 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(44, 3, 'pt', 'Payment Reminder', '

Querido, {payment_name}

\n

Espero que você esteja bem. Este é apenas um lembrete de que o pagamento na fatura {invoice_number} total {payment_dueAmount}, que enviamos em {payment_date} é devido hoje.

\n

Você pode fazer o pagamento à conta bancária especificada na fatura.

\n

Eu tenho certeza que você está ocupado, mas eu agradeceria se você pudesse tirar um momento e olhar sobre a fatura quando tiver uma chance.

\n

Se você tiver alguma dúvida o que for, por favor, responda e eu ficaria feliz em esclarecê-las.

\n

 

\n

Obrigado, 

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(45, 3, 'pt-BR', 'Payment Reminder', '

Prezado(a), {payment_name}

\n

Espero que esteja bem. Este é apenas um lembrete de que o pagamento da fatura {invoice_number}, no valor total de {payment_dueAmount}, que enviamos em {payment_date}, vence hoje.

\n

Você pode efetuar o pagamento na conta bancária especificada na fatura.

\n

Tenho certeza de que você está ocupado(a), mas agradeceria se pudesse reservar um momento para revisar a fatura assim que tiver oportunidade.

\n

Se tiver alguma dúvida, por favor responda a este e-mail e terei prazer em esclarecê-las.

\n

 

\n

Obrigado,

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(46, 3, 'he', 'Payment Reminder', '

יקר/ה, {payment_name}

\n

אני מקווה שהכול בסדר אצלך. זהו רק תזכורת שהתשלום על חשבונית {invoice_number}, בסכום כולל של {payment_dueAmount}, שנשלחה בתאריך {payment_date}, חל היום.

\n

באפשרותך לבצע את התשלום לחשבון הבנק המצוין בחשבונית.

\n

אני בטוח/ה שאתה עסוק/ה, אבל אעריך אם תוכל/י להקדיש רגע ולעיין בחשבונית כשיתאפשר לך.

\n

אם יש לך שאלות כלשהן, אנא השב/י למייל ואשמח להבהיר אותן.

\n

 

\n

תודה,

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(47, 3, 'tr', 'Payment Reminder', '

Sayın {payment_name},

\n

Umarım iyisinizdir. Bu yalnızca bir hatırlatmadır: {payment_date} tarihinde gönderdiğimiz {invoice_number} numaralı faturanın toplam tutarı {payment_dueAmount} olup, bugün vadesi dolmaktadır.

\n

Ödemeyi faturada belirtilen banka hesabına yapabilirsiniz.

\n

Yoğun olduğunuzu biliyorum, ancak fırsat bulduğunuzda faturayı gözden geçirmenizi çok takdir ederim.

\n

Herhangi bir sorunuz olursa, lütfen bu e-postayı yanıtlayın; memnuniyetle açıklık getireceğim.

\n

 

\n

Teşekkürler,

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(48, 3, 'zh', 'Payment Reminder', '

尊敬的 {payment_name},

\n

希望您一切顺利。这只是一个提醒:我们于 {payment_date} 发送的编号为 {invoice_number} 的发票,总金额 {payment_dueAmount},今天到期。

\n

您可以将付款转至发票中指定的银行账户。

\n

我理解您可能很忙,但如果您有时间,请抽空查看一下发票。

\n

如果您有任何问题,请随时回复邮件,我将很乐意为您解答。

\n

 

\n

谢谢,

\n

{company_name}

\n

{app_url}

\n

 

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(49, 4, 'ar', 'Invoice Payment Create', '

مرحبا

\n

مرحبا بك في {app_name}

\n

عزيزي {payment_name}

\n

لقد قمت باستلام المبلغ الخاص بك {payment_amount}  لبرنامج {invoice_number} الذي تم تقديمه في التاريخ {payment_date}

\n

مقدار الاستحقاق {invoice_number} الخاص بك هو {payment_dueAmount}

\n

ونحن نقدر الدفع الفوري لكم ونتطلع إلى استمرار العمل معكم في المستقبل.

\n

 

\n

شكرا جزيلا لكم ويوم جيد ! !

\n

 

\n

Regards,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(50, 4, 'da', 'Invoice Payment Create', '

Hej.

\n

Velkommen til {app_name}

\n

Kære {payment_name}

\n

Vi har modtaget din mængde {payment_amount} betaling for {invoice_number} undert.d. på dato {payment_date}

\n

Dit {invoice_number} Forfaldsbeløb er {payment_dueAmount}

\n

Vi sætter pris på din hurtige betaling og ser frem til fortsatte forretninger med dig i fremtiden.

\n

Mange tak, og ha en god dag!

\n

 

\n

Med venlig hilsen

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(51, 4, 'de', 'Invoice Payment Create', '

Hi,

\n

Willkommen bei {app_name}

\n

Sehr geehrter {payment_name}

\n

Wir haben Ihre Zahlung {payment_amount} für {invoice_number}, die am Datum {payment_date} übergeben wurde, erhalten.

\n

Ihr {invoice_number} -fälliger Betrag ist {payment_dueAmount}

\n

Wir freuen uns über Ihre prompte Bezahlung und freuen uns auf das weitere Geschäft mit Ihnen in der Zukunft.

\n

Vielen Dank und habe einen guten Tag!!

\n

 

\n

Betrachtet,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(52, 4, 'en', 'Invoice Payment Create', '

Hi,

\n

Welcome to {app_name}

\n

Dear {payment_name}

\n

We have recieved your amount {payment_amount} payment for {invoice_number} submited on date {payment_date}

\n

Your {invoice_number} Due amount is {payment_dueAmount}

\n

We appreciate your prompt payment and look forward to continued business with you in the future.

\n

Thank you very much and have a good day!!

\n

 

\n

Regards,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(53, 4, 'es', 'Invoice Payment Create', '

Hola,

\n

Bienvenido a {app_name}

\n

Estimado {payment_name}

\n

Hemos recibido su importe {payment_amount} pago para {invoice_number} submitado en la fecha {payment_date}

\n

El importe de {invoice_number} Due es {payment_dueAmount}

\n

Agradecemos su pronto pago y esperamos continuar con sus negocios con usted en el futuro.

\n

Muchas gracias y que tengan un buen día!!

\n

 

\n

Considerando,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(54, 4, 'fr', 'Invoice Payment Create', '

Salut,

\n

Bienvenue dans {app_name}

\n

Cher {payment_name}

\n

Nous avons reçu votre montant {payment_amount} de paiement pour {invoice_number} soumis le {payment_date}

\n

Votre {invoice_number} Montant dû est {payment_dueAmount}

\n

Nous apprécions votre rapidité de paiement et nous attendons avec impatience de poursuivre vos activités avec vous à lavenir.

\n

Merci beaucoup et avez une bonne journée ! !

\n

 

\n

Regards,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(55, 4, 'it', 'Invoice Payment Create', '

Ciao,

\n

Benvenuti in {app_name}

\n

Caro {payment_name}

\n

Abbiamo ricevuto la tua quantità {payment_amount} pagamento per {invoice_number} subita alla data {payment_date}

\n

Il tuo {invoice_number} A somma cifra è {payment_dueAmount}

\n

Apprezziamo il tuo tempestoso pagamento e non vedo lora di continuare a fare affari con te in futuro.

\n

Grazie mille e buona giornata!!

\n

 

\n

Riguardo,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(56, 4, 'ja', 'Invoice Payment Create', '

こんにちは。

\n

{app_name} へようこそ

\n

{ payment_name} に出れます

\n

{ payment_date} 日付で提出された {請求書番号} の支払金額 } の金額を回収しました。 }

\n

お客様の {請求書番号} 予定額は {payment_dueAmount} です

\n

お客様の迅速な支払いを評価し、今後も継続してビジネスを継続することを期待しています。

\n

ありがとうございます。良い日をお願いします。

\n

 

\n

よろしく

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(57, 4, 'nl', 'Invoice Payment Create', '

Hallo,

\n

Welkom bij {app_name}

\n

Beste {payment_name}

\n

We hebben uw bedrag ontvangen {payment_amount} betaling voor {invoice_number} ingediend op datum {payment_date}

\n

Uw {invoice_number} verschuldigde bedrag is {payment_dueAmount}

\n

Wij waarderen uw snelle betaling en kijken uit naar verdere zaken met u in de toekomst.

\n

Hartelijk dank en hebben een goede dag!!

\n

 

\n

Betreft:

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(58, 4, 'pl', 'Invoice Payment Create', '

Witam,

\n

Witamy w aplikacji {app_name }

\n

Droga {payment_name}

\n

Odebrano kwotę {payment_amount } płatności za {invoice_number} w dniu {payment_date}, który został zastąpiony przez użytkownika.

\n

{invoice_number} Kwota należna: {payment_dueAmount}

\n

Doceniamy Twoją szybką płatność i czekamy na kontynuację działalności gospodarczej z Tobą w przyszłości.

\n

Dziękuję bardzo i mam dobry dzień!!

\n

 

\n

W odniesieniu do

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(59, 4, 'ru', 'Invoice Payment Create', '

Привет.

\n

Вас приветствует {app_name}

\n

Дорогая {payment_name}

\n

Мы получили вашу сумму оплаты {payment_amount} для {invoice_number}, подавшей на дату {payment_date}

\n

Ваша {invoice_number} Должная сумма-{payment_dueAmount}

\n

Мы ценим вашу своевременную оплату и надеемся на продолжение бизнеса с вами в будущем.

\n

Большое спасибо и хорошего дня!!

\n

 

\n

С уважением,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(60, 4, 'pt', 'Invoice Payment Create', '

Oi,

\n

Bem-vindo a {app_name}

\n

Querido {payment_name}

\n

Nós recibimos sua quantia {payment_amount} pagamento para {invoice_number} requisitado na data {payment_date}

\n

Sua quantia {invoice_number} Due é {payment_dueAmount}

\n

Agradecemos o seu pronto pagamento e estamos ansiosos para continuarmos os negócios com você no futuro.

\n

Muito obrigado e tenha um bom dia!!

\n

 

\n

Considera,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(61, 4, 'pt-BR', 'Invoice Payment Create', '

Olá,

\n

Bem-vindo(a) ao {app_name}

\n

Prezado(a) {payment_name}

\n

Recebemos o seu pagamento de {payment_amount} referente à fatura {invoice_number}, submetida em {payment_date}

\n

O valor pendente da fatura {invoice_number} é {payment_dueAmount}

\n

Agradecemos o seu pagamento imediato e esperamos continuar a fazer negócios com você no futuro.

\n

Muito obrigado e tenha um ótimo dia!

\n

 

\n

Atenciosamente,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(62, 4, 'he', 'Invoice Payment Create', '

שלום,

\n

ברוך הבא ל-{app_name}

\n

יקר/ה {payment_name}

\n

קיבלנו את התשלום שלך בסך {payment_amount} עבור חשבונית {invoice_number}, שהוגשה בתאריך {payment_date}

\n

הסכום שנותר לתשלום עבור חשבונית {invoice_number} הוא {payment_dueAmount}

\n

אנו מעריכים את התשלום המהיר שלך ומצפים להמשך שיתוף פעולה בעתיד.

\n

תודה רבה ויום נעים!

\n

 

\n

בברכה,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'); +INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES +(63, 4, 'tr', 'Invoice Payment Create', '

Merhaba,

\n

{app_name}’e hoş geldiniz

\n

Sayın {payment_name}

\n

{payment_date} tarihinde gönderilen {invoice_number} numaralı fatura için {payment_amount} tutarında ödemenizi aldık

\n

{invoice_number} numaralı faturanızın kalan tutarı {payment_dueAmount}’dir

\n

Hızlı ödemeniz için teşekkür eder, gelecekteki iş birliklerimizi sabırsızlıkla bekleriz.

\n

Çok teşekkür ederiz, iyi günler dileriz!

\n

 

\n

Saygılarımızla,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(64, 4, 'zh', 'Invoice Payment Create', '

您好,

\n

欢迎使用 {app_name}

\n

尊敬的 {payment_name}

\n

我们已收到您于 {payment_date} 提交的编号为 {invoice_number} 的付款,金额为 {payment_amount}

\n

您在 {invoice_number} 的未付款金额为 {payment_dueAmount}

\n

感谢您的及时付款,期待未来继续与您合作。

\n

非常感谢,祝您有美好的一天!

\n

 

\n

此致敬礼,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(65, 5, 'ar', 'Proposal Send', '

مرحبا ، {proposal_name}

\n

أتمنى أن يجدك هذا البريد الإلكتروني جيدا برجاء الرجوع الى رقم الاقتراح المرفق {proposal_number} للمنتج / الخدمة.

\n

اضغط ببساطة على الاختيار بأسفل

\n

عرض

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لعملك ! !

\n

 

\n

Regards,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(66, 5, 'da', 'Proposal Send', '

Hej, {proposal_name}

\n

Håber denne e-mail finder dig godt! Se det vedhæftede forslag nummer {proposal_number} for product/service.

\n

klik bare på knappen nedenfor

\n

Forslag

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak for din virksomhed!

\n

 

\n

Med venlig hilsen

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(67, 5, 'de', 'Proposal Send', '

Hi, {proposal_name}

\n

Hoffe, diese E-Mail findet dich gut! Bitte sehen Sie die angehängte Vorschlagsnummer {proposal_number} für Produkt/Service an.

\n

Klicken Sie einfach auf den Button unten

\n

Vorschlag

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Vielen Dank für Ihr Unternehmen!!

\n

 

\n

Betrachtet,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(68, 5, 'en', 'Proposal Send', '

Hi, {proposal_name}

\n

Hope this email finds you well! Please see attached proposal number {proposal_number} for product/service.

\n

simply click on the button below

\n

Proposal

\n

Feel free to reach out if you have any questions.

\n

Thank you for your business!!

\n

 

\n

Regards,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(69, 5, 'es', 'Proposal Send', '

Hi, {proposal_name}

\n

¡Espero que este email le encuentre bien! Consulte el número de propuesta adjunto {proposal_number} para el producto/servicio.

\n

simplemente haga clic en el botón de abajo

\n

Propuesta

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias por su negocio!!

\n

 

\n

Considerando,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(70, 5, 'fr', 'Proposal Send', '

Salut, {proposal_name}

\n

Jespère que ce courriel vous trouve bien ! Veuillez consulter le numéro de la proposition jointe {proposal_number} pour le produit/service.

\n

Il suffit de cliquer sur le bouton ci-dessous

\n

Proposition

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Merci pour votre entreprise ! !

\n

 

\n

Regards,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(71, 5, 'it', 'Proposal Send', '

Ciao, {proposal_name}

\n

Spero che questa email ti trovi bene! Si prega di consultare il numero di proposta allegato {proposal_number} per il prodotto/servizio.

\n

semplicemente clicca sul pulsante sottostante

\n

Proposta

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie per il tuo business!!

\n

 

\n

Riguardo,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(72, 5, 'ja', 'Proposal Send', '

こんにちは、 {proposal_name}

\n

この E メールでよくご確認ください。 製品 / サービスの添付されたプロポーザル番号 {proposal_number} を参照してください。

\n

下のボタンをクリックするだけで

\n

提案

\n

質問がある場合は、自由に連絡してください。

\n

お客様のビジネスに感謝します。

\n

 

\n

よろしく

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(73, 5, 'nl', 'Proposal Send', '

Hallo, {proposal_name}

\n

Hoop dat deze e-mail je goed vindt! Zie bijgevoegde nummer {proposal_number} voor product/service.

\n

gewoon klikken op de knop hieronder

\n

Voorstel

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u voor uw bedrijf!!

\n

 

\n

Betreft:

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(74, 5, 'pl', 'Proposal Send', '

Witaj, {proposal_name}

\n

Mam nadzieję, że ta wiadomość znajdzie Cię dobrze! Proszę zapoznać się z załączonym numerem wniosku {proposal_number} dla produktu/usługi.

\n

po prostu kliknij na przycisk poniżej

\n

Wniosek

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy za prowadzenie działalności!!

\n

 

\n

W odniesieniu do

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(75, 5, 'ru', 'Proposal Send', '

Здравствуйте, {proposal_name}

\n

Надеюсь, это электронное письмо найдет вас хорошо! См. вложенное предложение номер {proposal_number} для product/service.

\n

просто нажмите на кнопку внизу

\n

Предложение

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо за ваше дело!

\n

 

\n

С уважением,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(76, 5, 'pt', 'Proposal Send', '

Oi, {proposal_name}

\n

Espero que este e-mail encontre você bem! Por favor, consulte o número da proposta anexada {proposal_number} para produto/serviço.

\n

basta clicar no botão abaixo

\n

Proposta

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado pelo seu negócio!!

\n

 

\n

Considera,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(77, 5, 'pt-BR', 'Proposal Send', '

Olá, {proposal_name}

\n

Espero que este e-mail o encontre bem! Em anexo está a proposta número {proposal_number} para o produto/serviço.

\n

Simplesmente clique no botão abaixo

\n

Proposta

\n

Fique à vontade para entrar em contato se tiver alguma dúvida.

\n

Obrigado pelo seu negócio!!

\n

 

\n

Atenciosamente,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(78, 5, 'he', 'Proposal Send', '

שלום, {proposal_name}

\n

אני מקווה שמייל זה מוצא אותך בטוב! מצורפת הצעת מחיר מספר {proposal_number} עבור מוצר/שירות.

\n

פשוט לחץ על הכפתור למטה

\n

הצעה

\n

אל תהסס לפנות אלינו אם יש לך שאלות.

\n

תודה על העסק שלך!!

\n

 

\n

בברכה,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(79, 5, 'tr', 'Proposal Send', '

Merhaba, {proposal_name}

\n

Umarım bu e-posta sizi iyi bulur! {proposal_number} numaralı teklif ürün/hizmet için ekte yer almaktadır.

\n

Aşağıdaki butona tıklamanız yeterlidir

\n

Teklif

\n

Herhangi bir sorunuz olursa bizimle iletişime geçmekten çekinmeyin.

\n

İşiniz için teşekkür ederiz!!

\n

 

\n

Saygılarımızla,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(80, 5, 'zh', 'Proposal Send', '

您好, {proposal_name}

\n

希望您一切顺利!随信附上编号为 {proposal_number} 的产品/服务提案。

\n

只需点击下面的按钮

\n

提案

\n

如有任何问题,请随时与我们联系。

\n

感谢您的合作!!

\n

 

\n

此致,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(81, 6, 'ar', 'New Helpdesk Ticket', '

مرحبا بك
الى {app_name}

\n

البريد الالكتروني : { email }
\n

كود بطاقة طلب الخدمة: {ticket_id}
\n

تحقق من صلاحية

\n

\n

{app_url}

\n

Thanks,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(82, 6, 'da', 'New Helpdesk Ticket', '

Velkommen
to {app_name}

\n

E-mail : {email}
\n

Ticket ID: {ticket_id}
\n

Validerer din

\n

\n

{app_url}

\n

Tak,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(83, 6, 'de', 'New Helpdesk Ticket', '

Begrüßung
to {app_name}

\n

Email : {email}
\n

Ticket ID: {ticket_id}
\n

Überprüfen von

\n

\n

{app_url}

\n

Vielen Dank,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(84, 6, 'en', 'New Helpdesk Ticket', '

Welcome
to {app_name}

\n

Email : {email}
\n

Ticket ID: {ticket_id}
\n

Validating your

\n

\n

{app_url}

\n

Thanks,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(85, 6, 'es', 'New Helpdesk Ticket', '

Bienvenido
to {app_name}

\n

Correo electrónico : {email}
\n

ID de ticket: {ticket_id}
\n

Validación de la

\n

\n

{app_url}

\n

Gracias,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(86, 6, 'fr', 'New Helpdesk Ticket', '

Bienvenue
to {app_name}

\n

Courrier électronique : {email}
\n

ID de ticket: {ticket_id}
\n

Validation de votre

\n

\n

{app_url}

\n

Merci,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(87, 6, 'it', 'New Helpdesk Ticket', '

Benvenuto
to {app_name}

\n

Email : {email}
\n

ID ticket: {ticket_id}
\n

Convalida del tuo

\n

\n

{app_url}

\n

Grazie,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(88, 6, 'ja', 'New Helpdesk Ticket', '

ようこそ
to {app_name}

\n

E メール: {email}
\n

チケット ID: {ticket_id}
\n

検証しています

\n

\n

{app_url}

\n

ありがと,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(89, 6, 'nl', 'New Helpdesk Ticket', '

Welkom
to {app_name}

\n

E-mail : {email}
\n

Ticket-ID: {ticket_id}
\n

Bezig met valideren van uw

\n

\n

{app_url}

\n

Bedankt,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(90, 6, 'pl', 'New Helpdesk Ticket', '

Powitanie
to {app_name}

\n

Adres e-mail : {email}
\n

Id. zgłoszenia: {ticket_id}
\n

Sprawdzanie poprawności

\n

\n

{app_url}

\n

Dziękujemy,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(91, 6, 'ru', 'New Helpdesk Ticket', '

Приветствие
to {app_name}

\n

Электронная почта : {email}
\n

ID паспорта: {ticket_id}
\n

Проверка правильности

\n

\n

{app_url}

\n

Спасибо,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(92, 6, 'pt', 'New Helpdesk Ticket', '

Bem-vindo
to {app_name}

\n

E-mail : {email}
\n

ID do chamado: {ticket_id}
\n

Validando seu

\n

\n

{app_url}

\n

Obrigado,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'); +INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES +(93, 6, 'tr', 'New Helpdesk Ticket', '

Hoş geldiniz
{app_name}\'e

\n

E-posta : {email}
\n

Bilet ID: {ticket_id}
\n

Doğruluyorsunuz

\n

\n

{app_url}

\n

Teşekkürler,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(94, 6, 'pt-BR', 'New Helpdesk Ticket', '

Bem-vindo
ao {app_name}

\n

Email : {email}
\n

ID do Ticket: {ticket_id}
\n

Validando seu

\n

\n

{app_url}

\n

Obrigado,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(95, 6, 'he', 'New Helpdesk Ticket', '

ברוך הבא
ל-{app_name}

\n

אימייל : {email}
\n

מספר כרטיס: {ticket_id}
\n

מאמת את שלך

\n

\n

{app_url}

\n

תודה,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(96, 6, 'zh', 'New Helpdesk Ticket', '

欢迎
来到 {app_name}

\n

邮箱 : {email}
\n

工单编号: {ticket_id}
\n

正在验证您的

\n

\n

{app_url}

\n

谢谢,
{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\": \\\"ticket_name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Password\\\": \\\"password\\\",\\n \\\"Ticket Url\\\": \\\"ticket_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(97, 7, 'ar', 'Helpdesk Ticket Reply', '

مرحبا ، مرحبا بك في {app_name}.

 

{ ticket_name }

{ ticket_id }

 

الوصف : { reply_description }

 

شكرا

{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(98, 7, 'da', 'Helpdesk Ticket Reply', '

Hej, velkommen til {app_name}.

 

{ ticket_name }

{ ticket_id }

 

Beskrivelse: { reply_description }

 

Tak.

{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(99, 7, 'de', 'Helpdesk Ticket Reply', '

Hallo, Willkommen bei {app_name}.

 

{ticketname}

{ticket_id}

 

Beschreibung: {reply_description}

 

Danke,

{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(100, 7, 'en', 'Helpdesk Ticket Reply', '

Hello, 
Welcome to {app_name}.

{ticket_name}

{ticket_id}

Description : {reply_description}

Thanks,
{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(101, 7, 'es', 'Helpdesk Ticket Reply', '

Hola, Bienvenido a {app_name}.

 

{ticket_name}

{ticket_id}

 

Descripción: {reply_description}

 

Gracias,

{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(102, 7, 'fr', 'Helpdesk Ticket Reply', '

Hola, Bienvenido a {app_name}.

 

{ticket_name}

{ticket_id}

 

Descripción: {reply_description}

 

Gracias,

{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(103, 7, 'it', 'Helpdesk Ticket Reply', '

Ciao, Benvenuti in {app_name}.

 

{ticket_name}

{ticket_id}

 

Descrizione: {reply_description}

 

Grazie,

{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(104, 7, 'ja', 'Helpdesk Ticket Reply', '

こんにちは、 {app_name}へようこそ。

 

{ticket_name}

{ticket_id}

 

説明 : {reply_description}

 

ありがとう。

{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(105, 7, 'nl', 'Helpdesk Ticket Reply', '

Hallo, Welkom bij {app_name}.

 

{ ticket_name }

{ ticket_id }

 

Beschrijving: { reply_description }

 

Bedankt.

{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(106, 7, 'pl', 'Helpdesk Ticket Reply', '

Witaj, Witamy w aplikacji {app_name }.

 

{ticket_name }

{ticket_id }

 

Opis: {reply_description }

 

Dziękuję,

{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(107, 7, 'ru', 'Helpdesk Ticket Reply', '

Здравствуйте, Добро пожаловать в {app_name}.

 

Witaj, Witamy w aplikacji {app_name }.

 

{ticket_name }

{ticket_id }

 

Opis: {reply_description }

 

Dziękuję,

{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(108, 7, 'pt', 'Helpdesk Ticket Reply', '

Olá, Bem-vindo a {app_name}.

 

{ticket_name}

{ticket_id}

 

Descrição: {reply_description}

 

Obrigado,

{company_name}

{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(109, 7, 'tr', 'Helpdesk Ticket Reply', '

Merhaba, 
{app_name}\'e hoş geldiniz.

{ticket_name}

{ticket_id}

Açıklama : {reply_description}

Teşekkürler,
{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(110, 7, 'pt-BR', 'Helpdesk Ticket Reply', '

Olá, 
Bem-vindo ao {app_name}.

{ticket_name}

{ticket_id}

Descrição : {reply_description}

Obrigado,
{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(111, 7, 'he', 'Helpdesk Ticket Reply', '

שלום, 
ברוך הבא ל-{app_name}.

{ticket_name}

{ticket_id}

תיאור : {reply_description}

תודה,
{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(112, 7, 'zh', 'Helpdesk Ticket Reply', '

您好, 
欢迎来到 {app_name}。

{ticket_name}

{ticket_id}

描述 : {reply_description}

谢谢,
{app_name}

', NULL, '\"{\\n \\\"App Name\\\" : \\\"app_name\\\",\\n \\\"Company Name\\\" : \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Ticket Name\\\" : \\\"ticket_name\\\",\\n \\\"Ticket Id\\\" : \\\"ticket_id\\\",\\n \\\"Ticket Description\\\" : \\\"reply_description\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(113, 8, 'ar', 'Purchase Send', '

مرحبا ، {purchase_name}

\n

مرحبا بك في {app_name}

\n

أتمنى أن يجدك هذا البريد الإلكتروني جيدا ! ! برجاء الرجوع الى رقم الفاتورة الملحقة {purchase_number} للحصول على المنتج / الخدمة.

\n

ببساطة اضغط على الاختيار بأسفل.

\n

عملية الشراء

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لك

\n

Regards,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(114, 8, 'da', 'Purchase Send', '

Hej, {purchase_name}

\n

Velkommen til {app_name}

\n

Håber denne e-mail finder dig godt! Se vedlagte fakturanummer {purchase_number} for product/service.

\n

Klik på knappen nedenfor.

\n

køb

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(115, 8, 'de', 'Purchase Send', '

Hi, {purchase_name}

\n

Willkommen bei {app_name}

\n

Hoffe, diese E-Mail findet dich gut!! Sehen Sie sich die beigefügte Rechnungsnummer {purchase_number} für Produkt/Service an.

\n

Klicken Sie einfach auf den Button unten.

\n

Kauf

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Vielen Dank,

\n

Betrachtet,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(116, 8, 'en', 'Purchase Send', '

Hi, {purchase_name}

\n

Welcome to {app_name}

\n

Hope this email finds you well!! Please see attached Purchase number {purchase_number} for product/service.

\n

Simply click on the button below.

\n

purchase

\n

Feel free to reach out if you have any questions.

\n

Thank You,

\n

Regards,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(117, 8, 'es', 'Purchase Send', '

Hi, {purchase_name}

\n

Bienvenido a {app_name}

\n

¡Espero que este correo te encuentre bien!! Consulte el número de factura adjunto {purchase_number} para el producto/servicio.

\n

Simplemente haga clic en el botón de abajo.

\n

compra

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

Gracias,

\n

Considerando,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(118, 8, 'fr', 'Purchase Send', '

Salut, {purchase_name}

\n

Bienvenue dans {app_name}

\n

Jespère que ce courriel vous trouve bien ! ! Veuillez consulter le numéro de facture {purchase_number} associé au produit / service.

\n

Cliquez simplement sur le bouton ci-dessous.

\n

Achat

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Merci,

\n

Regards,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(119, 8, 'it', 'Purchase Send', '

Ciao, {purchase_name}

\n

Benvenuti in {app_name}

\n

Spero che questa email ti trovi bene!! Si prega di consultare il numero di fattura allegato {purchase_number} per il prodotto/servizio.

\n

Semplicemente clicca sul pulsante sottostante.

\n

acquisto

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie,

\n

Riguardo,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(120, 8, 'ja', 'Purchase Send', '

こんにちは、 {purchase_name}

\n

{app_name} へようこそ

\n

この E メールによりよく検出されます !! 製品 / サービスの添付された請求番号 {purchase_number} を参照してください。

\n

以下のボタンをクリックしてください。

\n

購入

\n

質問がある場合は、自由に連絡してください。

\n

ありがとうございます

\n

よろしく

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(121, 8, 'nl', 'Purchase Send', '

Hallo, {purchase_name}

\n

Welkom bij {app_name}

\n

Hoop dat deze e-mail je goed vindt!! Zie bijgevoegde factuurnummer {purchase_number} voor product/service.

\n

Klik gewoon op de knop hieronder.

\n

Aankoop

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank U,

\n

Betreft:

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(122, 8, 'pl', 'Purchase Send', '

Witaj, {purchase_name}

\n

Witamy w aplikacji {app_name }

\n

Mam nadzieję, że ta wiadomość e-mail znajduje Cię dobrze!! Zapoznaj się z załączonym numerem rachunku {purchase_number } dla produktu/usługi.

\n

Wystarczy kliknąć na przycisk poniżej.

\n

zakup

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękuję,

\n

W odniesieniu do

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(123, 8, 'ru', 'Purchase Send', '

Привет, {purchase_name}

\n

Вас приветствует {app_name}

\n

Надеюсь, это письмо найдет вас хорошо! См. прилагаемый номер счета {purchase_number} для product/service.

\n

Просто нажмите на кнопку внизу.

\n

покупка

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(124, 8, 'pt', 'Purchase Send', '

Oi, {purchase_name}

\n

Bem-vindo a {app_name}

\n

Espero que este e-mail encontre você bem!! Por favor, consulte o número de faturamento conectado {purchase_number} para produto/serviço.

\n

Basta clicar no botão abaixo.

\n

compra

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado,

\n

Considera,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(125, 8, 'pt-BR', 'Purchase Send', '

Olá, {purchase_name}

\n

Bem-vindo ao {app_name}

\n

Espero que este e-mail o encontre bem!! Em anexo está a compra número {purchase_number} para o produto/serviço.

\n

Basta clicar no botão abaixo.

\n

Compra

\n

Fique à vontade para entrar em contato se tiver alguma dúvida.

\n

Obrigado,

\n

Atenciosamente,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'); +INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES +(126, 8, 'he', 'Purchase Send', '

שלום, {purchase_name}

\n

ברוך הבא ל-{app_name}

\n

אני מקווה שמייל זה מוצא אותך בטוב!! מצורפת רכישה מספר {purchase_number} עבור מוצר/שירות.

\n

פשוט לחץ על הכפתור למטה.

\n

רכישה

\n

אל תהסס לפנות אלינו אם יש לך שאלות.

\n

תודה,

\n

בברכה,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(127, 8, 'tr', 'Purchase Send', '

Merhaba, {purchase_name}

\n

{app_name}\'e hoş geldiniz

\n

Umarım bu e-posta sizi iyi bulur!! {purchase_number} numaralı satın alma ürün/hizmet için ekte yer almaktadır.

\n

Aşağıdaki butona tıklamanız yeterlidir.

\n

Satın alma

\n

Herhangi bir sorunuz olursa bizimle iletişime geçmekten çekinmeyin.

\n

Teşekkürler,

\n

Saygılarımızla,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(128, 8, 'zh', 'Purchase Send', '

您好, {purchase_name}

\n

欢迎来到 {app_name}

\n

希望您一切顺利!! 附件中包含编号为 {purchase_number} 的产品/服务采购单。

\n

只需点击下面的按钮。

\n

采购

\n

如有任何问题,请随时联系我们。

\n

谢谢,

\n

此致,

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Purchase Name\\\": \\\"purchase_name\\\",\\n \\\"Purchase Number\\\": \\\"purchase_number\\\",\\n \\\"purchase_url\\\": \\\"purchase_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(129, 9, 'ar', 'Purchase Payment Create', '

مرحبا ، {payment_name}

\n

 

\n

مرحبا بك في {app_name}

\n

 

\n

نحن نكتب لإبلاغكم بأننا قد أرسلنا مدفوعات {payment_bill} الخاصة بك.

\n

 

\n

لقد أرسلنا قيمتك {payment_amount} لأجل {payment_bill} قمت بالاحالة في التاريخ {payment_date} من خلال {payment_method}.

\n

 

\n

شكرا جزيلا لك وطاب يومك ! !!!

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(130, 9, 'da', 'Purchase Payment Create', '

Hej, {payment_name}

\n

 

\n

Velkommen til {app_name}

\n

 

\n

Vi skriver for at informere dig om, at vi har sendt din {payment_bill}-betaling.

\n

 

\n

Vi har sendt dit beløb {payment_amount} betaling for {payment_bill} undertvist på dato {payment_date} via {payment_method}.

\n

 

\n

Mange tak, og ha en god dag!

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(131, 9, 'de', 'Purchase Payment Create', '

Hi, {payment_name}

\n

 

\n

Willkommen bei {app_name}

\n

 

\n

Wir schreiben Ihnen mitzuteilen, dass wir Ihre Zahlung von {payment_bill} gesendet haben.

\n

 

\n

Wir haben Ihre Zahlung {payment_amount} Zahlung für {payment_bill} am Datum {payment_date} über {payment_method} gesendet.

\n

 

\n

Vielen Dank und haben einen guten Tag! !!!

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(132, 9, 'en', 'Purchase Payment Create', '

Hi, {payment_name}

\n

Welcome to {app_name}

\n

We are writing to inform you that we has sent your {payment_bill} payment.

\n

We has sent your amount {payment_amount} payment for {payment_bill} submited on date {payment_date} via {payment_method}.

\n

Thank You very much and have a good day !!!!

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(133, 9, 'es', 'Purchase Payment Create', '

Hi, {payment_name}

\n

 

\n

Bienvenido a {app_name}

\n

 

\n

Estamos escribiendo para informarle que hemos enviado su pago {payment_bill}.

\n

 

\n

Hemos enviado su importe {payment_amount} pago para {payment_bill} submitado en la fecha {payment_date} a través de {payment_method}.

\n

 

\n

Thank You very much and have a good day! !!!

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(134, 9, 'fr', 'Purchase Payment Create', '

Salut, {payment_name}

\n

 

\n

Bienvenue dans {app_name}

\n

 

\n

Nous vous écrivons pour vous informer que nous avons envoyé votre paiement {payment_bill}.

\n

 

\n

Nous avons envoyé votre paiement {payment_amount} pour {payment_bill} soumis à la date {payment_date} via {payment_method}.

\n

 

\n

Merci beaucoup et avez un bon jour ! !!!

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(135, 9, 'it', 'Purchase Payment Create', '

Ciao, {payment_name}

\n

 

\n

Benvenuti in {app_name}

\n

 

\n

Scriviamo per informarti che abbiamo inviato il tuo pagamento {payment_bill}.

\n

 

\n

Abbiamo inviato la tua quantità {payment_amount} pagamento per {payment_bill} subita alla data {payment_date} tramite {payment_method}.

\n

 

\n

Grazie mille e buona giornata! !!!

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(136, 9, 'ja', 'Purchase Payment Create', '

こんにちは、 {payment_name}

\n

 

\n

{app_name} へようこそ

\n

 

\n

{payment_bill} の支払いを送信したことをお知らせするために執筆しています。

\n

 

\n

{payment_date} に提出された {payment_議案} に対する金額 {payment_date} の支払いは、 {payment_method}を介して送信されました。

\n

 

\n

ありがとうございます。良い日をお願いします。

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(137, 9, 'nl', 'Purchase Payment Create', '

Hallo, {payment_name}

\n

 

\n

Welkom bij {app_name}

\n

 

\n

Wij schrijven u om u te informeren dat wij uw betaling van {payment_bill} hebben verzonden.

\n

 

\n

We hebben uw bedrag {payment_amount} betaling voor {payment_bill} verzonden op datum {payment_date} via {payment_method}.

\n

 

\n

Hartelijk dank en hebben een goede dag! !!!

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(138, 9, 'pl', 'Purchase Payment Create', '

Witaj, {payment_name}

\n

 

\n

Witamy w aplikacji {app_name }

\n

 

\n

Piszemy, aby poinformować Cię, że wysłaliśmy Twoją płatność {payment_bill }.

\n

 

\n

Twoja kwota {payment_amount } została wysłana przez użytkownika {payment_bill } w dniu {payment_date} za pomocą metody {payment_method}.

\n

 

\n

Dziękuję bardzo i mam dobry dzień! !!!

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(139, 9, 'ru', 'Purchase Payment Create', '

Привет, {payment_name}

\n

 

\n

Вас приветствует {app_name}

\n

 

\n

Мы пишем, чтобы сообщить вам, что мы отправили вашу оплату {payment_bill}.

\n

 

\n

Мы отправили вашу сумму оплаты {payment_amount} для {payment_bill}, подав на дату {payment_date} через {payment_method}.

\n

 

\n

Большое спасибо и хорошего дня! !!!

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(140, 9, 'pt', 'Purchase Payment Create', '

Oi, {payment_name}

\n

 

\n

Bem-vindo a {app_name}

\n

 

\n

Estamos escrevendo para informá-lo que enviamos o seu pagamento {payment_bill}.

\n

 

\n

Nós enviamos sua quantia {payment_amount} pagamento por {payment_bill} requisitado na data {payment_date} via {payment_method}.

\n

 

\n

Muito obrigado e tenha um bom dia! !!!

\n

 

\n

{company_name}

\n

 

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(141, 9, 'pt-BR', 'Purchase Payment Create', '

Olá, {payment_name}

\n

Bem-vindo ao {app_name}

\n

Estamos escrevendo para informar que enviamos o pagamento do {payment_bill}.

\n

Enviamos o valor de {payment_amount} referente ao {payment_bill}, submetido na data {payment_date}, via {payment_method}.

\n

Muito obrigado e tenha um ótimo dia !!!!

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(142, 9, 'he', 'Purchase Payment Create', '

שלום, {payment_name}

\n

ברוך הבא ל-{app_name}

\n

אנו כותבים כדי להודיע לך ששלחנו את התשלום עבור {payment_bill}.

\n

שלחנו את הסכום {payment_amount} עבור {payment_bill}, שהוגש בתאריך {payment_date}, באמצעות {payment_method}.

\n

תודה רבה ויום טוב !!!!

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(143, 9, 'tr', 'Purchase Payment Create', '

Merhaba, {payment_name}

\n

{app_name}\'e hoş geldiniz

\n

{payment_bill} ödemenizin gönderildiğini bildirmek için yazıyoruz.

\n

{payment_date} tarihinde {payment_method} aracılığıyla gönderilen {payment_bill} için {payment_amount} tutarındaki ödemeniz gönderilmiştir.

\n

Çok teşekkür ederiz ve iyi günler dileriz !!!!

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(144, 9, 'zh', 'Purchase Payment Create', '

您好, {payment_name}

\n

欢迎来到 {app_name}

\n

我们写信通知您,您的 {payment_bill} 付款已发送。

\n

我们已通过 {payment_method} 于 {payment_date} 发送金额为 {payment_amount} 的 {payment_bill} 付款。

\n

非常感谢,祝您有美好的一天 !!!!

\n

{company_name}

\n

{app_url}

', NULL, '\"{\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Payment Bill\\\": \\\"payment_bill\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\",\\n \\\"Payment Method\\\": \\\"payment_method\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(145, 10, 'ar', 'New Deal Assign', '

مرحبا،
تم تعيين صفقة جديدة لك.

اسم الصفقة : {deal_name}
خط أنابيب الصفقة : {deal_pipeline}
مرحلة الصفقة : {deal_stage}
حالة الصفقة : {deal_status}
سعر الصفقة : {deal_price}

شكرًا لك

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(146, 10, 'da', 'New Deal Assign', '

Hej,
New Deal er blevet tildelt til dig.

Deal Navn : {deal_name}
Deal Pipeline : {deal_pipeline}
Deal Fase : {deal_stage}
Deal status : {deal_status}
Deal pris : {deal_price}

Tak

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(147, 10, 'de', 'New Deal Assign', '

Hallo,
New Deal wurde Ihnen zugewiesen.

Geschäftsname : {deal_name}
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Ausgehandelter Preis : {deal_price}

Danke

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(148, 10, 'en', 'New Deal Assign', '

Hello,
New Deal has been Assign to you.

Deal Name : {deal_name}
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Deal Price : {deal_price}

Thank you

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(149, 10, 'es', 'New Deal Assign', '

Hola,
New Deal ha sido asignado a usted.

Nombre del trato : {deal_name}
Tubería de reparto : {deal_pipeline}
Etapa de reparto : {deal_stage}
Estado del acuerdo : {deal_status}
Precio de oferta : {deal_price}

Gracias

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(150, 10, 'fr', 'New Deal Assign', '

Bonjour,
Le New Deal vous a été attribué.

Nom de l`accord : {deal_name}
Pipeline de transactions : {deal_pipeline}
Étape de l`opération : {deal_stage}
Statut de l`accord : {deal_status}
Prix ​​de l offre : {deal_price}

Merci

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(151, 10, 'it', 'New Deal Assign', '

Ciao,
New Deal è stato assegnato a te.

Nome dell`affare : {deal_name}
Pipeline di offerte : {deal_pipeline}
Stage Deal : {deal_stage}
Stato dell`affare : {deal_status}
Prezzo dell`offerta : {deal_price}

Grazie

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(152, 10, 'ja', 'New Deal Assign', '

こんにちは、
新しい取引が割り当てられました。

取引名 : {deal_name}
取引パイプライン : {deal_pipeline}
取引ステージ : {deal_stage}
取引状況 : {deal_status}
取引価格 : {deal_price}

ありがとう

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(153, 10, 'nl', 'New Deal Assign', '

Hallo,
New Deal is aan u toegewezen.

Dealnaam : {deal_name}
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Dealstatus : {deal_status}
Deal prijs : {deal_price}

Bedankt

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(154, 10, 'pl', 'New Deal Assign', '

Witaj,
Nowa oferta została Ci przypisana.

Nazwa oferty : {deal_name}
Deal Pipeline : {deal_pipeline}
Etap transakcji : {deal_stage}
Status oferty : {deal_status}
Cena oferty : {deal_price}

Dziękuję

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(155, 10, 'ru', 'New Deal Assign', '

Привет,
Новый курс был назначен вам.

Название сделки : {deal_name}
Трубопровод сделки : {deal_pipeline}
Этап сделки : {deal_stage}
Статус сделки : {deal_status}
Цена сделки : {deal_price}

Спасибо

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(156, 10, 'pt', 'New Deal Assign', '

Hello,
New Deal has been Assign to you.

Deal Name : {deal_name}
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Deal Price : {deal_price}

Obrigado

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(157, 11, 'ar', 'Deal has been Moved', '

مرحبا،
تم نقل صفقة من {deal_old_stage} إلى  {deal_new_stage}.

اسم الصفقة : {deal_name}
خط أنابيب الصفقة : {deal_pipeline}
مرحلة الصفقة : {deal_stage}
حالة الصفقة : {deal_status}
سعر الصفقة : {deal_price}

شكرًا لك

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(158, 11, 'da', 'Deal has been Moved', '

Hej,
En aftale er flyttet fra {deal_old_stage} til  {deal_new_stage}.

Deal Navn : {deal_name}
Deal Pipeline : {deal_pipeline}
Deal Fase : {deal_stage}
Deal status : {deal_status}
Deal pris : {deal_price}

Tak

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(159, 11, 'de', 'Deal has been Moved', '

Hallo,
Ein Deal wurde verschoben {deal_old_stage} zu  {deal_new_stage}.

Geschäftsname : {deal_name}
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Ausgehandelter Preis : {deal_price}

Danke

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(160, 11, 'en', 'Deal has been Moved', '

Hello,
A Deal has been move from {deal_old_stage} to  {deal_new_stage}.

Deal Name : {deal_name}
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Deal Price : {deal_price}

Thank you

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(161, 11, 'es', 'Deal has been Moved', '

Hola,
Se ha movido un acuerdo de {deal_old_stage} a  {deal_new_stage}.

Nombre del trato : {deal_name}
Tubería de reparto : {deal_pipeline}
Etapa de reparto : {deal_stage}
Estado del acuerdo : {deal_status}
Precio de oferta : {deal_price}

Gracias

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'); +INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES +(162, 11, 'fr', 'Deal has been Moved', '

Bonjour,
Un accord a été déplacé de {deal_old_stage} à  {deal_new_stage}.

Nom de l`accord : {deal_name}
Pipeline de transactions : {deal_pipeline}
Étape de l`opération : {deal_stage}
Statut de l`accord : {deal_status}
Prix ​​de l`offre : {deal_price}

Merci

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(163, 11, 'it', 'Deal has been Moved', '

Ciao,
Un affare è stato spostato da {deal_old_stage} per  {deal_new_stage}.

Nome dell`affare : {deal_name}
Pipeline di offerte : {deal_pipeline}
Stage Deal : {deal_stage}
Stato dell`affare : {deal_status}
Prezzo dell`offerta : {deal_price}

Grazie

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(164, 11, 'ja', 'Deal has been Moved', '

こんにちは、
取引は {deal_old_stage} に  {deal_new_stage}.

取引名 : {deal_name}
取引パイプライン : {deal_pipeline}
取引ステージ : {deal_stage}
取引状況 : {deal_status}
取引価格 : {deal_price}

ありがとう

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(165, 11, 'nl', 'Deal has been Moved', '

Hallo,
Een deal is verplaatst van {deal_old_stage} naar  {deal_new_stage}.

Dealnaam : {deal_name}
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Dealstatus : {deal_status}
Deal prijs : {deal_price}

Bedankt

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(166, 11, 'pl', 'Deal has been Moved', '

Witaj,
Umowa została przeniesiona {deal_old_stage} do  {deal_new_stage}.

Nazwa oferty : {deal_name}
Deal Pipeline : {deal_pipeline}
Etap transakcji : {deal_stage}
Status oferty : {deal_status}
Cena oferty : {deal_price}

Dziękuję

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(167, 11, 'ru', 'Deal has been Moved', '

Привет,
Сделка была перемещена из {deal_old_stage} в  {deal_new_stage}.

Название сделки : {deal_name}
Трубопровод сделки : {deal_pipeline}
Этап сделки : {deal_stage}
Статус сделки : {deal_status}
Цена сделки : {deal_price}

Спасибо

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(168, 11, 'pt', 'Deal has been Moved', '

Hello,
A Deal has been move from {deal_old_stage} to  {deal_new_stage}.

Deal Name : {deal_name}
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Deal Price : {deal_price}

Obrigado

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Pipeline\\\": \\\"deal_pipeline\\\",\\n \\\"Deal Stage\\\": \\\"deal_stage\\\",\\n \\\"Deal Status\\\": \\\"deal_status\\\",\\n \\\"Deal Price\\\": \\\"deal_price\\\",\\n \\\"Deal Old Stage\\\": \\\"deal_old_stage\\\",\\n \\\"Deal New Stage\\\": \\\"deal_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(169, 12, 'ar', 'New Task Assign', '

مرحبا،
تم تعيين مهمة جديدة لك.

اسم المهمة : {task_name}
أولوية المهمة : {task_priority}
حالة المهمة : {task_status}
صفقة المهمة : {deal_name}

شكرًا لك

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(170, 12, 'da', 'New Task Assign', '

Hej,
Ny opgave er blevet tildelt til dig.

Opgavens navn : {task_name}
Opgaveprioritet : {task_priority}
Opgavestatus : {task_status}
Opgave : {deal_name}

Tak

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(171, 12, 'de', 'New Task Assign', '

Hallo,
Neue Aufgabe wurde Ihnen zugewiesen.

Aufgabennname : {task_name}
Aufgabenpriorität : {task_priority}
Aufgabenstatus : {task_status}
Task Deal : {deal_name}

Danke

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(172, 12, 'en', 'New Task Assign', '

Hello,
New Task has been Assign to you.

Task Name : {task_name}
Task Priority : {task_priority}
Task Status : {task_status}
Task Deal : {deal_name}

Thank you

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(173, 12, 'es', 'New Task Assign', '

Hola,
Nueva tarea ha sido asignada a usted.

Nombre de la tarea : {task_name}
Prioridad de tarea : {task_priority}
Estado de la tarea : {task_status}
Reparto de tarea : {deal_name}

Gracias

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(174, 12, 'fr', 'New Task Assign', '

Bonjour,
Une nouvelle tâche vous a été assignée.

Nom de la tâche : {task_name}
Priorité des tâches : {task_priority}
Statut de la tâche : {task_status}
Deal Task : {deal_name}

Merci

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(175, 12, 'it', 'New Task Assign', '

Ciao,
La nuova attività è stata assegnata a te.

Nome dell`attività : {task_name}
Priorità dell`attività : {task_priority}
Stato dell`attività : {task_status}
Affare : {deal_name}

Grazie

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(176, 12, 'ja', 'New Task Assign', '

こんにちは、
新しいタスクが割り当てられました。

タスク名 : {task_name}
タスクの優先度 : {task_priority}
タスクのステータス : {task_status}
タスク取引 : {deal_name}

ありがとう

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(177, 12, 'nl', 'New Task Assign', '

Hallo,
Nieuwe taak is aan u toegewezen.

Opdrachtnaam : {task_name}
Taakprioriteit : {task_priority}
Taakstatus : {task_status}
Task Deal : {deal_name}

Bedankt

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(178, 12, 'pl', 'New Task Assign', '

Witaj,
Nowe zadanie zostało Ci przypisane.

Nazwa zadania : {task_name}
Priorytet zadania : {task_priority}
Status zadania : {task_status}
Zadanie Deal : {deal_name}

Dziękuję

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(179, 12, 'ru', 'New Task Assign', '

Привет,
Новая задача была назначена вам.

Название задачи : {task_name}
Приоритет задачи : {task_priority}
Состояние задачи : {task_status}
Задача : {deal_name}

Спасибо

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(180, 12, 'pt', 'New Task Assign', '

Hello,
New Task has been Assign to you.

Task Name : {task_name}
Task Priority : {task_priority}
Task Status : {task_status}
Task Deal : {deal_name}

Obrigado

{company_name}

', NULL, '\"{\\n \\\"Task Name\\\": \\\"task_name\\\",\\n \\\"Task Priority\\\": \\\"task_priority\\\",\\n \\\"Task Status\\\": \\\"task_status\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(181, 13, 'ar', 'New Lead Assign', '

مرحبا،
تم تعيين عميل جديد لك.

اسم العميل المحتمل : {lead_name}
البريد الإلكتروني الرئيسي : {lead_email}
خط أنابيب الرصاص : {lead_pipeline}
مرحلة الرصاص : {lead_stage}

شكرًا لك

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(182, 13, 'da', 'New Lead Assign', '

Hej,
Ny bly er blevet tildelt dig.

Blynavn : {lead_name}
Lead-e-mail : {lead_email}
Blyrørledning : {lead_pipeline}
Lead scenen : {lead_stage}

Tak

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(183, 13, 'de', 'New Lead Assign', '

Hallo,
Neuer Lead wurde Ihnen zugewiesen.

Lead Name : {lead_name}
Lead-E-Mail : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}

Danke

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(184, 13, 'en', 'New Lead Assign', '

Hello,
New Lead has been Assign to you.

Lead Name : {lead_name}
Lead Email : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}

Thank you

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(185, 13, 'es', 'New Lead Assign', '

Hola,
Se le ha asignado un nuevo plomo.

Nombre principal : {lead_name}
Correo electrónico principal : {lead_email}
Tubería de plomo : {lead_pipeline}
Etapa de plomo : {lead_stage}

Gracias

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(186, 13, 'fr', 'New Lead Assign', '

Bonjour,
Un nouveau prospect vous a été attribué.

Nom du responsable : {lead_name}
Courriel principal : {lead_email}
Pipeline de plomb : {lead_pipeline}
Étape principale : {lead_stage}

Merci

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(187, 13, 'it', 'New Lead Assign', '

Ciao,
New Lead è stato assegnato a te.

Nome del lead : {lead_name}
Lead Email : {lead_email}
Conduttura di piombo : {lead_pipeline}
Lead Stage : {lead_stage}

Grazie

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(188, 13, 'ja', 'New Lead Assign', '

こんにちは、
新しいリードが割り当てられました。

リード名 : {lead_name}
リードメール : {lead_email}
リードパイプライン : {lead_pipeline}
リードステージ : {lead_stage}

ありがとう

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(189, 13, 'nl', 'New Lead Assign', '

Hallo,
Nieuwe lead is aan u toegewezen.

Lead naam : {lead_name}
E-mail leiden : {lead_email}
Lead Pipeline : {lead_pipeline}
Hoofdfase : {lead_stage}

Bedankt

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(190, 13, 'pl', 'New Lead Assign', '

Witaj,
Nowy potencjalny klient został do ciebie przypisany.

Imię i nazwisko : {lead_name}
Główny adres e-mail : {lead_email}
Ołów rurociągu : {lead_pipeline}
Etap prowadzący : {lead_stage}

Dziękuję

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(191, 13, 'ru', 'New Lead Assign', '

Привет,
Новый Лид был назначен вам.

Имя лидера : {lead_name}
Ведущий Email : {lead_email}
Ведущий трубопровод : {lead_pipeline}
Ведущий этап : {lead_stage}

Спасибо

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(192, 13, 'pt', 'New Lead Assign', '

Hello,
New Lead has been Assign to you.

Lead Name : {lead_name}
Lead Email : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}

Obrigado

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(193, 14, 'ar', 'Lead has been Moved', '

مرحبا،
تم نقل العميل المحتمل من {lead_old_stage} إلى  {lead_new_stage}.

اسم العميل المحتمل : {lead_name}
البريد الإلكتروني الرئيسي : {lead_email}
خط أنابيب الرصاص : {lead_pipeline}
مرحلة الرصاص : {lead_stage}

شكرًا لك

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(194, 14, 'da', 'Lead has been Moved', '

Hej,
En leder er flyttet fra {lead_old_stage} til  {lead_new_stage}.

Blynavn : {lead_name}
Lead-e-mail : {lead_email}
Blyrørledning : {lead_pipeline}
Lead scenen : {lead_stage}

Tak

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(195, 14, 'de', 'Lead has been Moved', '

Hallo,
Ein Lead wurde verschoben von {lead_old_stage} zu  {lead_new_stage}.

Lead Name : {lead_name}
Lead-E-Mail : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}

Danke

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(196, 14, 'en', 'Lead has been Moved', '

Hello,
A Lead has been move from {lead_old_stage} to  {lead_new_stage}.

Lead Name : {lead_name}
Lead Email : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}

Thank you

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(197, 14, 'es', 'Lead has been Moved', '

Hola,
Un plomo ha sido movido de {lead_old_stage} a  {lead_new_stage}.

Nombre principal : {lead_name}
Correo electrónico principal : {lead_email}
Tubería de plomo : {lead_pipeline}
Etapa de plomo : {lead_stage}

Gracias

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(198, 14, 'fr', 'Lead has been Moved', '

Bonjour,
Un lead a été déplacé de {lead_old_stage} à  {lead_new_stage}.

Nom du responsable : {lead_name}
Courriel principal : {lead_email}
Pipeline de plomb : {lead_pipeline}
Étape principale : {lead_stage}

Merci

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'); +INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES +(199, 14, 'it', 'Lead has been Moved', '

Ciao,
È stato spostato un lead {lead_old_stage} per  {lead_new_stage}.

Nome del lead : {lead_name}
Lead Email : {lead_email}
Conduttura di piombo : {lead_pipeline}
Lead Stage : {lead_stage}

Grazie

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(200, 14, 'ja', 'Lead has been Moved', '

こんにちは、
リードが移動しました {lead_old_stage} に  {lead_new_stage}.

リード名 : {lead_name}
リードメール : {lead_email}
リードパイプライン : {lead_pipeline}
リードステージ : {lead_stage}

ありがとう

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(201, 14, 'nl', 'Lead has been Moved', '

Hallo,
Er is een lead verplaatst van {lead_old_stage} naar  {lead_new_stage}.

Lead naam : {lead_name}
E-mail leiden : {lead_email}
Lead Pipeline : {lead_pipeline}
Hoofdfase : {lead_stage}

Bedankt

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(202, 14, 'pl', 'Lead has been Moved', '

Witaj,
Prowadzenie zostało przeniesione {lead_old_stage} do  {lead_new_stage}.

Imię i nazwisko : {lead_name}
Główny adres e-mail : {lead_email}
Ołów rurociągu : {lead_pipeline}
Etap prowadzący : {lead_stage}

Dziękuję

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(203, 14, 'ru', 'Lead has been Moved', '

Привет,
Свинец был двигаться от {lead_old_stage} в  {lead_new_stage}.

Имя лидера : {lead_name}
Ведущий Email : {lead_email}
Ведущий трубопровод : {lead_pipeline}
Ведущий этап : {lead_stage}

Спасибо

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(204, 14, 'pt', 'Lead has been Moved', '

Hello,
A Lead has been move from {lead_old_stage} to  {lead_new_stage}.

Lead Name : {lead_name}
Lead Email : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}

Obrigado

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Email\\\": \\\"lead_email\\\",\\n \\\"Lead Pipeline\\\": \\\"lead_pipeline\\\",\\n \\\"Lead Stage\\\": \\\"lead_stage\\\",\\n \\\"Lead Old Stage\\\": \\\"lead_old_stage\\\",\\n \\\"Lead New Stage\\\": \\\"lead_new_stage\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name \\\":\\\"company_name\\\",\\n \\\"Email\\\" : \\\"email\\\",\\n \\\"Password\\\" : \\\"password\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(205, 15, 'ar', 'Lead Email Create', '

مرحبًا،
مرحبًا بك في {app_name}.

اسم العميل المحتمل: {lead_name}

الموضوع: {lead_email_subject}

الوصف: {lead_email_description}

شكرًا،
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(206, 15, 'da', 'Lead Email Create', '

Hej
Velkommen til {app_name}.

Kundenavn: {lead_name}

Emne: {lead_email_subject}

Beskrivelse: {lead_email_description}

Tak,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(207, 15, 'de', 'Lead Email Create', '

Hallo,
Willkommen bei {app_name}.

Lead-Name: {lead_name}

Betreff: {lead_email_subject}

Beschreibung: {lead_email_description}

Danke,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(208, 15, 'en', 'Lead Email Create', '

Hello, 
Welcome to {app_name}.

Lead Name: {lead_name}

Subject: {lead_email_subject}

Description: {lead_email_description}

Thanks,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(209, 15, 'es', 'Lead Email Create', '

Hola,
Bienvenido a {app_name}.

Nombre del cliente potencial: {lead_name}

Asunto: {lead_email_subject}

Descripción: {lead_email_description}

Gracias,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(210, 15, 'fr', 'Lead Email Create', '

Bonjour,
Bienvenue sur {app_name}.

Nom du prospect: {lead_name}

Objet: {lead_email_subject}

Description: {lead_email_description}

Merci,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(211, 15, 'it', 'Lead Email Create', '

Ciao,
Benvenuto in {app_name}.

Nome lead: {lead_name}

Oggetto: {lead_email_subject}

Descrizione: {lead_email_description}

Grazie,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(212, 15, 'ja', 'Lead Email Create', '

こんにちは、
{app_name} へようこそ。

リード名: {lead_name}

件名: {lead_email_subject}

説明: {lead_email_description}

ありがとうございます。
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(213, 15, 'nl', 'Lead Email Create', '

Hallo,
Welkom bij {app_name}.

Leadnaam: {lead_name}

Onderwerp: {lead_email_subject}

Beschrijving: {lead_email_description}

Bedankt,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(214, 15, 'pl', 'Lead Email Create', '

Witamy,
Witamy w aplikacji {app_name}.

Nazwa potencjalnego klienta: {lead_name}

Temat: {lead_email_subject}

Opis: {lead_email_description}

Dzięki,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(215, 15, 'ru', 'Lead Email Create', '

Здравствуйте!
Добро пожаловать в {app_name}.

Имя лидера: {lead_name}

Тема: {lead_email_subject}

Описание: {lead_email_description}

Спасибо,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(216, 15, 'pt', 'Lead Email Create', '

Olá,
Bem-vindo ao {app_name}.

Nome do lead: {lead_name}

Assunto: {lead_email_subject}

Descrição: {lead_email_description}

Obrigado,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Lead Name\\\": \\\"lead_name\\\",\\n \\\"Lead Subject\\\": \\\"lead_email_subject\\\",\\n \\\"Lead Description\\\": \\\"lead_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(217, 16, 'ar', 'Deal Email Create', '

مرحبًا،
مرحبًا بك في {app_name}.

اسم الصفقة: {deal_name}

الموضوع: {deal_email_subject}

الوصف: {deal_email_description}

شكرًا،
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(218, 16, 'da', 'Deal Email Create', '

Hej
Velkommen til {app_name}.

Aftalens navn: {deal_name}

Emne: {deal_email_subject}

Beskrivelse: {deal_email_description}

Tak,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(219, 16, 'de', 'Deal Email Create', '

Hallo,
Willkommen bei {app_name}.

Dealname: {deal_name}

Betreff: {deal_email_subject}

Beschreibung: {deal_email_description}

Danke,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(220, 16, 'en', 'Deal Email Create', '

Hello, 
Welcome to {app_name}.

Deal Name: {deal_name}

Subject: {deal_email_subject}

Description: {deal_email_description}

Thanks,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(221, 16, 'es', 'Deal Email Create', '

Hola,
Bienvenido a {app_name}.

Nombre de la oferta: {deal_name}

Asunto: {deal_email_subject}

Descripción: {deal_email_description}

Gracias,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(222, 16, 'fr', 'Deal Email Create', '

Bonjour,
Bienvenue sur {app_name}.

Nom de l\'offre: {deal_name}

Objet: {deal_email_subject}

Description: {deal_email_description}

Merci,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(223, 16, 'it', 'Deal Email Create', '

Ciao,
Benvenuto in {app_name}.

Nome offerta: {deal_name}

Oggetto: {deal_email_subject}

Descrizione: {deal_email_description}

Grazie,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(224, 16, 'ja', 'Deal Email Create', '

こんにちは、
{app_name} へようこそ。

取引名: {deal_name}

件名: {deal_email_subject}

説明: {deal_email_description}

ありがとうございます。
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(225, 16, 'nl', 'Deal Email Create', '

Hallo,
Welkom bij {app_name}.

Dealnaam: {deal_name}

Onderwerp: {deal_email_subject}

Beschrijving: {deal_email_description}

Bedankt,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(226, 16, 'pl', 'Deal Email Create', '

Witamy,
Witamy w aplikacji {app_name}.

Nazwa umowy: {deal_name}

Temat: {deal_email_subject}

Opis: {deal_email_description}

Dzięki,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(227, 16, 'ru', 'Deal Email Create', '

Здравствуйте!
Добро пожаловать в {app_name}.

Название сделки: {deal_name}

Тема: {deal_email_subject}

Описание: {deal_email_description}

Спасибо,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(228, 16, 'pt', 'Deal Email Create', '

Olá,
Bem-vindo ao {app_name}.

Nome da transação: {deal_name}

Assunto: {deal_email_subject}

Descrição: {deal_email_description}

Obrigado,
{app_name}

{company_name}

', NULL, '\"{\\n \\\"Deal Name\\\": \\\"deal_name\\\",\\n \\\"Deal Subject\\\": \\\"deal_email_subject\\\",\\n \\\"Deal Description\\\": \\\"deal_email_description\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\"\\n }\"', '2026-03-14 06:00:08', '2026-03-14 06:00:08'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `employees` +-- + +CREATE TABLE `employees` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` varchar(255) NOT NULL, + `work_mode` enum('office','remote','hybrid') NOT NULL DEFAULT 'office', + `date_of_birth` date DEFAULT NULL, + `gender` varchar(255) NOT NULL DEFAULT 'Male', + `shift` bigint(20) UNSIGNED DEFAULT NULL, + `attendance_policy` varchar(255) DEFAULT NULL, + `date_of_joining` date DEFAULT NULL, + `employment_type` varchar(255) NOT NULL DEFAULT '0', + `address_line_1` varchar(255) DEFAULT NULL, + `address_line_2` varchar(255) DEFAULT NULL, + `city` varchar(255) DEFAULT NULL, + `state` varchar(255) DEFAULT NULL, + `country` varchar(255) DEFAULT NULL, + `postal_code` varchar(255) DEFAULT NULL, + `emergency_contact_name` varchar(255) DEFAULT NULL, + `emergency_contact_relationship` varchar(255) DEFAULT NULL, + `emergency_contact_number` varchar(20) DEFAULT NULL, + `bank_name` varchar(255) DEFAULT NULL, + `account_holder_name` varchar(255) DEFAULT NULL, + `account_number` varchar(255) DEFAULT NULL, + `bank_identifier_code` varchar(255) DEFAULT NULL, + `bank_branch` varchar(255) DEFAULT NULL, + `tax_payer_id` varchar(255) DEFAULT NULL, + `basic_salary` decimal(10,2) DEFAULT NULL, + `hours_per_day` decimal(8,2) DEFAULT NULL, + `days_per_week` decimal(8,2) DEFAULT NULL, + `rate_per_hour` decimal(8,2) DEFAULT NULL, + `user_id` bigint(20) UNSIGNED DEFAULT NULL, + `branch_id` bigint(20) UNSIGNED DEFAULT NULL, + `department_id` bigint(20) UNSIGNED DEFAULT NULL, + `designation_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `employees` +-- + +INSERT INTO `employees` (`id`, `employee_id`, `work_mode`, `date_of_birth`, `gender`, `shift`, `attendance_policy`, `date_of_joining`, `employment_type`, `address_line_1`, `address_line_2`, `city`, `state`, `country`, `postal_code`, `emergency_contact_name`, `emergency_contact_relationship`, `emergency_contact_number`, `bank_name`, `account_holder_name`, `account_number`, `bank_identifier_code`, `bank_branch`, `tax_payer_id`, `basic_salary`, `hours_per_day`, `days_per_week`, `rate_per_hour`, `user_id`, `branch_id`, `department_id`, `designation_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'EMP20260001', 'office', '1971-02-09', 'Female', 6, NULL, '2024-08-05', 'Part Time', '4662 First St', 'Apt 155', 'San Diego', 'Texas', 'Germany', '74698', 'David Brown', 'Spouse', '+17822670976', 'Bank of America', 'Jane Doe', '3602979754', 'CHAS4536', 'South Branch', 'TAX937468479', 35674.72, 8.50, 6.00, 46.47, 8, 6, 18, 79, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'EMP20260002', 'office', '1971-10-17', 'Female', 5, NULL, '2024-04-14', 'Temporary', '5626 Main St', 'Apt 457', 'New York', 'Texas', 'France', '19770', 'Michael Johnson', 'Friend', '+15415298444', 'Chase Bank', 'Michael Johnson', '3485323828', 'WELL1002', 'North Branch', 'TAX312023643', 54016.36, 8.50, 6.00, 30.98, 10, 3, 9, 41, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'EMP20260003', 'office', '1997-10-10', 'Other', 6, NULL, '2024-05-09', 'Part Time', '889 Second Ave', NULL, 'San Antonio', 'New York', 'Australia', '22880', 'John Smith', 'Sibling', '+15005706093', 'Wells Fargo', 'Sarah Wilson', '8700876120', 'BANK5210', 'Main Branch', 'TAX842396944', 74037.97, 8.00, 7.00, 19.06, 12, 9, 26, 116, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'EMP20260004', 'office', '1975-05-02', 'Female', 4, NULL, '2026-02-06', 'Full Time', '2472 Main St', 'Apt 103', 'Houston', 'Texas', 'United States', '44410', 'Jane Doe', 'Friend', '+15239353711', 'TD Bank', 'Michael Johnson', '1182178574', 'CAPI9249', 'South Branch', 'TAX566349700', 45182.96, 6.50, 6.00, 19.48, 14, 3, 8, 36, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'EMP20260005', 'office', '1999-05-26', 'Male', 3, NULL, '2025-11-18', 'Contract', '302 Main St', NULL, 'Houston', 'Illinois', 'United Kingdom', '17931', 'David Brown', 'Parent', '+19357985895', 'Bank of America', 'Jane Doe', '5237964554', 'CITI1582', 'South Branch', 'TAX792291979', 62451.40, 6.50, 7.00, 27.83, 16, 9, 25, 112, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 'EMP20260006', 'office', '1993-05-14', 'Other', 4, NULL, '2024-02-27', 'Full Time', '9483 Main St', 'Apt 19', 'San Antonio', 'New York', 'India', '38223', 'David Brown', 'Parent', '+15346698222', 'PNC Bank', 'Michael Johnson', '7682528789', 'BANK7112', 'Downtown', 'TAX148810771', 41854.55, 7.00, 7.00, 15.26, 18, 2, 6, 24, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 'EMP20260007', 'office', '2000-02-06', 'Male', 3, NULL, '2025-07-13', 'Part Time', '1982 Park Blvd', 'Apt 740', 'San Antonio', 'Ohio', 'Australia', '75636', 'Michael Johnson', 'Parent', '+13242651562', 'TD Bank', 'Jane Doe', '8301216127', 'US B5716', 'Main Branch', 'TAX749837686', 60425.51, 7.50, 7.00, 21.74, 20, 1, 3, 11, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 'EMP20260008', 'office', '1972-03-10', 'Female', 2, NULL, '2025-04-20', 'Part Time', '9462 Main St', 'Apt 159', 'Phoenix', 'Florida', 'France', '16772', 'David Brown', 'Sibling', '+18439712986', 'Chase Bank', 'John Smith', '4209704672', 'US B3056', 'South Branch', 'TAX790869570', 57111.03, 7.00, 6.00, 46.89, 22, 7, 19, 84, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 'EMP20260009', 'office', '1999-06-16', 'Male', 3, NULL, '2025-09-08', 'Temporary', '416 First St', NULL, 'Los Angeles', 'Texas', 'United States', '42312', 'John Smith', 'Spouse', '+13763777838', 'Capital One', 'Jane Doe', '7999590361', 'TD B2306', 'South Branch', 'TAX227398410', 43348.78, 8.50, 7.00, 27.10, 24, 5, 15, 67, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 'EMP20260010', 'office', '1973-07-01', 'Male', 2, NULL, '2024-12-23', 'Temporary', '3346 First St', 'Apt 638', 'Houston', 'Georgia', 'India', '84115', 'Jane Doe', 'Relative', '+15336569740', 'Citibank', 'Michael Johnson', '3190665822', 'US B8728', 'Uptown', 'TAX639814179', 52602.96, 8.50, 7.00, 38.67, 26, 1, 1, 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(21, 'SEB-001', 'office', '1991-01-31', 'male', NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9.00, 6.00, 0.00, 58, NULL, 33, 145, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(22, 'SEB2018-2008T', 'office', '1985-04-25', 'female', NULL, NULL, '2019-08-27', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9.00, 6.00, 111.11, 71, NULL, 34, 146, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(23, 'SEB2018-2024T', 'office', '1997-10-16', 'female', NULL, NULL, '2022-05-05', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9.00, 6.00, 111.11, 72, NULL, 34, 146, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(24, 'SEB2024-2101T', 'office', '1994-12-11', 'female', NULL, NULL, '2024-04-15', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9.00, 6.00, 102.56, 73, NULL, 34, 147, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(25, 'SEB2018-2023T', 'office', '1994-05-20', 'male', NULL, NULL, '2021-10-01', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9.00, 6.00, 94.02, 74, NULL, 34, 148, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(26, 'SEB2018-2013T', 'office', '1983-04-25', 'female', NULL, NULL, '2018-12-03', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9.00, 6.00, 85.00, 75, NULL, 34, 149, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(27, 'SEB2018-2033T', 'office', '1996-12-12', 'male', NULL, NULL, '2022-11-04', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9.00, 6.00, 82.22, 76, NULL, 34, 149, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(28, 'SEB2023-2068H', 'office', '1997-07-01', 'male', NULL, NULL, '2023-06-29', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9.00, 6.00, 94.02, 77, NULL, 33, 151, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(29, 'SEB2024-2109T', 'office', '1992-11-12', 'female', NULL, NULL, '2024-11-04', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9.00, 6.00, 77.22, 78, NULL, 34, 149, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(30, 'SEB2024-2111T', 'office', '1975-06-26', 'female', NULL, NULL, '2024-11-25', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9.00, 6.00, 77.22, 79, NULL, 34, 149, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(32, 'EMP20260012', 'office', '2000-04-01', 'Other', 2, NULL, '2000-04-01', 'Contract', '123', NULL, 'QC', 'QC', 'Philippines', '1000', 'Jane Smiths', 'Secret', '+6398745632156', 'Chai na De Oro', 'Jane Smith', '123456789', '123', 'Manila', '1231', 30000.00, 9.00, 5.00, 153.85, 81, 2, 5, 22, 2, 2, '2026-04-06 01:27:50', '2026-04-06 01:27:50'), +(33, 'EMP20260013', 'office', '2007-04-02', 'Female', 5, NULL, '2023-04-03', 'Full Time', '123', NULL, 'Quezon City', 'Quezon City', 'Philippines', '1000', 'Jane', 'Mother', '+6398745632154', 'Chai De Oro', 'Karyll Test 1', '123456789', '1234', 'Quezon City', '123456', 30000.00, 9.00, 5.00, 153.85, 82, 8, 23, 101, 2, 2, '2026-04-13 12:56:19', '2026-04-13 12:56:19'), +(34, 'EMP20260014', 'office', '2000-04-03', 'Female', 5, NULL, '2025-04-07', 'Full Time', '1234', NULL, 'Manila', 'Manila', 'Philippines', '1000', 'Jane', 'Mother', '+6398745632156', 'De Oro', 'Karyll Test 2', '123456', '1234', 'Manila', '123', 30000.00, 9.00, 5.00, 153.85, 83, 7, 20, 88, 2, 2, '2026-04-13 13:01:10', '2026-04-13 13:01:10'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `employee_certifications` +-- + +CREATE TABLE `employee_certifications` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `certification_id` bigint(20) UNSIGNED NOT NULL, + `certificate_number` varchar(255) DEFAULT NULL, + `issue_date` date NOT NULL, + `expiry_date` date DEFAULT NULL, + `document_path` varchar(255) DEFAULT NULL, + `status` enum('active','expiring','expired','renewed') NOT NULL DEFAULT 'active', + `notes` text DEFAULT NULL, + `verified_by` bigint(20) UNSIGNED DEFAULT NULL, + `verified_at` timestamp NULL DEFAULT NULL, + `created_by` 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 `employee_documents` +-- + +CREATE TABLE `employee_documents` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `document_type_id` bigint(20) UNSIGNED NOT NULL, + `file_path` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `employee_documents` +-- + +INSERT INTO `employee_documents` (`id`, `user_id`, `document_type_id`, `file_path`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(2, 32, 1, 'employee_documents/Lorem ipsum_1775410070.pdf', 2, 2, '2026-04-06 01:27:50', '2026-04-06 01:27:50'), +(3, 33, 3, 'employee_documents/Lorem ipsum_1776056179.pdf', 2, 2, '2026-04-13 12:56:19', '2026-04-13 12:56:19'), +(4, 34, 3, 'employee_documents/Lorem ipsum_1776056470.pdf', 2, 2, '2026-04-13 13:01:10', '2026-04-13 13:01:10'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `employee_document_types` +-- + +CREATE TABLE `employee_document_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `document_name` varchar(255) NOT NULL, + `description` longtext DEFAULT NULL, + `is_required` tinyint(1) NOT NULL DEFAULT 0, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `employee_document_types` +-- + +INSERT INTO `employee_document_types` (`id`, `document_name`, `description`, `is_required`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'National Identity Card', 'Government-issued national identity card for official identification and verification of citizenship status.', 1, 2, 2, '2025-09-15 09:17:48', '2025-09-15 09:17:48'), +(2, 'Passport', 'Official government-issued passport document for international travel and primary identification purposes.', 1, 2, 2, '2025-09-17 10:47:48', '2025-09-17 10:47:48'), +(3, 'Birth Certificate', 'Official birth certificate issued by government authorities to verify date and place of birth.', 1, 2, 2, '2025-09-20 11:32:48', '2025-09-20 11:32:48'), +(4, 'Social Security Card', 'Social security card or equivalent document for tax identification and government benefit purposes.', 1, 2, 2, '2025-09-23 15:02:48', '2025-09-23 15:02:48'), +(5, 'Educational Degree Certificate', 'Official degree certificate from accredited educational institution verifying highest qualification achieved.', 1, 2, 2, '2025-09-25 13:37:48', '2025-09-25 13:37:48'), +(6, 'Professional Resume', 'Comprehensive resume detailing work experience, education, skills, and professional achievements.', 1, 2, 2, '2025-09-27 15:27:48', '2025-09-27 15:27:48'), +(7, 'Bank Account Statement', 'Recent bank account statement or bank verification letter for salary deposit and financial verification.', 1, 2, 2, '2025-09-30 12:17:48', '2025-09-30 12:17:48'), +(8, 'Professional Photograph', 'Recent passport-sized professional photograph for employee identification card and official records.', 1, 2, 2, '2025-10-03 16:47:48', '2025-10-03 16:47:48'), +(9, 'Medical Fitness Certificate', 'Medical certificate from licensed physician confirming physical and mental fitness for employment.', 1, 2, 2, '2025-10-05 11:02:48', '2025-10-05 11:02:48'), +(10, 'Employment Authorization Document', 'Legal work authorization document or visa permitting employment in the country of operation.', 1, 2, 2, '2025-10-07 14:32:48', '2025-10-07 14:32:48'), +(11, 'Tax Identification Number', 'Official tax identification number or taxpayer registration certificate for payroll processing.', 1, 2, 2, '2025-10-10 08:47:48', '2025-10-10 08:47:48'), +(12, 'Emergency Contact Information', 'Detailed emergency contact information including names, relationships, and contact numbers of family members.', 1, 2, 2, '2025-10-13 09:17:48', '2025-10-13 09:17:48'), +(13, 'Previous Employment Letter', 'Employment verification letter from previous employer detailing job role, duration, and performance.', 0, 2, 2, '2025-10-15 11:37:48', '2025-10-15 11:37:48'), +(14, 'Professional License Certificate', 'Professional license or certification required for specific job roles and industry compliance.', 0, 2, 2, '2025-10-17 14:02:48', '2025-10-17 14:02:48'), +(15, 'Character Reference Letters', 'Character reference letters from previous employers, colleagues, or professional contacts.', 0, 2, 2, '2025-10-20 15:42:48', '2025-10-20 15:42:48'), +(16, 'Academic Transcripts', 'Official academic transcripts from educational institutions showing grades and course completion.', 0, 2, 2, '2025-10-23 12:27:48', '2025-10-23 12:27:48'), +(17, 'Driving License', 'Valid driving license for positions requiring vehicle operation or transportation responsibilities.', 0, 2, 2, '2025-10-25 14:52:48', '2025-10-25 14:52:48'), +(18, 'Insurance Documentation', 'Health insurance documentation or proof of coverage for employee benefit enrollment.', 0, 2, 2, '2025-10-27 16:17:48', '2025-10-27 16:17:48'), +(19, 'Background Check Authorization', 'Signed authorization form permitting comprehensive background check and criminal record verification.', 1, 2, 2, '2025-10-30 11:07:48', '2025-10-30 11:07:48'), +(20, 'Non-Disclosure Agreement', 'Signed non-disclosure agreement protecting company confidential information and trade secrets.', 1, 2, 2, '2025-11-02 13:32:48', '2025-11-02 13:32:48'), +(21, 'Employment Contract', 'Signed employment contract outlining terms, conditions, salary, benefits, and job responsibilities.', 1, 2, 2, '2025-11-04 11:57:48', '2025-11-04 11:57:48'), +(22, 'Drug Test Results', 'Pre-employment drug screening test results from certified medical laboratory or testing facility.', 0, 2, 2, '2025-11-06 15:22:48', '2025-11-06 15:22:48'), +(23, 'Salary Expectation Form', 'Completed salary expectation and compensation requirement form for payroll setup and negotiation.', 0, 2, 2, '2025-11-09 09:42:48', '2025-11-09 09:42:48'), +(24, 'Training Certificates', 'Professional training certificates and skill development course completion documents.', 0, 2, 2, '2025-11-12 13:12:48', '2025-11-12 13:12:48'), +(25, 'Portfolio Documentation', 'Professional portfolio showcasing previous work samples, projects, and creative achievements.', 0, 2, 2, '2025-11-14 14:37:48', '2025-11-14 14:37:48'), +(26, 'Language Proficiency Certificate', 'Language proficiency test results or certificates for multilingual positions and international roles.', 0, 2, 2, '2025-11-16 17:02:48', '2025-11-16 17:02:48'), +(27, 'Security Clearance Documentation', 'Security clearance certificates and background verification for sensitive positions and government contracts.', 0, 2, 2, '2025-11-19 08:27:48', '2025-11-19 08:27:48'), +(28, 'Pension Fund Documentation', 'Pension fund enrollment forms and retirement benefit documentation for long-term employee benefits.', 0, 2, 2, '2025-11-22 10:52:48', '2025-11-22 10:52:48'), +(29, 'Union Membership Certificate', 'Labor union membership certificate and documentation for unionized positions and collective bargaining.', 0, 2, 2, '2025-11-24 13:17:48', '2025-11-24 13:17:48'), +(30, 'Performance Evaluation Records', 'Previous performance evaluation records and appraisal documents from former employers.', 0, 2, 2, '2025-11-26 15:47:48', '2025-11-26 15:47:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `employee_salary_items` +-- + +CREATE TABLE `employee_salary_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `salary_structure_id` bigint(20) UNSIGNED NOT NULL, + `salary_component_id` bigint(20) UNSIGNED NOT NULL, + `amount` decimal(12,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 `employee_salary_items` +-- + +INSERT INTO `employee_salary_items` (`id`, `salary_structure_id`, `salary_component_id`, `amount`, `created_at`, `updated_at`) VALUES +(1, 1, 1, 12500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(2, 1, 2, 1250.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(3, 1, 3, 1250.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(4, 1, 4, 1125.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(5, 1, 5, 625.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(6, 1, 6, 500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(7, 1, 7, 625.05, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(8, 2, 1, 15000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(9, 2, 2, 1500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(10, 2, 3, 1500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(11, 2, 4, 1350.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(12, 2, 5, 750.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(13, 2, 6, 600.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(14, 2, 7, 1375.05, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(15, 3, 1, 17500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(16, 3, 2, 1750.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(17, 3, 3, 1750.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(18, 3, 4, 1350.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(19, 3, 5, 875.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(20, 3, 6, 700.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(21, 3, 7, 2125.05, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(22, 4, 1, 20000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(23, 4, 2, 2000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(24, 4, 3, 2000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(25, 4, 4, 1350.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(26, 4, 5, 1000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(27, 4, 6, 800.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(28, 4, 7, 2875.05, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(29, 5, 1, 25000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(30, 5, 2, 2500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(31, 5, 3, 2500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(32, 5, 4, 1350.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(33, 5, 5, 1250.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(34, 5, 6, 1000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(35, 5, 7, 4375.05, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(36, 6, 1, 30000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(37, 6, 2, 3000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(38, 6, 3, 3000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(39, 6, 4, 1350.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(40, 6, 5, 1500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(41, 6, 6, 1200.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(42, 6, 7, 5875.05, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(43, 7, 1, 37500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(44, 7, 2, 3750.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(45, 7, 3, 3750.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(46, 7, 4, 1350.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(47, 7, 5, 1875.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(48, 7, 6, 1500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(49, 7, 7, 8125.05, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(50, 8, 1, 45000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(51, 8, 2, 4500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(52, 8, 3, 4500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(53, 8, 4, 1350.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(54, 8, 5, 2250.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(55, 8, 6, 1800.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(56, 8, 7, 10375.05, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(57, 9, 1, 12500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(58, 9, 2, 1250.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(59, 9, 3, 1250.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(60, 9, 4, 1125.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(61, 9, 5, 625.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(62, 9, 6, 500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(63, 9, 7, 625.05, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(64, 10, 1, 15000.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(65, 10, 2, 1500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(66, 10, 3, 1500.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(67, 10, 4, 1350.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(68, 10, 5, 750.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(69, 10, 6, 600.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(70, 10, 7, 1375.05, '2026-03-14 00:17:54', '2026-03-14 00:17:54'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `employee_salary_structures` +-- + +CREATE TABLE `employee_salary_structures` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `gross_salary` decimal(12,2) NOT NULL DEFAULT 0.00, + `daily_rate` decimal(10,2) DEFAULT NULL, + `pay_frequency` varchar(255) NOT NULL DEFAULT 'semi-monthly', + `pay_group_id` bigint(20) UNSIGNED DEFAULT NULL, + `is_exempt` tinyint(1) NOT NULL DEFAULT 0, + `statutory_override` varchar(255) DEFAULT NULL COMMENT 'null=follow global, auto, manual', + `status` varchar(255) NOT NULL DEFAULT 'active', + `created_by` 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; + +-- +-- Dumping data for table `employee_salary_structures` +-- + +INSERT INTO `employee_salary_structures` (`id`, `user_id`, `gross_salary`, `daily_rate`, `pay_frequency`, `pay_group_id`, `is_exempt`, `statutory_override`, `status`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 8, 25000.00, 961.54, 'semi_monthly', 1, 1, NULL, 'active', 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(2, 10, 30000.00, 1153.85, 'semi_monthly', 1, 1, NULL, 'active', 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(3, 12, 35000.00, 1346.15, 'semi_monthly', 1, 1, NULL, 'active', 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(4, 14, 40000.00, 1538.46, 'semi_monthly', 1, 0, NULL, 'active', 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(5, 16, 50000.00, 1923.08, 'semi_monthly', 1, 0, NULL, 'active', 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(6, 18, 60000.00, 2307.69, 'semi_monthly', 1, 0, NULL, 'active', 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(7, 20, 75000.00, 2884.62, 'semi_monthly', 1, 0, NULL, 'active', 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(8, 22, 90000.00, 3461.54, 'semi_monthly', 1, 0, NULL, 'active', 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(9, 24, 25000.00, 961.54, 'semi_monthly', 1, 0, NULL, 'active', 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(10, 26, 30000.00, 1153.85, 'semi_monthly', 1, 0, NULL, 'active', 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(11, 58, 1.00, 0.04, 'daily', 8, 0, NULL, 'active', 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(12, 71, 26000.00, 1000.00, 'semi-monthly', 7, 1, NULL, 'active', 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(13, 72, 26000.00, 1000.00, 'semi-monthly', 7, 1, NULL, 'active', 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(14, 73, 24000.00, 923.08, 'semi-monthly', 7, 1, NULL, 'active', 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(15, 74, 22000.00, 846.15, 'semi-monthly', 7, 1, NULL, 'active', 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(16, 75, 18360.00, 765.00, 'daily', 8, 0, NULL, 'active', 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(17, 76, 17760.00, 740.00, 'daily', 8, 0, NULL, 'active', 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(18, 77, 22000.00, 846.15, 'semi-monthly', 9, 0, NULL, 'active', 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(19, 78, 16680.00, 695.00, 'daily', 8, 0, NULL, 'active', 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(20, 79, 16680.00, 695.00, 'daily', 8, 0, NULL, 'active', 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `employee_skills` +-- + +CREATE TABLE `employee_skills` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `skill_id` bigint(20) UNSIGNED NOT NULL, + `proficiency_level` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1-5 scale', + `self_assessed_at` timestamp NULL DEFAULT NULL, + `verified_by` bigint(20) UNSIGNED DEFAULT NULL, + `verified_at` timestamp NULL DEFAULT NULL, + `notes` text DEFAULT NULL, + `created_by` 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 `employee_transfers` +-- + +CREATE TABLE `employee_transfers` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `from_branch_id` bigint(20) UNSIGNED DEFAULT NULL, + `from_department_id` bigint(20) UNSIGNED DEFAULT NULL, + `from_designation_id` bigint(20) UNSIGNED DEFAULT NULL, + `to_branch_id` bigint(20) UNSIGNED DEFAULT NULL, + `to_department_id` bigint(20) UNSIGNED DEFAULT NULL, + `to_designation_id` bigint(20) UNSIGNED DEFAULT NULL, + `transfer_date` date DEFAULT NULL, + `effective_date` date NOT NULL, + `reason` text DEFAULT NULL, + `status` enum('pending','approved','in progress','rejected','cancelled') NOT NULL DEFAULT 'pending', + `document` varchar(255) DEFAULT NULL, + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `employee_transfers` +-- + +INSERT INTO `employee_transfers` (`id`, `employee_id`, `from_branch_id`, `from_department_id`, `from_designation_id`, `to_branch_id`, `to_department_id`, `to_designation_id`, `transfer_date`, `effective_date`, `reason`, `status`, `document`, `approved_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 8, 1, 1, 4, 4, 11, 50, '2025-09-20', '2025-10-06', 'Business expansion requiring experienced personnel to establish operations in new regional office location.', 'in progress', 'transfer4.png', NULL, 2, 2, '2025-09-22 10:18:49', '2025-09-22 08:35:49'), +(2, 10, 1, 2, 6, 4, 11, 49, '2025-09-25', '2025-10-07', 'Organizational restructuring necessitating employee relocation to optimize departmental efficiency and resource allocation.', 'approved', NULL, 34, 2, 2, '2025-09-27 12:49:49', '2025-09-27 13:56:49'), +(3, 12, 1, 3, 11, 4, 10, 44, '2025-09-30', '2025-10-17', 'Career development opportunity providing exposure to different business functions and professional growth experience.', 'in progress', 'transfer1.png', NULL, 2, 2, '2025-10-02 17:39:49', '2025-10-02 11:19:49'), +(4, 14, 2, 4, 16, 3, 8, 34, '2025-10-05', '2025-10-17', 'Skill set alignment with departmental requirements offering better utilization of employee expertise and capabilities.', 'pending', NULL, NULL, 2, 2, '2025-10-07 08:28:49', '2025-10-07 16:17:49'), +(5, 16, 2, 5, 23, 3, 8, 34, '2025-10-10', '2025-10-31', 'Project assignment requiring specialized knowledge and experience available in different organizational division.', 'in progress', 'transfer2.png', NULL, 2, 2, '2025-10-12 14:39:49', '2025-10-12 08:23:49'), +(6, 18, 2, 6, 26, 1, 2, 10, '2025-10-15', '2025-10-31', 'Cost optimization initiative through strategic workforce redistribution and operational efficiency improvement measures.', 'approved', NULL, 27, 2, 2, '2025-10-17 13:13:49', '2025-10-17 15:38:49'), +(7, 20, 3, 7, 31, 7, 21, 90, '2025-10-20', '2025-10-30', 'Employee request for transfer due to personal circumstances and family relocation requirements.', 'approved', 'transfer3.png', 50, 2, 2, '2025-10-22 12:58:49', '2025-10-22 18:13:49'), +(8, 22, 3, 8, 33, 5, 14, 64, '2025-10-25', '2025-11-04', 'Performance improvement opportunity through new challenges and responsibilities in different work environment.', 'approved', NULL, 38, 2, 2, '2025-10-27 15:18:49', '2025-10-27 13:30:49'), +(9, 24, 3, 9, 38, 8, 23, 102, '2025-10-30', '2025-11-19', 'Succession planning initiative preparing employee for leadership role through cross-functional experience.', 'approved', 'transfer2.png', 11, 2, 2, '2025-11-01 15:38:49', '2025-11-01 12:32:49'), +(10, 26, 4, 10, 45, 1, 3, 14, '2025-11-04', '2025-11-16', 'Market expansion strategy requiring experienced staff to support new business development initiatives.', 'pending', NULL, NULL, 2, 2, '2025-11-06 17:57:49', '2025-11-06 14:17:49'), +(11, 8, 4, 11, 49, 7, 19, 82, '2025-11-09', '2025-11-23', 'Technology implementation project requiring technical expertise and change management support in target location.', 'in progress', 'transfer3.png', NULL, 2, 2, '2025-11-11 17:34:49', '2025-11-11 15:37:49'), +(12, 10, 4, 12, 54, 5, 15, 66, '2025-11-14', '2025-12-02', 'Customer service enhancement initiative through strategic placement of experienced personnel in key locations.', 'in progress', NULL, NULL, 2, 2, '2025-11-16 11:51:49', '2025-11-16 08:40:49'), +(13, 12, 5, 13, 60, 7, 21, 93, '2025-11-19', '2025-12-08', 'Training and development program providing mentorship opportunities and knowledge transfer to junior staff.', 'cancelled', 'transfer1.png', NULL, 2, 2, '2025-11-21 14:15:49', '2025-11-21 08:59:49'), +(14, 14, 5, 14, 62, 7, 20, 88, '2025-11-24', '2025-12-07', 'Operational efficiency improvement through better resource allocation and workload distribution across departments.', 'pending', NULL, NULL, 2, 2, '2025-11-26 15:38:49', '2025-11-26 10:05:49'), +(15, 16, 5, 15, 66, 2, 5, 22, '2025-11-29', '2025-12-09', 'Strategic partnership development requiring experienced personnel to manage client relationships and business growth.', 'approved', 'transfer3.png', 11, 2, 2, '2025-12-01 15:16:49', '2025-12-01 16:29:49'), +(16, 18, 6, 16, 72, 7, 21, 90, '2025-12-04', '2025-12-14', 'Quality assurance enhancement through deployment of experienced quality control specialists to critical locations.', 'approved', NULL, 40, 2, 2, '2025-12-06 10:55:49', '2025-12-06 09:23:49'), +(17, 20, 6, 17, 76, 7, 19, 84, '2025-12-09', '2025-12-28', 'Risk management initiative requiring experienced personnel to implement compliance and governance procedures.', 'rejected', 'transfer4.png', NULL, 2, 2, '2025-12-11 10:39:49', '2025-12-11 12:40:49'), +(18, 22, 6, 18, 78, 5, 15, 65, '2025-12-14', '2025-12-24', 'Innovation project requiring creative thinking and problem-solving expertise in research and development division.', 'approved', NULL, 24, 2, 2, '2025-12-16 09:35:49', '2025-12-16 16:01:49'), +(19, 24, 7, 19, 83, 5, 14, 63, '2025-12-19', '2026-01-01', 'Leadership development program providing management experience and strategic decision-making responsibilities.', 'in progress', 'transfer1.png', NULL, 2, 2, '2025-12-21 08:58:49', '2025-12-21 09:04:49'), +(20, 26, 7, 20, 87, 2, 6, 24, '2025-12-24', '2026-01-03', 'Client relationship management requiring experienced account managers to maintain and grow key partnerships.', 'approved', NULL, 8, 2, 2, '2025-12-26 15:41:49', '2025-12-26 12:31:49'), +(21, 8, 7, 21, 90, 9, 25, 112, '2025-12-29', '2026-01-12', 'Process improvement initiative through deployment of lean management specialists to optimize operational workflows.', 'approved', 'transfer1.png', 32, 2, 2, '2025-12-31 15:27:49', '2025-12-31 11:31:49'), +(22, 10, 8, 22, 96, 2, 5, 20, '2026-01-03', '2026-01-12', 'Digital transformation project requiring technology adoption expertise and change management support.', 'approved', NULL, 9, 2, 2, '2026-01-05 12:20:49', '2026-01-05 13:41:49'), +(23, 12, 8, 23, 101, 9, 27, 119, '2026-01-08', '2026-01-26', 'Regulatory compliance enhancement requiring experienced personnel to ensure adherence to industry standards.', 'approved', 'transfer3.png', 56, 2, 2, '2026-01-10 15:56:49', '2026-01-10 16:00:49'), +(24, 14, 8, 24, 104, 1, 2, 9, '2026-01-13', '2026-01-22', 'Supply chain optimization requiring logistics expertise and vendor management experience in new location.', 'approved', NULL, 57, 2, 2, '2026-01-15 18:02:49', '2026-01-15 08:27:49'), +(25, 16, 9, 25, 110, 8, 23, 101, '2026-01-18', '2026-01-26', 'Financial management improvement requiring experienced accounting and budgeting specialists for cost control.', 'in progress', 'transfer3.png', NULL, 2, 2, '2026-01-20 17:33:49', '2026-01-20 17:22:49'), +(26, 18, 9, 26, 114, 1, 2, 6, '2026-01-23', '2026-02-03', 'Human resources development requiring experienced HR professionals to implement talent management programs.', 'in progress', NULL, NULL, 2, 2, '2026-01-25 08:50:49', '2026-01-25 13:02:49'), +(27, 20, 9, 27, 122, 8, 23, 100, '2026-01-28', '2026-02-06', 'Sales performance enhancement requiring experienced sales professionals to drive revenue growth initiatives.', 'rejected', 'transfer2.png', NULL, 2, 2, '2026-01-30 08:54:49', '2026-01-30 14:42:49'), +(28, 22, 10, 28, 127, 7, 20, 85, '2026-02-02', '2026-02-09', 'Environmental sustainability initiative requiring expertise in green practices and corporate social responsibility.', 'approved', NULL, 52, 2, 2, '2026-02-04 09:14:49', '2026-02-04 17:57:49'), +(29, 24, 10, 29, 130, 4, 10, 43, '2026-02-07', '2026-02-28', 'International expansion requiring cultural adaptation expertise and global business development experience.', 'approved', 'transfer2.png', 39, 2, 2, '2026-02-09 16:32:49', '2026-02-09 14:11:49'), +(30, 26, 10, 30, 136, 3, 8, 35, '2026-02-12', '2026-02-24', 'Emergency response planning requiring experienced personnel to establish crisis management protocols.', 'pending', NULL, NULL, 2, 2, '2026-02-14 12:24:49', '2026-02-14 16:44:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `engagements` +-- + +CREATE TABLE `engagements` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `client_name` varchar(255) DEFAULT NULL, + `project_id` bigint(20) UNSIGNED DEFAULT NULL, + `type` enum('audit','tax','advisory','bas','other') NOT NULL DEFAULT 'other', + `status` enum('pursuit','open','active','completed','cancelled') NOT NULL DEFAULT 'pursuit', + `priority` enum('high','medium','low') NOT NULL DEFAULT 'medium', + `start_date` date DEFAULT NULL, + `end_date` date DEFAULT NULL, + `budget_hours` decimal(10,2) DEFAULT NULL, + `partner_id` bigint(20) UNSIGNED DEFAULT NULL, + `manager_id` bigint(20) UNSIGNED DEFAULT NULL, + `branch_id` bigint(20) UNSIGNED DEFAULT NULL, + `description` text DEFAULT NULL, + `created_by` 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 `engagement_assignments` +-- + +CREATE TABLE `engagement_assignments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `engagement_role_id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `assigned_by` bigint(20) UNSIGNED NOT NULL, + `status` enum('proposed','confirmed','active','completed') NOT NULL DEFAULT 'proposed', + `hours_allocated` decimal(8,2) DEFAULT NULL, + `start_date` date DEFAULT NULL, + `end_date` date 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 `engagement_forecasts` +-- + +CREATE TABLE `engagement_forecasts` ( + `id` bigint(20) UNSIGNED NOT NULL, + `engagement_id` bigint(20) UNSIGNED NOT NULL, + `period` date NOT NULL, + `forecasted_hours` decimal(8,2) NOT NULL DEFAULT 0.00, + `forecasted_headcount` 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 `engagement_roles` +-- + +CREATE TABLE `engagement_roles` ( + `id` bigint(20) UNSIGNED NOT NULL, + `engagement_id` bigint(20) UNSIGNED NOT NULL, + `role_title` varchar(255) NOT NULL, + `designation_id` bigint(20) UNSIGNED DEFAULT NULL, + `required_count` int(11) NOT NULL DEFAULT 1, + `required_skills` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`required_skills`)), + `start_date` date DEFAULT NULL, + `end_date` date 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 `engagement_schedules` +-- + +CREATE TABLE `engagement_schedules` ( + `id` bigint(20) UNSIGNED NOT NULL, + `engagement_id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `date` date NOT NULL, + `start_time` time DEFAULT NULL, + `end_time` time DEFAULT NULL, + `hours` decimal(5,2) NOT NULL DEFAULT 8.00, + `notes` text DEFAULT NULL, + `created_by` 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 `engagement_templates` +-- + +CREATE TABLE `engagement_templates` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `type` enum('audit','tax','advisory','bas','other') NOT NULL DEFAULT 'other', + `description` text DEFAULT NULL, + `default_roles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`default_roles`)), + `created_by` 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 `events` +-- + +CREATE TABLE `events` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(255) NOT NULL, + `event_type_id` bigint(20) UNSIGNED DEFAULT NULL, + `start_date` date DEFAULT NULL, + `end_date` date DEFAULT NULL, + `start_time` time DEFAULT NULL, + `end_time` time DEFAULT NULL, + `location` varchar(255) DEFAULT NULL, + `status` enum('pending','approved','reject') NOT NULL DEFAULT 'pending', + `description` longtext DEFAULT NULL, + `color` varchar(255) DEFAULT NULL, + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `events` +-- + +INSERT INTO `events` (`id`, `title`, `event_type_id`, `start_date`, `end_date`, `start_time`, `end_time`, `location`, `status`, `description`, `color`, `approved_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Annual Company Kickoff Meeting', 1, '2025-09-20', '2025-09-20', '09:00:00', '11:00:00', 'Main Auditorium', 'approved', 'Strategic planning session for new year goals, team alignment, and organizational objectives with department heads and senior management.', '#3b82f6', 8, 2, 2, '2025-09-20 09:32:49', '2025-09-20 09:32:49'), +(2, 'Quarterly Performance Review Session', 2, '2025-09-25', '2025-09-25', '14:00:00', '16:00:00', 'Conference Room A', 'approved', 'Comprehensive performance evaluation meeting covering individual achievements, team goals, and professional development planning for all employees.', '#10b981', 10, 2, 2, '2025-09-25 10:47:49', '2025-09-25 10:47:49'), +(3, 'Team Building Adventure Workshop', 3, '2025-09-30', '2025-09-30', '10:00:00', '17:00:00', 'Training Center', 'pending', 'Interactive team building activities designed to enhance collaboration, communication skills, and workplace relationships among department members.', '#8b5cf6', NULL, 2, 2, '2025-09-30 15:02:49', '2025-09-30 15:02:49'), +(4, 'Technology Innovation Training Program', 4, '2025-10-05', '2025-10-05', '09:00:00', '12:00:00', 'Workshop Room', 'approved', 'Comprehensive training session covering new technology tools, software updates, and digital transformation initiatives for enhanced productivity.', '#f59e0b', 14, 2, 2, '2025-10-05 11:37:49', '2025-10-05 11:37:49'), +(5, 'Client Relationship Review Meeting', 5, '2025-10-10', '2025-10-10', '14:00:00', '16:00:00', 'Executive Lounge', 'pending', 'Monthly client feedback analysis, relationship assessment, and strategic planning session for improving customer satisfaction and retention.', '#ef4444', NULL, 2, 2, '2025-10-10 13:27:49', '2025-10-10 13:27:49'), +(6, 'Workplace Safety Protocol Briefing', 6, '2025-10-15', '2025-10-15', '11:00:00', '12:00:00', 'Cafeteria', 'approved', 'Mandatory safety training covering emergency procedures, workplace hazard identification, and compliance with occupational health standards.', '#dc2626', 18, 2, 2, '2025-10-15 15:52:49', '2025-10-15 15:52:49'), +(7, 'Monthly Budget Analysis Workshop', 7, '2025-10-20', '2025-10-20', '09:00:00', '11:00:00', 'Board Room', 'reject', 'Financial planning session covering budget allocation, expense analysis, and resource optimization strategies for departmental efficiency.', '#059669', NULL, 2, 2, '2025-10-20 09:07:49', '2025-10-20 09:07:49'), +(8, 'Employee Performance Evaluation Conference', 8, '2025-10-25', '2025-10-25', '15:00:00', '17:00:00', 'Meeting Hall', 'approved', 'Comprehensive performance assessment meeting including goal setting, feedback sessions, and career development planning for staff members.', '#06b6d4', 22, 2, 2, '2025-10-25 12:42:49', '2025-10-25 12:42:49'), +(9, 'Innovation and Creativity Workshop', 9, '2025-10-31', '2025-10-31', '10:00:00', '15:00:00', 'Training Center', 'pending', 'Creative thinking session focused on innovation strategies, problem-solving techniques, and process improvement initiatives across departments.', '#7c3aed', NULL, 2, 2, '2025-10-30 16:57:49', '2025-10-30 16:57:49'), +(10, 'Company-Wide All-Hands Meeting', 10, '2025-11-04', '2025-11-04', '16:00:00', '17:00:00', 'Main Auditorium', 'approved', 'Monthly organizational update covering company performance, strategic initiatives, and important announcements for all employees.', '#84cc16', 26, 2, 2, '2025-11-04 10:12:49', '2025-11-04 10:12:49'), +(11, 'Product Development Strategy Session', 11, '2025-11-09', '2025-11-09', '14:00:00', '16:00:00', 'Executive Lounge', 'approved', 'Strategic planning meeting for product development initiatives, market analysis, and innovation roadmap planning with cross-functional teams.', '#10b981', 8, 2, 2, '2025-11-09 11:32:49', '2025-11-09 11:32:49'), +(12, 'Customer Feedback Analysis Workshop', 12, '2025-11-14', '2025-11-14', '11:00:00', '13:00:00', 'Meeting Hall', 'pending', 'Comprehensive customer feedback review session focusing on service improvement, satisfaction metrics, and customer retention strategies.', '#8b5cf6', NULL, 2, 2, '2025-11-14 14:47:49', '2025-11-14 14:47:49'), +(13, 'Professional Skills Development Seminar', 13, '2025-11-19', '2025-11-19', '09:00:00', '17:00:00', 'Training Center', 'approved', 'Comprehensive skill enhancement workshop covering leadership development, communication skills, and professional growth opportunities for employees.', '#f59e0b', 12, 2, 2, '2025-11-19 11:02:49', '2025-11-19 11:02:49'), +(14, 'Project Status Review Conference', 14, '2025-11-24', '2025-11-24', '14:00:00', '16:00:00', 'Board Room', 'reject', 'Comprehensive project management meeting covering ongoing initiatives, milestone tracking, and resource allocation across all departments.', '#6366f1', NULL, 2, 2, '2025-11-24 13:37:49', '2025-11-24 13:37:49'), +(15, 'Employee Health and Wellness Seminar', 15, '2025-11-29', '2025-11-29', '10:00:00', '12:00:00', 'Workshop Room', 'approved', 'Health awareness session covering wellness programs, stress management techniques, and workplace ergonomics for employee wellbeing enhancement.', '#14b8a6', 16, 2, 2, '2025-11-29 15:27:49', '2025-11-29 15:27:49'), +(16, 'Monthly Team Sync Meeting', 16, '2026-03-19', '2026-03-19', '09:00:00', '11:00:00', 'Main Auditorium', 'approved', 'Regular monthly synchronization meeting for all teams to align on goals, share updates, and coordinate upcoming initiatives.', '#3b82f6', 18, 2, 2, '2026-03-04 00:17:49', '2026-03-04 00:17:49'), +(17, 'New Product Launch Presentation', 17, '2026-03-24', '2026-03-24', '14:00:00', '16:00:00', 'Executive Lounge', 'pending', 'Exciting presentation of our latest product features, market positioning, and launch strategy for the upcoming quarter.', '#10b981', NULL, 2, 2, '2026-03-06 00:17:49', '2026-03-06 00:17:49'), +(18, 'Quarterly All-Hands Meeting', 18, '2026-03-29', '2026-03-29', '16:00:00', '17:30:00', 'Main Auditorium', 'approved', 'Comprehensive quarterly review covering company performance, strategic updates, and important announcements for all employees.', '#f59e0b', 22, 2, 2, '2026-03-09 00:17:49', '2026-03-09 00:17:49'), +(19, 'Skills Development Workshop', 19, '2026-04-03', '2026-04-03', '09:00:00', '17:00:00', 'Training Center', 'pending', 'Professional development workshop focusing on emerging technologies, leadership skills, and career advancement opportunities for employees.', '#8b5cf6', NULL, 2, 2, '2026-03-11 00:17:49', '2026-03-11 00:17:49'), +(20, 'Client Appreciation Event', 20, '2026-04-08', '2026-04-08', '18:00:00', '20:00:00', 'Conference Room A', 'approved', 'Special networking event to appreciate our valued clients, showcase recent achievements, and strengthen business relationships.', '#ef4444', 26, 2, 2, '2026-03-12 00:17:49', '2026-03-12 00:17:49'), +(21, 'Innovation Brainstorming Session', 21, '2026-04-13', '2026-04-13', '10:00:00', '15:00:00', 'Workshop Room', 'pending', 'Creative brainstorming session to generate innovative ideas, discuss process improvements, and explore new business opportunities.', '#7c3aed', NULL, 2, 2, '2026-03-13 00:17:49', '2026-03-13 00:17:49'), +(22, 'Financial Performance Review Meeting', 22, '2025-12-04', '2025-12-04', '15:00:00', '17:00:00', 'Executive Lounge', 'pending', 'Monthly financial analysis covering revenue performance, expense management, and budget optimization strategies for organizational growth.', '#059669', NULL, 2, 2, '2025-12-04 08:52:49', '2025-12-04 08:52:49'), +(23, 'Team Recognition and Awards Ceremony', 23, '2025-12-09', '2025-12-09', '18:00:00', '20:00:00', 'Main Auditorium', 'approved', 'Annual recognition event celebrating outstanding employee achievements, service milestones, and exceptional contributions to organizational success.', '#f97316', 12, 2, 2, '2025-12-09 13:07:49', '2025-12-09 13:07:49'), +(24, 'Cybersecurity Awareness Training Program', 24, '2025-12-15', '2025-12-15', '09:00:00', '12:00:00', 'Conference Room A', 'approved', 'Mandatory cybersecurity training covering data protection, phishing prevention, and information security best practices for all employees.', '#dc2626', 14, 2, 2, '2025-12-14 16:42:49', '2025-12-14 16:42:49'), +(25, 'New Employee Orientation Workshop', 25, '2025-12-19', '2025-12-19', '09:00:00', '17:00:00', 'Training Center', 'pending', 'Comprehensive onboarding program for new hires covering company culture, policies, procedures, and integration into organizational structure.', '#84cc16', NULL, 2, 2, '2025-12-19 09:57:49', '2025-12-19 09:57:49'), +(26, 'Emergency Preparedness Drill Exercise', 1, '2025-12-24', '2025-12-24', '10:00:00', '11:30:00', 'Cafeteria', 'approved', 'Mandatory emergency response training covering evacuation procedures, safety protocols, and crisis management for workplace security.', '#ef4444', 18, 2, 2, '2025-12-24 12:12:49', '2025-12-24 12:12:49'), +(27, 'Innovation Challenge Competition Launch', 2, '2025-12-29', '2025-12-29', '14:00:00', '16:00:00', 'Meeting Hall', 'reject', 'Company-wide innovation contest encouraging creative solutions, process improvements, and technological advancements with prizes for winning ideas.', '#7c3aed', NULL, 2, 2, '2025-12-29 14:32:49', '2025-12-29 14:32:49'), +(28, 'Quality Management System Training', 3, '2026-01-03', '2026-01-03', '09:00:00', '17:00:00', 'Workshop Room', 'approved', 'ISO quality certification training covering process documentation, compliance procedures, and quality assurance standards across departments.', '#10b981', 22, 2, 2, '2026-01-03 10:47:49', '2026-01-03 10:47:49'), +(29, 'Employee Feedback Survey Discussion', 4, '2026-01-08', '2026-01-08', '14:00:00', '16:00:00', 'Board Room', 'pending', 'Interactive session discussing employee satisfaction survey results, workplace improvements, and organizational culture enhancement initiatives.', '#06b6d4', NULL, 2, 2, '2026-01-08 14:02:49', '2026-01-08 14:02:49'), +(30, 'Digital Transformation Strategy Meeting', 5, '2026-01-13', '2026-01-13', '10:00:00', '15:00:00', 'Executive Lounge', 'approved', 'Strategic planning session for technology infrastructure upgrade, digital tools implementation, and automation initiatives across operations.', '#3b82f6', 26, 2, 2, '2026-01-13 15:37:49', '2026-01-13 15:37:49'), +(31, 'Cross-Department Collaboration Workshop', 6, '2026-01-18', '2026-01-18', '09:00:00', '17:00:00', 'Training Center', 'pending', 'Initiative promoting interdepartmental cooperation through joint projects, shared goals, and collaborative problem-solving for organizational efficiency.', '#f59e0b', NULL, 2, 2, '2026-01-18 08:27:49', '2026-01-18 08:27:49'), +(32, 'Leadership Development Program Session', 7, '2026-01-23', '2026-01-23', '09:00:00', '17:00:00', 'Conference Room A', 'approved', 'Executive leadership training for managers covering team management, strategic thinking, decision-making, and organizational leadership skills.', '#8b5cf6', 10, 2, 2, '2026-01-23 12:52:49', '2026-01-23 12:52:49'), +(33, 'Environmental Sustainability Initiative Launch', 8, '2026-01-29', '2026-01-29', '14:00:00', '16:00:00', 'Main Auditorium', 'pending', 'Green initiative promoting eco-friendly practices including recycling programs, energy conservation, and sustainable business operations.', '#14b8a6', NULL, 2, 2, '2026-01-28 17:07:49', '2026-01-28 17:07:49'), +(34, 'Customer Service Excellence Training', 9, '2026-02-02', '2026-02-02', '09:00:00', '17:00:00', 'Workshop Room', 'approved', 'Comprehensive customer service training focusing on communication skills, problem resolution, and customer satisfaction improvement strategies.', '#059669', 14, 2, 2, '2026-02-02 09:42:49', '2026-02-02 09:42:49'), +(35, 'Year-End Performance Bonus Meeting', 10, '2026-02-07', '2026-02-07', '15:00:00', '17:00:00', 'Board Room', 'approved', 'Annual performance bonus calculation and distribution meeting based on individual achievements and company performance metrics.', '#f97316', 16, 2, 2, '2026-02-07 11:57:49', '2026-02-07 11:57:49'), +(36, 'Future Planning Strategy Conference', 11, '2026-02-12', '2026-02-12', '09:00:00', '17:00:00', 'Executive Lounge', 'pending', 'Strategic planning session for next year initiatives, market expansion, and long-term organizational goals with senior management.', '#6366f1', NULL, 2, 2, '2026-02-12 15:12:49', '2026-02-12 15:12:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `event_departments` +-- + +CREATE TABLE `event_departments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `event_id` bigint(20) UNSIGNED NOT NULL, + `department_id` bigint(20) UNSIGNED NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `event_departments` +-- + +INSERT INTO `event_departments` (`id`, `event_id`, `department_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(2, 1, 23, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(3, 2, 8, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(4, 3, 20, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(5, 3, 27, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(6, 4, 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(7, 4, 9, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(8, 4, 24, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(9, 5, 24, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(10, 5, 27, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(11, 5, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(12, 6, 4, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(13, 6, 10, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(14, 7, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(15, 7, 13, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(16, 7, 14, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(17, 8, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(18, 8, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(19, 9, 16, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(20, 9, 19, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(21, 9, 25, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(22, 10, 22, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(23, 10, 23, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(24, 11, 23, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(25, 11, 25, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(26, 11, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(27, 12, 22, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(28, 13, 10, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(29, 13, 13, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(30, 14, 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(31, 14, 13, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(32, 15, 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(33, 15, 30, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(34, 16, 30, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(35, 17, 4, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(36, 17, 11, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(37, 17, 15, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(38, 18, 16, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(39, 18, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(40, 18, 19, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(41, 19, 10, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(42, 19, 14, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(43, 19, 23, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(44, 20, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(45, 20, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(46, 21, 28, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(47, 21, 30, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(48, 22, 10, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(49, 22, 13, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(50, 22, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(51, 23, 24, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(52, 24, 8, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(53, 24, 15, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(54, 25, 2, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(55, 25, 10, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(56, 26, 16, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(57, 26, 23, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(58, 27, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(59, 27, 30, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(60, 28, 8, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(61, 28, 13, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(62, 28, 20, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(63, 29, 23, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(64, 30, 2, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(65, 31, 6, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(66, 31, 18, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(67, 32, 4, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(68, 32, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(69, 32, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(70, 33, 2, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(71, 33, 6, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(72, 33, 15, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(73, 34, 6, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(74, 34, 8, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(75, 34, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(76, 35, 6, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(77, 35, 10, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(78, 36, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(79, 36, 24, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(80, 36, 27, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `event_types` +-- + +CREATE TABLE `event_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `event_type` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `event_types` +-- + +INSERT INTO `event_types` (`id`, `event_type`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Team Meeting', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(2, 'Training Session', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(3, 'Performance Review', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(4, 'Company Event', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(5, 'Workshop', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(6, 'Conference', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(7, 'Seminar', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(8, 'Webinar', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(9, 'Town Hall', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(10, 'Board Meeting', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(11, 'Client Meeting', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(12, 'Project Kickoff', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(13, 'Sprint Planning', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(14, 'Daily Standup', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(15, 'Retrospective', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(16, 'Product Demo', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(17, 'Sales Presentation', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(18, 'Interview', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(19, 'Onboarding', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(20, 'Team Building', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(21, 'Holiday Party', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(22, 'Awards Ceremony', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(23, 'Networking Event', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(24, 'Product Launch', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(25, 'Strategy Session', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `expenses` +-- + +CREATE TABLE `expenses` ( + `id` bigint(20) UNSIGNED NOT NULL, + `expense_number` varchar(255) NOT NULL, + `expense_date` date NOT NULL, + `category_id` bigint(20) UNSIGNED NOT NULL, + `bank_account_id` bigint(20) UNSIGNED NOT NULL, + `chart_of_account_id` bigint(20) UNSIGNED DEFAULT NULL, + `reference_number` varchar(100) DEFAULT NULL, + `amount` decimal(15,2) NOT NULL, + `status` enum('draft','approved','posted') NOT NULL DEFAULT 'draft', + `description` text DEFAULT NULL, + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `expenses` +-- + +INSERT INTO `expenses` (`id`, `expense_number`, `expense_date`, `category_id`, `bank_account_id`, `chart_of_account_id`, `reference_number`, `amount`, `status`, `description`, `approved_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'EXP-2026-03-001', '2026-02-12', 3, 4, 43, 'EXP-001', 1500.00, 'draft', 'Office rent payment', NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'EXP-2026-03-002', '2026-02-17', 2, 1, 43, 'EXP-002', 800.00, 'draft', 'Utility bills payment', NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'EXP-2026-03-003', '2026-02-22', 3, 1, 45, 'EXP-003', 2500.00, 'draft', 'Marketing campaign expense', NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'EXP-2026-03-004', '2026-02-27', 2, 4, 53, 'EXP-004', 600.00, 'draft', 'Office supplies purchase', NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'EXP-2026-03-005', '2026-03-04', 2, 3, 40, 'EXP-005', 1200.00, 'draft', 'Travel and accommodation', NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `expense_categories` +-- + +CREATE TABLE `expense_categories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `category_name` varchar(255) NOT NULL, + `category_code` varchar(255) NOT NULL, + `description` varchar(255) DEFAULT NULL, + `is_active` varchar(255) NOT NULL, + `gl_account_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `expense_categories` +-- + +INSERT INTO `expense_categories` (`id`, `category_name`, `category_code`, `description`, `is_active`, `gl_account_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Office Supplies', 'EXP-001', 'Expenses for office supplies and stationery', '1', 38, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Utilities', 'EXP-002', 'Expenses for electricity, water, and internet', '1', 39, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'Rent', 'EXP-003', 'Office and property rent expenses', '1', 40, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Marketing', 'EXP-004', 'Marketing and advertising expenses', '1', 41, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'Travel', 'EXP-005', 'Business travel and transportation expenses', '1', 42, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `failed_jobs` +-- + +CREATE TABLE `failed_jobs` ( + `id` bigint(20) UNSIGNED NOT NULL, + `uuid` varchar(255) 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 `fleet_customers` +-- + +CREATE TABLE `fleet_customers` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` int(11) NOT NULL, + `customer` varchar(255) DEFAULT NULL, + `client_id` varchar(255) DEFAULT NULL, + `name` varchar(255) NOT NULL, + `email` varchar(255) NOT NULL, + `phone` varchar(255) DEFAULT NULL, + `address` longtext NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `fleet_logbooks` +-- + +CREATE TABLE `fleet_logbooks` ( + `id` bigint(20) UNSIGNED NOT NULL, + `driver_name` varchar(255) NOT NULL, + `vehicle_name` varchar(255) NOT NULL, + `start_date` date NOT NULL, + `end_date` date NOT NULL, + `start_odometer` varchar(255) NOT NULL, + `end_odometer` varchar(255) NOT NULL, + `rate` varchar(255) NOT NULL, + `total_distance` varchar(255) NOT NULL, + `total_price` varchar(255) NOT NULL, + `notes` longtext DEFAULT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `fleet_payments` +-- + +CREATE TABLE `fleet_payments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `pay_amount` varchar(255) NOT NULL, + `description` varchar(255) NOT NULL, + `booking_id` int(11) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `fuels` +-- + +CREATE TABLE `fuels` ( + `id` bigint(20) UNSIGNED NOT NULL, + `driver_name` int(11) NOT NULL, + `vehicle_name` int(11) NOT NULL, + `fill_date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `quantity` int(11) NOT NULL, + `cost` int(11) NOT NULL, + `total_cost` int(11) NOT NULL, + `odometer_reading` varchar(255) NOT NULL, + `fuel_type` varchar(255) NOT NULL, + `notes` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `fuel_types` +-- + +CREATE TABLE `fuel_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `helpdesk_categories` +-- + +CREATE TABLE `helpdesk_categories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `description` text DEFAULT NULL, + `color` varchar(7) NOT NULL DEFAULT '#3B82F6', + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `helpdesk_categories` +-- + +INSERT INTO `helpdesk_categories` (`id`, `name`, `description`, `color`, `is_active`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Technical Support', 'Technical issues and troubleshooting', '#3B82F6', 1, 1, 1, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Billing', 'Billing and payment related queries', '#10B981', 1, 1, 1, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'Feature Request', 'New feature suggestions and requests', '#F59E0B', 1, 1, 1, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Bug Report', 'Software bugs and issues', '#EF4444', 1, 1, 1, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'General Inquiry', 'General questions and information', '#8B5CF6', 1, 1, 1, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `helpdesk_replies` +-- + +CREATE TABLE `helpdesk_replies` ( + `id` bigint(20) UNSIGNED NOT NULL, + `ticket_id` bigint(20) UNSIGNED NOT NULL, + `message` text NOT NULL, + `attachments` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`attachments`)), + `is_internal` tinyint(1) NOT NULL DEFAULT 0, + `created_by` bigint(20) 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 `helpdesk_replies` +-- + +INSERT INTO `helpdesk_replies` (`id`, `ticket_id`, `message`, `attachments`, `is_internal`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 'I appreciate your help. Is there anything else I need to do?', NULL, 0, 2, '2026-03-13 03:17:48', '2026-03-14 00:17:48'), +(2, 1, 'Escalating to Level 2 support team for advanced troubleshooting.', NULL, 1, 1, '2026-03-13 04:17:48', '2026-03-14 00:17:48'), +(3, 1, 'I appreciate your help. Is there anything else I need to do?', NULL, 0, 2, '2026-03-13 06:17:48', '2026-03-14 00:17:48'), +(4, 1, 'We have processed your request. Your account has been updated accordingly.', NULL, 0, 1, '2026-03-13 09:17:48', '2026-03-14 00:17:48'), +(5, 1, 'I appreciate your help. Is there anything else I need to do?', NULL, 0, 2, '2026-03-13 10:17:48', '2026-03-14 00:17:48'), +(6, 2, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-03-05 02:17:48', '2026-03-14 00:17:48'), +(7, 2, 'I have reviewed your case and here is the solution: Please try clearing your browser cache and cookies.', NULL, 0, 1, '2026-03-05 04:17:48', '2026-03-14 00:17:48'), +(8, 2, 'I appreciate your help. Is there anything else I need to do?', NULL, 0, 2, '2026-03-05 07:17:48', '2026-03-14 00:17:48'), +(9, 2, 'We have processed your request. Your account has been updated accordingly.', NULL, 0, 1, '2026-03-05 07:17:48', '2026-03-14 00:17:48'), +(10, 2, 'I have tried the suggested solution but the issue persists. Could you please provide additional assistance?', NULL, 0, 2, '2026-03-05 09:17:48', '2026-03-14 00:17:48'), +(11, 3, 'The problem is still occurring. Here are the additional details you requested.', NULL, 0, 2, '2026-03-12 03:17:48', '2026-03-14 00:17:48'), +(12, 3, 'We have processed your request. Your account has been updated accordingly.', NULL, 0, 1, '2026-03-12 04:17:48', '2026-03-14 00:17:48'), +(13, 3, 'I appreciate your help. Is there anything else I need to do?', NULL, 0, 2, '2026-03-12 05:17:48', '2026-03-14 00:17:48'), +(14, 3, 'We have processed your request. Your account has been updated accordingly.', NULL, 0, 1, '2026-03-12 08:17:48', '2026-03-14 00:17:48'), +(15, 3, 'The problem is still occurring. Here are the additional details you requested.', NULL, 0, 2, '2026-03-12 11:17:48', '2026-03-14 00:17:48'), +(16, 4, 'The problem is still occurring. Here are the additional details you requested.', NULL, 0, 2, '2026-02-24 01:17:48', '2026-03-14 00:17:48'), +(17, 4, 'I have reviewed your case and here is the solution: Please try clearing your browser cache and cookies.', NULL, 0, 1, '2026-02-24 06:17:48', '2026-03-14 00:17:48'), +(18, 4, 'The problem is still occurring. Here are the additional details you requested.', NULL, 0, 2, '2026-02-24 08:17:48', '2026-03-14 00:17:48'), +(19, 4, 'I have reviewed your case and here is the solution: Please try clearing your browser cache and cookies.', NULL, 0, 1, '2026-02-24 08:17:48', '2026-03-14 00:17:48'), +(20, 4, 'The problem is still occurring. Here are the additional details you requested.', NULL, 0, 2, '2026-02-24 10:17:48', '2026-03-14 00:17:48'), +(21, 5, 'I have tried the suggested solution but the issue persists. Could you please provide additional assistance?', NULL, 0, 2, '2026-03-05 03:17:48', '2026-03-14 00:17:48'), +(22, 5, 'Your issue has been escalated to our technical team. We will update you within 24 hours.', NULL, 0, 1, '2026-03-05 06:17:48', '2026-03-14 00:17:48'), +(23, 5, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-03-05 08:17:48', '2026-03-14 00:17:48'), +(24, 5, 'Customer reported similar issue last week. Check ticket #12340 for reference.', NULL, 1, 1, '2026-03-05 09:17:48', '2026-03-14 00:17:48'), +(25, 5, 'I have tried the suggested solution but the issue persists. Could you please provide additional assistance?', NULL, 0, 2, '2026-03-05 09:17:48', '2026-03-14 00:17:48'), +(26, 6, 'The problem is still occurring. Here are the additional details you requested.', NULL, 0, 2, '2026-02-24 01:17:48', '2026-03-14 00:17:48'), +(27, 6, 'Customer verification completed. Safe to proceed with account changes.', NULL, 1, 1, '2026-02-24 06:17:48', '2026-03-14 00:17:48'), +(28, 6, 'I appreciate your help. Is there anything else I need to do?', NULL, 0, 2, '2026-02-24 05:17:48', '2026-03-14 00:17:48'), +(29, 6, 'Thank you for contacting support. We are looking into your issue and will get back to you shortly.', NULL, 0, 1, '2026-02-24 09:17:48', '2026-03-14 00:17:48'), +(30, 6, 'I appreciate your help. Is there anything else I need to do?', NULL, 0, 2, '2026-02-24 12:17:48', '2026-03-14 00:17:48'), +(31, 7, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-03-09 03:17:48', '2026-03-14 00:17:48'), +(32, 7, 'The problem has been identified and fixed. Please try again and let us know if you need further assistance.', NULL, 0, 1, '2026-03-09 05:17:48', '2026-03-14 00:17:48'), +(33, 7, 'I appreciate your help. Is there anything else I need to do?', NULL, 0, 2, '2026-03-09 05:17:48', '2026-03-14 00:17:48'), +(34, 7, 'Your issue has been escalated to our technical team. We will update you within 24 hours.', NULL, 0, 1, '2026-03-09 07:17:48', '2026-03-14 00:17:48'), +(35, 7, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-03-09 10:17:48', '2026-03-14 00:17:48'), +(36, 7, 'Thank you for contacting support. We are looking into your issue and will get back to you shortly.', NULL, 0, 1, '2026-03-09 14:17:48', '2026-03-14 00:17:48'), +(37, 8, 'The problem is still occurring. Here are the additional details you requested.', NULL, 0, 2, '2026-03-10 02:17:48', '2026-03-14 00:17:48'), +(38, 8, 'Thank you for contacting support. We are looking into your issue and will get back to you shortly.', NULL, 0, 1, '2026-03-10 06:17:48', '2026-03-14 00:17:48'), +(39, 8, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-03-10 07:17:48', '2026-03-14 00:17:48'), +(40, 8, 'The problem has been identified and fixed. Please try again and let us know if you need further assistance.', NULL, 0, 1, '2026-03-10 09:17:48', '2026-03-14 00:17:48'), +(41, 8, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-03-10 09:17:48', '2026-03-14 00:17:48'), +(42, 9, 'The problem is still occurring. Here are the additional details you requested.', NULL, 0, 2, '2026-03-06 03:17:48', '2026-03-14 00:17:48'), +(43, 9, 'I have reviewed your case and here is the solution: Please try clearing your browser cache and cookies.', NULL, 0, 1, '2026-03-06 06:17:48', '2026-03-14 00:17:48'), +(44, 9, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-03-06 08:17:48', '2026-03-14 00:17:48'), +(45, 9, 'I have reviewed your case and here is the solution: Please try clearing your browser cache and cookies.', NULL, 0, 1, '2026-03-06 07:17:48', '2026-03-14 00:17:48'), +(46, 9, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-03-06 09:17:48', '2026-03-14 00:17:48'), +(47, 10, 'I need more clarification on the steps provided. Could you please elaborate?', NULL, 0, 2, '2026-02-17 01:17:48', '2026-03-14 00:17:48'), +(48, 10, 'Your issue has been escalated to our technical team. We will update you within 24 hours.', NULL, 0, 1, '2026-02-17 05:17:48', '2026-03-14 00:17:48'), +(49, 10, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-02-17 06:17:48', '2026-03-14 00:17:48'), +(50, 10, 'I have reviewed your case and here is the solution: Please try clearing your browser cache and cookies.', NULL, 0, 1, '2026-02-17 09:17:48', '2026-03-14 00:17:48'), +(51, 11, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-03-09 03:17:48', '2026-03-14 00:17:48'), +(52, 11, 'We have processed your request. Your account has been updated accordingly.', NULL, 0, 1, '2026-03-09 04:17:48', '2026-03-14 00:17:48'), +(53, 11, 'I need more clarification on the steps provided. Could you please elaborate?', NULL, 0, 2, '2026-03-09 08:17:48', '2026-03-14 00:17:48'), +(54, 11, 'Thank you for contacting support. We are looking into your issue and will get back to you shortly.', NULL, 0, 1, '2026-03-09 10:17:48', '2026-03-14 00:17:48'), +(55, 12, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-02-24 01:17:48', '2026-03-14 00:17:48'), +(56, 12, 'We have processed your request. Your account has been updated accordingly.', NULL, 0, 1, '2026-02-24 06:17:48', '2026-03-14 00:17:48'), +(57, 12, 'I need more clarification on the steps provided. Could you please elaborate?', NULL, 0, 2, '2026-02-24 07:17:48', '2026-03-14 00:17:48'), +(58, 12, 'The problem has been identified and fixed. Please try again and let us know if you need further assistance.', NULL, 0, 1, '2026-02-24 07:17:48', '2026-03-14 00:17:48'), +(59, 12, 'I have tried the suggested solution but the issue persists. Could you please provide additional assistance?', NULL, 0, 2, '2026-02-24 09:17:48', '2026-03-14 00:17:48'), +(60, 12, 'I have reviewed your case and here is the solution: Please try clearing your browser cache and cookies.', NULL, 0, 1, '2026-02-24 13:17:48', '2026-03-14 00:17:48'), +(61, 13, 'I have tried the suggested solution but the issue persists. Could you please provide additional assistance?', NULL, 0, 2, '2026-02-17 04:17:48', '2026-03-14 00:17:48'), +(62, 13, 'Thank you for contacting support. We are looking into your issue and will get back to you shortly.', NULL, 0, 1, '2026-02-17 06:17:48', '2026-03-14 00:17:48'), +(63, 13, 'I need more clarification on the steps provided. Could you please elaborate?', NULL, 0, 2, '2026-02-17 07:17:48', '2026-03-14 00:17:48'), +(64, 13, 'The problem has been identified and fixed. Please try again and let us know if you need further assistance.', NULL, 0, 1, '2026-02-17 09:17:48', '2026-03-14 00:17:48'), +(65, 14, 'Thank you for the quick response. The issue has been resolved successfully.', NULL, 0, 2, '2026-02-15 01:17:48', '2026-03-14 00:17:48'), +(66, 14, 'The problem has been identified and fixed. Please try again and let us know if you need further assistance.', NULL, 0, 1, '2026-02-15 05:17:48', '2026-03-14 00:17:48'), +(67, 14, 'I appreciate your help. Is there anything else I need to do?', NULL, 0, 2, '2026-02-15 08:17:48', '2026-03-14 00:17:48'), +(68, 14, 'We have processed your request. Your account has been updated accordingly.', NULL, 0, 1, '2026-02-15 10:17:48', '2026-03-14 00:17:48'), +(69, 14, 'The problem is still occurring. Here are the additional details you requested.', NULL, 0, 2, '2026-02-15 09:17:48', '2026-03-14 00:17:48'), +(70, 15, 'The problem is still occurring. Here are the additional details you requested.', NULL, 0, 2, '2026-02-25 02:17:48', '2026-03-14 00:17:48'), +(71, 15, 'I have reviewed your case and here is the solution: Please try clearing your browser cache and cookies.', NULL, 0, 1, '2026-02-25 06:17:48', '2026-03-14 00:17:48'), +(72, 15, 'I have tried the suggested solution but the issue persists. Could you please provide additional assistance?', NULL, 0, 2, '2026-02-25 05:17:48', '2026-03-14 00:17:48'), +(73, 15, 'The problem has been identified and fixed. Please try again and let us know if you need further assistance.', NULL, 0, 1, '2026-02-25 10:17:48', '2026-03-14 00:17:48'), +(74, 15, 'I appreciate your help. Is there anything else I need to do?', NULL, 0, 2, '2026-02-25 11:17:48', '2026-03-14 00:17:48'), +(75, 15, 'Escalating to Level 2 support team for advanced troubleshooting.', NULL, 1, 1, '2026-02-25 11:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `helpdesk_tickets` +-- + +CREATE TABLE `helpdesk_tickets` ( + `id` bigint(20) UNSIGNED NOT NULL, + `ticket_id` varchar(255) NOT NULL, + `title` varchar(255) NOT NULL, + `description` text NOT NULL, + `status` enum('open','in_progress','resolved','closed') NOT NULL DEFAULT 'open', + `priority` enum('low','medium','high','urgent') NOT NULL DEFAULT 'medium', + `category_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED DEFAULT NULL, + `resolved_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 `helpdesk_tickets` +-- + +INSERT INTO `helpdesk_tickets` (`id`, `ticket_id`, `title`, `description`, `status`, `priority`, `category_id`, `created_by`, `resolved_at`, `created_at`, `updated_at`) VALUES +(1, '12345001', 'Login Issues with Two-Factor Authentication', 'I am unable to log into my account. The two-factor authentication code is not working properly. I have tried multiple times but keep getting an error message.', 'open', 'high', 1, 2, NULL, '2026-03-13 00:17:48', '2026-03-14 00:17:48'), +(2, '12345002', 'Payment Processing Error', 'My payment was declined but the amount was charged to my card. Please help resolve this billing issue as soon as possible.', 'in_progress', 'urgent', 1, 2, NULL, '2026-03-05 00:17:48', '2026-03-14 00:17:48'), +(3, '12345003', 'Feature Request: Dark Mode', 'Would it be possible to add a dark mode theme to the application? This would greatly improve usability during night hours.', 'open', 'low', 1, 2, NULL, '2026-03-12 00:17:48', '2026-03-14 00:17:48'), +(4, '12345004', 'Data Export Not Working', 'The export functionality is not generating the CSV file. I need to export my data for reporting purposes.', 'resolved', 'medium', 1, 2, '2026-03-12 00:17:48', '2026-02-24 00:17:48', '2026-03-14 00:17:48'), +(5, '12345005', 'Account Suspension Appeal', 'My account was suspended without clear reason. I believe this was done in error and would like to appeal this decision.', 'closed', 'high', 1, 2, NULL, '2026-03-05 00:17:48', '2026-03-14 00:17:48'), +(6, '12345006', 'Password Reset Not Working', 'I clicked on forgot password but never received the reset email. I have checked spam folder as well.', 'open', 'medium', 1, 2, NULL, '2026-02-24 00:17:48', '2026-03-14 00:17:48'), +(7, '12345007', 'Mobile App Crashes on Startup', 'The mobile application crashes immediately after opening. This started happening after the latest update.', 'in_progress', 'high', 1, 2, NULL, '2026-03-09 00:17:48', '2026-03-14 00:17:48'), +(8, '12345008', 'Subscription Upgrade Request', 'I would like to upgrade my current plan to the premium version. Please guide me through the process.', 'resolved', 'low', 1, 2, '2026-03-13 00:17:48', '2026-03-10 00:17:48', '2026-03-14 00:17:48'), +(9, '12345009', 'API Integration Issues', 'Having trouble integrating with your API. Getting 401 unauthorized errors despite using correct credentials.', 'open', 'high', 1, 2, NULL, '2026-03-06 00:17:48', '2026-03-14 00:17:48'), +(10, '12345010', 'File Upload Size Limit', 'Cannot upload files larger than 5MB. Need to increase the upload limit for my business requirements.', 'in_progress', 'medium', 1, 2, NULL, '2026-02-17 00:17:48', '2026-03-14 00:17:48'), +(11, '12345011', 'Email Notifications Not Received', 'I am not receiving any email notifications from the system. Please check my notification settings.', 'open', 'medium', 1, 2, NULL, '2026-03-09 00:17:48', '2026-03-14 00:17:48'), +(12, '12345012', 'Dashboard Loading Slowly', 'The main dashboard takes more than 30 seconds to load. This is affecting my daily workflow significantly.', 'resolved', 'medium', 1, 2, '2026-03-11 00:17:48', '2026-02-24 00:17:48', '2026-03-14 00:17:48'), +(13, '12345013', 'Bulk Data Import Failed', 'Attempted to import 1000 records via CSV but the process failed at 50%. No error message was displayed.', 'open', 'urgent', 1, 2, NULL, '2026-02-17 00:17:48', '2026-03-14 00:17:48'), +(14, '12345014', 'User Permission Management', 'Need help setting up role-based permissions for my team members. The current setup is confusing.', 'closed', 'low', 1, 2, NULL, '2026-02-15 00:17:48', '2026-03-14 00:17:48'), +(15, '12345015', 'Security Vulnerability Report', 'Found a potential security issue in the user profile section. Please contact me for detailed information.', 'in_progress', 'urgent', 1, 2, NULL, '2026-02-25 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `holidays` +-- + +CREATE TABLE `holidays` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `start_date` date NOT NULL, + `end_date` date NOT NULL, + `holiday_type_id` bigint(20) UNSIGNED DEFAULT NULL, + `description` text DEFAULT NULL, + `is_paid` tinyint(1) NOT NULL DEFAULT 1, + `is_sync_google_calendar` tinyint(1) NOT NULL DEFAULT 0, + `is_sync_outlook_calendar` tinyint(1) NOT NULL DEFAULT 0, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `holidays` +-- + +INSERT INTO `holidays` (`id`, `name`, `start_date`, `end_date`, `holiday_type_id`, `description`, `is_paid`, `is_sync_google_calendar`, `is_sync_outlook_calendar`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'New Year Day - Annual Celebration', '2025-09-20', '2025-09-21', 1, 'Annual celebration marking the beginning of new calendar year with traditional festivities and resolutions.', 0, 1, 0, 2, 2, '2025-09-21 09:10:49', '2025-09-21 09:09:49'), +(2, 'Martin Luther King Jr Day - Civil Rights', '2025-09-25', '2025-09-25', 2, 'National holiday honoring civil rights leader and his contributions to equality and social justice.', 1, 1, 1, 2, 2, '2025-09-26 17:37:49', '2025-09-26 08:23:49'), +(3, 'Presidents Day - National Observance', '2025-09-30', '2025-09-30', 3, 'Federal holiday celebrating the birthdays of George Washington and Abraham Lincoln with patriotic observance.', 1, 0, 1, 2, 2, '2025-10-01 11:17:49', '2025-10-01 08:21:49'), +(4, 'Good Friday - Religious Holiday', '2025-10-05', '2025-10-05', 4, 'Christian holiday commemorating the crucifixion of Jesus Christ observed with religious services and reflection.', 0, 0, 1, 2, 2, '2025-10-06 15:30:49', '2025-10-06 13:40:49'), +(5, 'Easter Monday - Religious Observance', '2025-10-10', '2025-10-12', 5, 'Christian holiday following Easter Sunday celebrating resurrection with family gatherings and traditional meals.', 1, 0, 1, 2, 2, '2025-10-11 13:54:49', '2025-10-11 14:06:49'), +(6, 'Memorial Day - National Remembrance', '2025-10-15', '2025-10-15', 6, 'National holiday honoring military personnel who died in service with memorial ceremonies and parades.', 1, 1, 0, 2, 2, '2025-10-16 09:47:49', '2025-10-16 12:28:49'), +(7, 'Independence Day - National Holiday', '2025-10-20', '2025-10-20', 7, 'National independence celebration with fireworks displays patriotic events and community gatherings across the country.', 1, 0, 0, 2, 2, '2025-10-21 12:43:49', '2025-10-21 09:19:49'), +(8, 'Labor Day - Workers Rights', '2025-10-25', '2025-10-25', 8, 'International holiday celebrating workers rights and labor movement achievements with parades and demonstrations.', 1, 0, 0, 2, 2, '2025-10-26 14:34:49', '2025-10-26 17:58:49'), +(9, 'Columbus Day - Historical Observance', '2025-10-30', '2025-11-01', 9, 'Federal holiday commemorating Christopher Columbus arrival in Americas with historical reflection and cultural events.', 1, 0, 1, 2, 2, '2025-10-31 11:16:49', '2025-10-31 13:16:49'), +(10, 'Veterans Day - Military Appreciation', '2025-11-04', '2025-11-04', 10, 'National holiday honoring military veterans for their service with ceremonies parades and community recognition.', 1, 0, 1, 2, 2, '2025-11-05 13:36:49', '2025-11-05 17:27:49'), +(11, 'Thanksgiving Day - National Gratitude', '2025-11-09', '2025-11-09', 11, 'National holiday celebrating gratitude and harvest with family gatherings traditional meals and thanksgiving traditions.', 1, 0, 1, 2, 2, '2025-11-10 17:57:49', '2025-11-10 11:01:49'), +(12, 'Christmas Eve - Religious Preparation', '2025-11-14', '2025-11-14', 12, 'Religious holiday preparation for Christmas celebration with family time gift wrapping and festive activities.', 1, 0, 0, 2, 2, '2025-11-15 13:38:49', '2025-11-15 12:26:49'), +(13, 'Christmas Day - Religious Celebration', '2025-11-19', '2025-11-22', 13, 'Major Christian holiday celebrating birth of Jesus Christ with religious services family gatherings and gift exchange.', 1, 1, 0, 2, 2, '2025-11-20 09:52:49', '2025-11-20 16:32:49'), +(14, 'New Years Eve - Year End', '2025-11-24', '2025-11-24', 14, 'Year end celebration with parties festivities and countdown to midnight marking transition to new year.', 1, 0, 0, 2, 2, '2025-11-25 11:20:49', '2025-11-25 14:40:49'), +(15, 'Company Foundation Day - Anniversary', '2025-11-29', '2025-11-29', 15, 'Company milestone celebration commemorating founding date with employee recognition events and organizational history reflection.', 1, 1, 0, 2, 2, '2025-11-30 12:11:49', '2025-11-30 08:33:49'), +(16, 'Employee Appreciation Day - Recognition', '2025-12-04', '2025-12-04', 1, 'Special day dedicated to recognizing employee contributions achievements and dedication with awards and appreciation events.', 0, 0, 0, 2, 2, '2025-12-05 17:37:49', '2025-12-05 18:06:49'), +(17, 'Summer Company Retreat - Team Building', '2025-12-09', '2025-12-12', 2, 'Annual company retreat combining team building activities professional development and recreational activities in summer setting.', 1, 0, 1, 2, 2, '2025-12-10 10:25:49', '2025-12-10 11:55:49'), +(18, 'Winter Holiday Break - Seasonal', '2025-12-14', '2025-12-14', 3, 'Extended holiday break during winter season allowing employees rest relaxation and family time during cold months.', 0, 0, 0, 2, 2, '2025-12-15 12:00:49', '2025-12-15 16:23:49'), +(19, 'Spring Festival - Cultural Celebration', '2025-12-19', '2025-12-19', 4, 'Cultural celebration welcoming spring season with outdoor activities community events and renewal themed festivities.', 0, 1, 0, 2, 2, '2025-12-20 16:23:49', '2025-12-20 09:06:49'), +(20, 'Autumn Harvest Festival - Seasonal', '2025-12-24', '2025-12-24', 5, 'Seasonal festival celebrating autumn harvest with traditional foods community gatherings and thanksgiving themed activities.', 1, 0, 1, 2, 2, '2025-12-25 12:01:49', '2025-12-25 12:40:49'), +(21, 'International Womens Day - Recognition', '2025-12-29', '2025-12-31', 6, 'Global celebration recognizing womens achievements contributions and ongoing fight for gender equality and empowerment.', 1, 1, 0, 2, 2, '2025-12-30 17:32:49', '2025-12-30 12:01:49'), +(22, 'Earth Day - Environmental Awareness', '2026-01-03', '2026-01-03', 7, 'Environmental awareness day promoting sustainability conservation and ecological responsibility through educational activities and green initiatives.', 0, 1, 0, 2, 2, '2026-01-04 15:43:49', '2026-01-04 11:19:49'), +(23, 'World Health Day - Wellness Focus', '2026-01-08', '2026-01-08', 8, 'World health organization sponsored day focusing on global health issues wellness promotion and healthcare accessibility.', 1, 0, 0, 2, 2, '2026-01-09 12:30:49', '2026-01-09 08:45:49'), +(24, 'International Workers Day - Labor Rights', '2026-01-13', '2026-01-13', 9, 'International labor day celebrating workers rights achievements and ongoing struggles for fair wages and working conditions.', 1, 0, 0, 2, 2, '2026-01-14 14:00:49', '2026-01-14 12:15:49'), +(25, 'World Environment Day - Sustainability', '2026-01-18', '2026-01-21', 10, 'United Nations environmental day promoting awareness about environmental protection conservation and sustainable development practices.', 1, 0, 0, 2, 2, '2026-01-19 15:53:49', '2026-01-19 15:10:49'), +(26, 'International Peace Day - Global Unity', '2026-01-23', '2026-01-23', 11, 'International day promoting peace conflict resolution and global harmony through educational events and community activities.', 0, 1, 0, 2, 2, '2026-01-24 10:42:49', '2026-01-24 09:25:49'), +(27, 'World Teachers Day - Education Honor', '2026-01-28', '2026-01-28', 12, 'Global recognition day honoring teachers educators and their vital role in society through appreciation events and educational focus.', 1, 1, 0, 2, 2, '2026-01-29 17:15:49', '2026-01-29 11:36:49'), +(28, 'International Human Rights Day - Justice', '2026-02-02', '2026-02-02', 13, 'International observance promoting human rights awareness equality justice and dignity for all people worldwide.', 0, 1, 0, 2, 2, '2026-02-03 13:16:49', '2026-02-03 13:14:49'), +(29, 'World AIDS Day - Health Awareness', '2026-02-07', '2026-02-08', 14, 'Global health awareness day focusing on HIV AIDS prevention treatment and support for affected communities.', 1, 0, 1, 2, 2, '2026-02-08 17:08:49', '2026-02-08 11:54:49'), +(30, 'International Volunteer Day - Community Service', '2026-02-12', '2026-02-12', 15, 'International recognition day celebrating volunteers and their contributions to communities through service and charitable activities.', 1, 1, 0, 2, 2, '2026-02-13 15:36:49', '2026-02-13 14:10:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `holiday_types` +-- + +CREATE TABLE `holiday_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `holiday_type` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `holiday_types` +-- + +INSERT INTO `holiday_types` (`id`, `holiday_type`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'National Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(2, 'Religious Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(3, 'Company Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(4, 'Public Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(5, 'Federal Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(6, 'State Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(7, 'Local Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(8, 'Cultural Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(9, 'Seasonal Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(10, 'Memorial Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(11, 'Independence Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(12, 'Festival Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(13, 'Traditional Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(14, 'International Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(15, 'Regional Holiday', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hospital_ambulances` +-- + +CREATE TABLE `hospital_ambulances` ( + `id` bigint(20) UNSIGNED NOT NULL, + `vehicle_number` varchar(255) NOT NULL, + `vehicle_type` varchar(255) NOT NULL DEFAULT 'Basic', + `year` int(11) DEFAULT NULL, + `driver_name` varchar(255) DEFAULT NULL, + `driver_phone` varchar(255) DEFAULT NULL, + `status` varchar(255) NOT NULL DEFAULT 'Available', + `last_service_date` date DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `hospital_ambulances` +-- + +INSERT INTO `hospital_ambulances` (`id`, `vehicle_number`, `vehicle_type`, `year`, `driver_name`, `driver_phone`, `status`, `last_service_date`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'NCR-AMB-001', 'ALS', NULL, 'Roberto \"Bert\" Manalo', '09191001001', 'Available', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(2, 'NCR-AMB-002', 'BLS', NULL, 'Ernesto \"Ernie\" Pagaduan', '09191002002', 'On Call', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(3, 'NCR-AMB-003', 'ALS', NULL, 'Manuel \"Manny\" Recto', '09191003003', 'Available', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(4, 'R4A-AMB-001', 'BLS', NULL, 'Danilo \"Danny\" Castillo', '09191004004', 'Under Maintenance', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hospital_ambulance_calls` +-- + +CREATE TABLE `hospital_ambulance_calls` ( + `id` bigint(20) UNSIGNED NOT NULL, + `ambulance_id` bigint(20) UNSIGNED NOT NULL, + `patient_id` bigint(20) UNSIGNED DEFAULT NULL, + `caller_name` varchar(255) NOT NULL, + `caller_phone` varchar(255) NOT NULL, + `pickup_address` text NOT NULL, + `status` varchar(255) NOT NULL DEFAULT 'Dispatched', + `dispatch_time` datetime DEFAULT NULL, + `arrival_time` datetime DEFAULT NULL, + `created_by` 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 `hospital_appointments` +-- + +CREATE TABLE `hospital_appointments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `patient_id` bigint(20) UNSIGNED NOT NULL, + `doctor_id` bigint(20) UNSIGNED NOT NULL, + `appointment_date` datetime NOT NULL, + `start_time` time DEFAULT NULL, + `end_time` time DEFAULT NULL, + `consultation_fee` decimal(10,2) NOT NULL DEFAULT 0.00, + `appointment_type` varchar(255) NOT NULL DEFAULT 'Consultation', + `reason` text DEFAULT NULL, + `status` varchar(255) NOT NULL DEFAULT 'Pending', + `notes` text DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `hospital_appointments` +-- + +INSERT INTO `hospital_appointments` (`id`, `patient_id`, `doctor_id`, `appointment_date`, `start_time`, `end_time`, `consultation_fee`, `appointment_type`, `reason`, `status`, `notes`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 4, '2026-04-23 09:00:00', NULL, NULL, 0.00, 'Consultation', NULL, 'Confirmed', 'Routine cardiac checkup', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(2, 10, 7, '2026-04-23 10:00:00', NULL, NULL, 0.00, 'Consultation', NULL, 'Pending', 'Pediatric follow-up visit', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(3, 7, 1, '2026-04-23 11:00:00', NULL, NULL, 0.00, 'Consultation', NULL, 'Pending', 'Knee pain consultation', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(4, 3, 5, '2026-04-24 14:00:00', NULL, NULL, 0.00, 'Consultation', NULL, 'Pending', 'Headache and dizziness assessment', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(5, 8, 6, '2026-04-24 15:00:00', NULL, NULL, 0.00, 'Consultation', NULL, 'Pending', 'Prenatal checkup', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(6, 9, 4, '2026-04-21 09:00:00', NULL, NULL, 0.00, 'Consultation', NULL, 'Completed', 'ECG and stress test results review', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(7, 4, 8, '2026-04-22 13:00:00', NULL, NULL, 0.00, 'Consultation', NULL, 'Completed', 'Annual physical exam', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(8, 6, 3, '2026-04-20 10:30:00', NULL, NULL, 0.00, 'Consultation', NULL, 'Cancelled', 'Skin allergy evaluation', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hospital_beds` +-- + +CREATE TABLE `hospital_beds` ( + `id` bigint(20) UNSIGNED NOT NULL, + `ward_id` bigint(20) UNSIGNED NOT NULL, + `bed_number` varchar(255) NOT NULL, + `type` varchar(255) NOT NULL DEFAULT 'Standard', + `status` varchar(255) NOT NULL DEFAULT 'Available', + `patient_id` bigint(20) UNSIGNED DEFAULT NULL, + `assigned_date` date DEFAULT NULL, + `discharge_date` date DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `hospital_beds` +-- + +INSERT INTO `hospital_beds` (`id`, `ward_id`, `bed_number`, `type`, `status`, `patient_id`, `assigned_date`, `discharge_date`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 'GA-001', 'Standard', 'Occupied', 1, '2026-04-18', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(2, 1, 'GA-002', 'Standard', 'Occupied', 10, '2026-04-22', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(3, 1, 'GA-003', 'Standard', 'Occupied', 7, '2026-04-22', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(4, 1, 'GA-004', 'Standard', 'Occupied', 3, '2026-04-18', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(5, 1, 'GA-005', 'Standard', 'Occupied', 4, '2026-04-20', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(6, 1, 'GA-006', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(7, 2, 'GB-001', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(8, 2, 'GB-002', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(9, 2, 'GB-003', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(10, 2, 'GB-004', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(11, 2, 'GB-005', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(12, 2, 'GB-006', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(13, 3, 'PV-001', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(14, 3, 'PV-002', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(15, 3, 'PV-003', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(16, 3, 'PV-004', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(17, 4, 'ICU-001', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(18, 4, 'ICU-002', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(19, 4, 'ICU-003', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(20, 4, 'ICU-004', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(21, 5, 'PD-001', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(22, 5, 'PD-002', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(23, 5, 'PD-003', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(24, 5, 'PD-004', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(25, 6, 'MT-001', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(26, 6, 'MT-002', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(27, 6, 'MT-003', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(28, 6, 'MT-004', 'Standard', 'Available', NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hospital_doctors` +-- + +CREATE TABLE `hospital_doctors` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `email` varchar(255) NOT NULL, + `phone` varchar(255) DEFAULT NULL, + `specialization` varchar(255) DEFAULT NULL, + `license_number` varchar(255) DEFAULT NULL, + `gender` varchar(255) NOT NULL DEFAULT 'Male', + `years_experience` int(11) NOT NULL DEFAULT 0, + `consultation_fee` decimal(10,2) NOT NULL DEFAULT 0.00, + `qualifications` text DEFAULT NULL, + `status` varchar(255) NOT NULL DEFAULT 'Active', + `created_by` 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; + +-- +-- Dumping data for table `hospital_doctors` +-- + +INSERT INTO `hospital_doctors` (`id`, `name`, `email`, `phone`, `specialization`, `license_number`, `gender`, `years_experience`, `consultation_fee`, `qualifications`, `status`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Dr. Juan Carlos Dela Cruz', 'jcdelacruz@hospital.ph', '09171234567', 'Cardiology', NULL, 'Male', 0, 0.00, NULL, 'Active', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(2, 'Dr. Maria Santos Reyes', 'msreyes@hospital.ph', '09182345678', 'Pediatrics', NULL, 'Male', 0, 0.00, NULL, 'Active', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(3, 'Dr. Ricardo Bautista', 'rbautista@hospital.ph', '09193456789', 'Orthopedics', NULL, 'Male', 0, 0.00, NULL, 'Active', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(4, 'Dr. Angela Mae Garcia', 'amgarcia@hospital.ph', '09204567890', 'Neurology', NULL, 'Male', 0, 0.00, NULL, 'Active', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(5, 'Dr. Jose Rizal Mendoza', 'jrmendoza@hospital.ph', '09215678901', 'General Surgery', NULL, 'Male', 0, 0.00, NULL, 'Active', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(6, 'Dr. Patricia Anne Villanueva', 'pavillanueva@hospital.ph', '09226789012', 'OB-GYN', NULL, 'Male', 0, 0.00, NULL, 'Active', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(7, 'Dr. Fernando Aquino', 'faquino@hospital.ph', '09237890123', 'Dermatology', NULL, 'Male', 0, 0.00, NULL, 'Active', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(8, 'Dr. Rosario Lim Tan', 'rltan@hospital.ph', '09248901234', 'Internal Medicine', NULL, 'Male', 0, 0.00, NULL, 'Active', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hospital_lab_tests` +-- + +CREATE TABLE `hospital_lab_tests` ( + `id` bigint(20) UNSIGNED NOT NULL, + `patient_id` bigint(20) UNSIGNED NOT NULL, + `doctor_id` bigint(20) UNSIGNED NOT NULL, + `test_name` varchar(255) NOT NULL, + `test_type` varchar(255) NOT NULL DEFAULT 'Blood', + `description` text DEFAULT NULL, + `status` varchar(255) NOT NULL DEFAULT 'Pending', + `priority` varchar(255) NOT NULL DEFAULT 'Normal', + `result` text DEFAULT NULL, + `test_date` date DEFAULT NULL, + `result_date` date DEFAULT NULL, + `notes` text DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `hospital_lab_tests` +-- + +INSERT INTO `hospital_lab_tests` (`id`, `patient_id`, `doctor_id`, `test_name`, `test_type`, `description`, `status`, `priority`, `result`, `test_date`, `result_date`, `notes`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 4, 'Complete Blood Count (CBC)', 'Blood', NULL, 'Completed', 'Normal', 'WBC 7.5, RBC 4.8, Hgb 14.2, Hct 42%, Plt 250', '2026-04-16', '2026-04-17', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(2, 1, 4, 'Lipid Panel', 'Blood', NULL, 'Completed', 'Normal', 'Total Cholesterol 220, LDL 140, HDL 45, Triglycerides 180', '2026-04-16', '2026-04-17', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(3, 4, 8, 'Fasting Blood Sugar', 'Blood', NULL, 'Completed', 'Normal', 'FBS: 145 mg/dL (High)', '2026-04-02', '2026-04-03', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(4, 4, 8, 'HbA1c', 'Blood', NULL, 'Completed', 'Normal', '7.2%', '2026-04-02', '2026-04-03', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(5, 10, 7, 'Chest X-Ray', 'Imaging', NULL, 'Completed', 'Normal', 'No active pulmonary infiltrates. Normal cardiac silhouette.', '2026-04-18', '2026-04-18', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(6, 9, 4, 'ECG / 12-Lead', 'Diagnostic', NULL, 'Pending', 'Normal', NULL, '2026-04-23', NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(7, 6, 3, 'Skin Allergy Panel', 'Blood', NULL, 'Pending', 'Normal', NULL, '2026-04-24', NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(8, 8, 6, 'Prenatal Ultrasound', 'Imaging', NULL, 'Pending', 'Normal', NULL, '2026-04-24', NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hospital_medical_records` +-- + +CREATE TABLE `hospital_medical_records` ( + `id` bigint(20) UNSIGNED NOT NULL, + `patient_id` bigint(20) UNSIGNED NOT NULL, + `doctor_id` bigint(20) UNSIGNED NOT NULL, + `appointment_id` bigint(20) UNSIGNED DEFAULT NULL, + `diagnosis` text NOT NULL, + `treatment_plan` text DEFAULT NULL, + `notes` text DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `hospital_medical_records` +-- + +INSERT INTO `hospital_medical_records` (`id`, `patient_id`, `doctor_id`, `appointment_id`, `diagnosis`, `treatment_plan`, `notes`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 4, NULL, 'Hypertension Stage 1', 'Amlodipine 5mg daily, low-sodium diet', 'Blood pressure 140/90. Follow up in 2 weeks.', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(2, 10, 7, NULL, 'Acute Bronchitis', 'Amoxicillin 500mg TID for 7 days, rest, increase fluid intake', 'Productive cough for 5 days. Chest x-ray clear.', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(3, 7, 1, NULL, 'Osteoarthritis - Right Knee', 'Celecoxib 200mg BID, physical therapy 3x weekly', 'X-ray shows mild joint space narrowing.', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(4, 3, 5, NULL, 'Migraine with Aura', 'Sumatriptan 50mg as needed, prophylactic Propranolol 40mg daily', 'Patient reports 3-4 episodes per month.', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(5, 4, 8, NULL, 'Type 2 Diabetes Mellitus', 'Metformin 500mg BID, lifestyle modifications', 'HbA1c 7.2%. Advised diabetic diet.', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hospital_medicines` +-- + +CREATE TABLE `hospital_medicines` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `category` varchar(255) DEFAULT NULL, + `company` varchar(255) DEFAULT NULL, + `composition` varchar(255) DEFAULT NULL, + `unit` varchar(255) NOT NULL DEFAULT 'Tablet', + `quantity` int(11) NOT NULL DEFAULT 0, + `reorder_level` int(11) NOT NULL DEFAULT 10, + `batch_number` varchar(255) DEFAULT NULL, + `price` decimal(10,2) NOT NULL DEFAULT 0.00, + `expiry_date` date DEFAULT NULL, + `description` text DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `hospital_medicines` +-- + +INSERT INTO `hospital_medicines` (`id`, `name`, `category`, `company`, `composition`, `unit`, `quantity`, `reorder_level`, `batch_number`, `price`, `expiry_date`, `description`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Paracetamol 500mg', 'Analgesic', 'Unilab', NULL, 'Tablet', 500, 10, NULL, 2.50, '2027-06-30', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(2, 'Amoxicillin 500mg', 'Antibiotic', 'Pascual Lab', NULL, 'Tablet', 300, 10, NULL, 8.00, '2026-12-31', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(3, 'Amlodipine 5mg', 'Antihypertensive', 'Ritemed', NULL, 'Tablet', 200, 10, NULL, 5.50, '2027-03-15', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(4, 'Metformin 500mg', 'Antidiabetic', 'Unilab', NULL, 'Tablet', 250, 10, NULL, 4.00, '2027-09-30', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(5, 'Losartan 50mg', 'Antihypertensive', 'Ritemed', NULL, 'Tablet', 180, 10, NULL, 6.00, '2027-01-31', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(6, 'Cetirizine 10mg', 'Antihistamine', 'Pascual Lab', NULL, 'Tablet', 350, 10, NULL, 3.50, '2027-08-15', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(7, 'Omeprazole 20mg', 'Proton Pump Inhibitor', 'Unilab', NULL, 'Tablet', 120, 10, NULL, 7.00, '2026-11-30', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(8, 'Salbutamol Nebule 2.5mg', 'Bronchodilator', 'GlaxoSmithKline', NULL, 'Tablet', 8, 10, NULL, 12.00, '2026-10-15', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(9, 'Insulin Glargine 100U/mL', 'Antidiabetic', 'Sanofi', NULL, 'Tablet', 5, 10, NULL, 1800.00, '2026-08-31', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(10, 'Clopidogrel 75mg', 'Antiplatelet', 'Ritemed', NULL, 'Tablet', 3, 10, NULL, 15.00, '2027-05-31', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hospital_patients` +-- + +CREATE TABLE `hospital_patients` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `email` varchar(255) NOT NULL, + `phone` varchar(255) DEFAULT NULL, + `dob` date DEFAULT NULL, + `gender` varchar(255) DEFAULT NULL, + `address` text DEFAULT NULL, + `blood_group` varchar(255) DEFAULT NULL, + `emergency_contact_name` varchar(255) DEFAULT NULL, + `emergency_contact_phone` varchar(255) DEFAULT NULL, + `medical_history` text DEFAULT NULL, + `allergies` text DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `hospital_patients` +-- + +INSERT INTO `hospital_patients` (`id`, `name`, `email`, `phone`, `dob`, `gender`, `address`, `blood_group`, `emergency_contact_name`, `emergency_contact_phone`, `medical_history`, `allergies`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Andres Bonifacio Jr.', 'abonifacio@gmail.com', '09171111111', '1985-06-15', 'Male', 'Brgy. Bagumbayan, Taguig City', NULL, NULL, NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(2, 'Maria Clara Ramos', 'mcramos@gmail.com', '09172222222', '1992-03-22', 'Female', 'San Miguel, Manila', NULL, NULL, NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(3, 'Emilio Aguinaldo Santos', 'easantos@gmail.com', '09173333333', '1978-11-30', 'Male', 'Kawit, Cavite', NULL, NULL, NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(4, 'Gabriela Silang Cruz', 'gscruz@gmail.com', '09174444444', '1990-08-19', 'Female', 'Vigan, Ilocos Sur', NULL, NULL, NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(5, 'Lapu-Lapu Magaling', 'llmagaling@gmail.com', '09175555555', '1975-04-27', 'Male', 'Lapu-Lapu City, Cebu', NULL, NULL, NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(6, 'Teresa Magbanua Perez', 'tmperez@gmail.com', '09176666666', '1988-12-05', 'Female', 'Jaro, Iloilo City', NULL, NULL, NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(7, 'Diego Silang Reyes', 'dsreyes@gmail.com', '09177777777', '1995-07-14', 'Male', 'Sta. Cruz, Ilocos Sur', NULL, NULL, NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(8, 'Josefa Llanes Escoda', 'jlescoda@gmail.com', '09178888888', '1982-01-20', 'Female', 'Tondo, Manila', NULL, NULL, NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(9, 'Ramon Magsaysay Lopez', 'rmlopez@gmail.com', '09179999999', '1969-09-11', 'Male', 'Imus, Cavite', NULL, NULL, NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(10, 'Corazon Aquino Diaz', 'cadiaz@gmail.com', '09180000001', '1993-02-25', 'Female', 'Paniqui, Tarlac', NULL, NULL, NULL, NULL, NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hospital_surgeries` +-- + +CREATE TABLE `hospital_surgeries` ( + `id` bigint(20) UNSIGNED NOT NULL, + `patient_id` bigint(20) UNSIGNED NOT NULL, + `doctor_id` bigint(20) UNSIGNED NOT NULL, + `surgery_name` varchar(255) NOT NULL, + `category` varchar(255) DEFAULT NULL, + `surgery_date` datetime NOT NULL, + `status` varchar(255) NOT NULL DEFAULT 'Scheduled', + `operation_theater` varchar(255) DEFAULT NULL, + `estimated_duration` varchar(255) DEFAULT NULL, + `anesthesia_type` varchar(255) DEFAULT NULL, + `notes` text DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `hospital_surgeries` +-- + +INSERT INTO `hospital_surgeries` (`id`, `patient_id`, `doctor_id`, `surgery_name`, `category`, `surgery_date`, `status`, `operation_theater`, `estimated_duration`, `anesthesia_type`, `notes`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 7, 2, 'Arthroscopic Knee Surgery', 'Orthopedic', '2026-04-28 08:00:00', 'Scheduled', 'OT-1', NULL, NULL, 'Right knee. NPO after midnight. Pre-op clearance obtained.', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(2, 4, 2, 'Appendectomy', 'General', '2026-03-24 10:00:00', 'Completed', 'OT-2', NULL, NULL, 'Laparoscopic. No complications. Discharged after 2 days.', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(3, 9, 4, 'Coronary Angioplasty', 'Cardiac', '2026-05-03 07:00:00', 'Scheduled', 'OT-3', NULL, NULL, 'Single vessel disease. Stent placement planned.', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hospital_visitors` +-- + +CREATE TABLE `hospital_visitors` ( + `id` bigint(20) UNSIGNED NOT NULL, + `visitor_name` varchar(255) NOT NULL, + `phone` varchar(255) DEFAULT NULL, + `relation` varchar(255) DEFAULT NULL, + `patient_id` bigint(20) UNSIGNED DEFAULT NULL, + `id_type` varchar(255) DEFAULT NULL, + `id_number` varchar(255) DEFAULT NULL, + `check_in` datetime NOT NULL, + `check_out` datetime DEFAULT NULL, + `purpose` text DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `hospital_visitors` +-- + +INSERT INTO `hospital_visitors` (`id`, `visitor_name`, `phone`, `relation`, `patient_id`, `id_type`, `id_number`, `check_in`, `check_out`, `purpose`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Elena Dela Cruz', '09281111111', 'Wife', 1, NULL, NULL, '2026-04-23 12:36:14', NULL, 'Visit husband in General Ward', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(2, 'Marco Dela Cruz', '09281111112', 'Son', 1, NULL, NULL, '2026-04-23 12:36:14', NULL, 'Visit father', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(3, 'Pedro Ramos', '09282222222', 'Father', 10, NULL, NULL, '2026-04-23 13:36:14', NULL, 'Checking on daughter recovery', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(4, 'Lourdes Santos', '09283333333', 'Wife', 7, NULL, NULL, '2026-04-23 11:36:14', '2026-04-23 13:36:14', 'Brought clothes and food', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(5, 'Antonio Cruz', '09284444444', 'Husband', 3, NULL, NULL, '2026-04-23 13:51:14', NULL, 'Accompanying wife for consultation', 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hospital_wards` +-- + +CREATE TABLE `hospital_wards` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `type` varchar(255) NOT NULL DEFAULT 'General', + `total_beds` int(11) NOT NULL DEFAULT 0, + `available_beds` int(11) NOT NULL DEFAULT 0, + `floor` varchar(255) DEFAULT NULL, + `description` text DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `hospital_wards` +-- + +INSERT INTO `hospital_wards` (`id`, `name`, `type`, `total_beds`, `available_beds`, `floor`, `description`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'General Ward A', 'General', 20, 17, '1st Floor', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(2, 'General Ward B', 'General', 20, 18, '1st Floor', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(3, 'Private Ward', 'Private', 10, 9, '2nd Floor', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(4, 'ICU', 'ICU', 8, 7, '3rd Floor', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(5, 'Pediatric Ward', 'Pediatric', 15, 15, '2nd Floor', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(6, 'Maternity Ward', 'Maternity', 12, 12, '2nd Floor', NULL, 2, '2026-04-23 14:36:14', '2026-04-23 14:36:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `hrm_documents` +-- + +CREATE TABLE `hrm_documents` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(255) NOT NULL, + `description` longtext DEFAULT NULL, + `document_category_id` bigint(20) UNSIGNED DEFAULT NULL, + `document` varchar(255) DEFAULT NULL, + `effective_date` date DEFAULT NULL, + `status` enum('pending','approve','reject') NOT NULL DEFAULT 'pending', + `uploaded_by` bigint(20) UNSIGNED DEFAULT NULL, + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `hrm_documents` +-- + +INSERT INTO `hrm_documents` (`id`, `title`, `description`, `document_category_id`, `document`, `effective_date`, `status`, `uploaded_by`, `approved_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Employee Handbook 2024', 'Comprehensive guide covering company policies, procedures, benefits, and workplace expectations for all employees.', 3, 'hrm_document1.png', '2025-09-20', 'approve', 8, 8, 2, 2, '2025-09-20 09:32:49', '2025-09-20 09:32:49'), +(2, 'Code of Conduct Policy', 'Ethical guidelines and behavioral standards defining professional conduct and integrity expectations for staff.', 6, 'hrm_document2.png', '2025-09-25', 'approve', 10, 10, 2, 2, '2025-09-25 10:47:49', '2025-09-25 10:47:49'), +(3, 'Leave Application Form', 'Standard form template for requesting various types of leave including vacation, sick, and personal time off.', 3, 'hrm_document2.png', NULL, 'pending', 12, NULL, 2, 2, '2025-09-30 15:02:49', '2025-09-30 15:02:49'), +(4, 'Performance Review Guidelines', 'Detailed process and criteria for conducting annual and quarterly employee performance evaluations and assessments.', 14, 'hrm_document1.png', '2025-10-05', 'approve', 14, 8, 2, 2, '2025-10-05 11:37:49', '2025-10-05 11:37:49'), +(5, 'Workplace Safety Manual', 'Comprehensive safety protocols, emergency procedures, and health guidelines for maintaining secure workplace environment.', 6, 'hrm_document2.png', '2025-10-10', 'reject', 16, NULL, 2, 2, '2025-10-10 13:27:49', '2025-10-10 13:27:49'), +(6, 'Expense Reimbursement Policy', 'Guidelines and procedures for submitting, approving, and processing business expense reimbursement claims.', 5, 'hrm_document1.png', NULL, 'pending', 8, NULL, 2, 2, '2025-10-15 15:52:49', '2025-10-15 15:52:49'), +(7, 'Remote Work Agreement', 'Terms and conditions for remote work arrangements including productivity expectations and communication protocols.', 15, 'hrm_document1.png', '2025-10-20', 'approve', 10, 8, 2, 2, '2025-10-20 09:07:49', '2025-10-20 09:07:49'), +(8, 'New Employee Onboarding', 'Step-by-step onboarding process covering orientation, training schedules, and integration procedures for new hires.', 13, 'hrm_document1.png', '2025-10-25', 'reject', 12, NULL, 2, 2, '2025-10-25 12:42:49', '2025-10-25 12:42:49'), +(9, 'IT Security Procedures', 'Information technology security protocols, password policies, and data protection measures for system access.', 12, 'hrm_document1.png', NULL, 'pending', 14, NULL, 2, 2, '2025-10-30 16:57:49', '2025-10-30 16:57:49'), +(10, 'Benefits Enrollment Guide', 'Comprehensive guide for employee benefits selection including health insurance, retirement plans, and wellness programs.', 7, 'hrm_document2.png', '2025-11-04', 'approve', 16, 8, 2, 2, '2025-11-04 10:12:49', '2025-11-04 10:12:49'), +(11, 'Disciplinary Action Policy', 'Framework for addressing employee misconduct including progressive discipline procedures and corrective action steps.', 6, 'hrm_document1.png', '2025-11-09', 'approve', 8, 10, 2, 2, '2025-11-09 11:32:49', '2025-11-09 11:32:49'), +(12, 'Training Development Plan', 'Professional development framework outlining skill enhancement opportunities and career advancement pathways for employees.', 13, 'hrm_document3.png', NULL, 'pending', 10, NULL, 2, 2, '2025-11-14 14:47:49', '2025-11-14 14:47:49'), +(13, 'Emergency Response Protocol', 'Detailed emergency procedures covering fire safety, medical emergencies, and evacuation plans for workplace incidents.', 6, 'hrm_document2.png', '2025-11-19', 'approve', 12, 8, 2, 2, '2025-11-19 11:02:49', '2025-11-19 11:02:49'), +(14, 'Confidentiality Agreement', 'Non-disclosure agreement protecting company proprietary information, trade secrets, and confidential business data.', 15, 'hrm_document2.png', '2025-11-24', 'reject', 14, NULL, 2, 2, '2025-11-24 13:37:49', '2025-11-24 13:37:49'), +(15, 'Payroll Processing Manual', 'Comprehensive guide for payroll administration including salary calculations, deductions, and payment processing procedures.', 5, 'hrm_document3.png', '2025-11-29', 'approve', 16, 12, 2, 2, '2025-11-29 15:27:49', '2025-11-29 15:27:49'), +(16, 'Quality Assurance Standards', 'Quality control procedures and standards ensuring consistent service delivery and product excellence across operations.', 12, 'hrm_document3.png', NULL, 'pending', 8, NULL, 2, 2, '2025-12-04 08:52:49', '2025-12-04 08:52:49'), +(17, 'Travel Expense Policy', 'Guidelines for business travel expenses including accommodation, transportation, and meal allowance reimbursement procedures.', 11, 'hrm_document1.png', '2025-12-09', 'approve', 10, 10, 2, 2, '2025-12-09 13:07:49', '2025-12-09 13:07:49'), +(18, 'Performance Improvement Plan', 'Structured approach for addressing performance deficiencies with clear goals, timelines, and support mechanisms.', 14, 'hrm_document2.png', '2025-12-15', 'reject', 12, NULL, 2, 2, '2025-12-14 16:42:49', '2025-12-14 16:42:49'), +(19, 'Equipment Usage Agreement', 'Terms and conditions for company equipment usage including laptops, mobile devices, and office equipment responsibility.', 15, 'hrm_document2.png', '2025-12-19', 'approve', 14, 8, 2, 2, '2025-12-19 09:57:49', '2025-12-19 09:57:49'), +(20, 'Health Insurance Enrollment', 'Health insurance plan options, coverage details, and enrollment procedures for employees and their dependents.', 7, 'hrm_document3.png', NULL, 'pending', 16, NULL, 2, 2, '2025-12-24 12:12:49', '2025-12-24 12:12:49'), +(21, 'Workplace Harassment Policy', 'Anti-harassment policy defining prohibited behaviors, reporting procedures, and investigation processes for workplace incidents.', 6, 'hrm_document1.png', '2025-12-29', 'approve', 8, 12, 2, 2, '2025-12-29 14:32:49', '2025-12-29 14:32:49'), +(22, 'Professional Development Fund', 'Guidelines for accessing professional development funding including conference attendance, certification, and training expenses.', 5, 'hrm_document2.png', '2026-01-03', 'reject', 10, NULL, 2, 2, '2026-01-03 10:47:49', '2026-01-03 10:47:49'), +(23, 'Data Protection Guidelines', 'Data privacy and protection protocols ensuring compliance with regulations and safeguarding sensitive information.', 12, 'hrm_document2.png', '2026-01-08', 'approve', 12, 10, 2, 2, '2026-01-08 14:02:49', '2026-01-08 14:02:49'), +(24, 'Flexible Work Schedule', 'Policy framework for flexible working arrangements including core hours, schedule variations, and approval processes.', 3, 'hrm_document1.png', NULL, 'pending', 8, NULL, 2, 2, '2026-01-13 15:37:49', '2026-03-14 00:17:49'), +(25, 'Retirement Plan Guide', 'Comprehensive guide to company retirement benefits including contribution matching, vesting schedules, and investment options.', 5, 'hrm_document3.png', '2026-01-18', 'approve', 10, 10, 2, 2, '2026-01-18 08:27:49', '2026-03-14 00:17:49'), +(26, 'Vendor Management Policy', 'Procedures for vendor selection, contract negotiation, performance monitoring, and relationship management with external suppliers.', 15, 'hrm_document2.png', '2026-01-23', 'reject', 12, NULL, 2, 2, '2026-01-23 12:52:49', '2026-03-14 00:17:49'), +(27, 'Innovation Initiative Guidelines', 'Framework for employee innovation programs including idea submission, evaluation criteria, and implementation support processes.', 13, 'hrm_document2.png', '2026-01-29', 'approve', 14, 8, 2, 2, '2026-01-28 17:07:49', '2026-03-14 00:17:49'), +(28, 'Environmental Sustainability Plan', 'Corporate environmental responsibility initiatives including waste reduction, energy conservation, and sustainable business practices.', 6, 'hrm_document3.png', NULL, 'pending', 16, NULL, 2, 2, '2026-02-02 09:42:49', '2026-03-14 00:17:49'), +(29, 'Customer Service Standards', 'Service excellence guidelines defining customer interaction standards, response times, and quality assurance measures.', 12, 'hrm_document2.png', '2026-02-07', 'approve', 8, 12, 2, 2, '2026-02-07 11:57:49', '2026-03-14 00:17:49'), +(30, 'Business Continuity Plan', 'Comprehensive disaster recovery and business continuity procedures ensuring operational resilience during emergencies and disruptions.', 6, 'hrm_document1.png', '2026-02-12', 'approve', 10, 8, 2, 2, '2026-02-12 15:12:49', '2026-03-14 00:17:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `insurances` +-- + +CREATE TABLE `insurances` ( + `id` bigint(20) UNSIGNED NOT NULL, + `insurance_provider` varchar(255) NOT NULL, + `vehicle_name` int(11) NOT NULL, + `start_date` date NOT NULL, + `end_date` date NOT NULL, + `scheduled_date` date NOT NULL, + `scheduled_period` int(11) NOT NULL, + `deductible` int(11) NOT NULL, + `charge_payable` int(11) NOT NULL, + `policy_number` int(11) NOT NULL, + `policy_document` varchar(255) NOT NULL, + `notes` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `insurance_booking` +-- + +CREATE TABLE `insurance_booking` ( + `id` bigint(20) UNSIGNED NOT NULL, + `insurance_id` int(11) NOT NULL, + `start_date` date NOT NULL, + `end_date` date NOT NULL, + `amount` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `ip_restricts` +-- + +CREATE TABLE `ip_restricts` ( + `id` bigint(20) UNSIGNED NOT NULL, + `ip` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `ip_restricts` +-- + +INSERT INTO `ip_restricts` (`id`, `ip`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, '192.168.1.100', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, '192.168.1.101', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, '10.0.0.50', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, '10.0.0.51', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, '172.16.0.10', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, '203.0.113.25', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, '198.51.100.30', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, '192.0.2.15', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `jobs` +-- + +CREATE TABLE `jobs` ( + `id` bigint(20) UNSIGNED NOT NULL, + `queue` varchar(255) 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 `job_batches` +-- + +CREATE TABLE `job_batches` ( + `id` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `total_jobs` int(11) NOT NULL, + `pending_jobs` int(11) NOT NULL, + `failed_jobs` int(11) NOT NULL, + `failed_job_ids` longtext NOT NULL, + `options` mediumtext DEFAULT NULL, + `cancelled_at` int(11) DEFAULT NULL, + `created_at` int(11) NOT NULL, + `finished_at` int(11) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `journal_entries` +-- + +CREATE TABLE `journal_entries` ( + `id` bigint(20) UNSIGNED NOT NULL, + `date` date NOT NULL, + `reference` varchar(255) DEFAULT NULL, + `description` text DEFAULT NULL, + `journal_id` int(11) NOT NULL DEFAULT 0, + `workspace` int(11) NOT NULL DEFAULT 0, + `created_by` 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; + +-- +-- Dumping data for table `journal_entries` +-- + +INSERT INTO `journal_entries` (`id`, `date`, `reference`, `description`, `journal_id`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES +(1, '2025-10-15', 'SI-REVENUE', 'Sales Revenue Recognition - Invoice batch Q3', 1, 2, 2, '2025-10-15 00:17:54', '2025-10-15 00:17:54'), +(2, '2025-11-04', 'PI-EXPENSE', 'Purchase Expense Recording - Vendor batch Q3', 2, 2, 2, '2025-11-04 00:17:54', '2025-11-04 00:17:54'), +(3, '2025-11-24', 'PMT-RECEIVED', 'Customer Payment Received - Sarah Johnson', 3, 2, 2, '2025-11-24 00:17:54', '2025-11-24 00:17:54'), +(4, '2025-12-14', 'PMT-MADE', 'Vendor Payment Made - Tech Solutions Inc', 4, 2, 2, '2025-12-14 00:17:54', '2025-12-14 00:17:54'), +(5, '2026-01-03', 'PAYROLL', 'Payroll Processing - Monthly salary February', 5, 2, 2, '2026-01-03 00:17:54', '2026-01-03 00:17:54'), +(6, '2026-01-28', 'SI-REVENUE-Q4', 'Sales Revenue Recognition - Invoice batch Q4', 6, 2, 2, '2026-01-28 00:17:54', '2026-01-28 00:17:54'), +(7, '2026-02-22', 'SR-RETURN', 'Sales Return - Credit Note applied for defective goods', 7, 2, 2, '2026-02-22 00:17:54', '2026-02-22 00:17:54'), +(8, '2026-03-09', 'UTILITIES', 'Monthly Office Utilities - Electricity, Water, Internet', 8, 2, 2, '2026-03-09 00:17:54', '2026-03-09 00:17:54'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `journal_entry_items` +-- + +CREATE TABLE `journal_entry_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `journal_entry_id` bigint(20) UNSIGNED NOT NULL, + `account_id` bigint(20) UNSIGNED NOT NULL, + `description` text NOT NULL, + `debit_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `credit_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED 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 `journal_items` +-- + +CREATE TABLE `journal_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `journal` int(11) NOT NULL DEFAULT 0, + `account` int(11) NOT NULL DEFAULT 0, + `description` text DEFAULT NULL, + `debit` double NOT NULL DEFAULT 0, + `credit` double NOT NULL DEFAULT 0, + `workspace` int(11) NOT NULL DEFAULT 0, + `created_by` 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; + +-- +-- Dumping data for table `journal_items` +-- + +INSERT INTO `journal_items` (`id`, `journal`, `account`, `description`, `debit`, `credit`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 1, 'Accounts Receivable', 125000, 0, 2, 2, '2025-10-15 00:17:54', '2025-10-15 00:17:54'), +(2, 1, 2, 'Sales Revenue', 0, 111607.14, 2, 2, '2025-10-15 00:17:54', '2025-10-15 00:17:54'), +(3, 1, 3, 'VAT Output', 0, 13392.86, 2, 2, '2025-10-15 00:17:54', '2025-10-15 00:17:54'), +(4, 2, 4, 'Inventory / Purchases', 85000, 0, 2, 2, '2025-11-04 00:17:54', '2025-11-04 00:17:54'), +(5, 2, 5, 'VAT Input', 10200, 0, 2, 2, '2025-11-04 00:17:54', '2025-11-04 00:17:54'), +(6, 2, 6, 'Accounts Payable', 0, 95200, 2, 2, '2025-11-04 00:17:54', '2025-11-04 00:17:54'), +(7, 3, 7, 'Cash / Bank', 45000, 0, 2, 2, '2025-11-24 00:17:54', '2025-11-24 00:17:54'), +(8, 3, 1, 'Accounts Receivable', 0, 45000, 2, 2, '2025-11-24 00:17:54', '2025-11-24 00:17:54'), +(9, 4, 6, 'Accounts Payable', 35000, 0, 2, 2, '2025-12-14 00:17:54', '2025-12-14 00:17:54'), +(10, 4, 7, 'Cash / Bank', 0, 35000, 2, 2, '2025-12-14 00:17:54', '2025-12-14 00:17:54'), +(11, 5, 8, 'Salary Expense', 180000, 0, 2, 2, '2026-01-03 00:17:54', '2026-01-03 00:17:54'), +(12, 5, 9, 'SSS Payable', 0, 15000, 2, 2, '2026-01-03 00:17:54', '2026-01-03 00:17:54'), +(13, 5, 10, 'PhilHealth Payable', 0, 8000, 2, 2, '2026-01-03 00:17:54', '2026-01-03 00:17:54'), +(14, 5, 7, 'Cash / Bank', 0, 157000, 2, 2, '2026-01-03 00:17:54', '2026-01-03 00:17:54'), +(15, 6, 1, 'Accounts Receivable', 200000, 0, 2, 2, '2026-01-28 00:17:54', '2026-01-28 00:17:54'), +(16, 6, 2, 'Sales Revenue', 0, 178571.43, 2, 2, '2026-01-28 00:17:54', '2026-01-28 00:17:54'), +(17, 6, 3, 'VAT Output', 0, 21428.57, 2, 2, '2026-01-28 00:17:54', '2026-01-28 00:17:54'), +(18, 7, 2, 'Sales Returns & Allowances', 15000, 0, 2, 2, '2026-02-22 00:17:54', '2026-02-22 00:17:54'), +(19, 7, 1, 'Accounts Receivable', 0, 15000, 2, 2, '2026-02-22 00:17:54', '2026-02-22 00:17:54'), +(20, 8, 11, 'Utilities Expense', 12500, 0, 2, 2, '2026-03-09 00:17:54', '2026-03-09 00:17:54'), +(21, 8, 7, 'Cash / Bank', 0, 12500, 2, 2, '2026-03-09 00:17:54', '2026-03-09 00:17:54'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `labels` +-- + +CREATE TABLE `labels` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `color` varchar(7) NOT NULL DEFAULT '#FF6B6B', + `pipeline_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `labels` +-- + +INSERT INTO `labels` (`id`, `name`, `color`, `pipeline_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'First Visit', '#EF4444', 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 'Return Visitor', '#F97316', 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 'Content Downloaded', '#3B82F6', 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 'Form Submitted', '#10B981', 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 'MQL Ready', '#8B5CF6', 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 'High Priority', '#EF4444', 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 'Medium Priority', '#F97316', 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 'Low Priority', '#3B82F6', 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 'Follow Up', '#10B981', 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 'Not Interested', '#6B7280', 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `landing_page_settings` +-- + +CREATE TABLE `landing_page_settings` ( + `id` bigint(20) UNSIGNED NOT NULL, + `company_name` varchar(255) DEFAULT NULL, + `contact_email` varchar(255) DEFAULT NULL, + `contact_phone` varchar(255) DEFAULT NULL, + `contact_address` text DEFAULT NULL, + `config_sections` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`config_sections`)), + `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 `leads` +-- + +CREATE TABLE `leads` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `email` varchar(255) NOT NULL, + `subject` varchar(255) NOT NULL, + `user_id` bigint(20) UNSIGNED DEFAULT NULL, + `pipeline_id` bigint(20) UNSIGNED DEFAULT NULL, + `stage_id` bigint(20) UNSIGNED DEFAULT NULL, + `sources` varchar(255) DEFAULT NULL, + `products` varchar(255) DEFAULT NULL, + `notes` longtext DEFAULT NULL, + `labels` varchar(255) DEFAULT NULL, + `order` int(11) DEFAULT NULL, + `phone` varchar(20) DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `is_converted` int(11) NOT NULL DEFAULT 0, + `date` date DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `leads` +-- + +INSERT INTO `leads` (`id`, `name`, `email`, `subject`, `user_id`, `pipeline_id`, `stage_id`, `sources`, `products`, `notes`, `labels`, `order`, `phone`, `is_active`, `is_converted`, `date`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Hazel Cox', 'hazel.cox@gmail.com', 'Product Demo Request', 18, 1, 1, '14,3,6,11,8', NULL, 'Initial contact established through multiple touchpoints with strong interest demonstrated. Follow-up meeting scheduled to discuss specific requirements and next steps.', '4,5', 0, '+77322719800', 1, 1, '2025-09-24', 2, 2, '2025-09-15 16:32:29', '2026-03-14 06:00:09'), +(2, 'Leo Ward', 'leo.ward@yahoo.com', 'Partnership Inquiry', 16, 1, 1, '12,11,8,6,5,10', NULL, 'Productive discussion completed with key decision makers present. Budget parameters confirmed and approval process timeline established for moving forward with evaluation.', '3', 0, '+333786773863', 1, 2, '2025-10-16', 2, 2, '2025-09-21 16:26:38', '2026-03-14 06:00:18'), +(3, 'Violet Richardson', 'violet.richardson@hotmail.com', 'Pricing Information', 20, 1, 1, '13,12,5,4,1', NULL, 'Detailed information package sent including pricing structure and implementation timeline. Client team currently reviewing materials and will provide feedback within one week.', '1,2,3', 0, '+341973898124', 1, 3, '2025-11-11', 2, 2, '2025-09-28 04:33:47', '2026-03-14 06:00:18'), +(4, 'Ezra Butler', 'ezra.butler@outlook.com', 'Solution Consultation', 28, 1, 1, '4,8,9,10,7,6', NULL, 'Comprehensive presentation delivered covering all requested topics and use cases. Positive reception received with several technical questions answered during the session.', '2,4', 0, '+553546758905', 1, 4, '2025-12-18', 2, 2, '2025-10-03 23:25:49', '2026-03-14 06:00:18'), +(5, 'Aurora Simmons', 'aurora.simmons@gmail.com', 'Service Integration', 42, 1, 2, '11,6,14,2,10,12', NULL, 'Requirements gathering session completed with thorough documentation of current processes. Gap analysis shows significant opportunities for improvement and efficiency gains.', '2,3,4', 0, '+75186925571', 1, 5, '2026-01-13', 2, 2, '2025-10-09 17:53:56', '2026-03-14 06:00:18'), +(6, 'Kai Foster', 'kai.foster@yahoo.com', 'Custom Development', 29, 1, 2, '3,4,12,1,2,6', NULL, 'Technical evaluation meeting scheduled with IT team to assess compatibility requirements. Infrastructure review and integration planning discussion will be primary focus.', '2', 0, '+829290778825', 1, 6, '2026-01-26', 2, 2, '2025-10-16 07:17:08', '2026-03-14 06:00:18'), +(7, 'Savannah Henderson', 'savannah.henderson@hotmail.com', 'Platform Migration', 38, 1, 3, '3,5,11,2,10', NULL, 'Pricing discussion held with finance team covering various licensing options available. Volume discounts and multi-year terms presented for consideration and evaluation.', '2,5', 0, '+9718150848194', 1, 0, '2026-02-09', 2, 2, '2025-10-22 12:37:05', '2026-03-14 06:00:09'), +(8, 'Maverick Bryant', 'maverick.bryant@gmail.com', 'Marketing Automation', 36, 1, 3, '11,9,7,15,6,12', NULL, 'Extended evaluation period approved to allow comprehensive testing of key features. Additional user access provided to facilitate broader organizational assessment and feedback.', '2,4', 0, '+445910957255', 1, 0, '2026-02-23', 2, 2, '2025-10-28 12:19:16', '2026-03-14 06:00:18'), +(9, 'Skylar Alexander', 'skylar.alexander@outlook.com', 'API Integration', 41, 1, 4, '13,8,10,7,2,12,1', NULL, 'Reference customer introduction arranged to share implementation experience and lessons learned. Similar industry background will provide relevant insights for decision making.', '4', 0, '+339952216758', 1, 0, '2026-03-05', 2, 2, '2025-11-03 10:52:07', '2026-03-14 06:00:18'), +(10, 'Jaxon Russell', 'jaxon.russell@yahoo.com', 'AI Implementation', 31, 1, 5, '5,13,15,1,11', NULL, 'Implementation approach discussed including timeline, resource requirements, and project phases. Preferred deployment strategy identified with minimal business disruption as priority.', '1,2', 0, '+557063607519', 1, 0, '2026-03-09', 2, 2, '2025-11-09 05:42:47', '2026-03-14 06:00:18'), +(11, 'Paisley Griffin', 'paisley.griffin@gmail.com', 'Cloud Migration', 14, 2, 6, '3,5,15,10,11,14', NULL, 'Security and compliance review completed with all requirements thoroughly addressed. Documentation provided covering data protection, access controls, and audit trail capabilities.', '7,9', 0, '+335943893915', 1, 11, '2026-03-13', 2, 2, '2025-11-15 05:46:27', '2026-03-14 06:00:18'), +(12, 'Roman Diaz', 'roman.diaz@hotmail.com', 'Data Analysis Tools', 40, 2, 6, '11,13,8,1,14', NULL, 'Budget approval process initiated with finance committee reviewing investment proposal. Cost-benefit analysis demonstrates strong return on investment within reasonable timeframe.', '9', 0, '+336992208054', 1, 12, '2026-03-15', 2, 2, '2025-11-21 06:18:57', '2026-03-14 06:00:18'), +(13, 'Kinsley Hayes', 'kinsley.hayes@outlook.com', 'Mobile App Development', 30, 2, 6, '7,1,3,15,4,10,12', NULL, 'Executive briefing delivered to senior leadership team covering strategic benefits. Management support confirmed for proceeding with detailed evaluation and selection process.', '6,9', 0, '+347545184717', 1, 13, '2026-03-19', 2, 2, '2025-11-27 11:27:50', '2026-03-14 06:00:18'), +(14, 'Declan Myers', 'declan.myers@gmail.com', 'Security Assessment', 12, 2, 7, '11,8,6,7,4', NULL, 'Technical architecture review completed with systems integration requirements documented. API capabilities and data flow requirements assessed for seamless connectivity.', '10', 0, '+551551290499', 1, 14, '2026-03-21', 2, 2, '2025-12-02 22:40:10', '2026-03-14 06:00:18'), +(15, 'Nova Ford', 'nova.ford@yahoo.com', 'E-commerce Platform', 10, 2, 7, '4,11,3,8,15,9', NULL, 'Vendor comparison analysis provided highlighting key differentiators and competitive advantages. Evaluation criteria matrix completed showing strong alignment with organizational needs.', '8,9,10', 0, '+817327467195', 1, 15, '2026-03-23', 2, 2, '2025-12-09 09:54:29', '2026-03-14 06:00:18'), +(16, 'Axel Hamilton', 'axel.hamilton@hotmail.com', 'Payment Gateway', 34, 2, 8, '10,5,3,6,11,2,13', NULL, 'Proof of concept development approved with specific success criteria established. Limited scope pilot will demonstrate core functionality using real organizational data.', '8,10', 0, '+9714032254679', 1, 16, '2026-03-26', 2, 2, '2025-12-15 14:13:35', '2026-03-14 06:00:18'), +(17, 'Emery Graham', 'emery.graham@gmail.com', 'Healthcare Solutions', 26, 2, 8, '9,6,11,4,12,10,15', NULL, 'Training needs assessment completed identifying user groups and skill level requirements. Comprehensive education program designed to ensure successful adoption and utilization.', '9,10', 0, '+866984937671', 1, 0, '2026-03-28', 2, 2, '2025-12-20 23:32:44', '2026-03-14 06:00:18'), +(18, 'Knox Sullivan', 'knox.sullivan@outlook.com', 'Learning Management', 33, 2, 9, '9,3,11,12,13', NULL, 'Data migration planning session held with database administrators and technical team. Strategy developed to ensure data integrity and minimize system downtime.', '7,9', 0, '+815493567092', 1, 0, '2026-03-30', 2, 2, '2025-12-27 12:44:57', '2026-03-14 06:00:18'), +(19, 'Wren Wallace', 'wren.wallace@yahoo.com', 'Supply Chain Management', 8, 2, 9, '2,4,14,7,6,12', NULL, 'Service level agreement terms discussed covering support coverage and response time requirements. Escalation procedures and account management structure clearly defined.', '8,10', 0, '+335547794907', 1, 0, '2026-04-01', 2, 2, '2026-01-01 16:35:46', '2026-03-14 06:00:18'), +(20, 'Atlas Woods', 'atlas.woods@gmail.com', 'Production Optimization', 35, 2, 10, '7,5,12,8,2,14,6,15', NULL, 'Contract terms review in progress with legal teams from both organizations. Final negotiations focused on implementation timeline, payment terms, and service commitments.', '7,10', 0, '+916082893224', 1, 0, '2026-04-03', 2, 2, '2026-01-08 08:33:59', '2026-03-14 06:00:18'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `lead_activity_logs` +-- + +CREATE TABLE `lead_activity_logs` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `lead_id` bigint(20) UNSIGNED NOT NULL, + `log_type` varchar(255) NOT NULL, + `remark` 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 `lead_activity_logs` +-- + +INSERT INTO `lead_activity_logs` (`id`, `user_id`, `lead_id`, `log_type`, `remark`, `created_at`, `updated_at`) VALUES +(1, 2, 1, 'Create Lead Call', '{\"title\":\"Qualification Assessment Call\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 2, 1, 'Create Lead Call', '{\"title\":\"Interest Assessment Meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 2, 1, 'Upload File', '{\"file_name\":\"lead_file_1.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 2, 2, 'Create Lead Call', '{\"title\":\"Engagement Analysis Discussion\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 2, 3, 'Create Lead Call', '{\"title\":\"Prospect Evaluation Call\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 2, 4, 'Create Task', '{\"title\":\"Follow up on proposal feedback\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 2, 4, 'Move', '{\"title\":\"Ezra Butler\",\"old_status\":\"Engaged\",\"new_status\":\"Prospect\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 2, 5, 'Create Lead Call', '{\"title\":\"Educational Resource Review\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 2, 5, 'Create Task', '{\"title\":\"Schedule product demonstration session\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 2, 5, 'Create Task', '{\"title\":\"Prepare technical specifications document\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 2, 5, 'Create Task', '{\"title\":\"Conduct stakeholder presentation meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 2, 6, 'Upload File', '{\"file_name\":\"lead_file_6.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 2, 6, 'Move', '{\"title\":\"Kai Foster\",\"old_status\":\"Converted\",\"new_status\":\"Contacted\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 2, 7, 'Move', '{\"title\":\"Savannah Henderson\",\"old_status\":\"Engaged\",\"new_status\":\"Engaged\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 2, 8, 'Create Lead Email', '{\"title\":\"Demo Invitation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 2, 8, 'Create Lead Email', '{\"title\":\"Case Study Sharing\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 2, 9, 'Create Lead Call', '{\"title\":\"Qualification Review Meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 2, 9, 'Create Lead Call', '{\"title\":\"Handoff Planning Call\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 2, 9, 'Create Task', '{\"title\":\"Conduct final negotiation session\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 2, 10, 'Upload File', '{\"file_name\":\"lead_file_10.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 2, 11, 'Create Lead Call', '{\"title\":\"Preliminary Evaluation Session\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 2, 11, 'Create Task', '{\"title\":\"Schedule contract signing appointment\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 2, 11, 'Create Task', '{\"title\":\"Prepare onboarding documentation package\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 2, 11, 'Create Task', '{\"title\":\"Conduct project kickoff meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 2, 12, 'Create Lead Call', '{\"title\":\"Assessment Review Meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 2, 12, 'Create Lead Call', '{\"title\":\"Evaluation Planning Session\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 2, 12, 'Create Lead Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 2, 13, 'Create Lead Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(29, 2, 13, 'Create Lead Email', '{\"title\":\"Alternative Solutions\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(30, 2, 13, 'Create Task', '{\"title\":\"Conduct team introduction meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(31, 2, 13, 'Create Task', '{\"title\":\"Send training materials package\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(32, 2, 14, 'Create Lead Call', '{\"title\":\"Criteria Review Discussion\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(33, 2, 14, 'Create Lead Call', '{\"title\":\"Status Follow-up Meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(34, 2, 14, 'Move', '{\"title\":\"Declan Myers\",\"old_status\":\"Approved\",\"new_status\":\"In Review\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(35, 2, 15, 'Upload File', '{\"file_name\":\"lead_file_15.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(36, 2, 16, 'Create Task', '{\"title\":\"Send testing results summary\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(37, 2, 16, 'Create Task', '{\"title\":\"Schedule final approval meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(38, 2, 16, 'Move', '{\"title\":\"Axel Hamilton\",\"old_status\":\"In Review\",\"new_status\":\"Qualified\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(39, 2, 17, 'Upload File', '{\"file_name\":\"lead_file_17.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(40, 2, 18, 'Create Lead Email', '{\"title\":\"Final Approval Confirmation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(41, 2, 19, 'Create Lead Email', '{\"title\":\"Final Approval Confirmation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(42, 2, 19, 'Create Task', '{\"title\":\"Follow up on satisfaction feedback\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(43, 2, 20, 'Create Lead Email', '{\"title\":\"Application Status Update\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(44, 2, 20, 'Create Lead Email', '{\"title\":\"Feedback and Recommendations\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(45, 2, 20, 'Upload File', '{\"file_name\":\"lead_file_20.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(46, 2, 1, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(47, 2, 1, 'Create Lead Email', '{\"title\":\"Exclusive Industry Insights\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(48, 2, 1, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(49, 2, 1, 'Create Lead Email', '{\"title\":\"Exclusive Industry Insights\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(50, 2, 1, 'Upload File', '{\"file_name\":\"lead_file_1.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(51, 2, 2, 'Create Task', '{\"title\":\"Send introduction email and company overview\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(52, 2, 2, 'Create Task', '{\"title\":\"Schedule discovery meeting appointment\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(53, 2, 2, 'Create Task', '{\"title\":\"Research prospect business requirements thoroughly\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(54, 2, 2, 'Upload File', '{\"file_name\":\"lead_file_2.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(55, 2, 3, 'Create Task', '{\"title\":\"Prepare customized presentation materials\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(56, 2, 3, 'Create Task', '{\"title\":\"Conduct needs assessment interview\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(57, 2, 3, 'Create Task', '{\"title\":\"Send detailed proposal document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(58, 2, 4, 'Create Lead Call', '{\"title\":\"Interest Assessment Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(59, 2, 5, 'Create Task', '{\"title\":\"Schedule product demonstration session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(60, 2, 5, 'Create Task', '{\"title\":\"Prepare technical specifications document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(61, 2, 5, 'Create Task', '{\"title\":\"Conduct stakeholder presentation meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(62, 2, 5, 'Upload File', '{\"file_name\":\"lead_file_5.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(63, 2, 6, 'Create Lead Call', '{\"title\":\"Resource Discussion Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(64, 2, 6, 'Create Lead Call', '{\"title\":\"Value Assessment Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(65, 2, 6, 'Upload File', '{\"file_name\":\"lead_file_6.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(66, 2, 7, 'Move', '{\"title\":\"Savannah Henderson\",\"old_status\":\"Converted\",\"new_status\":\"Engaged\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(67, 2, 8, 'Create Lead Call', '{\"title\":\"Content Feedback Session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(68, 2, 9, 'Move', '{\"title\":\"Skylar Alexander\",\"old_status\":\"Engaged\",\"new_status\":\"Qualified\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(69, 2, 10, 'Upload File', '{\"file_name\":\"lead_file_10.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(70, 2, 10, 'Move', '{\"title\":\"Jaxon Russell\",\"old_status\":\"Engaged\",\"new_status\":\"Converted\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(71, 2, 11, 'Create Lead Call', '{\"title\":\"Preliminary Evaluation Session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(72, 2, 11, 'Create Task', '{\"title\":\"Schedule contract signing appointment\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(73, 2, 11, 'Create Task', '{\"title\":\"Prepare onboarding documentation package\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(74, 2, 11, 'Create Task', '{\"title\":\"Conduct project kickoff meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(75, 2, 12, 'Create Lead Call', '{\"title\":\"Assessment Review Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(76, 2, 12, 'Create Lead Call', '{\"title\":\"Evaluation Planning Session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(77, 2, 12, 'Move', '{\"title\":\"Roman Diaz\",\"old_status\":\"Qualified\",\"new_status\":\"Unqualified\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(78, 2, 13, 'Create Lead Call', '{\"title\":\"Basic Qualification Check\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(79, 2, 13, 'Create Task', '{\"title\":\"Conduct team introduction meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(80, 2, 13, 'Create Task', '{\"title\":\"Send training materials package\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(81, 2, 14, 'Create Lead Email', '{\"title\":\"Application Under Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(82, 2, 14, 'Create Lead Email', '{\"title\":\"Application Under Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(83, 2, 14, 'Create Lead Email', '{\"title\":\"Additional Information Needed\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(84, 2, 14, 'Create Task', '{\"title\":\"Schedule training session appointment\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(85, 2, 14, 'Create Task', '{\"title\":\"Follow up on training completion\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(86, 2, 14, 'Create Task', '{\"title\":\"Schedule go-live planning meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(87, 2, 15, 'Create Lead Call', '{\"title\":\"Progress Assessment Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(88, 2, 16, 'Create Task', '{\"title\":\"Send testing results summary\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(89, 2, 16, 'Create Task', '{\"title\":\"Schedule final approval meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(90, 2, 16, 'Move', '{\"title\":\"Axel Hamilton\",\"old_status\":\"Qualified\",\"new_status\":\"Qualified\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(91, 2, 17, 'Create Lead Call', '{\"title\":\"Qualification Confirmation Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(92, 2, 17, 'Create Task', '{\"title\":\"Follow up on final approval\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(93, 2, 17, 'Create Task', '{\"title\":\"Schedule launch celebration event\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(94, 2, 17, 'Create Task', '{\"title\":\"Send launch announcement communication\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(95, 2, 18, 'Create Lead Email', '{\"title\":\"Final Approval Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(96, 2, 18, 'Create Lead Email', '{\"title\":\"Final Approval Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(97, 2, 18, 'Move', '{\"title\":\"Knox Sullivan\",\"old_status\":\"Rejected\",\"new_status\":\"Approved\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(98, 2, 19, 'Create Lead Email', '{\"title\":\"Final Approval Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(99, 2, 19, 'Create Lead Email', '{\"title\":\"Final Approval Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(100, 2, 20, 'Create Lead Call', '{\"title\":\"Feedback Analysis Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(101, 2, 20, 'Create Lead Call', '{\"title\":\"Maintenance Planning Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(102, 2, 20, 'Create Task', '{\"title\":\"Schedule expansion discussion meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(103, 2, 20, 'Create Task', '{\"title\":\"Send upsell proposal document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(104, 2, 20, 'Create Task', '{\"title\":\"Research additional opportunities thoroughly\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(105, 2, 1, 'Create Lead Call', '{\"title\":\"Qualification Assessment Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(106, 2, 1, 'Create Lead Call', '{\"title\":\"Interest Assessment Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(107, 2, 1, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(108, 2, 1, 'Create Lead Email', '{\"title\":\"Exclusive Industry Insights\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(109, 2, 1, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(110, 2, 1, 'Create Lead Email', '{\"title\":\"Exclusive Industry Insights\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(111, 2, 1, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(112, 2, 1, 'Create Lead Email', '{\"title\":\"Exclusive Industry Insights\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(113, 2, 2, 'Create Lead Call', '{\"title\":\"Engagement Analysis Discussion\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(114, 2, 2, 'Move', '{\"title\":\"Leo Ward\",\"old_status\":\"Contacted\",\"new_status\":\"Prospect\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(115, 2, 3, 'Create Lead Call', '{\"title\":\"Prospect Evaluation Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(116, 2, 3, 'Create Task', '{\"title\":\"Prepare customized presentation materials\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(117, 2, 3, 'Create Task', '{\"title\":\"Conduct needs assessment interview\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(118, 2, 3, 'Create Task', '{\"title\":\"Send detailed proposal document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(119, 2, 4, 'Upload File', '{\"file_name\":\"lead_file_4.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(120, 2, 4, 'Move', '{\"title\":\"Ezra Butler\",\"old_status\":\"Qualified\",\"new_status\":\"Prospect\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(121, 2, 5, 'Create Lead Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(122, 2, 5, 'Create Lead Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(123, 2, 5, 'Create Lead Email', '{\"title\":\"Scheduling Our Discussion\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(124, 2, 5, 'Create Lead Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(125, 2, 5, 'Create Lead Email', '{\"title\":\"Scheduling Our Discussion\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(126, 2, 5, 'Move', '{\"title\":\"Aurora Simmons\",\"old_status\":\"Qualified\",\"new_status\":\"Contacted\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(127, 2, 6, 'Create Lead Call', '{\"title\":\"Resource Discussion Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(128, 2, 6, 'Create Lead Call', '{\"title\":\"Value Assessment Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(129, 2, 6, 'Create Lead Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(130, 2, 6, 'Create Lead Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(131, 2, 6, 'Create Lead Email', '{\"title\":\"Scheduling Our Discussion\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(132, 2, 6, 'Create Lead Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(133, 2, 7, 'Create Lead Call', '{\"title\":\"Progression Evaluation Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(134, 2, 8, 'Create Lead Call', '{\"title\":\"Content Feedback Session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(135, 2, 8, 'Create Task', '{\"title\":\"Schedule contract negotiation meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(136, 2, 8, 'Create Task', '{\"title\":\"Prepare contract terms document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(137, 2, 9, 'Create Lead Call', '{\"title\":\"Qualification Review Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(138, 2, 9, 'Create Lead Call', '{\"title\":\"Handoff Planning Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(139, 2, 9, 'Upload File', '{\"file_name\":\"lead_file_9.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(140, 2, 10, 'Create Lead Call', '{\"title\":\"Handoff Follow-up Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(141, 2, 10, 'Create Lead Call', '{\"title\":\"Account Transfer Discussion\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(142, 2, 10, 'Create Lead Email', '{\"title\":\"Welcome to Our Platform\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(143, 2, 10, 'Create Lead Email', '{\"title\":\"Welcome to Our Platform\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(144, 2, 10, 'Create Lead Email', '{\"title\":\"Onboarding Schedule\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(145, 2, 10, 'Create Lead Email', '{\"title\":\"Welcome to Our Platform\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(146, 2, 11, 'Create Lead Call', '{\"title\":\"Preliminary Evaluation Session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(147, 2, 11, 'Upload File', '{\"file_name\":\"lead_file_11.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(148, 2, 12, 'Upload File', '{\"file_name\":\"lead_file_12.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(149, 2, 12, 'Move', '{\"title\":\"Roman Diaz\",\"old_status\":\"Unqualified\",\"new_status\":\"Unqualified\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(150, 2, 13, 'Create Lead Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(151, 2, 13, 'Create Lead Email', '{\"title\":\"Alternative Solutions\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(152, 2, 13, 'Create Lead Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(153, 2, 13, 'Create Lead Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(154, 2, 13, 'Create Lead Email', '{\"title\":\"Alternative Solutions\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(155, 2, 13, 'Create Task', '{\"title\":\"Conduct team introduction meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(156, 2, 13, 'Create Task', '{\"title\":\"Send training materials package\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(157, 2, 14, 'Create Lead Email', '{\"title\":\"Application Under Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(158, 2, 14, 'Create Lead Email', '{\"title\":\"Application Under Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(159, 2, 14, 'Create Lead Email', '{\"title\":\"Additional Information Needed\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(160, 2, 14, 'Create Lead Email', '{\"title\":\"Application Under Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(161, 2, 14, 'Create Lead Email', '{\"title\":\"Additional Information Needed\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(162, 2, 14, 'Create Task', '{\"title\":\"Schedule training session appointment\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(163, 2, 14, 'Create Task', '{\"title\":\"Follow up on training completion\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(164, 2, 14, 'Create Task', '{\"title\":\"Schedule go-live planning meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(165, 2, 15, 'Create Lead Email', '{\"title\":\"Application Under Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(166, 2, 15, 'Create Lead Email', '{\"title\":\"Application Under Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(167, 2, 15, 'Create Lead Email', '{\"title\":\"Application Under Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(168, 2, 15, 'Create Task', '{\"title\":\"Prepare go-live checklist document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(169, 2, 15, 'Create Task', '{\"title\":\"Conduct system testing session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(170, 2, 16, 'Create Lead Call', '{\"title\":\"Confirmation Follow-up Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(171, 2, 16, 'Move', '{\"title\":\"Axel Hamilton\",\"old_status\":\"Unqualified\",\"new_status\":\"Qualified\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(172, 2, 17, 'Move', '{\"title\":\"Emery Graham\",\"old_status\":\"In Review\",\"new_status\":\"Qualified\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(173, 2, 18, 'Create Lead Call', '{\"title\":\"Planning Coordination Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(174, 2, 18, 'Create Lead Call', '{\"title\":\"Process Advancement Discussion\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(175, 2, 18, 'Create Task', '{\"title\":\"Conduct post-launch review meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(176, 2, 18, 'Create Task', '{\"title\":\"Send success metrics report\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(177, 2, 18, 'Create Task', '{\"title\":\"Schedule quarterly business review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(178, 2, 19, 'Create Lead Call', '{\"title\":\"Approval Notification Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(179, 2, 19, 'Upload File', '{\"file_name\":\"lead_file_19.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(180, 2, 20, 'Create Lead Call', '{\"title\":\"Feedback Analysis Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(181, 2, 20, 'Create Lead Call', '{\"title\":\"Maintenance Planning Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(182, 2, 1, 'Create Lead Call', '{\"title\":\"Qualification Assessment Call\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(183, 2, 1, 'Create Lead Call', '{\"title\":\"Interest Assessment Meeting\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(184, 2, 2, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(185, 2, 2, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(186, 2, 2, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(187, 2, 2, 'Create Lead Email', '{\"title\":\"Exclusive Industry Insights\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(188, 2, 2, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(189, 2, 2, 'Create Lead Email', '{\"title\":\"Exclusive Industry Insights\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(190, 2, 3, 'Create Lead Call', '{\"title\":\"Prospect Evaluation Call\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(191, 2, 3, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(192, 2, 3, 'Create Lead Email', '{\"title\":\"Exclusive Industry Insights\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(193, 2, 3, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(194, 2, 3, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(195, 2, 3, 'Create Lead Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(196, 2, 3, 'Create Lead Email', '{\"title\":\"Exclusive Industry Insights\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(197, 2, 4, 'Create Task', '{\"title\":\"Follow up on proposal feedback\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(198, 2, 4, 'Upload File', '{\"file_name\":\"lead_file_4.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(199, 2, 5, 'Create Lead Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(200, 2, 5, 'Create Lead Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(201, 2, 5, 'Create Lead Email', '{\"title\":\"Scheduling Our Discussion\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(202, 2, 5, 'Create Lead Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(203, 2, 5, 'Create Lead Email', '{\"title\":\"Scheduling Our Discussion\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(204, 2, 5, 'Create Lead Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(205, 2, 5, 'Create Lead Email', '{\"title\":\"Scheduling Our Discussion\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(206, 2, 5, 'Move', '{\"title\":\"Aurora Simmons\",\"old_status\":\"Converted\",\"new_status\":\"Contacted\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(207, 2, 6, 'Upload File', '{\"file_name\":\"lead_file_6.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(208, 2, 6, 'Move', '{\"title\":\"Kai Foster\",\"old_status\":\"Engaged\",\"new_status\":\"Contacted\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(209, 2, 7, 'Create Lead Call', '{\"title\":\"Progression Evaluation Meeting\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(210, 2, 7, 'Upload File', '{\"file_name\":\"lead_file_7.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(211, 2, 8, 'Upload File', '{\"file_name\":\"lead_file_8.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(212, 2, 9, 'Create Lead Email', '{\"title\":\"Proposal Preparation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(213, 2, 9, 'Create Lead Email', '{\"title\":\"Budget Discussion\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(214, 2, 9, 'Create Lead Email', '{\"title\":\"Proposal Preparation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(215, 2, 9, 'Create Lead Email', '{\"title\":\"Budget Discussion\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(216, 2, 9, 'Create Lead Email', '{\"title\":\"Proposal Preparation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(217, 2, 9, 'Create Lead Email', '{\"title\":\"Proposal Preparation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(218, 2, 9, 'Create Task', '{\"title\":\"Conduct final negotiation session\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(219, 2, 10, 'Create Lead Email', '{\"title\":\"Welcome to Our Platform\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(220, 2, 10, 'Create Lead Email', '{\"title\":\"Welcome to Our Platform\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(221, 2, 10, 'Create Lead Email', '{\"title\":\"Onboarding Schedule\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(222, 2, 10, 'Create Lead Email', '{\"title\":\"Welcome to Our Platform\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(223, 2, 10, 'Create Lead Email', '{\"title\":\"Welcome to Our Platform\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(224, 2, 10, 'Upload File', '{\"file_name\":\"lead_file_10.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(225, 2, 11, 'Move', '{\"title\":\"Paisley Griffin\",\"old_status\":\"Unqualified\",\"new_status\":\"Unqualified\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(226, 2, 12, 'Create Lead Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(227, 2, 12, 'Create Lead Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(228, 2, 12, 'Create Lead Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(229, 2, 12, 'Create Lead Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(230, 2, 12, 'Create Lead Email', '{\"title\":\"Alternative Solutions\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(231, 2, 12, 'Move', '{\"title\":\"Roman Diaz\",\"old_status\":\"Approved\",\"new_status\":\"Unqualified\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(232, 2, 13, 'Create Lead Call', '{\"title\":\"Basic Qualification Check\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(233, 2, 13, 'Move', '{\"title\":\"Kinsley Hayes\",\"old_status\":\"Approved\",\"new_status\":\"Unqualified\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(234, 2, 14, 'Create Lead Call', '{\"title\":\"Criteria Review Discussion\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(235, 2, 14, 'Create Lead Call', '{\"title\":\"Status Follow-up Meeting\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(236, 2, 14, 'Upload File', '{\"file_name\":\"lead_file_14.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(237, 2, 15, 'Upload File', '{\"file_name\":\"lead_file_15.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(238, 2, 16, 'Create Task', '{\"title\":\"Send testing results summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(239, 2, 16, 'Create Task', '{\"title\":\"Schedule final approval meeting\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(240, 2, 16, 'Move', '{\"title\":\"Axel Hamilton\",\"old_status\":\"Rejected\",\"new_status\":\"Qualified\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(241, 2, 17, 'Upload File', '{\"file_name\":\"lead_file_17.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(242, 2, 18, 'Create Lead Call', '{\"title\":\"Planning Coordination Meeting\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(243, 2, 18, 'Create Lead Call', '{\"title\":\"Process Advancement Discussion\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(244, 2, 18, 'Create Lead Email', '{\"title\":\"Final Approval Confirmation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(245, 2, 18, 'Create Lead Email', '{\"title\":\"Final Approval Confirmation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(246, 2, 18, 'Create Lead Email', '{\"title\":\"Final Approval Confirmation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(247, 2, 18, 'Create Lead Email', '{\"title\":\"Final Approval Confirmation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(248, 2, 19, 'Create Lead Call', '{\"title\":\"Approval Notification Call\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(249, 2, 19, 'Create Task', '{\"title\":\"Follow up on satisfaction feedback\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(250, 2, 20, 'Create Task', '{\"title\":\"Schedule expansion discussion meeting\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(251, 2, 20, 'Create Task', '{\"title\":\"Send upsell proposal document\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(252, 2, 20, 'Create Task', '{\"title\":\"Research additional opportunities thoroughly\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `lead_calls` +-- + +CREATE TABLE `lead_calls` ( + `id` bigint(20) UNSIGNED NOT NULL, + `lead_id` bigint(20) UNSIGNED NOT NULL, + `subject` varchar(255) NOT NULL, + `call_type` varchar(255) NOT NULL, + `duration` varchar(255) NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `description` longtext DEFAULT NULL, + `call_result` 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 `lead_calls` +-- + +INSERT INTO `lead_calls` (`id`, `lead_id`, `subject`, `call_type`, `duration`, `user_id`, `description`, `call_result`, `created_at`, `updated_at`) VALUES +(1, 1, 'Qualification Assessment Call', 'Outbound', '00:04:20', 38, 'Analyzed prospect profile and established qualification criteria for marketing solution and platform evaluation.', 'Brief interaction due to competing priorities, established new time for comprehensive discussion about requirements.', '2025-10-10 16:32:29', '2026-03-14 00:17:52'), +(2, 1, 'Interest Assessment Meeting', 'Inbound', '00:00:54', 38, 'Established communication preferences and confirmed follow-up schedule for engagement and relationship development.', 'No answer received, will try alternative contact methods and reschedule appointment for this week.', '2025-10-04 16:32:29', '2026-03-14 00:17:52'), +(3, 2, 'Engagement Analysis Discussion', 'Inbound', '00:18:11', 31, 'Reviewed prospect qualifications and established interest level for marketing automation and lead generation.', 'Valuable discussion with decision maker who provided feedback and approved continuation of evaluation process.', '2025-09-26 16:26:38', '2026-03-14 00:17:52'), +(4, 3, 'Prospect Evaluation Call', 'Outbound', '00:02:57', 37, 'Reviewed prospect qualifications and established interest level for marketing automation and lead generation.', 'Unable to reach during scheduled window, proposing alternative times for connection and confirming timeline.', '2025-10-11 04:33:47', '2026-03-14 00:17:52'), +(5, 4, 'Interest Assessment Meeting', 'Inbound', '00:02:17', 12, 'Coordinated prospect assessment and confirmed company profile alignment with marketing solution capabilities.', 'Unable to complete full discussion due to time constraints, rescheduled for extended session with team.', '2025-10-10 23:25:49', '2026-03-14 00:17:52'), +(6, 5, 'Educational Resource Review', 'Inbound', '00:02:21', 32, 'Reviewed content marketing strategy and confirmed interest in educational resources and lead nurturing programs.', 'Interrupted by urgent matter, prospect requested reschedule for uninterrupted conversation time about budget.', '2025-10-31 17:53:56', '2026-03-14 00:17:52'), +(7, 6, 'Resource Discussion Call', 'Inbound', '00:02:38', 35, 'Follow-up call to discuss marketing automation benefits and comprehensive implementation approach for business.', 'No response received despite multiple connection attempts during scheduled call window, will try alternative methods.', '2025-10-31 07:17:08', '2026-03-14 00:17:52'), +(8, 6, 'Value Assessment Meeting', 'Outbound', '00:01:38', 35, 'Coordinated follow-up discussion and reviewed marketing automation benefits for lead generation and nurturing.', 'Detailed message provided with next steps and requested response regarding continued engagement and criteria.', '2025-10-29 07:17:08', '2026-03-14 00:17:52'), +(9, 7, 'Progression Evaluation Meeting', 'Outbound', '00:28:10', 37, 'Analyzed interaction history and confirmed qualification criteria for advancement to sales team handoff.', 'Detailed conversation held with key stakeholder resulting in approved next steps and confirmed implementation timeline.', '2025-11-10 12:37:05', '2026-03-14 00:17:52'), +(10, 8, 'Content Feedback Session', 'Outbound', '00:02:37', 40, 'Reviewed engagement patterns and confirmed interest progression for marketing qualification and sales readiness.', 'Detailed message left explaining purpose and value proposition, provided multiple contact options for continued engagement.', '2025-11-07 12:19:16', '2026-03-14 00:17:52'), +(11, 9, 'Qualification Review Meeting', 'Inbound', '00:03:15', 28, 'Confirmed decision timeline and established sales team introduction schedule for qualified lead handoff.', 'Time conflict prevented full discussion, arranged dedicated time slot for next business day with participation.', '2025-11-11 10:52:07', '2026-03-14 00:17:52'), +(12, 9, 'Handoff Planning Call', 'Inbound', '00:01:14', 28, 'Gathered account intelligence and prepared comprehensive handoff documentation for sales team and stakeholders.', 'No response received despite multiple connection attempts during scheduled call window, will try alternative methods.', '2025-11-09 10:52:07', '2026-03-14 00:17:52'), +(13, 10, 'Handoff Follow-up Meeting', 'Inbound', '00:15:16', 22, 'Analyzed conversion success and confirmed process optimization for future marketing and sales coordination.', 'Productive discussion completed with positive feedback and confirmed interest in moving forward with proposed solution implementation.', '2025-11-23 05:42:47', '2026-03-14 00:17:52'), +(14, 10, 'Account Transfer Discussion', 'Inbound', '00:34:37', 22, 'Reviewed conversion metrics and confirmed successful progression through marketing funnel and qualification process.', 'Successful connection established with qualified lead showing genuine interest in proposed solution and confirmed authority.', '2025-11-30 05:42:47', '2026-03-14 00:17:52'), +(15, 11, 'Preliminary Evaluation Session', 'Outbound', '00:02:12', 36, 'Conducted initial assessment call to evaluate basic qualification criteria and company fit for solution.', 'No response to call, sending calendar invitation for rescheduled meeting this week with agenda.', '2025-12-13 05:46:27', '2026-03-14 00:17:52'), +(16, 12, 'Assessment Review Meeting', 'Outbound', '00:01:31', 33, 'Discussed preliminary requirements and confirmed evaluation criteria for qualification and assessment process.', 'Voicemail delivered with specific agenda items and requested confirmation of continued interest in timeline.', '2025-11-25 06:18:57', '2026-03-14 00:17:52'), +(17, 12, 'Evaluation Planning Session', 'Inbound', '00:04:35', 33, 'Analyzed qualification factors and confirmed approach for future assessment and qualification process improvement.', 'Brief interaction due to competing priorities, established new time for comprehensive discussion about requirements.', '2025-12-02 06:18:57', '2026-03-14 00:17:52'), +(18, 13, 'Basic Qualification Check', 'Outbound', '00:45:15', 22, 'Analyzed qualification factors and confirmed approach for future assessment and qualification process improvement.', 'Productive discussion completed with positive feedback and confirmed interest in moving forward with proposed solution implementation.', '2025-12-25 11:27:50', '2026-03-14 00:17:52'), +(19, 14, 'Criteria Review Discussion', 'Inbound', '00:01:10', 39, 'Reviewed assessment progress and confirmed evaluation methodology for qualification and decision making process.', 'Left comprehensive voicemail with key discussion points and requested callback within two days for review.', '2025-12-23 22:40:10', '2026-03-14 00:17:52'), +(20, 14, 'Status Follow-up Meeting', 'Outbound', '00:01:45', 34, 'Reviewed qualification progress and confirmed evaluation methodology for assessment and decision making process.', 'Left informative message summarizing previous discussion and outlining next steps for consideration by team.', '2025-12-17 22:40:10', '2026-03-14 00:17:52'), +(21, 15, 'Progress Assessment Call', 'Inbound', '00:17:18', 34, 'Discussed review status and established timeline for qualification assessment and decision making process.', 'Positive interaction with engaged prospect who requested additional information and follow-up meeting with stakeholders.', '2025-12-15 09:54:29', '2026-03-14 00:17:52'), +(22, 16, 'Confirmation Follow-up Call', 'Outbound', '00:04:32', 16, 'Analyzed qualification results and prepared handoff documentation for team coordination and next steps.', 'Prospect unavailable due to conflicting priority, confirmed alternative time for detailed discussion about requirements.', '2025-12-19 14:13:35', '2026-03-14 00:17:52'), +(23, 17, 'Qualification Confirmation Call', 'Inbound', '00:02:05', 37, 'Analyzed qualification success and confirmed next steps for approval and advancement process coordination.', 'Detailed message left explaining purpose and value proposition, provided multiple contact options for continued engagement.', '2026-01-03 23:32:44', '2026-03-14 00:17:52'), +(24, 18, 'Planning Coordination Meeting', 'Inbound', '00:01:14', 35, 'Confirmed approval achievement and coordinated implementation planning for project execution and team management.', 'Short connection established but contact was occupied, confirmed interest and rescheduled meeting for review.', '2026-01-22 12:44:57', '2026-03-14 00:17:52'), +(25, 18, 'Process Advancement Discussion', 'Inbound', '00:01:55', 35, 'Coordinated approval confirmation and established next phase planning for implementation and team coordination.', 'Call went unanswered, will attempt reconnection during alternative time slots this week and email.', '2026-01-23 12:44:57', '2026-03-14 00:17:52'), +(26, 19, 'Approval Notification Call', 'Inbound', '00:05:16', 35, 'Reviewed approval criteria and confirmed successful qualification completion for progression and advancement process.', 'Short connection established but contact was occupied, confirmed interest and rescheduled meeting for review.', '2026-01-27 16:35:46', '2026-03-14 00:17:52'), +(27, 20, 'Feedback Analysis Meeting', 'Outbound', '00:01:11', 42, 'Discussed qualification rejection and provided feedback on assessment results for future improvement and development.', 'No response received despite multiple connection attempts during scheduled call window, will try alternative methods.', '2026-02-01 08:33:59', '2026-03-14 00:17:52'), +(28, 20, 'Maintenance Planning Call', 'Inbound', '00:01:25', 42, 'Provided rejection feedback and established future engagement opportunities for relationship maintenance and development.', 'Informative message delivered with key details and multiple options for reconnection this week about budget.', '2026-01-22 08:33:59', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `lead_discussions` +-- + +CREATE TABLE `lead_discussions` ( + `id` bigint(20) UNSIGNED NOT NULL, + `lead_id` bigint(20) UNSIGNED NOT NULL, + `comment` longtext NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `lead_discussions` +-- + +INSERT INTO `lead_discussions` (`id`, `lead_id`, `comment`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 37, 2, '2025-09-21 19:32:29', '2026-03-14 00:17:52'), +(2, 2, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 37, 2, '2025-09-25 13:26:38', '2026-03-14 00:17:52'), +(3, 2, 'Downloaded our whitepaper on digital marketing trends. Appears to be researching solutions for their growing business and evaluating different platforms for implementation.', 16, 2, '2025-09-27 23:26:38', '2026-03-14 00:17:52'), +(4, 3, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 24, 2, '2025-10-07 02:33:47', '2026-03-14 00:17:52'), +(5, 4, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 35, 2, '2025-10-07 05:25:49', '2026-03-14 00:17:52'), +(6, 5, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 12, 2, '2025-10-12 12:53:56', '2026-03-14 00:17:52'), +(7, 6, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 41, 2, '2025-10-27 06:17:08', '2026-03-14 00:17:52'), +(8, 6, 'Email exchange initiated with marketing director. Lead provided details about their current marketing challenges and team size for solution sizing and customization.', 22, 2, '2025-10-26 09:17:08', '2026-03-14 00:17:52'), +(9, 7, 'Demo session completed successfully with marketing team. Lead was impressed with our campaign management features and analytics capabilities for their specific use case.', 40, 2, '2025-10-30 20:37:05', '2026-03-14 00:17:52'), +(10, 8, 'Demo session completed successfully with marketing team. Lead was impressed with our campaign management features and analytics capabilities for their specific use case.', 42, 2, '2025-11-01 14:19:16', '2026-03-14 00:17:52'), +(11, 8, 'Technical discussion held with their IT team. Confirmed compatibility with their existing CRM system and validated integration approach for seamless data flow.', 41, 2, '2025-11-07 04:19:16', '2026-03-14 00:17:52'), +(12, 9, 'Budget confirmed at fifty thousand annually. Decision maker identified and meeting scheduled for proposal presentation with executive team and key stakeholders for approval.', 16, 2, '2025-11-05 15:52:07', '2026-03-14 00:17:52'), +(13, 10, 'Contract signed and implementation kickoff scheduled. Lead is excited to start using our platform and has assigned dedicated team for onboarding and training.', 39, 2, '2025-11-19 03:42:47', '2026-03-14 00:17:52'), +(14, 11, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 10, 2, '2025-11-22 08:46:27', '2026-03-14 00:17:52'), +(15, 12, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 42, 2, '2025-11-27 18:18:57', '2026-03-14 00:17:52'), +(16, 13, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 14, 2, '2025-12-06 04:27:50', '2026-03-14 00:17:52'), +(17, 13, 'Budget constraints identified during qualification. Lead cannot meet our minimum investment threshold at this time but expressed interest for future consideration when budget allows.', 38, 2, '2025-12-06 14:27:50', '2026-03-14 00:17:52'), +(18, 14, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 41, 2, '2025-12-13 04:40:10', '2026-03-14 00:17:52'), +(19, 15, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 16, 2, '2025-12-12 10:54:29', '2026-03-14 00:17:52'), +(20, 15, 'Documentation review in progress with evaluation team. Lead provided comprehensive information about their requirements, current systems, and implementation timeline for assessment.', 28, 2, '2025-12-20 06:54:29', '2026-03-14 00:17:52'), +(21, 16, 'Qualification approved based on budget, authority, need, and timeline criteria. Moving to sales process with dedicated account manager for detailed solution presentation and proposal.', 16, 2, '2025-12-19 09:13:35', '2026-03-14 00:17:52'), +(22, 17, 'Qualification approved based on budget, authority, need, and timeline criteria. Moving to sales process with dedicated account manager for detailed solution presentation and proposal.', 16, 2, '2025-12-30 16:32:44', '2026-03-14 00:17:52'), +(23, 18, 'Final approval granted by executive committee. Lead meets all criteria for enterprise engagement and has been prioritized for immediate sales process and solution presentation.', 38, 2, '2025-12-30 17:44:57', '2026-03-14 00:17:52'), +(24, 19, 'Final approval granted by executive committee. Lead meets all criteria for enterprise engagement and has been prioritized for immediate sales process and solution presentation.', 10, 2, '2026-01-07 09:35:46', '2026-03-14 00:17:52'), +(25, 20, 'Application rejected due to insufficient budget allocation for enterprise solution requirements. Lead cannot meet minimum investment threshold despite interest in our platform.', 35, 2, '2026-01-12 11:33:59', '2026-03-14 00:17:52'), +(26, 20, 'Technical incompatibility issues cannot be resolved within reasonable timeframe and budget constraints. Lead legacy systems require extensive upgrades for successful integration.', 28, 2, '2026-01-10 12:33:59', '2026-03-14 00:17:52'), +(27, 1, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 29, 2, '2025-09-24 00:32:29', '2026-03-14 06:00:08'), +(28, 2, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 37, 2, '2025-09-23 22:26:38', '2026-03-14 06:00:08'), +(29, 2, 'Downloaded our whitepaper on digital marketing trends. Appears to be researching solutions for their growing business and evaluating different platforms for implementation.', 34, 2, '2025-09-27 02:26:38', '2026-03-14 06:00:08'), +(30, 3, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 37, 2, '2025-10-07 23:33:47', '2026-03-14 06:00:08'), +(31, 3, 'Downloaded our whitepaper on digital marketing trends. Appears to be researching solutions for their growing business and evaluating different platforms for implementation.', 33, 2, '2025-10-09 03:33:47', '2026-03-14 06:00:08'), +(32, 4, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 20, 2, '2025-10-10 13:25:49', '2026-03-14 06:00:08'), +(33, 5, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 42, 2, '2025-10-15 23:53:56', '2026-03-14 06:00:08'), +(34, 5, 'Email exchange initiated with marketing director. Lead provided details about their current marketing challenges and team size for solution sizing and customization.', 30, 2, '2025-10-15 05:53:56', '2026-03-14 06:00:08'), +(35, 6, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 38, 2, '2025-10-21 13:17:08', '2026-03-14 06:00:08'), +(36, 7, 'Demo session completed successfully with marketing team. Lead was impressed with our campaign management features and analytics capabilities for their specific use case.', 37, 2, '2025-10-25 05:37:05', '2026-03-14 06:00:08'), +(37, 7, 'Technical discussion held with their IT team. Confirmed compatibility with their existing CRM system and validated integration approach for seamless data flow.', 20, 2, '2025-10-27 06:37:05', '2026-03-14 06:00:08'), +(38, 8, 'Demo session completed successfully with marketing team. Lead was impressed with our campaign management features and analytics capabilities for their specific use case.', 28, 2, '2025-11-04 23:19:16', '2026-03-14 06:00:08'), +(39, 8, 'Technical discussion held with their IT team. Confirmed compatibility with their existing CRM system and validated integration approach for seamless data flow.', 42, 2, '2025-11-07 06:19:16', '2026-03-14 06:00:08'), +(40, 9, 'Budget confirmed at fifty thousand annually. Decision maker identified and meeting scheduled for proposal presentation with executive team and key stakeholders for approval.', 26, 2, '2025-11-10 11:52:07', '2026-03-14 06:00:08'), +(41, 10, 'Contract signed and implementation kickoff scheduled. Lead is excited to start using our platform and has assigned dedicated team for onboarding and training.', 29, 2, '2025-11-11 20:42:47', '2026-03-14 06:00:08'), +(42, 11, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 8, 2, '2025-11-18 11:46:27', '2026-03-14 06:00:08'), +(43, 12, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 37, 2, '2025-11-27 16:18:57', '2026-03-14 06:00:08'), +(44, 12, 'Budget constraints identified during qualification. Lead cannot meet our minimum investment threshold at this time but expressed interest for future consideration when budget allows.', 31, 2, '2025-11-30 11:18:57', '2026-03-14 06:00:08'), +(45, 13, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 35, 2, '2025-12-05 02:27:50', '2026-03-14 06:00:08'), +(46, 13, 'Budget constraints identified during qualification. Lead cannot meet our minimum investment threshold at this time but expressed interest for future consideration when budget allows.', 12, 2, '2025-12-07 09:27:50', '2026-03-14 06:00:08'), +(47, 14, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 26, 2, '2025-12-09 17:40:10', '2026-03-14 06:00:08'), +(48, 15, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 42, 2, '2025-12-11 12:54:29', '2026-03-14 06:00:08'), +(49, 15, 'Documentation review in progress with evaluation team. Lead provided comprehensive information about their requirements, current systems, and implementation timeline for assessment.', 39, 2, '2025-12-18 01:54:29', '2026-03-14 06:00:08'), +(50, 16, 'Qualification approved based on budget, authority, need, and timeline criteria. Moving to sales process with dedicated account manager for detailed solution presentation and proposal.', 26, 2, '2025-12-19 03:13:35', '2026-03-14 06:00:08'), +(51, 16, 'Technical fit confirmed by engineering team. Lead infrastructure can support our solution with minimal modifications and integration work required for successful deployment.', 30, 2, '2025-12-22 20:13:35', '2026-03-14 06:00:08'), +(52, 17, 'Qualification approved based on budget, authority, need, and timeline criteria. Moving to sales process with dedicated account manager for detailed solution presentation and proposal.', 32, 2, '2025-12-31 02:32:44', '2026-03-14 06:00:08'), +(53, 17, 'Technical fit confirmed by engineering team. Lead infrastructure can support our solution with minimal modifications and integration work required for successful deployment.', 39, 2, '2025-12-25 01:32:44', '2026-03-14 06:00:08'), +(54, 18, 'Final approval granted by executive committee. Lead meets all criteria for enterprise engagement and has been prioritized for immediate sales process and solution presentation.', 32, 2, '2026-01-06 06:44:57', '2026-03-14 06:00:08'), +(55, 19, 'Final approval granted by executive committee. Lead meets all criteria for enterprise engagement and has been prioritized for immediate sales process and solution presentation.', 22, 2, '2026-01-07 17:35:46', '2026-03-14 06:00:08'), +(56, 19, 'Legal review completed successfully without issues. No compliance issues identified for this engagement and contract terms have been pre-approved for expedited processing.', 20, 2, '2026-01-09 19:35:46', '2026-03-14 06:00:08'), +(57, 20, 'Application rejected due to insufficient budget allocation for enterprise solution requirements. Lead cannot meet minimum investment threshold despite interest in our platform.', 16, 2, '2026-01-17 21:33:59', '2026-03-14 06:00:08'), +(58, 1, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 8, 2, '2025-09-22 03:32:29', '2026-03-14 06:00:09'), +(59, 2, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 10, 2, '2025-09-29 08:26:38', '2026-03-14 06:00:09'), +(60, 2, 'Downloaded our whitepaper on digital marketing trends. Appears to be researching solutions for their growing business and evaluating different platforms for implementation.', 20, 2, '2025-09-30 11:26:38', '2026-03-14 06:00:09'), +(61, 3, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 36, 2, '2025-10-01 20:33:47', '2026-03-14 06:00:09'), +(62, 4, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 42, 2, '2025-10-10 01:25:49', '2026-03-14 06:00:09'), +(63, 5, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 34, 2, '2025-10-15 08:53:56', '2026-03-14 06:00:09'), +(64, 5, 'Email exchange initiated with marketing director. Lead provided details about their current marketing challenges and team size for solution sizing and customization.', 28, 2, '2025-10-17 13:53:56', '2026-03-14 06:00:09'), +(65, 6, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 35, 2, '2025-10-24 15:17:08', '2026-03-14 06:00:09'), +(66, 7, 'Demo session completed successfully with marketing team. Lead was impressed with our campaign management features and analytics capabilities for their specific use case.', 16, 2, '2025-10-25 13:37:05', '2026-03-14 06:00:09'), +(67, 8, 'Demo session completed successfully with marketing team. Lead was impressed with our campaign management features and analytics capabilities for their specific use case.', 24, 2, '2025-11-02 18:19:16', '2026-03-14 06:00:09'), +(68, 8, 'Technical discussion held with their IT team. Confirmed compatibility with their existing CRM system and validated integration approach for seamless data flow.', 32, 2, '2025-11-03 13:19:16', '2026-03-14 06:00:09'), +(69, 9, 'Budget confirmed at fifty thousand annually. Decision maker identified and meeting scheduled for proposal presentation with executive team and key stakeholders for approval.', 31, 2, '2025-11-10 04:52:07', '2026-03-14 06:00:09'), +(70, 9, 'Technical requirements gathered comprehensively. Lead confirmed they need multi-channel campaign management and advanced analytics for their marketing operations and reporting needs.', 37, 2, '2025-11-12 05:52:07', '2026-03-14 06:00:09'), +(71, 10, 'Contract signed and implementation kickoff scheduled. Lead is excited to start using our platform and has assigned dedicated team for onboarding and training.', 14, 2, '2025-11-13 21:42:47', '2026-03-14 06:00:09'), +(72, 11, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 39, 2, '2025-11-21 10:46:27', '2026-03-14 06:00:09'), +(73, 12, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 39, 2, '2025-11-23 22:18:57', '2026-03-14 06:00:09'), +(74, 13, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 33, 2, '2025-12-07 09:27:50', '2026-03-14 06:00:09'), +(75, 13, 'Budget constraints identified during qualification. Lead cannot meet our minimum investment threshold at this time but expressed interest for future consideration when budget allows.', 31, 2, '2025-12-07 05:27:50', '2026-03-14 06:00:09'), +(76, 14, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 29, 2, '2025-12-07 03:40:10', '2026-03-14 06:00:09'), +(77, 15, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 30, 2, '2025-12-13 18:54:29', '2026-03-14 06:00:09'), +(78, 16, 'Qualification approved based on budget, authority, need, and timeline criteria. Moving to sales process with dedicated account manager for detailed solution presentation and proposal.', 16, 2, '2025-12-17 21:13:35', '2026-03-14 06:00:09'), +(79, 16, 'Technical fit confirmed by engineering team. Lead infrastructure can support our solution with minimal modifications and integration work required for successful deployment.', 42, 2, '2025-12-23 21:13:35', '2026-03-14 06:00:09'), +(80, 17, 'Qualification approved based on budget, authority, need, and timeline criteria. Moving to sales process with dedicated account manager for detailed solution presentation and proposal.', 40, 2, '2025-12-25 12:32:44', '2026-03-14 06:00:09'), +(81, 18, 'Final approval granted by executive committee. Lead meets all criteria for enterprise engagement and has been prioritized for immediate sales process and solution presentation.', 39, 2, '2026-01-03 11:44:57', '2026-03-14 06:00:09'), +(82, 19, 'Final approval granted by executive committee. Lead meets all criteria for enterprise engagement and has been prioritized for immediate sales process and solution presentation.', 22, 2, '2026-01-12 02:35:46', '2026-03-14 06:00:09'), +(83, 20, 'Application rejected due to insufficient budget allocation for enterprise solution requirements. Lead cannot meet minimum investment threshold despite interest in our platform.', 16, 2, '2026-01-10 10:33:59', '2026-03-14 06:00:09'), +(84, 1, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 38, 2, '2025-09-19 04:32:29', '2026-03-14 06:00:18'), +(85, 1, 'Downloaded our whitepaper on digital marketing trends. Appears to be researching solutions for their growing business and evaluating different platforms for implementation.', 12, 2, '2025-09-19 04:32:29', '2026-03-14 06:00:18'), +(86, 2, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 24, 2, '2025-09-24 18:26:38', '2026-03-14 06:00:18'), +(87, 2, 'Downloaded our whitepaper on digital marketing trends. Appears to be researching solutions for their growing business and evaluating different platforms for implementation.', 34, 2, '2025-09-24 00:26:38', '2026-03-14 06:00:18'), +(88, 3, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 38, 2, '2025-10-07 05:33:47', '2026-03-14 06:00:18'), +(89, 4, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 32, 2, '2025-10-07 17:25:49', '2026-03-14 06:00:18'), +(90, 4, 'Downloaded our whitepaper on digital marketing trends. Appears to be researching solutions for their growing business and evaluating different platforms for implementation.', 30, 2, '2025-10-13 11:25:49', '2026-03-14 06:00:18'), +(91, 5, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 12, 2, '2025-10-15 13:53:56', '2026-03-14 06:00:18'), +(92, 5, 'Email exchange initiated with marketing director. Lead provided details about their current marketing challenges and team size for solution sizing and customization.', 35, 2, '2025-10-18 07:53:56', '2026-03-14 06:00:18'), +(93, 6, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 20, 2, '2025-10-25 05:17:08', '2026-03-14 06:00:18'), +(94, 6, 'Email exchange initiated with marketing director. Lead provided details about their current marketing challenges and team size for solution sizing and customization.', 41, 2, '2025-10-25 21:17:08', '2026-03-14 06:00:18'), +(95, 7, 'Demo session completed successfully with marketing team. Lead was impressed with our campaign management features and analytics capabilities for their specific use case.', 39, 2, '2025-10-30 11:37:05', '2026-03-14 06:00:18'), +(96, 7, 'Technical discussion held with their IT team. Confirmed compatibility with their existing CRM system and validated integration approach for seamless data flow.', 30, 2, '2025-10-30 06:37:05', '2026-03-14 06:00:18'), +(97, 8, 'Demo session completed successfully with marketing team. Lead was impressed with our campaign management features and analytics capabilities for their specific use case.', 42, 2, '2025-11-08 02:19:16', '2026-03-14 06:00:18'), +(98, 9, 'Budget confirmed at fifty thousand annually. Decision maker identified and meeting scheduled for proposal presentation with executive team and key stakeholders for approval.', 38, 2, '2025-11-07 20:52:07', '2026-03-14 06:00:18'), +(99, 10, 'Contract signed and implementation kickoff scheduled. Lead is excited to start using our platform and has assigned dedicated team for onboarding and training.', 34, 2, '2025-11-15 20:42:47', '2026-03-14 06:00:18'), +(100, 10, 'Onboarding process initiated with marketing team. Lead team assigned and training schedule confirmed for next month to ensure successful adoption and utilization.', 10, 2, '2025-11-15 00:42:47', '2026-03-14 06:00:18'), +(101, 11, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 41, 2, '2025-11-25 04:46:27', '2026-03-14 06:00:18'), +(102, 11, 'Budget constraints identified during qualification. Lead cannot meet our minimum investment threshold at this time but expressed interest for future consideration when budget allows.', 28, 2, '2025-11-17 18:46:27', '2026-03-14 06:00:18'), +(103, 12, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 12, 2, '2025-11-25 00:18:57', '2026-03-14 06:00:18'), +(104, 12, 'Budget constraints identified during qualification. Lead cannot meet our minimum investment threshold at this time but expressed interest for future consideration when budget allows.', 8, 2, '2025-11-30 23:18:57', '2026-03-14 06:00:18'), +(105, 13, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 39, 2, '2025-12-08 06:27:50', '2026-03-14 06:00:18'), +(106, 13, 'Budget constraints identified during qualification. Lead cannot meet our minimum investment threshold at this time but expressed interest for future consideration when budget allows.', 10, 2, '2025-12-07 04:27:50', '2026-03-14 06:00:18'), +(107, 14, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 18, 2, '2025-12-13 16:40:10', '2026-03-14 06:00:18'), +(108, 15, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 24, 2, '2025-12-11 14:54:29', '2026-03-14 06:00:18'), +(109, 16, 'Qualification approved based on budget, authority, need, and timeline criteria. Moving to sales process with dedicated account manager for detailed solution presentation and proposal.', 31, 2, '2025-12-19 23:13:35', '2026-03-14 06:00:18'), +(110, 17, 'Qualification approved based on budget, authority, need, and timeline criteria. Moving to sales process with dedicated account manager for detailed solution presentation and proposal.', 18, 2, '2025-12-25 15:32:44', '2026-03-14 06:00:18'), +(111, 18, 'Final approval granted by executive committee. Lead meets all criteria for enterprise engagement and has been prioritized for immediate sales process and solution presentation.', 40, 2, '2026-01-04 11:44:57', '2026-03-14 06:00:18'), +(112, 18, 'Legal review completed successfully without issues. No compliance issues identified for this engagement and contract terms have been pre-approved for expedited processing.', 42, 2, '2026-01-03 19:44:57', '2026-03-14 06:00:18'), +(113, 19, 'Final approval granted by executive committee. Lead meets all criteria for enterprise engagement and has been prioritized for immediate sales process and solution presentation.', 42, 2, '2026-01-08 17:35:46', '2026-03-14 06:00:18'), +(114, 20, 'Application rejected due to insufficient budget allocation for enterprise solution requirements. Lead cannot meet minimum investment threshold despite interest in our platform.', 35, 2, '2026-01-16 17:33:59', '2026-03-14 06:00:18'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `lead_emails` +-- + +CREATE TABLE `lead_emails` ( + `id` bigint(20) UNSIGNED NOT NULL, + `lead_id` bigint(20) UNSIGNED NOT NULL, + `to` varchar(255) NOT NULL, + `subject` varchar(255) NOT NULL, + `description` longtext 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 `lead_emails` +-- + +INSERT INTO `lead_emails` (`id`, `lead_id`, `to`, `subject`, `description`, `created_at`, `updated_at`) VALUES +(1, 1, 'hazel.cox@gmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-09-23 07:32:29', '2026-03-14 00:17:52'), +(2, 1, 'hazel.cox@gmail.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2025-09-20 14:32:29', '2026-03-14 00:17:52'), +(3, 2, 'leo.ward@yahoo.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-09-23 11:26:38', '2026-03-14 00:17:52'), +(4, 3, 'violet.richardson@hotmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-10-04 03:33:47', '2026-03-14 00:17:52'), +(5, 3, 'violet.richardson@hotmail.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2025-10-04 00:33:47', '2026-03-14 00:17:52'), +(6, 4, 'ezra.butler@outlook.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-10-11 18:25:49', '2026-03-14 00:17:52'), +(7, 5, 'aurora.simmons@gmail.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2025-10-14 06:53:56', '2026-03-14 00:17:52'), +(8, 6, 'kai.foster@yahoo.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2025-10-19 02:17:08', '2026-03-14 00:17:52'), +(9, 7, 'savannah.henderson@hotmail.com', 'Demo Invitation', 'Based on our discussion, I would like to invite you to a personalized demo of our platform.', '2025-10-27 23:37:05', '2026-03-14 00:17:52'), +(10, 8, 'maverick.bryant@gmail.com', 'Demo Invitation', 'Based on our discussion, I would like to invite you to a personalized demo of our platform.', '2025-11-01 04:19:16', '2026-03-14 00:17:52'), +(11, 8, 'maverick.bryant@gmail.com', 'Case Study Sharing', 'I am sharing a relevant case study that shows how we helped similar company achieve efficiency improvement.', '2025-11-04 19:19:16', '2026-03-14 00:17:52'), +(12, 9, 'skylar.alexander@outlook.com', 'Proposal Preparation', 'We are preparing a detailed proposal based on your requirements. Could you confirm your preferred timeline?', '2025-11-05 01:52:07', '2026-03-14 00:17:52'), +(13, 9, 'skylar.alexander@outlook.com', 'Budget Discussion', 'To finalize our proposal, we need to discuss budget parameters and investment expectations for this project.', '2025-11-10 07:52:07', '2026-03-14 00:17:52'), +(14, 10, 'jaxon.russell@yahoo.com', 'Welcome to Our Platform', 'Welcome to our platform! We are excited to start this journey with you and ensure your success.', '2025-11-12 18:42:47', '2026-03-14 00:17:52'), +(15, 11, 'paisley.griffin@gmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-11-17 20:46:27', '2026-03-14 00:17:52'), +(16, 11, 'paisley.griffin@gmail.com', 'Alternative Solutions', 'Although our enterprise solution might not align with your current needs, we have alternative options available.', '2025-11-18 10:46:27', '2026-03-14 00:17:52'), +(17, 12, 'roman.diaz@hotmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-11-28 03:18:57', '2026-03-14 00:17:52'), +(18, 13, 'kinsley.hayes@outlook.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-11-30 07:27:50', '2026-03-14 00:17:52'), +(19, 13, 'kinsley.hayes@outlook.com', 'Alternative Solutions', 'Although our enterprise solution might not align with your current needs, we have alternative options available.', '2025-12-05 01:27:50', '2026-03-14 00:17:52'), +(20, 14, 'declan.myers@gmail.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2025-12-06 11:40:10', '2026-03-14 00:17:52'), +(21, 15, 'nova.ford@yahoo.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2025-12-13 03:54:29', '2026-03-14 00:17:52'), +(22, 16, 'axel.hamilton@hotmail.com', 'Qualification Approved', 'Congratulations! Your qualification has been approved. Let us discuss the next steps in our process.', '2025-12-19 12:13:35', '2026-03-14 00:17:52'), +(23, 17, 'emery.graham@gmail.com', 'Qualification Approved', 'Congratulations! Your qualification has been approved. Let us discuss the next steps in our process.', '2025-12-23 02:32:44', '2026-03-14 00:17:52'), +(24, 17, 'emery.graham@gmail.com', 'Next Steps Discussion', 'Now that you are qualified, we would like to schedule a detailed presentation of our solution capabilities.', '2025-12-22 11:32:44', '2026-03-14 00:17:52'), +(25, 18, 'knox.sullivan@outlook.com', 'Final Approval Confirmation', 'We are pleased to confirm your final approval. Our legal team will prepare the contract documents.', '2026-01-01 07:44:57', '2026-03-14 00:17:52'), +(26, 19, 'wren.wallace@yahoo.com', 'Final Approval Confirmation', 'We are pleased to confirm your final approval. Our legal team will prepare the contract documents.', '2026-01-06 23:35:46', '2026-03-14 00:17:52'), +(27, 20, 'atlas.woods@gmail.com', 'Application Status Update', 'After careful review, we are unable to proceed at this time. We appreciate your interest in solutions.', '2026-01-13 23:33:59', '2026-03-14 00:17:52'), +(28, 20, 'atlas.woods@gmail.com', 'Feedback and Recommendations', 'We have provided detailed feedback on your application and recommendations for future consideration and improvement.', '2026-01-13 10:33:59', '2026-03-14 00:17:52'), +(29, 1, 'hazel.cox@gmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-09-23 15:32:29', '2026-03-14 06:00:08'), +(30, 1, 'hazel.cox@gmail.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2025-09-17 22:32:29', '2026-03-14 06:00:08'), +(31, 2, 'leo.ward@yahoo.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-09-24 17:26:38', '2026-03-14 06:00:08'), +(32, 3, 'violet.richardson@hotmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-09-29 13:33:47', '2026-03-14 06:00:08'), +(33, 4, 'ezra.butler@outlook.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-10-11 01:25:49', '2026-03-14 06:00:08'), +(34, 5, 'aurora.simmons@gmail.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2025-10-12 12:53:56', '2026-03-14 06:00:08'), +(35, 5, 'aurora.simmons@gmail.com', 'Scheduling Our Discussion', 'I wanted to follow up on our previous conversation and see if you have questions about solutions.', '2025-10-13 04:53:56', '2026-03-14 06:00:08'), +(36, 6, 'kai.foster@yahoo.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2025-10-18 03:17:08', '2026-03-14 06:00:08'), +(37, 6, 'kai.foster@yahoo.com', 'Scheduling Our Discussion', 'I wanted to follow up on our previous conversation and see if you have questions about solutions.', '2025-10-23 13:17:08', '2026-03-14 06:00:08'), +(38, 7, 'savannah.henderson@hotmail.com', 'Demo Invitation', 'Based on our discussion, I would like to invite you to a personalized demo of our platform.', '2025-10-29 00:37:05', '2026-03-14 06:00:08'), +(39, 8, 'maverick.bryant@gmail.com', 'Demo Invitation', 'Based on our discussion, I would like to invite you to a personalized demo of our platform.', '2025-10-30 11:19:16', '2026-03-14 06:00:08'), +(40, 8, 'maverick.bryant@gmail.com', 'Case Study Sharing', 'I am sharing a relevant case study that shows how we helped similar company achieve efficiency improvement.', '2025-11-04 02:19:16', '2026-03-14 06:00:08'), +(41, 9, 'skylar.alexander@outlook.com', 'Proposal Preparation', 'We are preparing a detailed proposal based on your requirements. Could you confirm your preferred timeline?', '2025-11-10 12:52:07', '2026-03-14 06:00:08'), +(42, 9, 'skylar.alexander@outlook.com', 'Budget Discussion', 'To finalize our proposal, we need to discuss budget parameters and investment expectations for this project.', '2025-11-08 04:52:07', '2026-03-14 06:00:08'), +(43, 10, 'jaxon.russell@yahoo.com', 'Welcome to Our Platform', 'Welcome to our platform! We are excited to start this journey with you and ensure your success.', '2025-11-10 21:42:47', '2026-03-14 06:00:08'), +(44, 10, 'jaxon.russell@yahoo.com', 'Onboarding Schedule', 'Your onboarding specialist will contact you shortly to schedule the implementation kickoff meeting with your team.', '2025-11-14 19:42:47', '2026-03-14 06:00:08'), +(45, 11, 'paisley.griffin@gmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-11-17 23:46:27', '2026-03-14 06:00:08'), +(46, 12, 'roman.diaz@hotmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-11-27 22:18:57', '2026-03-14 06:00:08'), +(47, 13, 'kinsley.hayes@outlook.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-11-30 15:27:50', '2026-03-14 06:00:08'), +(48, 14, 'declan.myers@gmail.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2025-12-06 21:40:10', '2026-03-14 06:00:08'), +(49, 14, 'declan.myers@gmail.com', 'Additional Information Needed', 'To complete our review process, we need some additional information about your technical infrastructure and requirements.', '2025-12-08 14:40:10', '2026-03-14 06:00:08'), +(50, 15, 'nova.ford@yahoo.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2025-12-16 05:54:29', '2026-03-14 06:00:08'), +(51, 16, 'axel.hamilton@hotmail.com', 'Qualification Approved', 'Congratulations! Your qualification has been approved. Let us discuss the next steps in our process.', '2025-12-17 15:13:35', '2026-03-14 06:00:08'), +(52, 17, 'emery.graham@gmail.com', 'Qualification Approved', 'Congratulations! Your qualification has been approved. Let us discuss the next steps in our process.', '2025-12-28 08:32:44', '2026-03-14 06:00:08'), +(53, 17, 'emery.graham@gmail.com', 'Next Steps Discussion', 'Now that you are qualified, we would like to schedule a detailed presentation of our solution capabilities.', '2025-12-26 18:32:44', '2026-03-14 06:00:08'), +(54, 18, 'knox.sullivan@outlook.com', 'Final Approval Confirmation', 'We are pleased to confirm your final approval. Our legal team will prepare the contract documents.', '2026-01-04 04:44:57', '2026-03-14 06:00:08'), +(55, 19, 'wren.wallace@yahoo.com', 'Final Approval Confirmation', 'We are pleased to confirm your final approval. Our legal team will prepare the contract documents.', '2026-01-07 04:35:46', '2026-03-14 06:00:08'), +(56, 20, 'atlas.woods@gmail.com', 'Application Status Update', 'After careful review, we are unable to proceed at this time. We appreciate your interest in solutions.', '2026-01-11 22:33:59', '2026-03-14 06:00:08'), +(57, 20, 'atlas.woods@gmail.com', 'Feedback and Recommendations', 'We have provided detailed feedback on your application and recommendations for future consideration and improvement.', '2026-01-10 14:33:59', '2026-03-14 06:00:08'), +(58, 1, 'hazel.cox@gmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-09-22 14:32:29', '2026-03-14 06:00:09'), +(59, 1, 'hazel.cox@gmail.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2025-09-19 03:32:29', '2026-03-14 06:00:09'), +(60, 2, 'leo.ward@yahoo.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-09-26 00:26:38', '2026-03-14 06:00:09'), +(61, 2, 'leo.ward@yahoo.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2025-09-26 23:26:38', '2026-03-14 06:00:09'), +(62, 3, 'violet.richardson@hotmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-09-30 11:33:47', '2026-03-14 06:00:09'), +(63, 4, 'ezra.butler@outlook.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-10-06 05:25:49', '2026-03-14 06:00:09'), +(64, 4, 'ezra.butler@outlook.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2025-10-05 03:25:49', '2026-03-14 06:00:09'), +(65, 5, 'aurora.simmons@gmail.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2025-10-12 10:53:56', '2026-03-14 06:00:09'), +(66, 5, 'aurora.simmons@gmail.com', 'Scheduling Our Discussion', 'I wanted to follow up on our previous conversation and see if you have questions about solutions.', '2025-10-17 14:53:56', '2026-03-14 06:00:09'), +(67, 6, 'kai.foster@yahoo.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2025-10-17 16:17:08', '2026-03-14 06:00:09'), +(68, 7, 'savannah.henderson@hotmail.com', 'Demo Invitation', 'Based on our discussion, I would like to invite you to a personalized demo of our platform.', '2025-10-25 08:37:05', '2026-03-14 06:00:09'), +(69, 7, 'savannah.henderson@hotmail.com', 'Case Study Sharing', 'I am sharing a relevant case study that shows how we helped similar company achieve efficiency improvement.', '2025-10-26 06:37:05', '2026-03-14 06:00:09'), +(70, 8, 'maverick.bryant@gmail.com', 'Demo Invitation', 'Based on our discussion, I would like to invite you to a personalized demo of our platform.', '2025-11-01 08:19:16', '2026-03-14 06:00:09'), +(71, 9, 'skylar.alexander@outlook.com', 'Proposal Preparation', 'We are preparing a detailed proposal based on your requirements. Could you confirm your preferred timeline?', '2025-11-09 02:52:07', '2026-03-14 06:00:09'), +(72, 10, 'jaxon.russell@yahoo.com', 'Welcome to Our Platform', 'Welcome to our platform! We are excited to start this journey with you and ensure your success.', '2025-11-15 06:42:47', '2026-03-14 06:00:09'), +(73, 11, 'paisley.griffin@gmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-11-18 20:46:27', '2026-03-14 06:00:09'), +(74, 11, 'paisley.griffin@gmail.com', 'Alternative Solutions', 'Although our enterprise solution might not align with your current needs, we have alternative options available.', '2025-11-21 07:46:27', '2026-03-14 06:00:09'), +(75, 12, 'roman.diaz@hotmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-11-25 07:18:57', '2026-03-14 06:00:09'), +(76, 13, 'kinsley.hayes@outlook.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-12-05 05:27:50', '2026-03-14 06:00:09'), +(77, 13, 'kinsley.hayes@outlook.com', 'Alternative Solutions', 'Although our enterprise solution might not align with your current needs, we have alternative options available.', '2025-11-29 19:27:50', '2026-03-14 06:00:09'), +(78, 14, 'declan.myers@gmail.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2025-12-10 09:40:10', '2026-03-14 06:00:09'), +(79, 14, 'declan.myers@gmail.com', 'Additional Information Needed', 'To complete our review process, we need some additional information about your technical infrastructure and requirements.', '2025-12-04 03:40:10', '2026-03-14 06:00:09'), +(80, 15, 'nova.ford@yahoo.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2025-12-10 10:54:29', '2026-03-14 06:00:09'), +(81, 16, 'axel.hamilton@hotmail.com', 'Qualification Approved', 'Congratulations! Your qualification has been approved. Let us discuss the next steps in our process.', '2025-12-23 06:13:35', '2026-03-14 06:00:09'), +(82, 16, 'axel.hamilton@hotmail.com', 'Next Steps Discussion', 'Now that you are qualified, we would like to schedule a detailed presentation of our solution capabilities.', '2025-12-19 18:13:35', '2026-03-14 06:00:09'), +(83, 17, 'emery.graham@gmail.com', 'Qualification Approved', 'Congratulations! Your qualification has been approved. Let us discuss the next steps in our process.', '2025-12-27 10:32:44', '2026-03-14 06:00:09'), +(84, 18, 'knox.sullivan@outlook.com', 'Final Approval Confirmation', 'We are pleased to confirm your final approval. Our legal team will prepare the contract documents.', '2026-01-04 05:44:57', '2026-03-14 06:00:09'), +(85, 19, 'wren.wallace@yahoo.com', 'Final Approval Confirmation', 'We are pleased to confirm your final approval. Our legal team will prepare the contract documents.', '2026-01-07 00:35:46', '2026-03-14 06:00:09'), +(86, 20, 'atlas.woods@gmail.com', 'Application Status Update', 'After careful review, we are unable to proceed at this time. We appreciate your interest in solutions.', '2026-01-12 15:33:59', '2026-03-14 06:00:09'), +(87, 20, 'atlas.woods@gmail.com', 'Feedback and Recommendations', 'We have provided detailed feedback on your application and recommendations for future consideration and improvement.', '2026-01-12 11:33:59', '2026-03-14 06:00:09'), +(88, 1, 'hazel.cox@gmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-09-18 13:32:29', '2026-03-14 06:00:18'), +(89, 1, 'hazel.cox@gmail.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2025-09-19 13:32:29', '2026-03-14 06:00:18'), +(90, 2, 'leo.ward@yahoo.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-09-23 00:26:38', '2026-03-14 06:00:18'), +(91, 2, 'leo.ward@yahoo.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2025-09-27 23:26:38', '2026-03-14 06:00:18'), +(92, 3, 'violet.richardson@hotmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-10-01 03:33:47', '2026-03-14 06:00:18'), +(93, 3, 'violet.richardson@hotmail.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2025-10-03 11:33:47', '2026-03-14 06:00:18'), +(94, 4, 'ezra.butler@outlook.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2025-10-08 12:25:49', '2026-03-14 06:00:18'), +(95, 5, 'aurora.simmons@gmail.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2025-10-11 03:53:56', '2026-03-14 06:00:18'), +(96, 5, 'aurora.simmons@gmail.com', 'Scheduling Our Discussion', 'I wanted to follow up on our previous conversation and see if you have questions about solutions.', '2025-10-16 20:53:56', '2026-03-14 06:00:18'), +(97, 6, 'kai.foster@yahoo.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2025-10-18 16:17:08', '2026-03-14 06:00:18'), +(98, 6, 'kai.foster@yahoo.com', 'Scheduling Our Discussion', 'I wanted to follow up on our previous conversation and see if you have questions about solutions.', '2025-10-17 19:17:08', '2026-03-14 06:00:18'), +(99, 7, 'savannah.henderson@hotmail.com', 'Demo Invitation', 'Based on our discussion, I would like to invite you to a personalized demo of our platform.', '2025-10-25 08:37:05', '2026-03-14 06:00:18'), +(100, 8, 'maverick.bryant@gmail.com', 'Demo Invitation', 'Based on our discussion, I would like to invite you to a personalized demo of our platform.', '2025-10-30 23:19:16', '2026-03-14 06:00:18'), +(101, 9, 'skylar.alexander@outlook.com', 'Proposal Preparation', 'We are preparing a detailed proposal based on your requirements. Could you confirm your preferred timeline?', '2025-11-05 05:52:07', '2026-03-14 06:00:18'), +(102, 10, 'jaxon.russell@yahoo.com', 'Welcome to Our Platform', 'Welcome to our platform! We are excited to start this journey with you and ensure your success.', '2025-11-10 19:42:47', '2026-03-14 06:00:18'), +(103, 11, 'paisley.griffin@gmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-11-20 23:46:27', '2026-03-14 06:00:18'), +(104, 12, 'roman.diaz@hotmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-11-23 15:18:57', '2026-03-14 06:00:18'), +(105, 12, 'roman.diaz@hotmail.com', 'Alternative Solutions', 'Although our enterprise solution might not align with your current needs, we have alternative options available.', '2025-11-27 05:18:57', '2026-03-14 06:00:18'), +(106, 13, 'kinsley.hayes@outlook.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2025-11-29 00:27:50', '2026-03-14 06:00:18'), +(107, 14, 'declan.myers@gmail.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2025-12-04 03:40:10', '2026-03-14 06:00:18'), +(108, 14, 'declan.myers@gmail.com', 'Additional Information Needed', 'To complete our review process, we need some additional information about your technical infrastructure and requirements.', '2025-12-08 23:40:10', '2026-03-14 06:00:18'), +(109, 15, 'nova.ford@yahoo.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2025-12-16 23:54:29', '2026-03-14 06:00:18'), +(110, 16, 'axel.hamilton@hotmail.com', 'Qualification Approved', 'Congratulations! Your qualification has been approved. Let us discuss the next steps in our process.', '2025-12-17 20:13:35', '2026-03-14 06:00:18'), +(111, 16, 'axel.hamilton@hotmail.com', 'Next Steps Discussion', 'Now that you are qualified, we would like to schedule a detailed presentation of our solution capabilities.', '2025-12-23 06:13:35', '2026-03-14 06:00:18'), +(112, 17, 'emery.graham@gmail.com', 'Qualification Approved', 'Congratulations! Your qualification has been approved. Let us discuss the next steps in our process.', '2025-12-25 02:32:44', '2026-03-14 06:00:18'), +(113, 17, 'emery.graham@gmail.com', 'Next Steps Discussion', 'Now that you are qualified, we would like to schedule a detailed presentation of our solution capabilities.', '2025-12-27 02:32:44', '2026-03-14 06:00:18'), +(114, 18, 'knox.sullivan@outlook.com', 'Final Approval Confirmation', 'We are pleased to confirm your final approval. Our legal team will prepare the contract documents.', '2025-12-30 18:44:57', '2026-03-14 06:00:18'), +(115, 19, 'wren.wallace@yahoo.com', 'Final Approval Confirmation', 'We are pleased to confirm your final approval. Our legal team will prepare the contract documents.', '2026-01-07 22:35:46', '2026-03-14 06:00:18'), +(116, 20, 'atlas.woods@gmail.com', 'Application Status Update', 'After careful review, we are unable to proceed at this time. We appreciate your interest in solutions.', '2026-01-15 05:33:59', '2026-03-14 06:00:18'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `lead_files` +-- + +CREATE TABLE `lead_files` ( + `id` bigint(20) UNSIGNED NOT NULL, + `lead_id` bigint(20) UNSIGNED NOT NULL, + `file_name` varchar(255) NOT NULL, + `file_path` varchar(255) 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 `lead_files` +-- + +INSERT INTO `lead_files` (`id`, `lead_id`, `file_name`, `file_path`, `created_at`, `updated_at`) VALUES +(1, 1, 'Training_Requirements_Lead_File.pdf', 'Training_Requirements_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 1, 'Training Requirements_Lead_File.jpg', 'Training Requirements_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 2, 'Budget_Evaluation_Lead_File.docx', 'Budget_Evaluation_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 3, 'Integration_Assessment_Lead_File.jpg', 'Integration_Assessment_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 4, 'ROI_Assessment_Lead_File.pdf', 'ROI_Assessment_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 4, 'ROI_Assessment_Lead_File.jpg', 'ROI_Assessment_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 5, 'Procurement_Review_Lead_File.docx', 'Procurement_Review_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 6, 'Quality_Control_System_Lead_File.png', 'Quality_Control_System_Lead_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 6, 'Quality_Control_System_Lead_File.docx', 'Quality_Control_System_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 7, 'Performance_Analysis_Lead_File.pdf', 'Performance_Analysis_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 8, 'Procurement_Review_Lead_File.docx', 'Procurement_Review_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 9, 'Automation_Feasibility_Lead_File.png', 'Automation_Feasibility_Lead_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 9, 'Automation_Feasibility_Lead_File.pdf', 'Automation_Feasibility_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 10, 'Budget_Evaluation_Lead_File.docx', 'Budget_Evaluation_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 11, 'E_commerce_Solution_Purchase_Lead_File.png', 'E_commerce_Solution_Purchase_Lead_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 12, 'Multi_Year_Contract_Lead_File.pdf', 'Multi_Year_Contract_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 12, 'Multi_Year_Contract_Lead_File.docx', 'Multi_Year_Contract_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 13, 'Payment_Processing_Deal_Lead_File.pdf', 'Payment_Processing_Deal_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 13, 'Payment_Processing_Deal_Lead_File.jpg', 'Payment_Processing_Deal_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 14, 'Payment_Processing_Deal_Lead_File.pdf', 'Payment_Processing_Deal_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 14, 'Payment_Processing_Deal_Lead_File.jpg', 'Payment_Processing_Deal_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 15, 'Healthcare_Software_License_Lead_File.docx', 'Healthcare_Software_License_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 16, 'Corporate_License_Agreement_Lead_File.png', 'Corporate_License_Agreement_Lead_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 17, 'Volume_Discount_Request_Lead_File.jpg', 'Volume_Discount_Request_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 18, 'Healthcare_Software_License_Lead_File.docx', 'Healthcare_Software_License_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 19, 'Support_Contract_Extension_Lead_File.pdf', 'Support_Contract_Extension_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 20, 'Healthcare_Software_License_Lead_File.docx', 'Healthcare_Software_License_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 1, 'ROI_Assessment_Lead_File.pdf', 'ROI_Assessment_Lead_File.pdf', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(29, 1, 'ROI_Assessment_Lead_File.jpg', 'ROI_Assessment_Lead_File.jpg', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(30, 2, 'Enterprise_Assessment_Lead_File.png', 'Enterprise_Assessment_Lead_File.png', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(31, 3, 'Enterprise_Assessment_Lead_File.png', 'Enterprise_Assessment_Lead_File.png', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(32, 4, 'Enterprise_Assessment_Lead_File.png', 'Enterprise_Assessment_Lead_File.png', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(33, 5, 'Data_Management_Review_Lead_File.png', 'Data_Management_Review_Lead_File.png', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(34, 6, 'Performance_Analysis_Lead_File.pdf', 'Performance_Analysis_Lead_File.pdf', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(35, 7, 'Data_Management_Review_Lead_File.png', 'Data_Management_Review_Lead_File.png', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(36, 8, 'Security_Evaluation_Lead_File.docx', 'Security_Evaluation_Lead_File.docx', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(37, 9, 'Security_Evaluation_Lead_File.docx', 'Security_Evaluation_Lead_File.docx', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(38, 10, 'Enterprise_Assessment_Lead_File.png', 'Enterprise_Assessment_Lead_File.png', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(39, 11, 'Implementation_Services_Lead_File.png', 'Implementation_Services_Lead_File.png', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(40, 11, 'Implementation_Services_Lead_File.pdf', 'Implementation_Services_Lead_File.pdf', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(41, 12, 'Custom_Solution_Quote_Lead_File.docx', 'Custom_Solution_Quote_Lead_File.docx', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(42, 13, 'Multi_Year_Contract_Lead_File.pdf', 'Multi_Year_Contract_Lead_File.pdf', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(43, 13, 'Multi_Year_Contract_Lead_File.docx', 'Multi_Year_Contract_Lead_File.docx', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(44, 14, 'Payment_Processing_Deal_Lead_File.pdf', 'Payment_Processing_Deal_Lead_File.pdf', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(45, 14, 'Payment_Processing_Deal_Lead_File.jpg', 'Payment_Processing_Deal_Lead_File.jpg', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(46, 15, 'Annual_License_Renewal_Lead_File.png', 'Annual_License_Renewal_Lead_File.png', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(47, 15, 'Annual_License_Renewal_Lead_File.pdf', 'Annual_License_Renewal_Lead_File.pdf', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(48, 16, 'Migration_Service_Purchase_Lead_File.jpg', 'Migration_Service_Purchase_Lead_File.jpg', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(49, 17, 'Multi_Year_Contract_Lead_File.pdf', 'Multi_Year_Contract_Lead_File.pdf', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(50, 17, 'Multi_Year_Contract_Lead_File.docx', 'Multi_Year_Contract_Lead_File.docx', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(51, 18, 'Healthcare_Software_License_Lead_File.docx', 'Healthcare_Software_License_Lead_File.docx', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(52, 19, 'Annual_License_Renewal_Lead_File.png', 'Annual_License_Renewal_Lead_File.png', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(53, 19, 'Annual_License_Renewal_Lead_File.pdf', 'Annual_License_Renewal_Lead_File.pdf', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(54, 20, 'Healthcare_Software_License_Lead_File.docx', 'Healthcare_Software_License_Lead_File.docx', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(55, 1, 'Quality_Control_System_Lead_File.png', 'Quality_Control_System_Lead_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(56, 1, 'Quality_Control_System_Lead_File.docx', 'Quality_Control_System_Lead_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(57, 2, 'Budget_Evaluation_Lead_File.docx', 'Budget_Evaluation_Lead_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(58, 3, 'Quality_Control_System_Lead_File.png', 'Quality_Control_System_Lead_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(59, 3, 'Quality_Control_System_Lead_File.docx', 'Quality_Control_System_Lead_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(60, 4, 'Performance_Analysis_Lead_File.pdf', 'Performance_Analysis_Lead_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(61, 5, 'Enterprise_Assessment_Lead_File.png', 'Enterprise_Assessment_Lead_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(62, 6, 'Compliance_Review_Lead_File.jpg', 'Compliance_Review_Lead_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(63, 7, 'Cost_Analysis_Lead_File.png', 'Cost_Analysis_Lead_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(64, 8, 'Workflow_Optimization_Lead_File.docx', 'Workflow_Optimization_Lead_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(65, 9, 'ROI_Assessment_Lead_File.pdf', 'ROI_Assessment_Lead_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(66, 9, 'ROI_Assessment_Lead_File.jpg', 'ROI_Assessment_Lead_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(67, 10, 'Risk_Management_Lead_File.png', 'Risk_Management_Lead_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(68, 10, 'Risk_Management_Lead_File.pdf', 'Risk_Management_Lead_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(69, 11, 'Annual_License_Renewal_Lead_File.png', 'Annual_License_Renewal_Lead_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(70, 11, 'Annual_License_Renewal_Lead_File.pdf', 'Annual_License_Renewal_Lead_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(71, 12, 'Training_Package_Deal_Lead_File.docx', 'Training_Package_Deal_Lead_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(72, 13, 'E_commerce_Solution_Purchase_Lead_File.png', 'E_commerce_Solution_Purchase_Lead_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(73, 14, 'Annual_License_Renewal_Lead_File.png', 'Annual_License_Renewal_Lead_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(74, 14, 'Annual_License_Renewal_Lead_File.pdf', 'Annual_License_Renewal_Lead_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(75, 15, 'Premium_Package_Upgrade_Lead_File.png', 'Premium_Package_Upgrade_Lead_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(76, 16, 'Training_Package_Deal_Lead_File.docx', 'Training_Package_Deal_Lead_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(77, 17, 'Healthcare_Software_License_Lead_File.docx', 'Healthcare_Software_License_Lead_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(78, 18, 'Analytics_Platform_License_Lead_File.pdf', 'Analytics_Platform_License_Lead_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(79, 19, 'Custom_Solution_Quote_Lead_File.docx', 'Custom_Solution_Quote_Lead_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(80, 20, 'Migration_Service_Purchase_Lead_File.jpg', 'Migration_Service_Purchase_Lead_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(81, 1, 'Timeline_Planning_Lead_File.pdf', 'Timeline_Planning_Lead_File.pdf', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(82, 2, 'Timeline_Planning_Lead_File.pdf', 'Timeline_Planning_Lead_File.pdf', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(83, 3, 'Risk_Management_Lead_File.png', 'Risk_Management_Lead_File.png', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(84, 3, 'Risk_Management_Lead_File.pdf', 'Risk_Management_Lead_File.pdf', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(85, 4, 'Compliance_Review_Lead_File.jpg', 'Compliance_Review_Lead_File.jpg', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(86, 5, 'Data_Management_Review_Lead_File.png', 'Data_Management_Review_Lead_File.png', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(87, 6, 'Compliance_Review_Lead_File.jpg', 'Compliance_Review_Lead_File.jpg', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(88, 7, 'Procurement_Review_Lead_File.docx', 'Procurement_Review_Lead_File.docx', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(89, 8, 'Vendor_Assessment_Lead_File.jpg', 'Vendor_Assessment_Lead_File.jpg', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(90, 8, 'Vendor_Assessment_Lead_File.pdf', 'Vendor_Assessment_Lead_File.pdf', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(91, 9, 'Training_Requirements_Lead_File.pdf', 'Training_Requirements_Lead_File.pdf', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(92, 9, 'Training Requirements_Lead_File.jpg', 'Training Requirements_Lead_File.jpg', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(93, 10, 'Data_Management_Review_Lead_File.png', 'Data_Management_Review_Lead_File.png', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(94, 11, 'Migration_Service_Purchase_Lead_File.jpg', 'Migration_Service_Purchase_Lead_File.jpg', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(95, 12, 'Custom_Solution_Quote_Lead_File.docx', 'Custom_Solution_Quote_Lead_File.docx', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(96, 13, 'Training_Package_Deal_Lead_File.docx', 'Training_Package_Deal_Lead_File.docx', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(97, 14, 'Training_Package_Deal_Lead_File.docx', 'Training_Package_Deal_Lead_File.docx', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(98, 15, 'Enterprise_Software_Purchase_Lead_File.png', 'Enterprise_Software_Purchase_Lead_File.png', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(99, 16, 'Custom_Solution_Quote_Lead_File.docx', 'Custom_Solution_Quote_Lead_File.docx', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(100, 17, 'Implementation_Services_Lead_File.png', 'Implementation_Services_Lead_File.png', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(101, 17, 'Implementation_Services_Lead_File.pdf', 'Implementation_Services_Lead_File.pdf', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(102, 18, 'Enterprise_Software_Purchase_Lead_File.png', 'Enterprise_Software_Purchase_Lead_File.png', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(103, 19, 'Payment_Processing_Deal_Lead_File.pdf', 'Payment_Processing_Deal_Lead_File.pdf', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(104, 19, 'Payment_Processing_Deal_Lead_File.jpg', 'Payment_Processing_Deal_Lead_File.jpg', '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(105, 20, 'Analytics_Platform_License_Lead_File.pdf', 'Analytics_Platform_License_Lead_File.pdf', '2026-03-14 06:00:18', '2026-03-14 06:00:18'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `lead_stages` +-- + +CREATE TABLE `lead_stages` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `order` int(11) DEFAULT NULL, + `pipeline_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `lead_stages` +-- + +INSERT INTO `lead_stages` (`id`, `name`, `order`, `pipeline_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Prospect', 1, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-30 19:17:16'), +(2, 'Contacted', 2, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-30 19:17:16'), +(3, 'Engaged', 3, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-30 19:17:16'), +(4, 'Qualified', 4, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-30 19:17:16'), +(5, 'Converted', 5, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-30 19:17:16'), +(6, 'Unqualified', 1, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 'In Review', 2, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 'Qualified', 3, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 'Approved', 4, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 'Rejected', 5, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 'Draft', 1, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'), +(12, 'Sent', 2, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'), +(13, 'Open', 3, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'), +(14, 'Revised', 4, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'), +(15, 'Declined', 5, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'), +(16, 'Accepted', 6, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `lead_tasks` +-- + +CREATE TABLE `lead_tasks` ( + `id` bigint(20) UNSIGNED NOT NULL, + `lead_id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `date` date NOT NULL, + `time` time NOT NULL, + `priority` varchar(255) NOT NULL, + `status` varchar(255) NOT NULL, + `created_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) 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 `lead_tasks` +-- + +INSERT INTO `lead_tasks` (`id`, `lead_id`, `name`, `date`, `time`, `priority`, `status`, `created_by`, `creator_id`, `created_at`, `updated_at`) VALUES +(1, 1, 'Initial contact call with prospect', '2025-09-22', '15:52:35', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 2, 'Send introduction email and company overview', '2025-10-14', '05:23:53', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 2, 'Schedule discovery meeting appointment', '2025-10-15', '14:06:31', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 2, 'Research prospect business requirements thoroughly', '2025-10-15', '09:56:36', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 3, 'Prepare customized presentation materials', '2025-11-09', '18:00:17', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 3, 'Conduct needs assessment interview', '2025-11-09', '07:54:52', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 3, 'Send detailed proposal document', '2025-11-11', '22:36:46', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 4, 'Follow up on proposal feedback', '2025-12-17', '15:21:05', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 5, 'Schedule product demonstration session', '2026-01-10', '22:27:39', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 5, 'Prepare technical specifications document', '2026-01-11', '23:31:30', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 5, 'Conduct stakeholder presentation meeting', '2026-01-13', '06:16:08', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 6, 'Send pricing quotation details', '2026-01-25', '13:21:09', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 7, 'Follow up on pricing questions', '2026-02-08', '08:12:25', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 8, 'Schedule contract negotiation meeting', '2026-02-22', '22:31:46', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 8, 'Prepare contract terms document', '2026-02-21', '22:41:19', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 9, 'Conduct final negotiation session', '2026-03-03', '18:50:36', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 10, 'Send revised contract proposal', '2026-03-06', '07:41:25', 'Low', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 10, 'Follow up on contract review', '2026-03-09', '07:54:34', 'Low', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 11, 'Schedule contract signing appointment', '2026-03-10', '10:36:13', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 11, 'Prepare onboarding documentation package', '2026-03-11', '15:42:18', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 11, 'Conduct project kickoff meeting', '2026-03-13', '22:55:15', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 12, 'Send welcome and next steps', '2026-03-12', '08:29:44', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 12, 'Schedule implementation planning session', '2026-03-13', '00:20:28', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 12, 'Prepare project timeline document', '2026-03-14', '00:18:55', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 13, 'Conduct team introduction meeting', '2026-03-16', '15:37:59', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 13, 'Send training materials package', '2026-03-18', '03:00:20', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 14, 'Schedule training session appointment', '2026-03-19', '07:49:23', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 14, 'Follow up on training completion', '2026-03-21', '20:01:18', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(29, 14, 'Schedule go-live planning meeting', '2026-03-22', '09:42:35', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(30, 15, 'Prepare go-live checklist document', '2026-03-20', '13:47:27', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(31, 15, 'Conduct system testing session', '2026-03-22', '16:54:56', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(32, 16, 'Send testing results summary', '2026-03-23', '23:09:34', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(33, 16, 'Schedule final approval meeting', '2026-03-25', '16:04:37', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(34, 17, 'Follow up on final approval', '2026-03-27', '17:18:59', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(35, 17, 'Schedule launch celebration event', '2026-03-28', '16:45:08', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(36, 17, 'Send launch announcement communication', '2026-03-29', '06:42:04', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(37, 18, 'Conduct post-launch review meeting', '2026-03-27', '01:02:20', 'Low', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(38, 18, 'Send success metrics report', '2026-03-30', '15:49:00', 'Low', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(39, 18, 'Schedule quarterly business review', '2026-03-30', '21:47:26', 'Low', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(40, 19, 'Follow up on satisfaction feedback', '2026-03-30', '06:15:17', 'Low', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(41, 20, 'Schedule expansion discussion meeting', '2026-04-01', '03:03:47', 'Low', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(42, 20, 'Send upsell proposal document', '2026-04-02', '01:48:06', 'Low', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(43, 20, 'Research additional opportunities thoroughly', '2026-04-03', '08:58:42', 'Low', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `leave_applications` +-- + +CREATE TABLE `leave_applications` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `leave_type_id` bigint(20) UNSIGNED DEFAULT NULL, + `start_date` date DEFAULT NULL, + `end_date` date DEFAULT NULL, + `total_days` int(11) DEFAULT NULL, + `reason` longtext NOT NULL, + `status` enum('pending','approved','rejected') NOT NULL DEFAULT 'pending', + `attachment` varchar(255) DEFAULT NULL, + `approver_comment` longtext DEFAULT NULL, + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `approved_at` timestamp NULL DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `leave_applications` +-- + +INSERT INTO `leave_applications` (`id`, `employee_id`, `leave_type_id`, `start_date`, `end_date`, `total_days`, `reason`, `status`, `attachment`, `approver_comment`, `approved_by`, `approved_at`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(2, 8, NULL, '2025-07-07', '2025-07-08', 2, 'Medical appointment and health checkup scheduled', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(3, 8, NULL, '2025-07-09', '2025-07-11', 3, 'Personal vacation and relaxation time needed', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(4, 8, NULL, '2025-07-14', '2025-07-14', 1, 'Wedding ceremony of close family member', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(5, 8, NULL, '2025-07-17', '2025-07-18', 2, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(6, 10, NULL, '2025-07-01', '2025-07-01', 1, 'Medical appointment and health checkup scheduled', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(7, 10, NULL, '2025-07-07', '2025-07-08', 2, 'Personal vacation and relaxation time needed', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(8, 10, NULL, '2025-07-09', '2025-07-11', 3, 'Wedding ceremony of close family member', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(9, 10, NULL, '2025-07-14', '2025-07-14', 1, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(10, 10, NULL, '2025-07-17', '2025-07-18', 2, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(11, 12, NULL, '2025-07-01', '2025-07-01', 1, 'Personal vacation and relaxation time needed', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(12, 12, NULL, '2025-07-07', '2025-07-08', 2, 'Wedding ceremony of close family member', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(13, 12, NULL, '2025-07-09', '2025-07-11', 3, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(14, 12, NULL, '2025-07-14', '2025-07-14', 1, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(15, 12, NULL, '2025-07-17', '2025-07-18', 2, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(16, 14, NULL, '2025-07-01', '2025-07-01', 1, 'Wedding ceremony of close family member', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(17, 14, NULL, '2025-07-07', '2025-07-08', 2, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(18, 14, NULL, '2025-07-09', '2025-07-11', 3, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(19, 14, NULL, '2025-07-14', '2025-07-14', 1, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(20, 14, 2, '2025-07-17', '2025-07-18', 2, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(21, 16, NULL, '2025-07-01', '2025-07-01', 1, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(22, 16, NULL, '2025-07-07', '2025-07-08', 2, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(23, 16, NULL, '2025-07-09', '2025-07-11', 3, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(24, 16, 2, '2025-07-14', '2025-07-14', 1, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(25, 16, NULL, '2025-07-17', '2025-07-18', 2, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(26, 18, NULL, '2025-07-01', '2025-07-01', 1, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(27, 18, NULL, '2025-07-07', '2025-07-08', 2, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(28, 18, NULL, '2025-07-09', '2025-07-11', 3, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(29, 18, NULL, '2025-07-14', '2025-07-14', 1, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(30, 18, NULL, '2025-07-17', '2025-07-18', 2, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(31, 20, NULL, '2025-07-01', '2025-07-01', 1, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(32, 20, NULL, '2025-07-07', '2025-07-08', 2, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(33, 20, NULL, '2025-07-09', '2025-07-11', 3, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(34, 20, NULL, '2025-07-14', '2025-07-14', 1, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(35, 20, NULL, '2025-07-17', '2025-07-18', 2, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(36, 22, NULL, '2025-07-01', '2025-07-01', 1, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(37, 22, NULL, '2025-07-07', '2025-07-08', 2, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(38, 22, NULL, '2025-07-09', '2025-07-11', 3, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(39, 22, NULL, '2025-07-14', '2025-07-14', 1, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(40, 22, NULL, '2025-07-17', '2025-07-18', 2, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(41, 24, NULL, '2025-07-01', '2025-07-01', 1, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(42, 24, NULL, '2025-07-07', '2025-07-08', 2, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(43, 24, NULL, '2025-07-09', '2025-07-11', 3, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(44, 24, NULL, '2025-07-14', '2025-07-14', 1, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(45, 24, NULL, '2025-07-17', '2025-07-18', 2, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(46, 26, NULL, '2025-07-01', '2025-07-01', 1, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(47, 26, NULL, '2025-07-07', '2025-07-08', 2, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(48, 26, NULL, '2025-07-09', '2025-07-11', 3, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(49, 26, NULL, '2025-07-14', '2025-07-14', 1, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(50, 26, 2, '2025-07-17', '2025-07-18', 2, 'Wedding ceremony of close family member', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(51, 8, NULL, '2025-08-04', '2025-08-04', 1, 'Medical appointment and health checkup scheduled', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(52, 8, NULL, '2025-08-06', '2025-08-07', 2, 'Personal vacation and relaxation time needed', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(53, 8, NULL, '2025-08-11', '2025-08-13', 3, 'Wedding ceremony of close family member', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(54, 8, NULL, '2025-08-14', '2025-08-14', 1, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(55, 8, NULL, '2025-08-18', '2025-08-19', 2, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(56, 10, NULL, '2025-08-04', '2025-08-04', 1, 'Personal vacation and relaxation time needed', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(57, 10, NULL, '2025-08-06', '2025-08-07', 2, 'Wedding ceremony of close family member', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(58, 10, NULL, '2025-08-11', '2025-08-13', 3, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(59, 10, NULL, '2025-08-14', '2025-08-14', 1, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(60, 10, NULL, '2025-08-18', '2025-08-19', 2, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(61, 12, NULL, '2025-08-04', '2025-08-04', 1, 'Wedding ceremony of close family member', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(62, 12, NULL, '2025-08-06', '2025-08-07', 2, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(63, 12, NULL, '2025-08-11', '2025-08-13', 3, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(64, 12, NULL, '2025-08-14', '2025-08-14', 1, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(65, 12, NULL, '2025-08-18', '2025-08-19', 2, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(66, 14, NULL, '2025-08-04', '2025-08-04', 1, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(67, 14, NULL, '2025-08-06', '2025-08-07', 2, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(68, 14, NULL, '2025-08-11', '2025-08-13', 3, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(69, 14, NULL, '2025-08-14', '2025-08-14', 1, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(70, 14, 2, '2025-08-18', '2025-08-19', 2, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(71, 16, NULL, '2025-08-04', '2025-08-04', 1, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(72, 16, NULL, '2025-08-06', '2025-08-07', 2, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(73, 16, NULL, '2025-08-11', '2025-08-13', 3, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(74, 16, 2, '2025-08-14', '2025-08-14', 1, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(75, 16, NULL, '2025-08-18', '2025-08-19', 2, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(76, 18, NULL, '2025-08-04', '2025-08-04', 1, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(77, 18, NULL, '2025-08-06', '2025-08-07', 2, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(78, 18, NULL, '2025-08-11', '2025-08-13', 3, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(79, 18, NULL, '2025-08-14', '2025-08-14', 1, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(80, 18, NULL, '2025-08-18', '2025-08-19', 2, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(81, 20, NULL, '2025-08-04', '2025-08-04', 1, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(82, 20, NULL, '2025-08-06', '2025-08-07', 2, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(83, 20, NULL, '2025-08-11', '2025-08-13', 3, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(84, 20, NULL, '2025-08-14', '2025-08-14', 1, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(85, 20, NULL, '2025-08-18', '2025-08-19', 2, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(86, 22, NULL, '2025-08-04', '2025-08-04', 1, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(87, 22, NULL, '2025-08-06', '2025-08-07', 2, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(88, 22, NULL, '2025-08-11', '2025-08-13', 3, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(89, 22, NULL, '2025-08-14', '2025-08-14', 1, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(90, 22, NULL, '2025-08-18', '2025-08-19', 2, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(91, 24, NULL, '2025-08-04', '2025-08-04', 1, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(92, 24, NULL, '2025-08-06', '2025-08-07', 2, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(93, 24, NULL, '2025-08-11', '2025-08-13', 3, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(94, 24, NULL, '2025-08-14', '2025-08-14', 1, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(95, 24, NULL, '2025-08-18', '2025-08-19', 2, 'Wedding ceremony of close family member', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(96, 26, NULL, '2025-08-04', '2025-08-04', 1, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(97, 26, NULL, '2025-08-06', '2025-08-07', 2, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(98, 26, NULL, '2025-08-11', '2025-08-13', 3, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(99, 26, NULL, '2025-08-14', '2025-08-14', 1, 'Wedding ceremony of close family member', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(100, 26, 2, '2025-08-18', '2025-08-19', 2, 'Child illness and need to provide care', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(101, 8, NULL, '2025-09-03', '2025-09-03', 1, 'Personal vacation and relaxation time needed', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(102, 8, NULL, '2025-09-08', '2025-09-09', 2, 'Wedding ceremony of close family member', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(103, 8, NULL, '2025-09-11', '2025-09-15', 3, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(104, 8, NULL, '2025-09-15', '2025-09-15', 1, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(105, 8, NULL, '2025-09-19', '2025-09-22', 2, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(106, 10, NULL, '2025-09-03', '2025-09-03', 1, 'Wedding ceremony of close family member', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(107, 10, NULL, '2025-09-08', '2025-09-09', 2, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(108, 10, NULL, '2025-09-11', '2025-09-15', 3, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(109, 10, NULL, '2025-09-15', '2025-09-15', 1, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(110, 10, NULL, '2025-09-19', '2025-09-22', 2, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(111, 12, NULL, '2025-09-03', '2025-09-03', 1, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(112, 12, NULL, '2025-09-08', '2025-09-09', 2, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(113, 12, NULL, '2025-09-11', '2025-09-15', 3, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(114, 12, NULL, '2025-09-15', '2025-09-15', 1, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(115, 12, NULL, '2025-09-19', '2025-09-22', 2, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(116, 14, NULL, '2025-09-03', '2025-09-03', 1, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(117, 14, NULL, '2025-09-08', '2025-09-09', 2, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(118, 14, NULL, '2025-09-11', '2025-09-15', 3, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(119, 14, NULL, '2025-09-15', '2025-09-15', 1, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(120, 14, 2, '2025-09-19', '2025-09-22', 2, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(121, 16, NULL, '2025-09-03', '2025-09-03', 1, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(122, 16, NULL, '2025-09-08', '2025-09-09', 2, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(123, 16, NULL, '2025-09-11', '2025-09-15', 3, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(124, 16, 2, '2025-09-15', '2025-09-15', 1, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(125, 16, NULL, '2025-09-19', '2025-09-22', 2, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(126, 18, NULL, '2025-09-03', '2025-09-03', 1, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(127, 18, NULL, '2025-09-08', '2025-09-09', 2, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(128, 18, NULL, '2025-09-11', '2025-09-15', 3, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(129, 18, NULL, '2025-09-15', '2025-09-15', 1, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(130, 18, NULL, '2025-09-19', '2025-09-22', 2, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(131, 20, NULL, '2025-09-03', '2025-09-03', 1, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(132, 20, NULL, '2025-09-08', '2025-09-09', 2, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(133, 20, NULL, '2025-09-11', '2025-09-15', 3, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(134, 20, NULL, '2025-09-15', '2025-09-15', 1, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(135, 20, NULL, '2025-09-19', '2025-09-22', 2, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(136, 22, NULL, '2025-09-03', '2025-09-03', 1, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(137, 22, NULL, '2025-09-08', '2025-09-09', 2, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(138, 22, NULL, '2025-09-11', '2025-09-15', 3, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(139, 22, NULL, '2025-09-15', '2025-09-15', 1, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(140, 22, NULL, '2025-09-19', '2025-09-22', 2, 'Wedding ceremony of close family member', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(141, 24, NULL, '2025-09-03', '2025-09-03', 1, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(142, 24, NULL, '2025-09-08', '2025-09-09', 2, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(143, 24, NULL, '2025-09-11', '2025-09-15', 3, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(144, 24, NULL, '2025-09-15', '2025-09-15', 1, 'Wedding ceremony of close family member', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(145, 24, NULL, '2025-09-19', '2025-09-22', 2, 'Child illness and need to provide care', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(146, 26, NULL, '2025-09-03', '2025-09-03', 1, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(147, 26, NULL, '2025-09-08', '2025-09-09', 2, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(148, 26, NULL, '2025-09-11', '2025-09-15', 3, 'Wedding ceremony of close family member', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(149, 26, NULL, '2025-09-15', '2025-09-15', 1, 'Child illness and need to provide care', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(150, 26, 2, '2025-09-19', '2025-09-22', 2, 'Home renovation work supervision required', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(151, 8, NULL, '2025-10-01', '2025-10-01', 1, 'Wedding ceremony of close family member', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(152, 8, NULL, '2025-10-06', '2025-10-07', 2, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(153, 8, NULL, '2025-10-09', '2025-10-13', 3, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(154, 8, NULL, '2025-10-13', '2025-10-13', 1, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(155, 8, NULL, '2025-10-17', '2025-10-20', 2, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(156, 10, NULL, '2025-10-01', '2025-10-01', 1, 'Child illness and need to provide care', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(157, 10, NULL, '2025-10-06', '2025-10-07', 2, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(158, 10, NULL, '2025-10-09', '2025-10-13', 3, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(159, 10, NULL, '2025-10-13', '2025-10-13', 1, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(160, 10, NULL, '2025-10-17', '2025-10-20', 2, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(161, 12, NULL, '2025-10-01', '2025-10-01', 1, 'Home renovation work supervision required', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(162, 12, NULL, '2025-10-06', '2025-10-07', 2, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(163, 12, NULL, '2025-10-09', '2025-10-13', 3, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(164, 12, NULL, '2025-10-13', '2025-10-13', 1, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(165, 12, NULL, '2025-10-17', '2025-10-20', 2, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(166, 14, NULL, '2025-10-01', '2025-10-01', 1, 'Educational course attendance and skill development', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(167, 14, NULL, '2025-10-06', '2025-10-07', 2, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(168, 14, NULL, '2025-10-09', '2025-10-13', 3, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(169, 14, NULL, '2025-10-13', '2025-10-13', 1, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(170, 14, 2, '2025-10-17', '2025-10-20', 2, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(171, 16, NULL, '2025-10-01', '2025-10-01', 1, 'Religious festival celebration with family', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(172, 16, NULL, '2025-10-06', '2025-10-07', 2, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(173, 16, NULL, '2025-10-09', '2025-10-13', 3, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(174, 16, 2, '2025-10-13', '2025-10-13', 1, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(175, 16, NULL, '2025-10-17', '2025-10-20', 2, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(176, 18, NULL, '2025-10-01', '2025-10-01', 1, 'Travel for family reunion and gathering', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(177, 18, NULL, '2025-10-06', '2025-10-07', 2, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(178, 18, NULL, '2025-10-09', '2025-10-13', 3, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(179, 18, NULL, '2025-10-13', '2025-10-13', 1, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(180, 18, NULL, '2025-10-17', '2025-10-20', 2, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(181, 20, NULL, '2025-10-01', '2025-10-01', 1, 'Mental health break and stress management', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(182, 20, NULL, '2025-10-06', '2025-10-07', 2, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(183, 20, NULL, '2025-10-09', '2025-10-13', 3, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(184, 20, NULL, '2025-10-13', '2025-10-13', 1, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(185, 20, NULL, '2025-10-17', '2025-10-20', 2, 'Wedding ceremony of close family member', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(186, 22, NULL, '2025-10-01', '2025-10-01', 1, 'Family emergency and need to attend to urgent matters', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(187, 22, NULL, '2025-10-06', '2025-10-07', 2, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(188, 22, NULL, '2025-10-09', '2025-10-13', 3, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(189, 22, NULL, '2025-10-13', '2025-10-13', 1, 'Wedding ceremony of close family member', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(190, 22, NULL, '2025-10-17', '2025-10-20', 2, 'Child illness and need to provide care', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(191, 24, NULL, '2025-10-01', '2025-10-01', 1, 'Medical appointment and health checkup scheduled', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(192, 24, NULL, '2025-10-06', '2025-10-07', 2, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(193, 24, NULL, '2025-10-09', '2025-10-13', 3, 'Wedding ceremony of close family member', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(194, 24, NULL, '2025-10-13', '2025-10-13', 1, 'Child illness and need to provide care', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(195, 24, NULL, '2025-10-17', '2025-10-20', 2, 'Home renovation work supervision required', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(196, 26, NULL, '2025-10-01', '2025-10-01', 1, 'Personal vacation and relaxation time needed', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(197, 26, NULL, '2025-10-06', '2025-10-07', 2, 'Wedding ceremony of close family member', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(198, 26, NULL, '2025-10-09', '2025-10-13', 3, 'Child illness and need to provide care', 'rejected', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(199, 26, NULL, '2025-10-13', '2025-10-13', 1, 'Home renovation work supervision required', 'pending', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(200, 26, 2, '2025-10-17', '2025-10-20', 2, 'Educational course attendance and skill development', 'approved', 'leave-application.png', NULL, NULL, NULL, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(201, 8, 2, '2026-04-07', '2026-04-07', 1, 'Test', 'pending', 'RyvoIvaHmhM2pEKE3qdye3iGBg26uhDGKGifeKgJ.pdf', NULL, NULL, NULL, 2, 2, '2026-04-06 03:52:58', '2026-04-06 03:52:58'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `leave_types` +-- + +CREATE TABLE `leave_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `description` longtext DEFAULT NULL, + `max_days_per_year` int(11) DEFAULT NULL, + `is_paid` tinyint(1) NOT NULL DEFAULT 0, + `color` varchar(7) NOT NULL DEFAULT '#FF6B6B', + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `leave_types` +-- + +INSERT INTO `leave_types` (`id`, `name`, `description`, `max_days_per_year`, `is_paid`, `color`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(2, 'Sick Leave', 'With pay if tagged as Sick Leave. Medical leave for illness or health-related issues.', 5, 1, '#EF4444', 2, 2, '2026-03-14 00:17:49', '2026-04-05 21:55:51'), +(13, 'Vacation Leave', NULL, 11, 1, '#FF6B6B', NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(14, 'Sick Leave', NULL, 11, 1, '#FF6B6B', NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(15, 'Birthday Leave', NULL, 1, 1, '#FF6B6B', NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(16, 'Leave Without Pay', NULL, 100, 0, '#FF6B6B', NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(17, 'Service Incentive Leave (SIL)', 'Employees with at least 1 year of service automatically receive or accrue SIL.', 5, 1, '#FF6B6B', 2, 2, '2026-04-05 21:51:38', '2026-04-05 21:51:38'), +(18, 'Maternity / Paternity Leave', 'System blocks standard work hours for those days and tags them appropriately for payroll integration.', 105, 1, '#FF6B6B', 2, 2, '2026-04-05 21:55:15', '2026-04-05 21:55:15'), +(19, 'Vacation Leave', 'With pay if tagged as Vacation Leave', 5, 1, '#FF6B6B', 2, 2, '2026-04-05 21:57:19', '2026-04-05 21:57:19'), +(20, 'Leave Without Pay', 'Same as absent. No pay will be credited if tagged as LWOP or no leave tagged at all.', 5, 0, '#FF6B6B', 2, 2, '2026-04-05 21:58:35', '2026-04-05 21:59:14'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `licenses` +-- + +CREATE TABLE `licenses` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `loans` +-- + +CREATE TABLE `loans` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(255) NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `loan_type_id` bigint(20) UNSIGNED NOT NULL, + `type` enum('fixed','percentage') NOT NULL, + `amount` decimal(10,2) NOT NULL, + `start_date` date NOT NULL, + `end_date` date NOT NULL, + `reason` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `loans` +-- + +INSERT INTO `loans` (`id`, `title`, `employee_id`, `loan_type_id`, `type`, `amount`, `start_date`, `end_date`, `reason`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Business Investment', 24, 2, 'fixed', 10000.00, '2026-02-15', '2027-04-15', 'Personal growth and development activities', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 'Personal Development', 24, 1, 'fixed', 10000.00, '2026-02-17', '2026-11-17', 'Medical treatment and healthcare expenses', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 'Vehicle Finance', 24, 7, 'percentage', 2.00, '2026-02-15', '2028-02-15', 'Medical treatment and healthcare expenses', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 'Family Support', 24, 4, 'fixed', 2000.00, '2026-02-13', '2027-12-13', 'Supporting family financial requirements', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 'Medical Emergency', 16, 4, 'fixed', 1000.00, '2026-03-09', '2027-07-09', 'Supporting family financial requirements', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 'Vehicle Finance', 16, 9, 'percentage', 4.00, '2026-03-02', '2026-11-02', 'Supporting family financial requirements', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 'Business Investment', 16, 1, 'fixed', 15000.00, '2026-02-19', '2027-09-19', 'Personal growth and development activities', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 'Emergency Fund Request', 16, 2, 'fixed', 5000.00, '2026-03-13', '2027-09-13', 'Investment in property purchase', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 'Home Purchase Loan', 10, 9, 'fixed', 5000.00, '2026-03-12', '2027-08-12', 'Personal growth and development activities', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 'Business Investment', 10, 5, 'fixed', 2000.00, '2026-03-06', '2027-09-06', 'Investment in property purchase', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 'Emergency Fund Request', 10, 3, 'fixed', 10000.00, '2026-02-14', '2026-12-14', 'Vehicle acquisition for transportation', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 'Family Support', 10, 2, 'percentage', 5.00, '2026-02-20', '2027-02-20', 'Vehicle acquisition for transportation', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 'Medical Emergency', 22, 2, 'percentage', 5.00, '2026-02-15', '2028-02-15', 'Vehicle acquisition for transportation', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 'Personal Development', 22, 5, 'percentage', 3.00, '2026-03-06', '2028-02-06', 'Required for urgent financial needs', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 'Family Support', 22, 10, 'fixed', 2000.00, '2026-03-06', '2026-11-06', 'Medical treatment and healthcare expenses', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 'Education Expenses', 22, 9, 'percentage', 2.00, '2026-03-02', '2027-04-02', 'Educational advancement and skill development', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 'Vehicle Finance', 26, 5, 'percentage', 10.00, '2026-03-10', '2027-09-10', 'Educational advancement and skill development', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 'Emergency Fund Request', 26, 1, 'percentage', 2.00, '2026-03-03', '2027-11-03', 'Business expansion and investment opportunities', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 'Medical Emergency', 26, 10, 'percentage', 5.00, '2026-02-16', '2027-01-16', 'Business expansion and investment opportunities', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 'Education Expenses', 26, 2, 'fixed', 10000.00, '2026-02-21', '2027-11-21', 'Business expansion and investment opportunities', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 'Family Support', 14, 2, 'fixed', 5000.00, '2026-02-27', '2026-08-27', 'Personal growth and development activities', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 'Home Purchase Loan', 14, 9, 'percentage', 5.00, '2026-03-11', '2027-11-11', 'Vehicle acquisition for transportation', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 'Personal Development', 14, 6, 'percentage', 3.00, '2026-03-04', '2028-03-04', 'Medical treatment and healthcare expenses', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 'Medical Emergency', 14, 1, 'percentage', 3.00, '2026-02-17', '2026-12-17', 'Business expansion and investment opportunities', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 'Personal Development', 20, 4, 'percentage', 5.00, '2026-02-15', '2027-08-15', 'Educational advancement and skill development', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 'Vehicle Finance', 20, 6, 'fixed', 1000.00, '2026-02-25', '2026-08-25', 'Educational advancement and skill development', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 'Vehicle Finance', 20, 8, 'fixed', 2000.00, '2026-03-11', '2028-02-11', 'Required for urgent financial needs', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 'Education Expenses', 20, 1, 'percentage', 5.00, '2026-03-07', '2027-06-07', 'Medical treatment and healthcare expenses', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(29, 'Business Investment', 8, 9, 'percentage', 2.00, '2026-02-24', '2027-02-24', 'Vehicle acquisition for transportation', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(30, 'Vehicle Finance', 8, 6, 'fixed', 1500.00, '2026-02-20', '2027-01-20', 'Medical treatment and healthcare expenses', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(31, 'Medical Emergency', 8, 8, 'fixed', 1000.00, '2026-03-13', '2026-11-13', 'Required for urgent financial needs', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(32, 'Emergency Fund Request', 8, 7, 'percentage', 10.00, '2026-03-07', '2026-10-07', 'Medical treatment and healthcare expenses', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(33, 'Business Investment', 18, 2, 'fixed', 2000.00, '2026-02-17', '2027-12-17', 'Medical treatment and healthcare expenses', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(34, 'Family Support', 18, 6, 'percentage', 3.00, '2026-02-14', '2027-02-14', 'Vehicle acquisition for transportation', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(35, 'Education Expenses', 18, 3, 'percentage', 5.00, '2026-02-19', '2027-01-19', 'Investment in property purchase', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(36, 'Personal Development', 18, 4, 'fixed', 1000.00, '2026-02-16', '2026-08-16', 'Supporting family financial requirements', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(37, 'Education Expenses', 12, 3, 'fixed', 2000.00, '2026-02-22', '2027-03-22', 'Medical treatment and healthcare expenses', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(38, 'Education Expenses', 12, 5, 'percentage', 3.00, '2026-03-12', '2027-02-12', 'Supporting family financial requirements', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(39, 'Business Investment', 12, 9, 'percentage', 10.00, '2026-03-05', '2027-02-05', 'Vehicle acquisition for transportation', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(40, 'Education Expenses', 12, 2, 'fixed', 5000.00, '2026-02-21', '2026-12-21', 'Educational advancement and skill development', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `loan_types` +-- + +CREATE TABLE `loan_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `description` longtext DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `loan_types` +-- + +INSERT INTO `loan_types` (`id`, `name`, `description`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Personal Loan', 'General purpose loan for personal financial needs and emergencies.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(2, 'Home Loan', 'Housing loan for purchasing or constructing residential property.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(3, 'Vehicle Loan', 'Loan for purchasing cars, motorcycles, or other vehicles.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(4, 'Education Loan', 'Educational loan for higher studies and professional courses.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(5, 'Medical Loan', 'Emergency loan for medical expenses and healthcare costs.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(6, 'Salary Advance', 'Short-term advance against future salary payments.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(7, 'Festival Advance', 'Seasonal advance for festival expenses and celebrations.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(8, 'Travel Loan', 'Loan for vacation, travel, and tourism expenses.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(9, 'Equipment Loan', 'Loan for purchasing work-related equipment and tools.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), +(10, 'Emergency Loan', 'Urgent financial assistance for unexpected emergencies.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `login_histories` +-- + +CREATE TABLE `login_histories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED DEFAULT NULL, + `ip` varchar(45) NOT NULL, + `date` date NOT NULL, + `details` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`details`)), + `type` varchar(50) NOT NULL DEFAULT 'login', + `created_by` bigint(20) 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 `login_histories` +-- + +INSERT INTO `login_histories` (`id`, `user_id`, `ip`, `date`, `details`, `type`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 8, '25.199.102.181', '2026-03-04', '{\"as\":\"Spinka Group\",\"isp\":\"Gutkowski LLC ISP\",\"lat\":78.958623,\"lon\":105.133315,\"org\":\"Mertz-Ortiz\",\"zip\":\"18480-9071\",\"city\":\"Tracemouth\",\"query\":\"25.199.102.181\",\"region\":\"North Carolina\",\"status\":\"success\",\"country\":\"Albania\",\"os_name\":\"Windows\",\"timezone\":\"Asia\\/Bishkek\",\"regionName\":\"New Hampshire\",\"countryCode\":\"CR\",\"device_type\":\"mobile\",\"browser_name\":\"Safari\",\"referrer_host\":\"von.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'staff', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(2, 9, '54.25.201.64', '2026-03-12', '{\"as\":\"Friesen PLC\",\"isp\":\"Leannon, Gaylord and Ryan ISP\",\"lat\":78.572532,\"lon\":110.311095,\"org\":\"McGlynn, Ruecker and Osinski\",\"zip\":\"90970\",\"city\":\"West Abdiel\",\"query\":\"54.25.201.64\",\"region\":\"Minnesota\",\"status\":\"success\",\"country\":\"Ghana\",\"os_name\":\"iOS\",\"timezone\":\"Asia\\/Tashkent\",\"regionName\":\"California\",\"countryCode\":\"CR\",\"device_type\":\"mobile\",\"browser_name\":\"Firefox\",\"referrer_host\":\"johns.net\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'client', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(3, 10, '73.198.232.221', '2026-03-02', '{\"as\":\"Bartell-Franecki\",\"isp\":\"Denesik-Hilpert ISP\",\"lat\":10.648735,\"lon\":-69.38038,\"org\":\"Rogahn, Gutkowski and Lang\",\"zip\":\"45826\",\"city\":\"Lake Mitchelbury\",\"query\":\"73.198.232.221\",\"region\":\"Missouri\",\"status\":\"success\",\"country\":\"Ecuador\",\"os_name\":\"macOS\",\"timezone\":\"America\\/Menominee\",\"regionName\":\"West Virginia\",\"countryCode\":\"MC\",\"device_type\":\"desktop\",\"browser_name\":\"Edge\",\"referrer_host\":\"okuneva.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'staff', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(4, 11, '40.128.18.41', '2026-03-10', '{\"as\":\"Beer, Grady and Ondricka\",\"isp\":\"Torp, Abshire and McClure ISP\",\"lat\":-45.689148,\"lon\":79.804017,\"org\":\"Jakubowski-Rodriguez\",\"zip\":\"61061\",\"city\":\"Wittingchester\",\"query\":\"40.128.18.41\",\"region\":\"Minnesota\",\"status\":\"success\",\"country\":\"Benin\",\"os_name\":\"Android\",\"timezone\":\"America\\/La_Paz\",\"regionName\":\"Utah\",\"countryCode\":\"FR\",\"device_type\":\"tablet\",\"browser_name\":\"Opera\",\"referrer_host\":\"feil.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'client', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(5, 12, '107.195.220.162', '2026-02-15', '{\"as\":\"Pouros PLC\",\"isp\":\"Kovacek-Runolfsdottir ISP\",\"lat\":77.775372,\"lon\":-123.910008,\"org\":\"Greenholt, Ferry and Thompson\",\"zip\":\"08288-8441\",\"city\":\"North Judahburgh\",\"query\":\"107.195.220.162\",\"region\":\"Nebraska\",\"status\":\"success\",\"country\":\"French Guiana\",\"os_name\":\"Windows\",\"timezone\":\"America\\/Rankin_Inlet\",\"regionName\":\"Mississippi\",\"countryCode\":\"LT\",\"device_type\":\"mobile\",\"browser_name\":\"Firefox\",\"referrer_host\":\"berge.biz\",\"referrer_path\":\"\\/login\",\"browser_language\":\"en\"}', 'staff', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(6, 13, '85.220.205.25', '2026-02-16', '{\"as\":\"Stehr Group\",\"isp\":\"Brekke-Koelpin ISP\",\"lat\":-12.424983,\"lon\":68.386738,\"org\":\"Hickle Inc\",\"zip\":\"09296\",\"city\":\"Javierville\",\"query\":\"85.220.205.25\",\"region\":\"Tennessee\",\"status\":\"success\",\"country\":\"Tuvalu\",\"os_name\":\"iOS\",\"timezone\":\"America\\/Campo_Grande\",\"regionName\":\"New Mexico\",\"countryCode\":\"TO\",\"device_type\":\"tablet\",\"browser_name\":\"Edge\",\"referrer_host\":\"buckridge.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'client', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(7, 14, '62.49.147.36', '2026-02-27', '{\"as\":\"Streich, Schneider and Rutherford\",\"isp\":\"Smitham and Sons ISP\",\"lat\":45.108138,\"lon\":-176.899023,\"org\":\"Labadie, Prohaska and Schroeder\",\"zip\":\"24458\",\"city\":\"Hilbertville\",\"query\":\"62.49.147.36\",\"region\":\"District of Columbia\",\"status\":\"success\",\"country\":\"Japan\",\"os_name\":\"macOS\",\"timezone\":\"America\\/Santiago\",\"regionName\":\"Wyoming\",\"countryCode\":\"CR\",\"device_type\":\"desktop\",\"browser_name\":\"Firefox\",\"referrer_host\":\"koelpin.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'staff', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(8, 15, '5.116.245.89', '2026-02-26', '{\"as\":\"Stiedemann, Beer and Olson\",\"isp\":\"Stark, Kunze and Balistreri ISP\",\"lat\":-86.839082,\"lon\":107.836585,\"org\":\"Koelpin-Cronin\",\"zip\":\"71163\",\"city\":\"East Amely\",\"query\":\"5.116.245.89\",\"region\":\"Louisiana\",\"status\":\"success\",\"country\":\"Bosnia and Herzegovina\",\"os_name\":\"macOS\",\"timezone\":\"America\\/Bahia_Banderas\",\"regionName\":\"Rhode Island\",\"countryCode\":\"AS\",\"device_type\":\"mobile\",\"browser_name\":\"Firefox\",\"referrer_host\":\"mccullough.net\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'client', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(9, 16, '104.212.91.144', '2026-03-03', '{\"as\":\"Abernathy-Schneider\",\"isp\":\"Konopelski-Kiehn ISP\",\"lat\":-26.09479,\"lon\":-118.894078,\"org\":\"Lubowitz Inc\",\"zip\":\"54791-3316\",\"city\":\"North Selinaberg\",\"query\":\"104.212.91.144\",\"region\":\"Wyoming\",\"status\":\"success\",\"country\":\"Wallis and Futuna\",\"os_name\":\"iOS\",\"timezone\":\"Asia\\/Qostanay\",\"regionName\":\"New Hampshire\",\"countryCode\":\"NF\",\"device_type\":\"desktop\",\"browser_name\":\"Opera\",\"referrer_host\":\"hayes.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'staff', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(10, 17, '153.21.248.179', '2026-03-05', '{\"as\":\"Oberbrunner, Harris and Nitzsche\",\"isp\":\"Greenfelder-Champlin ISP\",\"lat\":75.245242,\"lon\":127.033399,\"org\":\"Ledner PLC\",\"zip\":\"74874-4482\",\"city\":\"Hillberg\",\"query\":\"153.21.248.179\",\"region\":\"District of Columbia\",\"status\":\"success\",\"country\":\"Bahrain\",\"os_name\":\"macOS\",\"timezone\":\"Africa\\/Accra\",\"regionName\":\"Mississippi\",\"countryCode\":\"NL\",\"device_type\":\"tablet\",\"browser_name\":\"Firefox\",\"referrer_host\":\"armstrong.info\",\"referrer_path\":\"\\/login\",\"browser_language\":\"fr\"}', 'client', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(11, 18, '78.75.233.94', '2026-03-02', '{\"as\":\"White LLC\",\"isp\":\"Bauch Ltd ISP\",\"lat\":75.646038,\"lon\":-48.743803,\"org\":\"Wolff-Abshire\",\"zip\":\"96339-4412\",\"city\":\"East Isidro\",\"query\":\"78.75.233.94\",\"region\":\"Mississippi\",\"status\":\"success\",\"country\":\"Macao\",\"os_name\":\"Linux\",\"timezone\":\"Asia\\/Tomsk\",\"regionName\":\"Connecticut\",\"countryCode\":\"GD\",\"device_type\":\"desktop\",\"browser_name\":\"Edge\",\"referrer_host\":\"gulgowski.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"fr\"}', 'staff', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(12, 19, '139.147.74.192', '2026-02-24', '{\"as\":\"Jast, Brakus and Parker\",\"isp\":\"Koepp, Daugherty and Doyle ISP\",\"lat\":-85.061369,\"lon\":-31.483545,\"org\":\"Lockman Ltd\",\"zip\":\"28591-4812\",\"city\":\"South Kyler\",\"query\":\"139.147.74.192\",\"region\":\"New Mexico\",\"status\":\"success\",\"country\":\"Australia\",\"os_name\":\"macOS\",\"timezone\":\"Asia\\/Qyzylorda\",\"regionName\":\"New Mexico\",\"countryCode\":\"BW\",\"device_type\":\"tablet\",\"browser_name\":\"Safari\",\"referrer_host\":\"runolfsdottir.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'client', 2, '2026-03-14 00:17:47', '2026-03-14 00:17:47'), +(13, 20, '77.170.32.27', '2026-02-24', '{\"as\":\"Bosco LLC\",\"isp\":\"Wiegand, Romaguera and Hessel ISP\",\"lat\":-26.836977,\"lon\":74.741584,\"org\":\"McCullough-Franecki\",\"zip\":\"57262-6265\",\"city\":\"East Daisha\",\"query\":\"77.170.32.27\",\"region\":\"South Carolina\",\"status\":\"success\",\"country\":\"Brazil\",\"os_name\":\"Linux\",\"timezone\":\"Asia\\/Hebron\",\"regionName\":\"New Hampshire\",\"countryCode\":\"LS\",\"device_type\":\"mobile\",\"browser_name\":\"Chrome\",\"referrer_host\":\"oreilly.info\",\"referrer_path\":\"\\/login\",\"browser_language\":\"en\"}', 'staff', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 21, '148.36.255.145', '2026-02-17', '{\"as\":\"Johnson-Harber\",\"isp\":\"Conn-Reichert ISP\",\"lat\":-16.305681,\"lon\":26.507987,\"org\":\"Labadie Ltd\",\"zip\":\"86770\",\"city\":\"Corineberg\",\"query\":\"148.36.255.145\",\"region\":\"Ohio\",\"status\":\"success\",\"country\":\"Belgium\",\"os_name\":\"Android\",\"timezone\":\"Asia\\/Kolkata\",\"regionName\":\"Arkansas\",\"countryCode\":\"LI\",\"device_type\":\"desktop\",\"browser_name\":\"Chrome\",\"referrer_host\":\"schuppe.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, 22, '64.72.185.108', '2026-02-21', '{\"as\":\"Champlin, Bauch and Prosacco\",\"isp\":\"Lakin and Sons ISP\",\"lat\":-76.776662,\"lon\":37.235047,\"org\":\"Lynch PLC\",\"zip\":\"51026-0712\",\"city\":\"Cleoside\",\"query\":\"64.72.185.108\",\"region\":\"Massachusetts\",\"status\":\"success\",\"country\":\"Fiji\",\"os_name\":\"macOS\",\"timezone\":\"Europe\\/Sofia\",\"regionName\":\"New Mexico\",\"countryCode\":\"DE\",\"device_type\":\"mobile\",\"browser_name\":\"Edge\",\"referrer_host\":\"keeling.net\",\"referrer_path\":\"\\/login\",\"browser_language\":\"en\"}', 'staff', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(16, 23, '173.219.162.79', '2026-02-25', '{\"as\":\"Rice-Gerhold\",\"isp\":\"Kunze, McLaughlin and Hoppe ISP\",\"lat\":-87.889213,\"lon\":82.531756,\"org\":\"Haley, Koepp and Metz\",\"zip\":\"70898\",\"city\":\"Nolanton\",\"query\":\"173.219.162.79\",\"region\":\"Kentucky\",\"status\":\"success\",\"country\":\"Costa Rica\",\"os_name\":\"iOS\",\"timezone\":\"Pacific\\/Palau\",\"regionName\":\"New Jersey\",\"countryCode\":\"MN\",\"device_type\":\"tablet\",\"browser_name\":\"Chrome\",\"referrer_host\":\"altenwerth.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"fr\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(17, 24, '162.7.242.69', '2026-02-17', '{\"as\":\"Lueilwitz-Abbott\",\"isp\":\"Spinka PLC ISP\",\"lat\":26.011676,\"lon\":129.405593,\"org\":\"Koch-Ernser\",\"zip\":\"39463\",\"city\":\"East Allene\",\"query\":\"162.7.242.69\",\"region\":\"Hawaii\",\"status\":\"success\",\"country\":\"Iran\",\"os_name\":\"Windows\",\"timezone\":\"Africa\\/Gaborone\",\"regionName\":\"Arizona\",\"countryCode\":\"KN\",\"device_type\":\"mobile\",\"browser_name\":\"Edge\",\"referrer_host\":\"schulist.biz\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'staff', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(18, 25, '106.15.251.75', '2026-02-26', '{\"as\":\"Lesch Group\",\"isp\":\"Bergstrom, Jakubowski and Volkman ISP\",\"lat\":59.358789,\"lon\":75.589324,\"org\":\"Padberg, Pfannerstill and D\'Amore\",\"zip\":\"27983\",\"city\":\"Crookstown\",\"query\":\"106.15.251.75\",\"region\":\"North Carolina\",\"status\":\"success\",\"country\":\"Slovakia (Slovak Republic)\",\"os_name\":\"Linux\",\"timezone\":\"Europe\\/Samara\",\"regionName\":\"Wyoming\",\"countryCode\":\"UA\",\"device_type\":\"desktop\",\"browser_name\":\"Chrome\",\"referrer_host\":\"cummerata.org\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(19, 26, '86.83.83.252', '2026-03-06', '{\"as\":\"McLaughlin, Hartmann and Durgan\",\"isp\":\"Gaylord, Baumbach and Maggio ISP\",\"lat\":-59.088668,\"lon\":109.564424,\"org\":\"Lynch-Lemke\",\"zip\":\"46165\",\"city\":\"Abrahamside\",\"query\":\"86.83.83.252\",\"region\":\"Alaska\",\"status\":\"success\",\"country\":\"Costa Rica\",\"os_name\":\"Android\",\"timezone\":\"America\\/Halifax\",\"regionName\":\"Rhode Island\",\"countryCode\":\"DO\",\"device_type\":\"desktop\",\"browser_name\":\"Safari\",\"referrer_host\":\"mohr.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'staff', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(20, 27, '131.54.82.153', '2026-03-07', '{\"as\":\"Stehr-Ryan\",\"isp\":\"Schmeler Ltd ISP\",\"lat\":-13.280055,\"lon\":-76.29253,\"org\":\"Schultz LLC\",\"zip\":\"97060-9065\",\"city\":\"North Lavern\",\"query\":\"131.54.82.153\",\"region\":\"District of Columbia\",\"status\":\"success\",\"country\":\"Moldova\",\"os_name\":\"Linux\",\"timezone\":\"Asia\\/Dili\",\"regionName\":\"Maine\",\"countryCode\":\"GP\",\"device_type\":\"tablet\",\"browser_name\":\"Chrome\",\"referrer_host\":\"mueller.net\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(21, 28, '253.13.158.140', '2026-02-16', '{\"as\":\"Kohler and Sons\",\"isp\":\"Boehm, Goldner and Mitchell ISP\",\"lat\":13.848128,\"lon\":-153.518992,\"org\":\"Veum, Cruickshank and Deckow\",\"zip\":\"60331-2226\",\"city\":\"Robelport\",\"query\":\"253.13.158.140\",\"region\":\"South Dakota\",\"status\":\"success\",\"country\":\"Mayotte\",\"os_name\":\"macOS\",\"timezone\":\"America\\/Port_of_Spain\",\"regionName\":\"New Jersey\",\"countryCode\":\"BQ\",\"device_type\":\"tablet\",\"browser_name\":\"Safari\",\"referrer_host\":\"rempel.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(22, 29, '237.158.54.2', '2026-03-02', '{\"as\":\"Deckow LLC\",\"isp\":\"Stracke, Cruickshank and Lesch ISP\",\"lat\":-88.174915,\"lon\":126.147561,\"org\":\"Crooks-Kerluke\",\"zip\":\"78527-3390\",\"city\":\"South Roscoe\",\"query\":\"237.158.54.2\",\"region\":\"Georgia\",\"status\":\"success\",\"country\":\"Sao Tome and Principe\",\"os_name\":\"Linux\",\"timezone\":\"America\\/Monterrey\",\"regionName\":\"Vermont\",\"countryCode\":\"SG\",\"device_type\":\"mobile\",\"browser_name\":\"Firefox\",\"referrer_host\":\"heathcote.biz\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(23, 30, '27.238.210.65', '2026-02-27', '{\"as\":\"Schaefer, Heathcote and Cartwright\",\"isp\":\"Hamill-Donnelly ISP\",\"lat\":-20.341822,\"lon\":81.317997,\"org\":\"Hudson-Thiel\",\"zip\":\"69890\",\"city\":\"Lake Agustinville\",\"query\":\"27.238.210.65\",\"region\":\"Rhode Island\",\"status\":\"success\",\"country\":\"French Polynesia\",\"os_name\":\"Android\",\"timezone\":\"Asia\\/Tashkent\",\"regionName\":\"Michigan\",\"countryCode\":\"SB\",\"device_type\":\"desktop\",\"browser_name\":\"Opera\",\"referrer_host\":\"weissnat.net\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(24, 31, '202.240.189.20', '2026-02-18', '{\"as\":\"Kuhlman-Mante\",\"isp\":\"Goyette-Jakubowski ISP\",\"lat\":12.558855,\"lon\":-48.067034,\"org\":\"Schamberger, Johnston and O\'Conner\",\"zip\":\"85367-7489\",\"city\":\"West Caleighmouth\",\"query\":\"202.240.189.20\",\"region\":\"Indiana\",\"status\":\"success\",\"country\":\"Guernsey\",\"os_name\":\"Android\",\"timezone\":\"America\\/Blanc-Sablon\",\"regionName\":\"Arizona\",\"countryCode\":\"BQ\",\"device_type\":\"mobile\",\"browser_name\":\"Opera\",\"referrer_host\":\"lesch.org\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(25, 32, '1.206.46.166', '2026-02-18', '{\"as\":\"Rosenbaum-Aufderhar\",\"isp\":\"Littel LLC ISP\",\"lat\":-57.437836,\"lon\":-5.045339,\"org\":\"Koelpin-Mertz\",\"zip\":\"47502-7842\",\"city\":\"East Wilber\",\"query\":\"1.206.46.166\",\"region\":\"Wisconsin\",\"status\":\"success\",\"country\":\"French Polynesia\",\"os_name\":\"iOS\",\"timezone\":\"America\\/Cambridge_Bay\",\"regionName\":\"Wyoming\",\"countryCode\":\"WF\",\"device_type\":\"mobile\",\"browser_name\":\"Chrome\",\"referrer_host\":\"bartoletti.info\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(26, 33, '47.61.114.158', '2026-02-13', '{\"as\":\"Becker-Mitchell\",\"isp\":\"Kautzer-Ferry ISP\",\"lat\":50.954731,\"lon\":156.533371,\"org\":\"Emard Inc\",\"zip\":\"99512\",\"city\":\"Enosberg\",\"query\":\"47.61.114.158\",\"region\":\"Rhode Island\",\"status\":\"success\",\"country\":\"Congo\",\"os_name\":\"iOS\",\"timezone\":\"Europe\\/Helsinki\",\"regionName\":\"Tennessee\",\"countryCode\":\"CA\",\"device_type\":\"tablet\",\"browser_name\":\"Chrome\",\"referrer_host\":\"mitchell.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(27, 34, '34.122.75.178', '2026-02-20', '{\"as\":\"Lakin Inc\",\"isp\":\"O\'Keefe PLC ISP\",\"lat\":3.19604,\"lon\":130.03844,\"org\":\"Lind, Boyle and Kihn\",\"zip\":\"55702-4341\",\"city\":\"Spinkatown\",\"query\":\"34.122.75.178\",\"region\":\"Washington\",\"status\":\"success\",\"country\":\"Greenland\",\"os_name\":\"macOS\",\"timezone\":\"America\\/Cancun\",\"regionName\":\"Oklahoma\",\"countryCode\":\"SE\",\"device_type\":\"tablet\",\"browser_name\":\"Opera\",\"referrer_host\":\"champlin.info\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(28, 35, '188.1.244.254', '2026-02-25', '{\"as\":\"Kerluke and Sons\",\"isp\":\"Koss Group ISP\",\"lat\":14.855953,\"lon\":128.072312,\"org\":\"Wehner, Wuckert and Schimmel\",\"zip\":\"50085\",\"city\":\"Allieberg\",\"query\":\"188.1.244.254\",\"region\":\"Tennessee\",\"status\":\"success\",\"country\":\"French Polynesia\",\"os_name\":\"Android\",\"timezone\":\"America\\/Indiana\\/Marengo\",\"regionName\":\"Indiana\",\"countryCode\":\"GI\",\"device_type\":\"tablet\",\"browser_name\":\"Safari\",\"referrer_host\":\"smitham.info\",\"referrer_path\":\"\\/login\",\"browser_language\":\"fr\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(29, 36, '158.215.219.9', '2026-03-08', '{\"as\":\"Crist, Hartmann and Marks\",\"isp\":\"Brekke-Jerde ISP\",\"lat\":61.974164,\"lon\":48.354611,\"org\":\"Oberbrunner, Jaskolski and Bayer\",\"zip\":\"84019-4239\",\"city\":\"East Victoriafurt\",\"query\":\"158.215.219.9\",\"region\":\"New Hampshire\",\"status\":\"success\",\"country\":\"Luxembourg\",\"os_name\":\"Android\",\"timezone\":\"Africa\\/Monrovia\",\"regionName\":\"New Mexico\",\"countryCode\":\"PW\",\"device_type\":\"tablet\",\"browser_name\":\"Firefox\",\"referrer_host\":\"kuhic.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(30, 37, '229.80.76.217', '2026-03-06', '{\"as\":\"Hilpert and Sons\",\"isp\":\"Heidenreich, Schimmel and Glover ISP\",\"lat\":-78.420742,\"lon\":27.018048,\"org\":\"Bosco, Corwin and Schimmel\",\"zip\":\"90281\",\"city\":\"Rosenbaumview\",\"query\":\"229.80.76.217\",\"region\":\"Mississippi\",\"status\":\"success\",\"country\":\"Faroe Islands\",\"os_name\":\"macOS\",\"timezone\":\"America\\/Guayaquil\",\"regionName\":\"Oklahoma\",\"countryCode\":\"NA\",\"device_type\":\"tablet\",\"browser_name\":\"Chrome\",\"referrer_host\":\"grant.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(31, 38, '16.101.12.25', '2026-02-24', '{\"as\":\"Gislason, Bartoletti and Toy\",\"isp\":\"Predovic PLC ISP\",\"lat\":8.323011,\"lon\":-112.204462,\"org\":\"Labadie PLC\",\"zip\":\"87323\",\"city\":\"Macmouth\",\"query\":\"16.101.12.25\",\"region\":\"Idaho\",\"status\":\"success\",\"country\":\"Fiji\",\"os_name\":\"Windows\",\"timezone\":\"America\\/Adak\",\"regionName\":\"Vermont\",\"countryCode\":\"DO\",\"device_type\":\"desktop\",\"browser_name\":\"Firefox\",\"referrer_host\":\"rath.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"en\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(32, 39, '185.97.100.155', '2026-03-07', '{\"as\":\"Carter, Franecki and Christiansen\",\"isp\":\"Bednar-Beahan ISP\",\"lat\":-63.771058,\"lon\":25.345595,\"org\":\"Shields, Dietrich and Jerde\",\"zip\":\"99205\",\"city\":\"Walshbury\",\"query\":\"185.97.100.155\",\"region\":\"Alaska\",\"status\":\"success\",\"country\":\"Zimbabwe\",\"os_name\":\"macOS\",\"timezone\":\"Asia\\/Qyzylorda\",\"regionName\":\"Kentucky\",\"countryCode\":\"GR\",\"device_type\":\"mobile\",\"browser_name\":\"Opera\",\"referrer_host\":\"volkman.info\",\"referrer_path\":\"\\/login\",\"browser_language\":\"fr\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(33, 40, '64.81.137.170', '2026-02-25', '{\"as\":\"Willms-Hilpert\",\"isp\":\"Hilpert Ltd ISP\",\"lat\":-14.622603,\"lon\":-142.311637,\"org\":\"Schuster-White\",\"zip\":\"80265-7383\",\"city\":\"Port Maiafort\",\"query\":\"64.81.137.170\",\"region\":\"Missouri\",\"status\":\"success\",\"country\":\"Faroe Islands\",\"os_name\":\"Android\",\"timezone\":\"Africa\\/Asmara\",\"regionName\":\"Texas\",\"countryCode\":\"SA\",\"device_type\":\"desktop\",\"browser_name\":\"Edge\",\"referrer_host\":\"nienow.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(34, 41, '221.250.71.30', '2026-02-16', '{\"as\":\"Schamberger LLC\",\"isp\":\"Williamson PLC ISP\",\"lat\":35.230843,\"lon\":-177.043156,\"org\":\"Kautzer-Volkman\",\"zip\":\"79962-7310\",\"city\":\"North Amelieton\",\"query\":\"221.250.71.30\",\"region\":\"Vermont\",\"status\":\"success\",\"country\":\"Fiji\",\"os_name\":\"iOS\",\"timezone\":\"Asia\\/Damascus\",\"regionName\":\"West Virginia\",\"countryCode\":\"GY\",\"device_type\":\"desktop\",\"browser_name\":\"Chrome\",\"referrer_host\":\"marks.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(35, 42, '163.196.255.79', '2026-03-11', '{\"as\":\"Quigley-Buckridge\",\"isp\":\"Feil, Braun and Walter ISP\",\"lat\":-65.695967,\"lon\":49.694053,\"org\":\"Johnson-Towne\",\"zip\":\"21067-4059\",\"city\":\"Lake Tyrique\",\"query\":\"163.196.255.79\",\"region\":\"Indiana\",\"status\":\"success\",\"country\":\"Somalia\",\"os_name\":\"Linux\",\"timezone\":\"Europe\\/Zurich\",\"regionName\":\"New Hampshire\",\"countryCode\":\"VU\",\"device_type\":\"desktop\",\"browser_name\":\"Opera\",\"referrer_host\":\"ondricka.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'vendor', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(36, 43, '114.20.99.156', '2026-03-02', '{\"as\":\"Hoeger-Effertz\",\"isp\":\"Dickens, Brekke and Heidenreich ISP\",\"lat\":-36.256085,\"lon\":-97.086376,\"org\":\"Prosacco, Willms and Rice\",\"zip\":\"75180-5145\",\"city\":\"East Maidaborough\",\"query\":\"114.20.99.156\",\"region\":\"Illinois\",\"status\":\"success\",\"country\":\"Thailand\",\"os_name\":\"Windows\",\"timezone\":\"America\\/Paramaribo\",\"regionName\":\"Florida\",\"countryCode\":\"KM\",\"device_type\":\"tablet\",\"browser_name\":\"Firefox\",\"referrer_host\":\"runolfsson.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(37, 44, '100.254.77.37', '2026-02-18', '{\"as\":\"Hettinger-Cole\",\"isp\":\"Murazik, Huels and Ankunding ISP\",\"lat\":63.472511,\"lon\":-80.497536,\"org\":\"Denesik, Considine and Windler\",\"zip\":\"34340\",\"city\":\"Lake Lance\",\"query\":\"100.254.77.37\",\"region\":\"Delaware\",\"status\":\"success\",\"country\":\"Russian Federation\",\"os_name\":\"Android\",\"timezone\":\"Europe\\/Athens\",\"regionName\":\"Nebraska\",\"countryCode\":\"NU\",\"device_type\":\"tablet\",\"browser_name\":\"Safari\",\"referrer_host\":\"mann.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(38, 45, '140.237.164.226', '2026-02-17', '{\"as\":\"Dickens-Turcotte\",\"isp\":\"McGlynn Inc ISP\",\"lat\":-61.587304,\"lon\":-98.356257,\"org\":\"Balistreri-Denesik\",\"zip\":\"29267-6448\",\"city\":\"Hartmannland\",\"query\":\"140.237.164.226\",\"region\":\"Illinois\",\"status\":\"success\",\"country\":\"Albania\",\"os_name\":\"Android\",\"timezone\":\"Pacific\\/Noumea\",\"regionName\":\"Washington\",\"countryCode\":\"SB\",\"device_type\":\"tablet\",\"browser_name\":\"Safari\",\"referrer_host\":\"von.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(39, 46, '58.80.205.217', '2026-02-12', '{\"as\":\"Schinner Group\",\"isp\":\"Kuhic Group ISP\",\"lat\":46.095865,\"lon\":-66.008309,\"org\":\"Powlowski Inc\",\"zip\":\"75315-2699\",\"city\":\"New Kiaramouth\",\"query\":\"58.80.205.217\",\"region\":\"Massachusetts\",\"status\":\"success\",\"country\":\"Canada\",\"os_name\":\"Linux\",\"timezone\":\"Asia\\/Kuching\",\"regionName\":\"South Dakota\",\"countryCode\":\"TC\",\"device_type\":\"mobile\",\"browser_name\":\"Opera\",\"referrer_host\":\"steuber.net\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(40, 47, '172.16.15.9', '2026-02-12', '{\"as\":\"Feeney, Turcotte and Hyatt\",\"isp\":\"Walter, Dooley and Keeling ISP\",\"lat\":-34.757958,\"lon\":-128.801927,\"org\":\"Mitchell Ltd\",\"zip\":\"36134-6183\",\"city\":\"Williamsonside\",\"query\":\"172.16.15.9\",\"region\":\"Hawaii\",\"status\":\"success\",\"country\":\"Brunei Darussalam\",\"os_name\":\"Windows\",\"timezone\":\"America\\/St_Vincent\",\"regionName\":\"Oklahoma\",\"countryCode\":\"EG\",\"device_type\":\"tablet\",\"browser_name\":\"Chrome\",\"referrer_host\":\"mayer.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(41, 48, '208.214.219.14', '2026-02-16', '{\"as\":\"Nader Group\",\"isp\":\"Hegmann, Beier and Rosenbaum ISP\",\"lat\":17.978839,\"lon\":80.465362,\"org\":\"Glover LLC\",\"zip\":\"71324-2915\",\"city\":\"Port Kianmouth\",\"query\":\"208.214.219.14\",\"region\":\"Oregon\",\"status\":\"success\",\"country\":\"Chad\",\"os_name\":\"Windows\",\"timezone\":\"Africa\\/Asmara\",\"regionName\":\"South Carolina\",\"countryCode\":\"CM\",\"device_type\":\"tablet\",\"browser_name\":\"Safari\",\"referrer_host\":\"hamill.biz\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(42, 49, '90.117.7.197', '2026-03-05', '{\"as\":\"Steuber, O\'Conner and Weber\",\"isp\":\"Rogahn-Grady ISP\",\"lat\":-43.514273,\"lon\":-57.529795,\"org\":\"Johnson, Romaguera and Reichert\",\"zip\":\"79448\",\"city\":\"Lake Daishamouth\",\"query\":\"90.117.7.197\",\"region\":\"Iowa\",\"status\":\"success\",\"country\":\"Oman\",\"os_name\":\"iOS\",\"timezone\":\"Pacific\\/Midway\",\"regionName\":\"Idaho\",\"countryCode\":\"BE\",\"device_type\":\"tablet\",\"browser_name\":\"Edge\",\"referrer_host\":\"ebert.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"en\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(43, 50, '219.95.16.128', '2026-03-11', '{\"as\":\"Okuneva Inc\",\"isp\":\"O\'Connell, Boehm and Jast ISP\",\"lat\":-55.831022,\"lon\":100.955631,\"org\":\"Rowe, Okuneva and Wehner\",\"zip\":\"73879-9660\",\"city\":\"North Minervaborough\",\"query\":\"219.95.16.128\",\"region\":\"New York\",\"status\":\"success\",\"country\":\"Grenada\",\"os_name\":\"Windows\",\"timezone\":\"Asia\\/Chita\",\"regionName\":\"South Carolina\",\"countryCode\":\"KM\",\"device_type\":\"tablet\",\"browser_name\":\"Opera\",\"referrer_host\":\"kemmer.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(44, 51, '128.104.83.21', '2026-02-19', '{\"as\":\"Nikolaus-Hermann\",\"isp\":\"Welch Ltd ISP\",\"lat\":-51.547733,\"lon\":-1.979634,\"org\":\"Kshlerin-Donnelly\",\"zip\":\"83378\",\"city\":\"West Nayeli\",\"query\":\"128.104.83.21\",\"region\":\"Tennessee\",\"status\":\"success\",\"country\":\"Kuwait\",\"os_name\":\"iOS\",\"timezone\":\"America\\/North_Dakota\\/Center\",\"regionName\":\"Oklahoma\",\"countryCode\":\"RE\",\"device_type\":\"mobile\",\"browser_name\":\"Safari\",\"referrer_host\":\"keebler.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"de\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(45, 52, '200.176.171.243', '2026-03-03', '{\"as\":\"Jast-Carroll\",\"isp\":\"Hackett, Johnston and Thiel ISP\",\"lat\":-14.027708,\"lon\":32.509784,\"org\":\"Kling, Little and Abbott\",\"zip\":\"90782-7540\",\"city\":\"West Braxtonton\",\"query\":\"200.176.171.243\",\"region\":\"Alaska\",\"status\":\"success\",\"country\":\"Burundi\",\"os_name\":\"iOS\",\"timezone\":\"America\\/Port-au-Prince\",\"regionName\":\"Georgia\",\"countryCode\":\"IQ\",\"device_type\":\"mobile\",\"browser_name\":\"Firefox\",\"referrer_host\":\"hirthe.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(46, 53, '36.7.248.35', '2026-03-05', '{\"as\":\"Botsford-Beatty\",\"isp\":\"Jacobs Group ISP\",\"lat\":-35.664026,\"lon\":-74.356995,\"org\":\"Parisian and Sons\",\"zip\":\"05962-0255\",\"city\":\"Maggiofort\",\"query\":\"36.7.248.35\",\"region\":\"Louisiana\",\"status\":\"success\",\"country\":\"Singapore\",\"os_name\":\"Linux\",\"timezone\":\"Europe\\/Dublin\",\"regionName\":\"Nevada\",\"countryCode\":\"MW\",\"device_type\":\"tablet\",\"browser_name\":\"Chrome\",\"referrer_host\":\"morar.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"en\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(47, 54, '230.202.7.105', '2026-03-07', '{\"as\":\"Steuber, Reichert and Bechtelar\",\"isp\":\"Bartell-Hermiston ISP\",\"lat\":6.724043,\"lon\":-111.668096,\"org\":\"Jacobs-Kuhlman\",\"zip\":\"14828-8055\",\"city\":\"West Bennettchester\",\"query\":\"230.202.7.105\",\"region\":\"New Mexico\",\"status\":\"success\",\"country\":\"Reunion\",\"os_name\":\"Linux\",\"timezone\":\"Europe\\/Helsinki\",\"regionName\":\"Tennessee\",\"countryCode\":\"MA\",\"device_type\":\"tablet\",\"browser_name\":\"Safari\",\"referrer_host\":\"heaney.biz\",\"referrer_path\":\"\\/login\",\"browser_language\":\"es\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(48, 55, '248.252.96.212', '2026-02-27', '{\"as\":\"Nienow-Brown\",\"isp\":\"Ferry, Pouros and Howe ISP\",\"lat\":-62.589692,\"lon\":68.65358,\"org\":\"Murray, Hills and Kilback\",\"zip\":\"70244-6108\",\"city\":\"East Elyssa\",\"query\":\"248.252.96.212\",\"region\":\"Maryland\",\"status\":\"success\",\"country\":\"Czech Republic\",\"os_name\":\"Linux\",\"timezone\":\"Europe\\/Athens\",\"regionName\":\"Connecticut\",\"countryCode\":\"FO\",\"device_type\":\"mobile\",\"browser_name\":\"Edge\",\"referrer_host\":\"dubuque.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"it\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(49, 56, '51.246.29.79', '2026-02-16', '{\"as\":\"Torphy, Green and Feest\",\"isp\":\"Mitchell and Sons ISP\",\"lat\":86.902944,\"lon\":6.867418,\"org\":\"Lindgren Group\",\"zip\":\"68863-9616\",\"city\":\"Coymouth\",\"query\":\"51.246.29.79\",\"region\":\"Louisiana\",\"status\":\"success\",\"country\":\"Martinique\",\"os_name\":\"Linux\",\"timezone\":\"Pacific\\/Galapagos\",\"regionName\":\"Oklahoma\",\"countryCode\":\"PL\",\"device_type\":\"mobile\",\"browser_name\":\"Opera\",\"referrer_host\":\"blanda.biz\",\"referrer_path\":\"\\/login\",\"browser_language\":\"en\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(50, 57, '207.141.240.64', '2026-03-09', '{\"as\":\"Dicki PLC\",\"isp\":\"Zemlak-Stroman ISP\",\"lat\":45.956833,\"lon\":67.203955,\"org\":\"Schmidt, Leuschke and Casper\",\"zip\":\"15503-2096\",\"city\":\"Pearlieborough\",\"query\":\"207.141.240.64\",\"region\":\"Kansas\",\"status\":\"success\",\"country\":\"United Arab Emirates\",\"os_name\":\"Linux\",\"timezone\":\"America\\/Bogota\",\"regionName\":\"West Virginia\",\"countryCode\":\"CH\",\"device_type\":\"mobile\",\"browser_name\":\"Safari\",\"referrer_host\":\"reichert.com\",\"referrer_path\":\"\\/login\",\"browser_language\":\"en\"}', 'client', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(51, 2, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"work.test\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-03-14 05:59:24', '2026-03-14 05:59:24'), +(52, 1, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"work.test\",\"referrer_path\":\"\\/login\"}', 'superadmin', 1, '2026-03-14 05:59:38', '2026-03-14 05:59:38'), +(53, 2, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"work.test\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-14 06:01:58', '2026-03-14 06:01:58'), +(54, 2, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"work.test\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-03-14 06:16:30', '2026-03-14 06:16:30'), +(55, 1, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"work.test\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-03-14 09:48:54', '2026-03-14 09:48:54'), +(56, 2, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"work.test\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-14 09:49:19', '2026-03-14 09:49:19'), +(57, 2, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"work.test\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-03-14 09:54:08', '2026-03-14 09:54:08'), +(58, 1, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"work.test\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-03-14 11:43:21', '2026-03-14 11:43:21'), +(59, 2, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"work.test\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-14 11:43:38', '2026-03-14 11:43:38'), +(60, 1, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-03-14 19:52:38', '2026-03-14 19:52:38'), +(61, 2, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-14 19:52:55', '2026-03-14 19:52:55'), +(62, 1, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-03-14 19:56:19', '2026-03-14 19:56:19'), +(63, 2, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-14 19:56:44', '2026-03-14 19:56:44'), +(64, 1, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-03-14 20:00:18', '2026-03-14 20:00:18'), +(65, 2, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-14 20:03:43', '2026-03-14 20:03:43'), +(66, 2, '127.0.0.1', '2026-03-14', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/public\\/login\"}', 'company', 2, '2026-03-14 23:59:14', '2026-03-14 23:59:14'), +(67, 2, '127.0.0.1', '2026-03-16', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-16 12:30:15', '2026-03-16 12:30:15'), +(68, 2, '127.0.0.1', '2026-03-16', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Safari\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/public\\/login\"}', 'company', 2, '2026-03-16 13:38:25', '2026-03-16 13:38:25'), +(69, 2, '127.0.0.1', '2026-03-17', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-17 12:33:59', '2026-03-17 12:33:59'), +(70, 1, '127.0.0.1', '2026-03-17', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-03-17 12:36:18', '2026-03-17 12:36:18'), +(71, 2, '127.0.0.1', '2026-03-17', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-17 12:39:02', '2026-03-17 12:39:02'), +(72, 2, '127.0.0.1', '2026-03-17', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-03-17 21:36:19', '2026-03-17 21:36:19'), +(73, 1, '127.0.0.1', '2026-03-17', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-03-17 21:47:59', '2026-03-17 21:47:59'), +(74, 1, '127.0.0.1', '2026-03-17', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-03-17 21:51:15', '2026-03-17 21:51:15'), +(75, 1, '127.0.0.1', '2026-03-23', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-03-23 08:02:45', '2026-03-23 08:02:45'), +(76, 1, '127.0.0.1', '2026-03-24', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-03-24 22:51:02', '2026-03-24 22:51:02'), +(77, 2, '127.0.0.1', '2026-03-24', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-24 23:23:04', '2026-03-24 23:23:04'), +(78, 2, '127.0.0.1', '2026-03-25', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-25 08:43:21', '2026-03-25 08:43:21'), +(79, 1, '127.0.0.1', '2026-03-25', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-03-25 08:44:55', '2026-03-25 08:44:55'), +(80, 2, '127.0.0.1', '2026-03-25', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Safari\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-25 14:16:19', '2026-03-25 14:16:19'), +(81, 2, '127.0.0.1', '2026-03-25', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Safari\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-25 14:16:43', '2026-03-25 14:16:43'), +(82, 2, '127.0.0.1', '2026-03-26', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-26 11:00:11', '2026-03-26 11:00:11'), +(83, 58, '127.0.0.1', '2026-03-26', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Safari\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 58, '2026-03-26 11:35:54', '2026-03-26 11:35:54'), +(84, 2, '127.0.0.1', '2026-03-26', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-26 11:56:46', '2026-03-26 11:56:46'), +(85, 2, '127.0.0.1', '2026-03-26', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-26 13:56:11', '2026-03-26 13:56:11'); +INSERT INTO `login_histories` (`id`, `user_id`, `ip`, `date`, `details`, `type`, `created_by`, `created_at`, `updated_at`) VALUES +(86, 58, '127.0.0.1', '2026-03-26', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 58, '2026-03-26 13:56:34', '2026-03-26 13:56:34'), +(87, 2, '127.0.0.1', '2026-03-26', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-26 14:24:59', '2026-03-26 14:24:59'), +(88, 58, '127.0.0.1', '2026-03-26', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 58, '2026-03-26 14:25:18', '2026-03-26 14:25:18'), +(89, 2, '127.0.0.1', '2026-03-30', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-03-30 15:11:39', '2026-03-30 15:11:39'), +(90, 2, '127.0.0.1', '2026-03-30', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/public\\/login\"}', 'company', 2, '2026-03-30 19:12:24', '2026-03-30 19:12:24'), +(91, 2, '127.0.0.1', '2026-03-31', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-03-31 08:49:24', '2026-03-31 08:49:24'), +(92, 2, '127.0.0.1', '2026-03-31', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-03-31 19:45:27', '2026-03-31 19:45:27'), +(93, 2, '127.0.0.1', '2026-04-05', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Safari\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-05 15:41:24', '2026-04-05 15:41:24'), +(94, 2, '127.0.0.1', '2026-04-05', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-05 20:48:21', '2026-04-05 20:48:21'), +(95, 2, '127.0.0.1', '2026-04-05', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-05 20:54:46', '2026-04-05 20:54:46'), +(96, 2, '127.0.0.1', '2026-04-05', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-05 21:45:46', '2026-04-05 21:45:46'), +(97, 80, '127.0.0.1', '2026-04-05', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/login\"}', 'company', 80, '2026-04-05 22:11:16', '2026-04-05 22:11:16'), +(98, 2, '127.0.0.1', '2026-04-06', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-04-06 01:00:32', '2026-04-06 01:00:32'), +(99, 2, '127.0.0.1', '2026-04-06', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-04-06 03:34:51', '2026-04-06 03:34:51'), +(100, 2, '127.0.0.1', '2026-04-06', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-06 19:29:48', '2026-04-06 19:29:48'), +(101, 2, '127.0.0.1', '2026-04-06', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-04-06 19:32:57', '2026-04-06 19:32:57'), +(102, 2, '127.0.0.1', '2026-04-06', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-06 19:37:30', '2026-04-06 19:37:30'), +(103, 2, '127.0.0.1', '2026-04-07', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Safari\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/public\\/login\"}', 'company', 2, '2026-04-07 16:26:02', '2026-04-07 16:26:02'), +(104, 2, '127.0.0.1', '2026-04-08', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-04-08 10:11:21', '2026-04-08 10:11:21'), +(105, 2, '127.0.0.1', '2026-04-08', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-08 18:12:40', '2026-04-08 18:12:40'), +(106, 2, '127.0.0.1', '2026-04-08', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"www.nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-08 18:13:16', '2026-04-08 18:13:16'), +(107, 2, '127.0.0.1', '2026-04-08', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-08 20:45:24', '2026-04-08 20:45:24'), +(108, 2, '127.0.0.1', '2026-04-09', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"www.nnterp.com\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-04-09 09:12:20', '2026-04-09 09:12:20'), +(109, 2, '127.0.0.1', '2026-04-09', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"www.nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-09 09:59:08', '2026-04-09 09:59:08'), +(110, 2, '127.0.0.1', '2026-04-09', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"www.nnterp.com\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-04-09 17:30:27', '2026-04-09 17:30:27'), +(111, 1, '127.0.0.1', '2026-04-10', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Linux\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-04-10 16:56:03', '2026-04-10 16:56:03'), +(112, 2, '127.0.0.1', '2026-04-13', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-13 12:39:19', '2026-04-13 12:39:19'), +(113, 2, '127.0.0.1', '2026-04-13', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-13 22:39:04', '2026-04-13 22:39:04'), +(114, 2, '127.0.0.1', '2026-04-16', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"www.nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-16 15:05:46', '2026-04-16 15:05:46'), +(115, 2, '127.0.0.1', '2026-04-16', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Safari\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-16 22:42:57', '2026-04-16 22:42:57'), +(116, 2, '127.0.0.1', '2026-04-18', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-18 14:03:19', '2026-04-18 14:03:19'), +(117, 1, '127.0.0.1', '2026-04-20', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Linux\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"www.nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-04-20 19:16:58', '2026-04-20 19:16:58'), +(118, 2, '127.0.0.1', '2026-04-23', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-23 07:15:25', '2026-04-23 07:15:25'), +(119, 2, '127.0.0.1', '2026-04-23', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-23 14:07:09', '2026-04-23 14:07:09'), +(120, 2, '127.0.0.1', '2026-04-23', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-23 14:38:34', '2026-04-23 14:38:34'), +(121, 1, '127.0.0.1', '2026-04-23', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-04-23 14:38:52', '2026-04-23 14:38:52'), +(122, 2, '127.0.0.1', '2026-04-23', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-23 14:54:34', '2026-04-23 14:54:34'), +(123, 2, '127.0.0.1', '2026-04-23', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/login\"}', 'company', 2, '2026-04-23 17:34:18', '2026-04-23 17:34:18'), +(124, 2, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-27 14:32:59', '2026-04-27 14:32:59'), +(125, 1, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-04-27 14:33:26', '2026-04-27 14:33:26'), +(126, 2, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-27 14:34:02', '2026-04-27 14:34:02'), +(127, 1, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-04-27 14:38:49', '2026-04-27 14:38:49'), +(128, 2, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-27 14:43:03', '2026-04-27 14:43:03'), +(129, 2, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/public\\/login\"}', 'company', 2, '2026-04-27 14:43:07', '2026-04-27 14:43:07'), +(130, 1, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-04-27 14:43:21', '2026-04-27 14:43:21'), +(131, 2, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-27 14:43:42', '2026-04-27 14:43:42'), +(132, 1, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-04-27 14:43:58', '2026-04-27 14:43:58'), +(133, 2, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-27 14:44:27', '2026-04-27 14:44:27'), +(134, 1, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-04-27 14:44:43', '2026-04-27 14:44:43'), +(135, 2, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-27 14:46:02', '2026-04-27 14:46:02'), +(136, 1, '127.0.0.1', '2026-04-27', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'superadmin', 1, '2026-04-27 14:46:53', '2026-04-27 14:46:53'), +(137, 2, '127.0.0.1', '2026-04-28', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-28 18:46:09', '2026-04-28 18:46:09'), +(138, 2, '127.0.0.1', '2026-04-28', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-04-28 23:21:08', '2026-04-28 23:21:08'), +(139, 2, '127.0.0.1', '2026-05-01', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Unknown\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-05-01 12:59:22', '2026-05-01 12:59:22'), +(140, 2, '127.0.0.1', '2026-05-01', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Unknown\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-05-01 13:02:57', '2026-05-01 13:02:57'), +(141, 2, '127.0.0.1', '2026-05-01', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Safari\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-05-01 13:05:09', '2026-05-01 13:05:09'), +(142, 2, '127.0.0.1', '2026-05-01', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Safari\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-05-01 16:56:53', '2026-05-01 16:56:53'), +(143, 2, '127.0.0.1', '2026-05-01', '{\"country\":null,\"countryCode\":null,\"region\":null,\"regionName\":null,\"city\":null,\"zip\":null,\"lat\":null,\"lon\":null,\"timezone\":null,\"isp\":null,\"org\":null,\"as\":null,\"query\":\"127.0.0.1\",\"browser_name\":\"Chrome\",\"os_name\":\"macOS\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"status\":\"success\",\"referrer_host\":\"nnterp.com\",\"referrer_path\":\"\\/\"}', 'company', 2, '2026-05-01 21:49:58', '2026-05-01 21:49:58'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `maintenances` +-- + +CREATE TABLE `maintenances` ( + `id` bigint(20) UNSIGNED NOT NULL, + `service_type` varchar(255) NOT NULL, + `service_for` int(11) NOT NULL, + `vehicle_name` int(11) NOT NULL, + `maintenance_type` int(11) NOT NULL, + `service_name` varchar(255) NOT NULL, + `charge` varchar(255) NOT NULL, + `charge_bear_by` varchar(255) NOT NULL, + `maintenance_date` date NOT NULL, + `priority` varchar(255) NOT NULL, + `total_cost` int(11) NOT NULL, + `notes` longtext DEFAULT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `maintenance_types` +-- + +CREATE TABLE `maintenance_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `marketplace_settings` +-- + +CREATE TABLE `marketplace_settings` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(255) NOT NULL DEFAULT 'Marketplace', + `subtitle` text DEFAULT NULL, + `module` varchar(255) DEFAULT NULL, + `config_sections` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`config_sections`)), + `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 `marketplace_settings` +-- + +INSERT INTO `marketplace_settings` (`id`, `title`, `subtitle`, `module`, `config_sections`, `created_at`, `updated_at`) VALUES +(1, 'Taskly Module Marketplace', 'Comprehensive project and task management tools for your applications', 'Taskly', '{\"sections\":{\"hero\":{\"variant\":\"hero1\",\"title\":\"Taskly Module for WorkDo Dash\",\"subtitle\":\"Streamline your project management workflow with comprehensive task tracking, bug management, and team collaboration tools.\",\"primary_button_text\":\"Install Taskly Module\",\"primary_button_link\":\"#install\",\"secondary_button_text\":\"Learn More\",\"secondary_button_link\":\"#learn\",\"image\":\"\\/packages\\/workdo\\/Taskly\\/src\\/marketplace\\/hero.png\"},\"modules\":{\"variant\":\"modules1\",\"title\":\"Taskly Module\",\"subtitle\":\"Enhance your workflow with powerful project management tools\"},\"dedication\":{\"variant\":\"dedication1\",\"title\":\"Dedicated Taskly Features\",\"description\":\"Our taskly module provides comprehensive project management capabilities for modern teams.\",\"subSections\":[{\"title\":\"Project & Task Management\",\"description\":\"Complete project lifecycle management with milestone tracking, task assignments, and progress monitoring. Create projects, assign team members and clients, organize tasks with custom stages, and track progress with Kanban boards and calendar views.\",\"keyPoints\":[\"Project creation and tracking\",\"Milestone management\",\"Task stages and Kanban boards\",\"Team member and client assignment\"],\"screenshot\":\"\\/packages\\/workdo\\/Taskly\\/src\\/marketplace\\/image1.png\"},{\"title\":\"Bug Tracking & Resolution\",\"description\":\"Comprehensive bug tracking system with custom stages, priority management, and team collaboration. Report bugs, assign to team members, track resolution progress, and maintain detailed bug history with comments and status updates.\",\"keyPoints\":[\"Bug reporting and tracking\",\"Custom bug stages\",\"Priority and status management\",\"Bug comments and collaboration\"],\"screenshot\":\"\\/packages\\/workdo\\/Taskly\\/src\\/marketplace\\/image2.png\"},{\"title\":\"Team Collaboration & Reporting\",\"description\":\"Enhanced team collaboration with activity logs, file sharing, and comprehensive project reports. Track all project activities, share files, manage subtasks, and generate detailed reports on project progress, task completion, and team performance.\",\"keyPoints\":[\"Activity log tracking\",\"File management system\",\"Task subtasks and comments\",\"Comprehensive project reports\"],\"screenshot\":\"\\/packages\\/workdo\\/Taskly\\/src\\/marketplace\\/image3.png\"}]},\"screenshots\":{\"variant\":\"screenshots1\",\"title\":\"Taskly Module in Action\",\"subtitle\":\"See how our project management tools improve your workflow\",\"images\":[\"\\/packages\\/workdo\\/Taskly\\/src\\/marketplace\\/hero.png\",\"\\/packages\\/workdo\\/Taskly\\/src\\/marketplace\\/image1.png\",\"\\/packages\\/workdo\\/Taskly\\/src\\/marketplace\\/image2.png\",\"\\/packages\\/workdo\\/Taskly\\/src\\/marketplace\\/image3.png\",\"\\/packages\\/workdo\\/Taskly\\/src\\/marketplace\\/image4.png\",\"\\/packages\\/workdo\\/Taskly\\/src\\/marketplace\\/image5.png\",\"\\/packages\\/workdo\\/Taskly\\/src\\/marketplace\\/image6.png\"]},\"why_choose\":{\"variant\":\"whychoose1\",\"title\":\"Why Choose Taskly Module?\",\"subtitle\":\"Improve efficiency with comprehensive project management\",\"benefits\":[{\"title\":\"Complete Project Management\",\"description\":\"Manage projects from start to finish with milestones, tasks, and team collaboration in one place.\",\"icon\":\"FolderKanban\",\"color\":\"blue\"},{\"title\":\"Kanban & Calendar Views\",\"description\":\"Visualize tasks and bugs with intuitive Kanban boards and calendar views for better planning.\",\"icon\":\"LayoutGrid\",\"color\":\"green\"},{\"title\":\"Bug Tracking System\",\"description\":\"Track and resolve bugs efficiently with custom stages, priorities, and team collaboration.\",\"icon\":\"Bug\",\"color\":\"purple\"},{\"title\":\"Team Collaboration\",\"description\":\"Collaborate with team members and clients through comments, file sharing, and activity tracking.\",\"icon\":\"Users\",\"color\":\"red\"},{\"title\":\"Detailed Reporting\",\"description\":\"Generate comprehensive reports on project progress, task completion, and team performance.\",\"icon\":\"BarChart\",\"color\":\"yellow\"},{\"title\":\"Customizable Stages\",\"description\":\"Create custom task and bug stages to match your workflow and project requirements.\",\"icon\":\"Settings\",\"color\":\"indigo\"}]}},\"section_visibility\":{\"header\":true,\"hero\":true,\"modules\":true,\"dedication\":true,\"screenshots\":true,\"why_choose\":true,\"cta\":true,\"footer\":true},\"section_order\":[\"header\",\"hero\",\"modules\",\"dedication\",\"screenshots\",\"why_choose\",\"cta\",\"footer\"]}', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(2, 'Account Module Marketplace', 'Comprehensive accounting and financial management tools for your business', 'Account', '{\"sections\":{\"hero\":{\"variant\":\"hero1\",\"title\":\"Account Module for WorkDo Dash\",\"subtitle\":\"Complete accounting solution with chart of accounts, bank management, revenue & expense tracking, and comprehensive financial reporting.\",\"primary_button_text\":\"Install Account Module\",\"primary_button_link\":\"#install\",\"secondary_button_text\":\"Learn More\",\"secondary_button_link\":\"#learn\",\"image\":\"\\/packages\\/workdo\\/Account\\/src\\/marketplace\\/hero.png\"},\"modules\":{\"variant\":\"modules1\",\"title\":\"Account Module\",\"subtitle\":\"Enhance your business with powerful accounting tools\"},\"dedication\":{\"variant\":\"dedication1\",\"title\":\"Dedicated Account Features\",\"description\":\"Our account module provides comprehensive financial management capabilities for modern businesses.\",\"subSections\":[{\"title\":\"Chart of Accounts & Banking\",\"description\":\"Complete chart of accounts management with account types, categories, and opening balances. Manage multiple bank accounts, track transactions, process transfers, and maintain accurate financial records with automated journal entries.\",\"keyPoints\":[\"Chart of accounts setup\",\"Multiple bank accounts\",\"Bank transfers and transactions\",\"Automated journal entries\"],\"screenshot\":\"\\/packages\\/workdo\\/Account\\/src\\/marketplace\\/image1.png\"},{\"title\":\"Revenue & Expense Management\",\"description\":\"Track all revenues and expenses with category-based organization and approval workflows. Create revenue and expense entries, categorize transactions, manage approval processes, and post entries to maintain accurate financial records.\",\"keyPoints\":[\"Revenue tracking and posting\",\"Expense management\",\"Category-based organization\",\"Approval workflows\"],\"screenshot\":\"\\/packages\\/workdo\\/Account\\/src\\/marketplace\\/image2.png\"},{\"title\":\"Vendor & Customer Management\",\"description\":\"Comprehensive vendor and customer management with payment tracking, credit\\/debit notes, and payment allocations. Manage vendor payments, customer payments, create credit and debit notes, and track payment allocations for accurate receivables and payables.\",\"keyPoints\":[\"Vendor and customer records\",\"Payment tracking\",\"Credit and debit notes\",\"Payment allocations\"],\"screenshot\":\"\\/packages\\/workdo\\/Account\\/src\\/marketplace\\/image3.png\"}]},\"screenshots\":{\"variant\":\"screenshots1\",\"title\":\"Account Module in Action\",\"subtitle\":\"See how our accounting tools improve your financial management\",\"images\":[\"\\/packages\\/workdo\\/Account\\/src\\/marketplace\\/hero.png\",\"\\/packages\\/workdo\\/Account\\/src\\/marketplace\\/image1.png\",\"\\/packages\\/workdo\\/Account\\/src\\/marketplace\\/image2.png\",\"\\/packages\\/workdo\\/Account\\/src\\/marketplace\\/image3.png\",\"\\/packages\\/workdo\\/Account\\/src\\/marketplace\\/image4.png\",\"\\/packages\\/workdo\\/Account\\/src\\/marketplace\\/image5.png\"]},\"why_choose\":{\"variant\":\"whychoose1\",\"title\":\"Why Choose Account Module?\",\"subtitle\":\"Improve efficiency with comprehensive accounting management\",\"benefits\":[{\"title\":\"Complete Chart of Accounts\",\"description\":\"Manage your complete chart of accounts with account types, categories, and opening balances for accurate financial tracking.\",\"icon\":\"BookOpen\",\"color\":\"blue\"},{\"title\":\"Bank Account Management\",\"description\":\"Track multiple bank accounts, process transfers, and manage transactions with automated reconciliation.\",\"icon\":\"Building2\",\"color\":\"green\"},{\"title\":\"Revenue & Expense Tracking\",\"description\":\"Track all revenues and expenses with category-based organization and approval workflows for accurate financial records.\",\"icon\":\"TrendingUp\",\"color\":\"purple\"},{\"title\":\"Vendor & Customer Management\",\"description\":\"Manage vendors and customers with payment tracking, credit\\/debit notes, and payment allocations.\",\"icon\":\"Users\",\"color\":\"red\"},{\"title\":\"Financial Reporting\",\"description\":\"Generate comprehensive financial reports including income statements, aging reports, and tax summaries.\",\"icon\":\"FileText\",\"color\":\"yellow\"},{\"title\":\"Journal Entry System\",\"description\":\"Automated journal entry creation for all transactions with detailed tracking and audit trails.\",\"icon\":\"FileEdit\",\"color\":\"indigo\"}]}},\"section_visibility\":{\"header\":true,\"hero\":true,\"modules\":true,\"dedication\":true,\"screenshots\":true,\"why_choose\":true,\"cta\":true,\"footer\":true},\"section_order\":[\"header\",\"hero\",\"modules\",\"dedication\",\"screenshots\",\"why_choose\",\"cta\",\"footer\"]}', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(3, 'Hrm Module Marketplace', 'Comprehensive hrm tools for your applications', 'Hrm', '{\"sections\":{\"hero\":{\"variant\":\"hero1\",\"title\":\"Hrm Module for WorkDo Dash\",\"subtitle\":\"Streamline your hrm workflow with comprehensive tools and automated management.\",\"primary_button_text\":\"Install Hrm Module\",\"primary_button_link\":\"#install\",\"secondary_button_text\":\"Learn More\",\"secondary_button_link\":\"#learn\",\"image\":\"\\/packages\\/workdo\\/Hrm\\/src\\/marketplace\\/hero.png\"},\"modules\":{\"variant\":\"modules1\",\"title\":\"Hrm Module\",\"subtitle\":\"Enhance your workflow with powerful hrm tools\"},\"dedication\":{\"variant\":\"dedication1\",\"title\":\"Dedicated HRM Features\",\"description\":\"Our HRM module provides comprehensive human resource management capabilities for modern organizations.\",\"subSections\":[{\"title\":\"Employee Management\",\"description\":\"Complete employee lifecycle management from onboarding to offboarding with detailed profiles and documentation.\",\"keyPoints\":[\"Employee Profiles\",\"Document Management\",\"Role Assignment\",\"Performance Tracking\"],\"screenshot\":\"\\/packages\\/workdo\\/Hrm\\/src\\/marketplace\\/image1.png\"},{\"title\":\"Attendance & Leave Management\",\"description\":\"Automated attendance tracking with comprehensive leave management system and policy enforcement.\",\"keyPoints\":[\"Time Tracking\",\"Leave Requests\",\"Policy Management\",\"Automated Approvals\"],\"screenshot\":\"\\/packages\\/workdo\\/Hrm\\/src\\/marketplace\\/image2.png\"},{\"title\":\"Payroll & Benefits\",\"description\":\"Streamlined payroll processing with tax calculations, benefits management, and compliance reporting.\",\"keyPoints\":[\"Salary Processing\",\"Tax Calculations\",\"Benefits Tracking\",\"Compliance Reports\"],\"screenshot\":\"\\/packages\\/workdo\\/Hrm\\/src\\/marketplace\\/image3.png\"},{\"title\":\"Performance & Training\",\"description\":\"Comprehensive performance evaluation system with training management and skill development tracking.\",\"keyPoints\":[\"Performance Reviews\",\"Goal Setting\",\"Training Programs\",\"Skill Assessment\"],\"screenshot\":\"\\/packages\\/workdo\\/Hrm\\/src\\/marketplace\\/image4.png\"}]},\"screenshots\":{\"variant\":\"screenshots1\",\"title\":\"Hrm Module in Action\",\"subtitle\":\"See how our hrm tools improve your workflow\",\"images\":[\"\\/packages\\/workdo\\/Hrm\\/src\\/marketplace\\/hero.png\",\"\\/packages\\/workdo\\/Hrm\\/src\\/marketplace\\/image1.png\",\"\\/packages\\/workdo\\/Hrm\\/src\\/marketplace\\/image2.png\",\"\\/packages\\/workdo\\/Hrm\\/src\\/marketplace\\/image3.png\",\"\\/packages\\/workdo\\/Hrm\\/src\\/marketplace\\/image4.png\"]},\"why_choose\":{\"variant\":\"whychoose1\",\"title\":\"Why Choose HRM Module?\",\"subtitle\":\"Transform your human resource management with powerful automation and insights\",\"benefits\":[{\"title\":\"Real-time Analytics\",\"description\":\"Get comprehensive HR analytics and insights for data-driven decision making.\",\"icon\":\"BarChart3\",\"color\":\"green\"},{\"title\":\"Employee Portal\",\"description\":\"Empower employees with self-service portals for leave requests, profile updates, and more.\",\"icon\":\"UserCheck\",\"color\":\"purple\"},{\"title\":\"Digital Payslip Generation\",\"description\":\"Generate and distribute digital payslips with detailed salary breakdowns and tax deductions.\",\"icon\":\"Receipt\",\"color\":\"blue\"},{\"title\":\"Compliance Management\",\"description\":\"Ensure regulatory compliance with automated reporting and policy enforcement.\",\"icon\":\"Shield\",\"color\":\"red\"},{\"title\":\"Document Management\",\"description\":\"Centralized document storage with version control and secure access management.\",\"icon\":\"FileText\",\"color\":\"yellow\"},{\"title\":\"Payroll Integration\",\"description\":\"Seamlessly integrate with payroll systems for accurate and timely salary processing.\",\"icon\":\"CreditCard\",\"color\":\"indigo\"}]}},\"section_visibility\":{\"header\":true,\"hero\":true,\"modules\":true,\"dedication\":true,\"screenshots\":true,\"why_choose\":true,\"cta\":true,\"footer\":true},\"section_order\":[\"header\",\"hero\",\"modules\",\"dedication\",\"screenshots\",\"why_choose\",\"cta\",\"footer\"]}', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(4, 'Pos Module Marketplace', 'Comprehensive pos tools for your applications', 'Pos', '{\"sections\":{\"hero\":{\"variant\":\"hero1\",\"title\":\"Pos Module for WorkDo Dash\",\"subtitle\":\"Streamline your pos workflow with comprehensive tools and automated management.\",\"primary_button_text\":\"Install Pos Module\",\"primary_button_link\":\"#install\",\"secondary_button_text\":\"Learn More\",\"secondary_button_link\":\"#learn\",\"image\":\"\\/packages\\/workdo\\/Pos\\/src\\/marketplace\\/hero.png\"},\"modules\":{\"variant\":\"modules1\",\"title\":\"Pos Module\",\"subtitle\":\"Enhance your workflow with powerful pos tools\"},\"dedication\":{\"variant\":\"dedication1\",\"title\":\"Dedicated POS Features\",\"description\":\"Our POS module provides comprehensive point-of-sale capabilities for modern retail operations.\",\"subSections\":[{\"title\":\"Smart POS Sales Management\",\"description\":\"Create and manage point-of-sale transactions with automated sale numbering, customer selection, and warehouse integration. Process sales with real-time inventory checking, product selection by category, and comprehensive tax calculations. Track all sales with detailed item information, quantities, pricing, and payment processing for complete transaction management.\",\"keyPoints\":[\"Automated POS sale numbering with #POS format\",\"Real-time inventory checking and stock management\",\"Category-based product selection and filtering\",\"Comprehensive tax calculation and payment processing\"],\"screenshot\":\"\\/packages\\/workdo\\/Pos\\/src\\/marketplace\\/image1.png\"},{\"title\":\"Advanced Product & Inventory Control\",\"description\":\"Manage products with warehouse-specific stock levels, category organization, and dynamic pricing. Access real-time product information including SKU, sale prices, stock quantities, and tax configurations. Filter products by categories and warehouses while maintaining accurate inventory levels with automatic stock updates during sales transactions.\",\"keyPoints\":[\"Warehouse-specific stock level management\",\"Category-based product organization and filtering\",\"Dynamic pricing with tax configuration support\",\"Real-time inventory updates during transactions\"],\"screenshot\":\"\\/packages\\/workdo\\/Pos\\/src\\/marketplace\\/image2.png\"},{\"title\":\"Barcode Generation & Receipt Management\",\"description\":\"Generate professional barcodes for products with customizable copy quantities and warehouse selection. Print detailed receipts with complete transaction information, customer details, itemized listings, tax breakdowns, and discount applications. Manage receipt printing with professional formatting for customer records and business documentation.\",\"keyPoints\":[\"Professional barcode generation with copy control\",\"Detailed receipt printing with transaction breakdown\",\"Customer information and itemized product listings\",\"Tax calculations and discount application tracking\"],\"screenshot\":\"\\/packages\\/workdo\\/Pos\\/src\\/marketplace\\/image3.png\"},{\"title\":\"Sales Order Tracking & Management\",\"description\":\"Monitor and manage all POS sales orders with comprehensive filtering and search capabilities. Track sales by customer, warehouse, and date ranges with detailed order information including item counts, totals, and payment status. Access complete sales history with sorting options and pagination for efficient order management and customer service.\",\"keyPoints\":[\"Comprehensive sales order filtering and search\",\"Customer and warehouse-based order tracking\",\"Detailed order history with payment status\",\"Efficient pagination and sorting capabilities\"],\"screenshot\":\"\\/packages\\/workdo\\/Pos\\/src\\/marketplace\\/image4.png\"}]},\"screenshots\":{\"variant\":\"screenshots1\",\"title\":\"Pos Module in Action\",\"subtitle\":\"See how our pos tools improve your workflow\",\"images\":[\"\\/packages\\/workdo\\/Pos\\/src\\/marketplace\\/hero.png\",\"\\/packages\\/workdo\\/Pos\\/src\\/marketplace\\/image1.png\",\"\\/packages\\/workdo\\/Pos\\/src\\/marketplace\\/image2.png\",\"\\/packages\\/workdo\\/Pos\\/src\\/marketplace\\/image3.png\",\"\\/packages\\/workdo\\/Pos\\/src\\/marketplace\\/image4.png\",\"\\/packages\\/workdo\\/Pos\\/src\\/marketplace\\/image5.png\"]},\"why_choose\":{\"variant\":\"whychoose1\",\"title\":\"Why Choose POS Module?\",\"subtitle\":\"Improve efficiency with comprehensive point-of-sale management\",\"benefits\":[{\"title\":\"Smart Sales Processing\",\"description\":\"Automated sale numbering with real-time inventory and tax calculations.\",\"icon\":\"ShoppingCart\",\"color\":\"blue\"},{\"title\":\"Inventory Control\",\"description\":\"Warehouse-specific stock management with category-based product filtering.\",\"icon\":\"Package\",\"color\":\"green\"},{\"title\":\"Receipt & Barcode\",\"description\":\"Professional receipt printing and barcode generation for complete documentation.\",\"icon\":\"Printer\",\"color\":\"purple\"}]}},\"section_visibility\":{\"header\":true,\"hero\":true,\"modules\":true,\"dedication\":true,\"screenshots\":true,\"why_choose\":true,\"cta\":true,\"footer\":true},\"section_order\":[\"header\",\"hero\",\"modules\",\"dedication\",\"screenshots\",\"why_choose\",\"cta\",\"footer\"]}', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(5, 'Lead Module Marketplace', 'Comprehensive CRM tools for your applications', 'Lead', '{\"sections\":{\"hero\":{\"variant\":\"hero1\",\"title\":\"CRM Module for WorkDo Dash\",\"subtitle\":\"Streamline your CRM workflow with comprehensive tools and automated management.\",\"primary_button_text\":\"Install CRM Module\",\"primary_button_link\":\"#install\",\"secondary_button_text\":\"Learn More\",\"secondary_button_link\":\"#learn\",\"image\":\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/hero.png\"},\"modules\":{\"variant\":\"modules1\",\"title\":\"CRM Module\",\"subtitle\":\"Enhance your workflow with powerful CRM tools\"},\"dedication\":{\"variant\":\"dedication1\",\"title\":\"Dedicated CRM Features\",\"description\":\"Our CRM module provides comprehensive capabilities for modern workflows.\",\"subSections\":[{\"title\":\"Lead Pipeline Management\",\"description\":\"Advanced pipeline system with customizable stages for tracking leads through your sales process. Create multiple pipelines for different business units and manage lead progression with drag-and-drop functionality.\",\"keyPoints\":[\"Multiple pipeline support\",\"Customizable lead stages\",\"Drag-and-drop interface\",\"Stage-based automation\"],\"screenshot\":\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/image1.png\"},{\"title\":\"Deal Conversion & Tracking\",\"description\":\"Seamlessly convert qualified leads into deals with comprehensive tracking and management. Monitor deal progression through dedicated stages with client assignment and product integration.\",\"keyPoints\":[\"Lead to deal conversion\",\"Deal stage management\",\"Client assignment\",\"Product integration\"],\"screenshot\":\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/image2.png\"},{\"title\":\"Communication Hub\",\"description\":\"Centralized communication system with email integration, call logging, and discussion threads. Track all interactions with leads and deals in one place for better relationship management.\",\"keyPoints\":[\"Email integration\",\"Call logging system\",\"Discussion threads\",\"Activity timeline\"],\"screenshot\":\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/image3.png\"},{\"title\":\"Task & File Management\",\"description\":\"Comprehensive task management with file attachments and team collaboration. Assign tasks to team members, set deadlines, and track progress with detailed activity logs.\",\"keyPoints\":[\"Task assignment\",\"File attachments\",\"Team collaboration\",\"Progress tracking\"],\"screenshot\":\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/image4.png\"},{\"title\":\"Analytics & Reporting\",\"description\":\"Detailed analytics dashboard with comprehensive reporting on CRM performance, conversion rates, and team productivity. Generate custom reports to track business growth and identify opportunities.\",\"keyPoints\":[\"CRM analytics\",\"Conversion tracking\",\"Team performance\",\"Custom reports\"],\"screenshot\":\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/image5.png\"}]},\"screenshots\":{\"variant\":\"screenshots1\",\"title\":\"CRM Module in Action\",\"subtitle\":\"See how our CRM tools improve your workflow\",\"images\":[\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/hero.png\",\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/image1.png\",\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/image2.png\",\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/image3.png\",\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/image4.png\",\"\\/packages\\/workdo\\/Lead\\/src\\/marketplace\\/image5.png\"]},\"why_choose\":{\"variant\":\"whychoose1\",\"title\":\"Why Choose CRM Module?\",\"subtitle\":\"Improve efficiency with comprehensive CRM management\",\"benefits\":[{\"title\":\"Lead Automation\",\"description\":\"Automate lead assignment, follow-ups, and stage progression to maximize efficiency.\",\"icon\":\"Play\",\"color\":\"blue\"},{\"title\":\"Sales Analytics\",\"description\":\"Track conversion rates, pipeline performance, and revenue forecasting.\",\"icon\":\"FileText\",\"color\":\"green\"},{\"title\":\"Team Collaboration\",\"description\":\"Assign leads to team members and collaborate on deals effectively.\",\"icon\":\"Users\",\"color\":\"purple\"},{\"title\":\"CRM Integration\",\"description\":\"Seamlessly integrate with existing CRM systems and workflows.\",\"icon\":\"GitBranch\",\"color\":\"red\"},{\"title\":\"Lead Qualification\",\"description\":\"Advanced lead scoring and qualification with customizable criteria.\",\"icon\":\"CheckCircle\",\"color\":\"yellow\"},{\"title\":\"Performance Insights\",\"description\":\"Monitor team performance and identify top-performing strategies.\",\"icon\":\"Activity\",\"color\":\"indigo\"}]}},\"section_visibility\":{\"header\":true,\"hero\":true,\"modules\":true,\"dedication\":true,\"screenshots\":true,\"why_choose\":true,\"cta\":true,\"footer\":true},\"section_order\":[\"header\",\"hero\",\"modules\",\"dedication\",\"screenshots\",\"why_choose\",\"cta\",\"footer\"]}', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(6, 'Product & Service Module Marketplace', 'Comprehensive product and service management tools for your applications', 'ProductService', '{\"sections\":{\"hero\":{\"variant\":\"hero1\",\"title\":\"Product & Service Module for WorkDo Dash\",\"subtitle\":\"Streamline your product and service management with comprehensive tools and automated inventory control.\",\"primary_button_text\":\"Install Product & Service Module\",\"primary_button_link\":\"#install\",\"secondary_button_text\":\"Learn More\",\"secondary_button_link\":\"#learn\",\"image\":\"\\/packages\\/workdo\\/ProductService\\/src\\/marketplace\\/hero.png\"},\"modules\":{\"variant\":\"modules1\",\"title\":\"Product & Service Module\",\"subtitle\":\"Enhance your workflow with powerful product and service management tools\"},\"dedication\":{\"variant\":\"dedication1\",\"title\":\"Dedicated Product & Service Features\",\"description\":\"Our product and service module provides comprehensive capabilities for modern business workflows.\",\"subSections\":[{\"title\":\"Product & Service Item Management\",\"description\":\"Comprehensive product and service catalog management with detailed item tracking, categorization, and pricing control. Organize items by categories, manage SKUs, and maintain complete records of product specifications and service details.\",\"keyPoints\":[\"Complete item catalog management\",\"Category-based organization\",\"SKU and barcode tracking\",\"Flexible pricing options\"],\"screenshot\":\"\\/packages\\/workdo\\/ProductService\\/src\\/marketplace\\/image1.png\"},{\"title\":\"Tax & Unit Configuration\",\"description\":\"Flexible tax management system with customizable tax rates and unit of measurement configurations. Define multiple tax types, manage tax calculations, and configure units for accurate product measurements and billing.\",\"keyPoints\":[\"Multiple tax rate support\",\"Automated tax calculations\",\"Custom unit definitions\",\"Tax compliance management\"],\"screenshot\":\"\\/packages\\/workdo\\/ProductService\\/src\\/marketplace\\/image2.png\"},{\"title\":\"Warehouse & Stock Management\",\"description\":\"Advanced inventory tracking with multi-warehouse support and real-time stock monitoring. Track stock levels, manage warehouse locations, and automate stock updates through purchase and sales transactions.\",\"keyPoints\":[\"Multi-warehouse support\",\"Real-time stock tracking\",\"Automated stock updates\",\"Low stock alerts\"],\"screenshot\":\"\\/packages\\/workdo\\/ProductService\\/src\\/marketplace\\/image3.png\"}]},\"screenshots\":{\"variant\":\"screenshots1\",\"title\":\"Product & Service Module in Action\",\"subtitle\":\"See how our product and service tools improve your workflow\",\"images\":[\"\\/packages\\/workdo\\/ProductService\\/src\\/marketplace\\/hero.png\",\"\\/packages\\/workdo\\/ProductService\\/src\\/marketplace\\/image1.png\",\"\\/packages\\/workdo\\/ProductService\\/src\\/marketplace\\/image2.png\",\"\\/packages\\/workdo\\/ProductService\\/src\\/marketplace\\/image3.png\",\"\\/packages\\/workdo\\/ProductService\\/src\\/marketplace\\/image4.png\",\"\\/packages\\/workdo\\/ProductService\\/src\\/marketplace\\/image5.png\"]},\"why_choose\":{\"variant\":\"whychoose1\",\"title\":\"Why Choose Product & Service Module?\",\"subtitle\":\"Improve efficiency with comprehensive product and service management\",\"benefits\":[{\"title\":\"Complete Item Management\",\"description\":\"Manage all your products and services with detailed specifications, pricing, and categorization for efficient catalog control.\",\"icon\":\"Package\",\"color\":\"blue\"},{\"title\":\"Flexible Tax System\",\"description\":\"Configure multiple tax rates and automate tax calculations for accurate billing and compliance with tax regulations.\",\"icon\":\"Calculator\",\"color\":\"green\"},{\"title\":\"Inventory Tracking\",\"description\":\"Track stock levels in real-time across multiple warehouses with automated updates from sales and purchase transactions.\",\"icon\":\"Database\",\"color\":\"purple\"},{\"title\":\"Category Organization\",\"description\":\"Organize products and services into hierarchical categories for easy navigation and efficient catalog management.\",\"icon\":\"FolderTree\",\"color\":\"red\"},{\"title\":\"Unit Management\",\"description\":\"Define custom units of measurement for accurate product quantification and standardized billing across your business.\",\"icon\":\"Ruler\",\"color\":\"yellow\"},{\"title\":\"Integration Ready\",\"description\":\"Seamlessly integrate with sales, purchase, and accounting modules for complete business workflow automation.\",\"icon\":\"Link\",\"color\":\"indigo\"}]}},\"section_visibility\":{\"header\":true,\"hero\":true,\"modules\":true,\"dedication\":true,\"screenshots\":true,\"why_choose\":true,\"cta\":true,\"footer\":true},\"section_order\":[\"header\",\"hero\",\"modules\",\"dedication\",\"screenshots\",\"why_choose\",\"cta\",\"footer\"]}', '2026-04-27 14:42:29', '2026-04-27 14:42:29'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `media` +-- + +CREATE TABLE `media` ( + `id` bigint(20) UNSIGNED NOT NULL, + `model_type` varchar(255) NOT NULL, + `model_id` bigint(20) UNSIGNED NOT NULL, + `uuid` char(36) DEFAULT NULL, + `collection_name` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `file_name` varchar(255) NOT NULL, + `mime_type` varchar(255) DEFAULT NULL, + `disk` varchar(255) NOT NULL, + `conversions_disk` varchar(255) DEFAULT NULL, + `size` bigint(20) UNSIGNED NOT NULL, + `manipulations` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`manipulations`)), + `custom_properties` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`custom_properties`)), + `generated_conversions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`generated_conversions`)), + `responsive_images` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`responsive_images`)), + `order_column` int(10) UNSIGNED DEFAULT NULL, + `directory_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `media` +-- + +INSERT INTO `media` (`id`, `model_type`, `model_id`, `uuid`, `collection_name`, `name`, `file_name`, `mime_type`, `disk`, `conversions_disk`, `size`, `manipulations`, `custom_properties`, `generated_conversions`, `responsive_images`, `order_column`, `directory_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'App\\Models\\User', 1, '31a2f0f3-5e15-4061-87a1-9ed1f9920fb9', 'files', 'nnterp (1)', 'npNqL6tK8OCWQrwjlRCisgeOkwXLIG1jw6NhZ72c.png', 'image/png', 'public', NULL, 8463, '[]', '[]', '[]', '[]', 1, NULL, 1, 1, '2026-03-14 06:00:54', '2026-03-14 06:00:54'), +(2, 'App\\Models\\User', 1, '296c8593-3f4a-4288-a25a-49c036197730', 'files', 'nnterplight (1)', 'mxra1L6HHqXcWr7WyoUBYKEmQ5dtmP1FyyGWbcKI.png', 'image/png', 'public', NULL, 8209, '[]', '[]', '[]', '[]', 2, NULL, 1, 1, '2026-03-14 06:01:06', '2026-03-14 06:01:06'), +(3, 'App\\Models\\User', 1, '889f7d5a-ffee-4bd7-b499-fe9439be6782', 'files', 'nnterplight (1)', 'QNuO8Ddn3SxxSAxEDZLCLR75humHfT1ZnjbYjOQT.png', 'image/png', 'public', NULL, 8209, '[]', '[]', '[]', '[]', 3, NULL, 1, 1, '2026-03-14 20:00:36', '2026-03-14 20:00:36'), +(4, 'App\\Models\\User', 1, 'ab24b4f7-3b38-4afb-bbfa-77e692edd028', 'files', 'nnterp (1)', 'pOEa0ou2wYm7pZcodYpmQjiAOI4rN6IuZuOW0qeo.png', 'image/png', 'public', NULL, 8463, '[]', '[]', '[]', '[]', 4, NULL, 1, 1, '2026-03-14 20:00:36', '2026-03-14 20:00:36'), +(5, 'App\\Models\\User', 1, 'd8519031-43f6-434e-a1e4-9772f8c17daf', 'files', 'nnterp (1)', '7NBVslQo7kWezjPkwAUH4wXLwXoZEpjCtf8vGRGE.png', 'image/png', 'public', NULL, 8463, '[]', '[]', '[]', '[]', 5, NULL, 1, 1, '2026-03-14 20:01:14', '2026-03-14 20:01:14'), +(6, 'App\\Models\\User', 1, '201d86ac-5d1b-4ce8-9cf3-8632611f4cde', 'files', 'nnterp (1)', 'GarE829j4wTjImYhI1DoJt1K1bgt7qD3jHqxbo78.png', 'image/png', 'public', NULL, 8463, '[]', '[]', '[]', '[]', 6, NULL, 1, 1, '2026-03-14 20:01:39', '2026-03-14 20:01:39'), +(7, 'App\\Models\\User', 2, 'c2430921-b0d0-4f67-84dd-d605fbe0ff09', 'files', 'nnterp (1)', '8T1iAHiH1wRDqYHqNnlD0ZKTEscvvlT9j5r93FiH.png', 'image/png', 'public', NULL, 8463, '[]', '[]', '[]', '[]', 1, NULL, 2, 2, '2026-03-14 20:07:12', '2026-03-14 20:07:12'), +(8, 'App\\Models\\User', 1, 'd5c01e96-eafa-4eb0-9690-bc0bbb382c48', 'files', 'nnterp (1)', '2LrapLNkw6TsdHV4RsgMhg4svMsFwaIz7x0kYizu.png', 'image/png', 'public', NULL, 8463, '[]', '[]', '[]', '[]', 7, NULL, 1, 1, '2026-03-23 08:06:25', '2026-03-23 08:06:25'), +(9, 'App\\Models\\User', 2, '790d9cc5-b3b6-47ce-9648-cf56463df00f', 'files', 'Lorem ipsum', 'RyvoIvaHmhM2pEKE3qdye3iGBg26uhDGKGifeKgJ.pdf', 'application/pdf', 'public', NULL, 43650, '[]', '[]', '[]', '[]', 2, NULL, 2, 2, '2026-04-06 03:52:50', '2026-04-06 03:52:50'), +(10, 'App\\Models\\User', 2, 'c2220ac6-9f6f-41ca-b6a6-991936aeac3b', 'files', '1', '2meIj0RkKQrP36tVOPI7WowAWxUQExukJk0ahtqv.png', 'image/png', 'public', NULL, 6871, '[]', '[]', '[]', '[]', 3, NULL, 2, 2, '2026-04-06 19:33:21', '2026-04-06 19:33:21'), +(11, 'App\\Models\\User', 2, 'b415be69-1545-454c-a482-3d2aa4304671', 'files', '1', '4oPIy93J8CrdK59D2DZSAFMrIlJlSUtIkMgIMXIe.png', 'image/png', 'public', NULL, 6871, '[]', '[]', '[]', '[]', 4, NULL, 2, 2, '2026-04-06 19:33:31', '2026-04-06 19:33:31'), +(12, 'App\\Models\\User', 1, 'd797f3c0-b15f-4224-8613-55af1d865bfd', 'files', '3', 'nYi1DJKXdbyQyrxjiif4bn0bLr98kbyp8mstjlec.jpg', 'image/jpeg', 'public', NULL, 107734, '[]', '[]', '[]', '[]', 8, NULL, 1, 1, '2026-04-10 16:57:11', '2026-04-10 16:57:11'), +(13, 'App\\Models\\User', 1, '008ea950-f2fd-4547-ade4-1f10d3ad7336', 'files', 'zoro', 'lO8GdApAbz2Q0KQ8uHJXhQZuBtrhWwrpFVOkWYT3.jpg', 'image/jpeg', 'public', NULL, 107838, '[]', '[]', '[]', '[]', 9, NULL, 1, 1, '2026-04-20 19:18:06', '2026-04-20 19:18:06'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `media_directories` +-- + +CREATE TABLE `media_directories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `slug` varchar(255) NOT NULL, + `parent_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED NOT NULL, + `created_by` 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; + +-- +-- Dumping data for table `media_directories` +-- + +INSERT INTO `media_directories` (`id`, `name`, `slug`, `parent_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Documents', 'documents', NULL, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(2, 'Contracts', 'contracts', 1, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(3, 'Proposals', 'proposals', 1, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(4, 'Reports', 'reports', 1, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(5, 'Invoices', 'invoices', NULL, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(6, 'Sales', 'sales', 5, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(7, 'Purchase', 'purchase', 5, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(8, 'Returns', 'returns', 5, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(9, 'HR Files', 'hr-files', NULL, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(10, 'Certifications', 'certifications', 9, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(11, 'Requirements', 'requirements', 9, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(12, 'ID Cards', 'id-cards', 9, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(13, 'Marketing', 'marketing', NULL, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(14, 'Brochures', 'brochures', 13, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(15, 'Social Media', 'social-media', 13, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(16, 'Company', 'company', NULL, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(17, 'Logos', 'logos', 16, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(18, 'Templates', 'templates', 16, 2, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `mfg_accounting_maps` +-- + +CREATE TABLE `mfg_accounting_maps` ( + `id` bigint(20) UNSIGNED NOT NULL, + `account_type` varchar(255) NOT NULL, + `chart_account_id` bigint(20) UNSIGNED DEFAULT NULL, + `workspace` 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 `mfg_coils` +-- + +CREATE TABLE `mfg_coils` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` bigint(20) UNSIGNED NOT NULL, + `parent_coil_id` bigint(20) UNSIGNED DEFAULT NULL, + `coil_number` varchar(255) NOT NULL, + `supplier` varchar(255) DEFAULT NULL, + `heat_number` varchar(255) DEFAULT NULL, + `mill_cert_number` varchar(255) DEFAULT NULL, + `color_code` varchar(255) DEFAULT NULL, + `material_type` varchar(255) NOT NULL DEFAULT 'galvanized', + `gauge_mm` decimal(6,3) NOT NULL, + `width_mm` decimal(8,2) NOT NULL, + `original_weight_kg` decimal(10,2) NOT NULL, + `current_weight_kg` decimal(10,2) NOT NULL, + `original_length_m` decimal(10,2) DEFAULT NULL, + `status` enum('available','locked','in_production','partial','consumed') NOT NULL DEFAULT 'available', + `received_date` date DEFAULT NULL, + `purchase_price` decimal(12,2) NOT NULL DEFAULT 0.00, + `workspace` 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 `mfg_finished_goods` +-- + +CREATE TABLE `mfg_finished_goods` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` bigint(20) UNSIGNED NOT NULL, + `profile_id` bigint(20) UNSIGNED NOT NULL, + `length_mm` decimal(10,2) NOT NULL, + `thickness_mm` decimal(6,3) NOT NULL, + `width_mm` decimal(8,2) NOT NULL, + `color_code` varchar(255) DEFAULT NULL, + `brand` varchar(255) DEFAULT NULL, + `stock_quantity` int(11) NOT NULL DEFAULT 0, + `reserved_quantity` int(11) NOT NULL DEFAULT 0, + `selling_price` decimal(12,2) NOT NULL DEFAULT 0.00, + `workspace` 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 `mfg_items` +-- + +CREATE TABLE `mfg_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `sku` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `type` enum('raw_coil','remnant','finished_good','accessory') NOT NULL, + `unit_cost` decimal(12,2) NOT NULL DEFAULT 0.00, + `unit` varchar(255) NOT NULL DEFAULT 'kg', + `workspace` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `mfg_job_orders` +-- + +CREATE TABLE `mfg_job_orders` ( + `id` bigint(20) UNSIGNED NOT NULL, + `job_number` varchar(255) NOT NULL, + `sales_order_id` bigint(20) UNSIGNED DEFAULT NULL, + `profile_id` bigint(20) UNSIGNED NOT NULL, + `required_pieces` int(11) NOT NULL, + `required_length_m` decimal(10,2) NOT NULL, + `total_linear_meters` decimal(12,2) NOT NULL, + `produced_pieces` int(11) NOT NULL DEFAULT 0, + `produced_length_m` decimal(10,2) NOT NULL DEFAULT 0.00, + `status` enum('pending','in_progress','completed','cancelled') NOT NULL DEFAULT 'pending', + `priority` enum('low','normal','high','urgent') NOT NULL DEFAULT 'normal', + `scheduled_date` date DEFAULT NULL, + `notes` text DEFAULT NULL, + `workspace` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `mfg_machines` +-- + +CREATE TABLE `mfg_machines` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `type` enum('decoiler','slitter','roll_former','shear','leveler','bender') NOT NULL, + `model_number` varchar(255) DEFAULT NULL, + `location` varchar(255) DEFAULT NULL, + `status` enum('operational','maintenance','offline') NOT NULL DEFAULT 'operational', + `notes` text DEFAULT NULL, + `workspace` 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 `mfg_production_outputs` +-- + +CREATE TABLE `mfg_production_outputs` ( + `id` bigint(20) UNSIGNED NOT NULL, + `production_run_id` bigint(20) UNSIGNED NOT NULL, + `finished_good_id` bigint(20) UNSIGNED DEFAULT NULL, + `profile_id` bigint(20) UNSIGNED NOT NULL, + `length_m` decimal(10,2) NOT NULL, + `quantity` int(11) NOT NULL, + `weight_kg` decimal(10,2) 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 `mfg_production_runs` +-- + +CREATE TABLE `mfg_production_runs` ( + `id` bigint(20) UNSIGNED NOT NULL, + `run_number` varchar(255) NOT NULL, + `job_order_id` bigint(20) UNSIGNED DEFAULT NULL, + `coil_id` bigint(20) UNSIGNED NOT NULL, + `machine_id` bigint(20) UNSIGNED DEFAULT NULL, + `operator_name` varchar(255) DEFAULT NULL, + `operator_id` int(11) DEFAULT NULL, + `coil_weight_start_kg` decimal(10,2) NOT NULL, + `coil_weight_end_kg` decimal(10,2) DEFAULT NULL, + `weight_used_kg` decimal(10,2) DEFAULT NULL, + `total_output_length_m` decimal(10,2) NOT NULL DEFAULT 0.00, + `total_output_pieces` int(11) NOT NULL DEFAULT 0, + `status` enum('setup','running','paused','completed','aborted') NOT NULL DEFAULT 'setup', + `started_at` timestamp NULL DEFAULT NULL, + `completed_at` timestamp NULL DEFAULT NULL, + `notes` text DEFAULT NULL, + `workspace` 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 `mfg_profiles` +-- + +CREATE TABLE `mfg_profiles` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `profile_type` enum('roofing','purlin','deck','spandrel','gutter','ridge_cap','flashing','custom','bended','plainsheet','roll_up_leaf') NOT NULL, + `default_width_mm` decimal(8,2) NOT NULL, + `default_thickness_mm` decimal(6,3) NOT NULL, + `density_kg_m3` decimal(10,2) NOT NULL DEFAULT 7850.00, + `description` text DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `workspace` 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 `mfg_remnants` +-- + +CREATE TABLE `mfg_remnants` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` bigint(20) UNSIGNED NOT NULL, + `source_coil_id` bigint(20) UNSIGNED NOT NULL, + `remnant_tag` varchar(255) NOT NULL, + `remaining_weight_kg` decimal(10,2) NOT NULL, + `remaining_length_m` decimal(10,2) DEFAULT NULL, + `gauge_mm` decimal(6,3) NOT NULL, + `width_mm` decimal(8,2) NOT NULL, + `color_code` varchar(255) DEFAULT NULL, + `status` enum('available','reserved','consumed') NOT NULL DEFAULT 'available', + `workspace` 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 `mfg_sales_orders` +-- + +CREATE TABLE `mfg_sales_orders` ( + `id` bigint(20) UNSIGNED NOT NULL, + `order_number` varchar(255) NOT NULL, + `customer_name` varchar(255) NOT NULL, + `customer_address` varchar(255) DEFAULT NULL, + `customer_phone` varchar(255) DEFAULT NULL, + `order_date` date NOT NULL, + `due_date` date DEFAULT NULL, + `status` enum('draft','confirmed','in_production','completed','cancelled') NOT NULL DEFAULT 'draft', + `subtotal` decimal(14,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(12,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(12,2) NOT NULL DEFAULT 0.00, + `total` decimal(14,2) NOT NULL DEFAULT 0.00, + `notes` text DEFAULT NULL, + `workspace` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `mfg_sales_order_items` +-- + +CREATE TABLE `mfg_sales_order_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `sales_order_id` bigint(20) UNSIGNED NOT NULL, + `profile_id` bigint(20) UNSIGNED DEFAULT NULL, + `source_coil_id` bigint(20) UNSIGNED DEFAULT NULL, + `product_description` varchar(255) NOT NULL, + `pieces` int(11) NOT NULL, + `length_per_piece_m` decimal(10,2) NOT NULL, + `total_quantity` decimal(12,2) NOT NULL, + `unit` enum('LM','kg','pcs') NOT NULL DEFAULT 'LM', + `unit_price` decimal(12,2) NOT NULL, + `subtotal` decimal(14,2) 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 `mfg_stock_movements` +-- + +CREATE TABLE `mfg_stock_movements` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` bigint(20) UNSIGNED NOT NULL, + `movement_type` enum('receive','issue','adjust','transfer','production_in','production_out','sale') NOT NULL, + `quantity` decimal(12,2) NOT NULL, + `unit` varchar(255) NOT NULL DEFAULT 'kg', + `reference_type` varchar(255) DEFAULT NULL, + `reference_id` bigint(20) UNSIGNED DEFAULT NULL, + `notes` text DEFAULT NULL, + `workspace` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `migrations` +-- + +CREATE TABLE `migrations` ( + `id` int(10) UNSIGNED NOT NULL, + `migration` varchar(255) 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, '0001_01_01_000000_create_users_table', 1), +(2, '0001_01_01_000001_create_cache_table', 1), +(3, '0001_01_01_000002_create_jobs_table', 1), +(4, '0001_01_01_000003_create_personal_access_tokens_table', 1), +(5, '2023_06_10_043700_create_ai_templates_table', 1), +(6, '2023_06_10_050110_create_ai_template_categories_table', 1), +(7, '2023_06_10_051036_create_ai_template_languages_table', 1), +(8, '2023_06_10_052024_create_ai_template_prompts_table', 1), +(9, '2023_06_10_071056_create_ai_prompt_histories_table', 1), +(10, '2023_06_10_101058_create_ai_prompt_responses_table', 1), +(11, '2023_06_15_050547_create_assistant_templates_table', 1), +(12, '2023_11_09_072655_create_journal_entries', 1), +(13, '2023_11_09_072707_create_journal_items', 1), +(14, '2023_11_23_060933_create_custom_fields_table', 1), +(15, '2023_11_23_060954_create_custom_field_values_table', 1), +(16, '2023_11_23_061026_create_custom_custom_fields_module_list_table', 1), +(17, '2023_11_23_072808_create_drivers_table', 1), +(18, '2023_11_23_072826_create_licenses_table', 1), +(19, '2023_11_23_072842_create_vehicle_types_table', 1), +(20, '2023_11_23_072938_create_recurrings_table', 1), +(21, '2023_11_23_073000_create_maintenance_types_table', 1), +(22, '2023_11_23_073015_create_fleet_customers_table', 1), +(23, '2023_11_23_073035_create_vehicles_table', 1), +(24, '2023_11_23_083315_create_insurances_table', 1), +(25, '2023_11_23_083330_create_fuels_table', 1), +(26, '2023_11_23_083349_create_bookings_table', 1), +(27, '2023_11_23_083410_create_fleet_payments_table', 1), +(28, '2023_11_23_083426_create_maintenances_table', 1), +(29, '2023_11_23_083440_create_fuel_types_table', 1), +(30, '2024_01_15_000000_create_notifications_table', 1), +(31, '2024_02_12_034023_create_notification_template_langs_table', 1), +(32, '2024_02_27_100854_create_document_table', 1), +(33, '2024_02_27_100935_create_documents_types_table', 1), +(34, '2024_02_27_101003_create_document_comments_table', 1), +(35, '2024_02_27_101025_create_document_notes_table', 1), +(36, '2024_02_27_101056_create_document_attechments_table', 1), +(37, '2024_04_16_064739_create_vehicle_invoice_table', 1), +(38, '2024_04_19_111538_add_rate_to_vehicles_table', 1), +(39, '2024_05_10_070016_create_bookings_business_hours_table', 1), +(40, '2024_05_14_095935_create_bookings_customers_table', 1), +(41, '2024_05_16_040739_create_bookings_appointments_table', 1), +(42, '2024_05_22_111346_create_bookings_staff_table', 1), +(43, '2024_05_27_093256_create_bookings_extra_services_table', 1), +(44, '2024_05_27_121408_create_bookings_packages_table', 1), +(45, '2024_06_11_033622_create_bookings_duration_table', 1), +(46, '2024_06_27_092817_add_staff_name_to_drivers_table', 1), +(47, '2024_06_28_061840_add_client_name_to_fleet_customers_table', 1), +(48, '2024_07_23_050322_create_driver_attechments_table', 1), +(49, '2024_07_25_084028_create_fleet_logbooks_table', 1), +(50, '2024_07_26_092654_create_insurance_booking_table', 1), +(51, '2024_08_07_071841_drop_client_id_from_drivers_table', 1), +(52, '2024_08_28_104321_update_info_tables', 1), +(53, '2024_09_09_065136_update_slug_in_document_table', 1), +(54, '2025_01_15_000000_create_projects_table', 1), +(55, '2025_01_15_120000_create_helpdesk_categories_table', 1), +(56, '2025_01_15_120001_create_helpdesk_tickets_table', 1), +(57, '2025_01_15_120002_create_helpdesk_replies_table', 1), +(58, '2025_01_16_000000_create_project_users_table', 1), +(59, '2025_01_17_000000_create_project_clients_table', 1), +(60, '2025_01_18_000000_create_project_milestones_table', 1), +(61, '2025_01_19_000000_create_task_stages_table', 1), +(62, '2025_01_20_000000_create_bug_stages_table', 1), +(63, '2025_01_20_000004_create_newsletter_subscribers_table', 1), +(64, '2025_01_21_000000_create_project_tasks_table', 1), +(65, '2025_01_22_000000_create_task_comments_table', 1), +(66, '2025_01_22_000001_create_task_subtasks_table', 1), +(67, '2025_01_23_035121_create_project_bugs_table', 1), +(68, '2025_01_23_035122_create_bug_comments_table', 1), +(69, '2025_01_24_000000_create_project_files_table', 1), +(70, '2025_08_12_105132_create_permission_tables', 1), +(71, '2025_08_12_105136_create_warehouses_table', 1), +(72, '2025_08_18_104001_create_settings_table', 1), +(73, '2025_08_25_032702_create_media_directories_table', 1), +(74, '2025_08_25_032809_create_media_table', 1), +(75, '2025_08_28_083657_create_add_ons_table', 1), +(76, '2025_08_28_083708_create_user_active_modules_table', 1), +(77, '2025_09_01_000001_create_plans_table', 1), +(78, '2025_09_02_043140_create_email_templates_table', 1), +(79, '2025_09_02_043357_create_email_template_langs_table', 1), +(80, '2025_09_02_120820_create_bank_transfer_payments_table', 1), +(81, '2025_09_03_055622_create_orders_table', 1), +(82, '2025_09_03_055623_create_coupons_table', 1), +(83, '2025_09_03_055624_create_user_coupons_table', 1), +(84, '2025_09_09_000002_create_landing_page_settings_table', 1), +(85, '2025_09_09_000002_create_marketplace_settings_table', 1), +(86, '2025_09_09_072036_create_login_histories_table', 1), +(87, '2025_09_09_091805_create_product_service_categories_table', 1), +(88, '2025_09_09_091806_create_product_service_items_table', 1), +(89, '2025_09_10_000003_create_custom_pages_table', 1), +(90, '2025_09_11_000000_create_product_service_taxes_table', 1), +(91, '2025_09_12_000000_create_product_service_units_table', 1), +(92, '2025_09_13_000000_create_warehouse_stocks_table', 1), +(93, '2025_09_13_000002_create_transfers_table', 1), +(94, '2025_09_16_112923_create_ch_messages_table', 1), +(95, '2025_09_16_112929_create_ch_favorites_table', 1), +(96, '2025_09_16_999999_add_active_status_to_users', 1), +(97, '2025_09_17_999999_create_ch_pinned_table', 1), +(98, '2025_09_19_051742_create_pipelines_table', 1), +(99, '2025_09_19_051751_create_lead_stages_table', 1), +(100, '2025_09_19_051756_create_deal_stages_table', 1), +(101, '2025_09_19_051759_create_labels_table', 1), +(102, '2025_09_19_051802_create_sources_table', 1), +(103, '2025_09_19_053000_create_project_activity_logs_table', 1), +(104, '2025_09_19_054403_create_vendors_table', 1), +(105, '2025_09_19_054404_create_customers_table', 1), +(106, '2025_09_19_095250_create_leads_table', 1), +(107, '2025_09_19_095251_create_lead_tasks_table', 1), +(108, '2025_09_19_095252_create_user_leads_table', 1), +(109, '2025_09_19_095253_create_lead_calls_table', 1), +(110, '2025_09_19_095254_create_lead_emails_table', 1), +(111, '2025_09_19_095255_create_lead_discussions_table', 1), +(112, '2025_09_19_095256_create_lead_files_table', 1), +(113, '2025_09_19_095257_create_lead_activity_logs_table', 1), +(114, '2025_09_19_113901_create_account_categories_table', 1), +(115, '2025_09_19_113908_create_account_types_table', 1), +(116, '2025_09_22_101716_create_chart_of_accounts_table', 1), +(117, '2025_09_22_102616_create_opening_balances_table', 1), +(118, '2025_09_23_105344_create_deals_table', 1), +(119, '2025_09_23_105345_create_client_deals_table', 1), +(120, '2025_09_23_105346_create_user_deals_table', 1), +(121, '2025_09_24_095534_create_deal_emails_table', 1), +(122, '2025_09_24_100216_create_deal_discussions_table', 1), +(123, '2025_09_24_101253_create_deal_calls_table', 1), +(124, '2025_09_25_100915_create_bank_accounts_table', 1), +(125, '2025_09_25_100916_create_journal_entries_table', 1), +(126, '2025_09_25_100917_create_journal_entry_items_table', 1), +(127, '2025_09_25_100920_create_bank_transactions_table', 1), +(128, '2025_09_25_100925_create_bank_transfers_table', 1), +(129, '2025_09_26_035056_create_client_permissions_table', 1), +(130, '2025_09_26_035057_create_deal_tasks_table', 1), +(131, '2025_09_26_035058_create_deal_activity_logs_table', 1), +(132, '2025_09_26_035059_create_deal_files_table', 1), +(133, '2025_09_26_102328_create_purchase_invoices_table', 1), +(134, '2025_09_26_102329_create_purchase_returns_table', 1), +(135, '2025_09_26_102334_create_purchase_invoice_items_table', 1), +(136, '2025_09_26_102335_create_purchase_invoice_item_taxes_table', 1), +(137, '2025_09_26_102335_create_vendor_payments_table', 1), +(138, '2025_09_26_102336_create_purchase_return_items_table', 1), +(139, '2025_09_26_102337_create_purchase_return_item_taxes_table', 1), +(140, '2025_09_26_102338_create_debit_notes_table', 1), +(141, '2025_09_26_102339_create_debit_note_items_table', 1), +(142, '2025_09_26_102340_create_debit_note_item_taxes_table', 1), +(143, '2025_09_26_102340_create_sales_invoices_table', 1), +(144, '2025_09_26_102341_create_debit_note_applications_table', 1), +(145, '2025_09_26_102341_create_sales_invoice_items_table', 1), +(146, '2025_09_26_102342_create_sales_invoice_item_taxes_table', 1), +(147, '2025_09_26_102342_create_vendor_payment_allocations_table', 1), +(148, '2025_09_26_102344_create_sales_invoice_returns_table', 1), +(149, '2025_09_26_102345_create_sales_invoice_return_items_table', 1), +(150, '2025_09_26_102346_create_sales_invoice_return_item_taxes_table', 1), +(151, '2025_09_26_102347_create_credit_notes_table', 1), +(152, '2025_09_26_102348_create_credit_note_items_table', 1), +(153, '2025_09_26_102349_create_credit_note_item_taxes_table', 1), +(154, '2025_09_26_102350_create_customer_payments_table', 1), +(155, '2025_09_26_102351_create_customer_payment_allocations_table', 1), +(156, '2025_09_26_102352_create_credit_note_applications_table', 1), +(157, '2025_09_30_000001_create_pos_table', 1), +(158, '2025_09_30_000002_create_pos_items_table', 1), +(159, '2025_09_30_000003_create_pos_payments_table', 1), +(160, '2025_10_03_062636_create_branches_table', 1), +(161, '2025_10_03_065257_create_departments_table', 1), +(162, '2025_10_03_072103_create_designations_table', 1), +(163, '2025_10_03_102101_create_employee_document_types_table', 1), +(164, '2025_10_03_102102_create_shifts_table', 1), +(165, '2025_10_03_104915_create_employees_table', 1), +(166, '2025_10_06_091850_create_award_types_table', 1), +(167, '2025_10_06_093852_create_awards_table', 1), +(168, '2025_10_06_112503_create_promotions_table', 1), +(169, '2025_10_06_123503_create_employee_documents_table', 1), +(170, '2025_10_07_060235_create_resignations_table', 1), +(171, '2025_10_07_092423_create_termination_types_table', 1), +(172, '2025_10_07_093544_create_terminations_table', 1), +(173, '2025_10_07_120550_create_warning_types_table', 1), +(174, '2025_10_07_122919_create_warnings_table', 1), +(175, '2025_10_08_062604_create_complaint_types_table', 1), +(176, '2025_10_08_070200_create_complaints_table', 1), +(177, '2025_10_09_043736_create_employee_transfers_table', 1), +(178, '2025_10_09_071422_create_holiday_types_table', 1), +(179, '2025_10_09_094925_create_holidays_table', 1), +(180, '2025_10_09_112023_create_document_categories_table', 1), +(181, '2025_10_09_121614_create_hrm_documents_table', 1), +(182, '2025_10_10_120000_create_acknowledgments_table', 1), +(183, '2025_10_13_064205_create_announcement_categories_table', 1), +(184, '2025_10_13_083935_create_announcements_table', 1), +(185, '2025_10_13_085010_create_announcement_departments_table', 1), +(186, '2025_10_14_064320_create_event_types_table', 1), +(187, '2025_10_14_065758_create_events_table', 1), +(188, '2025_10_15_035216_create_event_departments_table', 1), +(189, '2025_10_16_060524_create_leave_types_table', 1), +(190, '2025_10_16_071333_create_leave_applications_table', 1), +(191, '2025_11_03_064139_create_attendances_table', 1), +(192, '2025_11_05_052453_create_allowance_types_table', 1), +(193, '2025_11_05_053540_create_deduction_types_table', 1), +(194, '2025_11_05_054916_create_loan_types_table', 1), +(195, '2025_11_06_105850_create_payrolls_table', 1), +(196, '2025_11_07_000001_create_payroll_entries_table', 1), +(197, '2025_11_10_120000_create_sales_proposals_table', 1), +(198, '2025_11_10_120001_create_sales_proposal_items_table', 1), +(199, '2025_11_10_120002_create_sales_proposal_item_taxes_table', 1), +(200, '2025_11_11_054833_create_revenue_categories_table', 1), +(201, '2025_11_11_054834_create_expense_categories_table', 1), +(202, '2025_11_11_092117_create_revenues_table', 1), +(203, '2025_11_11_092118_create_expenses_table', 1), +(204, '2025_11_12_061951_create_deductions_table', 1), +(205, '2025_11_12_062109_create_loans_table', 1), +(206, '2025_11_12_062150_create_overtimes_table', 1), +(207, '2025_11_12_062232_create_allowances_table', 1), +(208, '2025_12_17_120932_create_ip_restricts_table', 1), +(209, '2026_02_09_065225_add_default_pipeline_to_users_table', 1), +(210, '2026_03_04_000001_create_apikey_setiings_table', 1), +(211, '2026_03_04_000002_create_work_spaces_table', 1), +(212, '2026_03_10_000001_create_salary_components_table', 1), +(213, '2026_03_10_000002_create_pay_groups_table', 1), +(214, '2026_03_10_000003_create_employee_salary_structures_table', 1), +(215, '2026_03_10_000004_create_employee_salary_items_table', 1), +(216, '2026_03_10_000005_create_payroll_settings_table', 1), +(217, '2026_03_10_000006_add_advanced_columns_to_payroll_entries', 1), +(218, '2026_03_13_213000_rebrand_workdo_to_nnterp_in_landing_page', 1), +(219, '2026_03_14_000001_create_skill_categories_table', 1), +(220, '2026_03_14_000002_create_skills_table', 1), +(221, '2026_03_14_000003_create_employee_skills_table', 1), +(222, '2026_03_14_000004_create_skill_requirements_table', 1), +(223, '2026_03_14_000005_create_skill_assessments_table', 1), +(224, '2026_03_14_000006_add_training_url_to_skills', 1), +(225, '2026_03_14_000007_create_review_cycles_and_skill_reviews_tables', 1), +(226, '2026_03_14_100001_create_certifications_table', 1), +(227, '2026_03_14_100002_create_employee_certifications_table', 1), +(228, '2026_03_14_100003_create_certification_renewals_table', 1), +(229, '2026_03_14_200001_create_engagements_table', 1), +(230, '2026_03_14_200002_create_engagement_roles_table', 1), +(231, '2026_03_14_200003_create_engagement_assignments_table', 1), +(232, '2026_03_14_200004_create_engagement_forecasts_table', 1), +(233, '2026_03_14_200005_create_engagement_templates_table', 1), +(234, '2026_03_14_200006_create_engagement_schedules_table', 1), +(235, '2026_03_14_200007_add_branch_id_to_engagements', 1), +(236, '2026_03_14_300001_create_time_entries_table', 1), +(237, '2026_03_14_300002_create_utilization_targets_table', 1), +(238, '2026_03_14_300003_create_cost_rates_table', 1), +(239, '2026_03_14_300004_create_utilization_rules_and_alerts_tables', 1), +(240, '2026_03_14_300005_add_work_mode_to_employees', 1), +(241, '2026_03_14_300006_create_utilization_forecasts_table', 1), +(242, '2026_03_14_000001_register_wfm_modules_in_add_ons', 2), +(243, '2026_03_14_300001_create_pm_lookup_tables', 3), +(244, '2026_03_14_300002_create_pm_properties_table', 3), +(245, '2026_03_14_300003_create_pm_property_related_tables', 3), +(246, '2026_03_14_300004_create_pm_lease_maintenance_audit_tables', 3), +(247, '2026_03_14_300005_register_property_management_addon', 3), +(248, '2026_03_14_180000_update_pm_tables_for_lifecycle_workflows', 4), +(249, '2026_03_14_190000_create_pm_financial_links_tables', 5), +(250, '2026_03_14_195000_create_pm_notes_attachments_tables', 6), +(251, '2026_03_14_200000_create_pm_messages_and_tenant_link', 7), +(252, '2026_03_15_000001_add_payroll_columns_to_attendances', 8), +(253, '2026_03_15_000002_create_attendance_logs_table', 8), +(254, '2026_03_15_000004_add_statutory_override_to_salary_structures', 8), +(255, '2026_03_16_000001_create_ai_forecasts_table', 8), +(256, '2026_03_16_000002_create_ai_forecast_history_table', 8), +(257, '2026_03_17_195318_add_semi_monthly_to_payroll_frequency', 8), +(258, '2026_03_17_202700_create_payroll_entry_adjustments_table', 8), +(259, '2026_03_17_204700_add_cutoff_number_to_payrolls', 8), +(260, '2026_03_18_000001_create_mfg_items_table', 9), +(261, '2026_03_18_000002_create_mfg_profiles_table', 9), +(262, '2026_03_18_000003_create_mfg_machines_table', 9), +(263, '2026_03_18_000004_create_mfg_coils_table', 9), +(264, '2026_03_18_000005_create_mfg_remnants_table', 9), +(265, '2026_03_18_000006_create_mfg_finished_goods_table', 9), +(266, '2026_03_18_000007_create_mfg_sales_orders_table', 9), +(267, '2026_03_18_000008_create_mfg_sales_order_items_table', 9), +(268, '2026_03_18_000009_create_mfg_job_orders_table', 9), +(269, '2026_03_18_000010_create_mfg_production_runs_table', 9), +(270, '2026_03_18_000011_create_mfg_production_outputs_table', 9), +(271, '2026_03_18_000012_create_mfg_stock_movements_table', 9), +(272, '2026_03_18_000013_create_mfg_accounting_maps_table', 9), +(273, '2026_03_19_000001_expand_profile_types_add_brand', 9), +(275, '2026_04_23_000001_create_hospital_doctors_table', 10), +(276, '2026_04_23_000002_create_hospital_patients_table', 10), +(277, '2026_04_23_000003_create_hospital_appointments_table', 10), +(278, '2026_04_23_000004_create_hospital_medical_records_table', 10), +(279, '2026_04_23_000005_create_hospital_beds_table', 10), +(280, '2026_04_23_000006_create_hospital_lab_tests_table', 10), +(281, '2026_04_23_000007_create_hospital_surgeries_table', 10), +(282, '2026_04_23_000008_create_hospital_ambulances_table', 10), +(283, '2026_04_23_000009_create_hospital_medicines_table', 10), +(284, '2026_04_23_000010_create_hospital_visitors_table', 10), +(285, '2026_04_23_000011_add_comprehensive_fields_to_hospital_tables', 10), +(286, '2026_05_01_142011_create_warehouse_stock_movements_table', 11), +(287, '2026_05_01_142012_create_warehouse_transfers_table', 11), +(288, '2026_05_01_142013_create_warehouse_transfer_items_table', 11), +(289, '2026_05_01_172601_add_is_received_to_purchase_invoices_table', 11), +(290, '2026_05_01_173735_create_warehouse_receipts_table', 11), +(291, '2026_05_01_173736_create_warehouse_receipt_items_table', 11), +(292, '2026_05_01_174948_add_min_stock_level_to_product_service_items_table', 11), +(293, '2026_05_01_180133_add_batch_and_expiry_to_warehouse_tables', 11), +(294, '2026_05_01_182648_add_dispatched_qty_to_sales_invoice_items_table', 11), +(295, '2026_05_01_195852_add_requires_password_change_to_users_table', 11), +(296, '2026_05_01_203135_create_activity_log_table', 11), +(297, '2026_05_01_203200_add_batch_uuid_to_activity_log_table', 12); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `model_has_permissions` +-- + +CREATE TABLE `model_has_permissions` ( + `permission_id` bigint(20) UNSIGNED NOT NULL, + `model_type` varchar(255) NOT NULL, + `model_id` bigint(20) UNSIGNED NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `model_has_roles` +-- + +CREATE TABLE `model_has_roles` ( + `role_id` bigint(20) UNSIGNED NOT NULL, + `model_type` varchar(255) NOT NULL, + `model_id` bigint(20) UNSIGNED NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `model_has_roles` +-- + +INSERT INTO `model_has_roles` (`role_id`, `model_type`, `model_id`) VALUES +(1, 'App\\Models\\User', 1), +(2, 'App\\Models\\User', 2), +(2, 'App\\Models\\User', 3), +(2, 'App\\Models\\User', 4), +(2, 'App\\Models\\User', 5), +(2, 'App\\Models\\User', 6), +(2, 'App\\Models\\User', 7), +(2, 'App\\Models\\User', 58), +(2, 'App\\Models\\User', 84), +(3, 'App\\Models\\User', 8), +(3, 'App\\Models\\User', 10), +(3, 'App\\Models\\User', 12), +(3, 'App\\Models\\User', 14), +(3, 'App\\Models\\User', 16), +(3, 'App\\Models\\User', 18), +(3, 'App\\Models\\User', 20), +(3, 'App\\Models\\User', 22), +(3, 'App\\Models\\User', 24), +(3, 'App\\Models\\User', 26), +(3, 'App\\Models\\User', 80), +(3, 'App\\Models\\User', 81), +(3, 'App\\Models\\User', 82), +(3, 'App\\Models\\User', 83), +(4, 'App\\Models\\User', 9), +(4, 'App\\Models\\User', 11), +(4, 'App\\Models\\User', 13), +(4, 'App\\Models\\User', 15), +(4, 'App\\Models\\User', 17), +(4, 'App\\Models\\User', 19), +(4, 'App\\Models\\User', 21), +(4, 'App\\Models\\User', 23), +(4, 'App\\Models\\User', 25), +(4, 'App\\Models\\User', 27), +(4, 'App\\Models\\User', 43), +(4, 'App\\Models\\User', 44), +(4, 'App\\Models\\User', 45), +(4, 'App\\Models\\User', 46), +(4, 'App\\Models\\User', 47), +(4, 'App\\Models\\User', 48), +(4, 'App\\Models\\User', 49), +(4, 'App\\Models\\User', 50), +(4, 'App\\Models\\User', 51), +(4, 'App\\Models\\User', 52), +(4, 'App\\Models\\User', 53), +(4, 'App\\Models\\User', 54), +(4, 'App\\Models\\User', 55), +(4, 'App\\Models\\User', 56), +(4, 'App\\Models\\User', 57), +(5, 'App\\Models\\User', 28), +(5, 'App\\Models\\User', 29), +(5, 'App\\Models\\User', 30), +(5, 'App\\Models\\User', 31), +(5, 'App\\Models\\User', 32), +(5, 'App\\Models\\User', 33), +(5, 'App\\Models\\User', 34), +(5, 'App\\Models\\User', 35), +(5, 'App\\Models\\User', 36), +(5, 'App\\Models\\User', 37), +(5, 'App\\Models\\User', 38), +(5, 'App\\Models\\User', 39), +(5, 'App\\Models\\User', 40), +(5, 'App\\Models\\User', 41), +(5, 'App\\Models\\User', 42); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `newsletter_subscribers` +-- + +CREATE TABLE `newsletter_subscribers` ( + `id` bigint(20) UNSIGNED NOT NULL, + `email` varchar(255) NOT NULL, + `subscribed_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `ip_address` varchar(255) DEFAULT NULL, + `country` varchar(255) DEFAULT NULL, + `city` varchar(255) DEFAULT NULL, + `region` varchar(255) DEFAULT NULL, + `country_code` varchar(2) DEFAULT NULL, + `isp` varchar(255) DEFAULT NULL, + `org` varchar(255) DEFAULT NULL, + `timezone` varchar(255) DEFAULT NULL, + `latitude` decimal(10,8) DEFAULT NULL, + `longitude` decimal(11,8) DEFAULT NULL, + `user_agent` varchar(255) DEFAULT NULL, + `browser` varchar(255) DEFAULT NULL, + `os` varchar(255) DEFAULT NULL, + `device` varchar(255) 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 `notifications` +-- + +CREATE TABLE `notifications` ( + `id` bigint(20) UNSIGNED NOT NULL, + `module` varchar(255) DEFAULT NULL, + `type` varchar(188) DEFAULT NULL, + `action` varchar(255) DEFAULT NULL, + `status` varchar(255) DEFAULT NULL, + `permissions` varchar(255) 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 `notifications` +-- + +INSERT INTO `notifications` (`id`, `module`, `type`, `action`, `status`, `permissions`, `created_at`, `updated_at`) VALUES +(1, 'general', 'mail', 'New User', 'on', 'manage-users', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(2, 'general', 'mail', 'Customer Invoice Send', 'on', 'invoice send', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(3, 'general', 'mail', 'Payment Reminder', 'on', 'invoice manage', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(4, 'general', 'mail', 'Invoice Payment Create', 'on', 'invoice payment create', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(5, 'general', 'mail', 'Proposal Status Updated', 'on', 'proposal send', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(6, 'general', 'mail', 'New Helpdesk Ticket', 'on', 'helpdesk manage', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(7, 'general', 'mail', 'New Helpdesk Ticket Reply', 'on', 'helpdesk manage', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(8, 'general', 'mail', 'Purchase Send', 'on', 'purchase send', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(9, 'general', 'mail', 'Purchase Payment Create', 'on', 'purchase payment create', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(10, 'Lead', 'mail', 'Deal Assigned', 'on', 'manage-deals', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(11, 'Lead', 'mail', 'Deal Moved', 'on', 'deal-move', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(12, 'Lead', 'mail', 'New Task', 'on', 'create-deal-tasks', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(13, 'Lead', 'mail', 'Lead Assigned', 'on', 'manage-leads', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(14, 'Lead', 'mail', 'Lead Moved', 'on', 'lead-move', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(15, 'Lead', 'mail', 'Lead Emails', 'on', 'edit-leads', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(16, 'Lead', 'mail', 'Deal Emails', 'on', 'edit-deals', '2026-03-14 06:00:08', '2026-03-14 06:00:08'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `notification_template_langs` +-- + +CREATE TABLE `notification_template_langs` ( + `id` bigint(20) UNSIGNED NOT NULL, + `parent_id` int(11) NOT NULL DEFAULT 0, + `lang` varchar(255) DEFAULT NULL, + `module` varchar(255) DEFAULT NULL, + `content` text DEFAULT NULL, + `variables` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`variables`)), + `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 `opening_balances` +-- + +CREATE TABLE `opening_balances` ( + `id` bigint(20) UNSIGNED NOT NULL, + `account_id` bigint(20) UNSIGNED NOT NULL, + `financial_year` varchar(255) NOT NULL, + `opening_balance` decimal(15,2) NOT NULL DEFAULT 0.00, + `balance_type` enum('debit','credit') NOT NULL, + `effective_date` date NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED 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 `orders` +-- + +CREATE TABLE `orders` ( + `id` bigint(20) UNSIGNED NOT NULL, + `order_id` varchar(255) NOT NULL, + `name` varchar(255) DEFAULT NULL, + `email` varchar(255) DEFAULT NULL, + `card_number` varchar(255) DEFAULT NULL, + `card_exp_month` int(11) DEFAULT NULL, + `card_exp_year` int(11) DEFAULT NULL, + `plan_name` varchar(255) DEFAULT NULL, + `plan_id` bigint(20) UNSIGNED DEFAULT NULL, + `price` decimal(10,2) NOT NULL, + `discount_amount` decimal(10,2) NOT NULL DEFAULT 0.00, + `currency` varchar(3) NOT NULL DEFAULT 'USD', + `txn_id` varchar(255) DEFAULT NULL, + `payment_status` enum('pending','succeeded','failed','refunded') NOT NULL DEFAULT 'pending', + `payment_type` varchar(255) NOT NULL DEFAULT 'bank_transfer', + `receipt` varchar(255) DEFAULT NULL, + `created_by` bigint(20) 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 `orders` +-- + +INSERT INTO `orders` (`id`, `order_id`, `name`, `email`, `card_number`, `card_exp_month`, `card_exp_year`, `plan_name`, `plan_id`, `price`, `discount_amount`, `currency`, `txn_id`, `payment_status`, `payment_type`, `receipt`, `created_by`, `created_at`, `updated_at`) VALUES +(1, '9B4A92C30248', 'Prof. Willis Reichel V', 'rreynolds@example.com', '**** **** **** 7300', 9, 2030, 'Professional Plan', 4, 102.62, 3.65, 'EUR', '4499cc4d-f187-32c6-b208-96a6f82d7c6b', 'succeeded', 'Paypal', 'http://crist.net/', 2, '2026-01-11 11:48:23', '2026-01-11 11:48:23'), +(2, '9B4A92C307CF', 'Emmanuel DuBuque', 'vicenta.goyette@example.net', '**** **** **** 7952', 10, 2024, 'Custom Plan', 1, 80.13, 22.68, 'EUR', 'bf678a11-3d27-317e-9bdc-6efbb9142918', 'succeeded', 'Bank Transfer', 'https://crooks.org/voluptate-molestiae-porro-sed-quia-qui-voluptatum.html', 2, '2026-01-10 06:26:22', '2026-01-10 06:26:22'), +(3, '9B4A92C30B8A', 'Mollie Kessler', 'zane55@example.com', '**** **** **** 8885', 5, 2027, 'Professional Plan', 4, 249.38, 62.08, 'GBP', 'a812bf86-7a9b-3ecc-a07f-2ff8ea83d093', 'succeeded', 'Paypal', 'http://klein.com/', 2, '2025-12-31 19:32:30', '2025-12-31 19:32:30'), +(4, '9B4A92C30F8A', 'Kamren Muller', 'candido.torp@example.net', '**** **** **** 1099', 4, 2026, 'Free Plan', 2, 213.78, 11.55, 'GBP', 'f656aa90-9a14-36cb-8bbb-2ae831bb9ef1', 'succeeded', 'Paypal', NULL, 2, '2026-01-24 21:27:28', '2026-01-24 21:27:28'), +(5, '9B4A92C312F6', 'Mckenzie Reichel', 'celestine02@example.org', '**** **** **** 5312', 1, 2025, 'Free Plan', 2, 48.19, 3.57, 'EUR', 'dda1366e-2bfd-3c02-8971-a010086b6545', 'succeeded', 'Bank Transfer', NULL, 2, '2025-12-31 23:09:00', '2025-12-31 23:09:00'), +(6, '9B4A92C31655', 'Mrs. Summer Lebsack V', 'janice.cremin@example.org', '**** **** **** 1158', 2, 2025, 'Free Plan', 2, 169.41, 37.78, 'GBP', 'd528748c-9660-3366-ba14-a330ed2fce9c', 'succeeded', 'Bank Transfer', NULL, 2, '2026-01-24 22:20:22', '2026-01-24 22:20:22'), +(7, '9B4A92C319C1', 'Burdette Beer', 'vweissnat@example.net', '**** **** **** 1916', 4, 2028, 'Free Plan', 2, 49.26, 2.33, 'EUR', '4f30fab6-71e3-3cc7-9b8e-9c5c4f1b0dcd', 'succeeded', 'Bank Transfer', NULL, 2, '2026-01-16 13:05:08', '2026-01-16 13:05:08'), +(8, '9B4A92C31D2B', 'Robb Kunde', 'gleichner.braxton@example.net', '**** **** **** 1038', 5, 2027, 'Free Plan', 2, 93.64, 3.76, 'USD', '733e1afa-6f70-3af1-b863-cb6ea3ecb9c0', 'succeeded', 'Paypal', 'http://schimmel.com/consequatur-saepe-adipisci-magnam-incidunt-ex-perspiciatis-quam-quam.html', 2, '2026-01-07 12:58:39', '2026-01-07 12:58:39'), +(9, '9B4A92C3209F', 'Abelardo Rodriguez', 'wfarrell@example.org', '**** **** **** 3156', 6, 2025, 'Starter Plan', 3, 59.16, 2.00, 'EUR', '8ec9ee62-4c1e-30b0-a16f-589d86b35fe7', 'succeeded', 'Bank Transfer', 'https://koss.com/voluptatum-dolor-dolor-voluptatum-quidem-odio-mollitia-pariatur.html', 2, '2026-01-04 09:19:39', '2026-01-04 09:19:39'), +(10, '9B4A92C323F9', 'Karina Rutherford', 'rickie.wolf@example.com', '**** **** **** 4446', 7, 2027, 'Custom Plan', 1, 242.67, 3.33, 'GBP', 'd20befdd-2372-3b16-8f0d-4b50bbf5c843', 'succeeded', 'Paypal', 'http://gerhold.info/veritatis-iste-et-amet-ad-possimus-corrupti.html', 2, '2026-01-12 00:12:07', '2026-01-12 00:12:07'), +(11, '9B4A92C3277B', 'Mr. Alf Gusikowski MD', 'corwin.savanah@example.org', '**** **** **** 8818', 8, 2029, 'Professional Plan', 4, 264.38, 27.33, 'USD', 'a746be8b-ad7d-367a-bd3d-36b497c7a31e', 'succeeded', 'Paypal', 'http://www.emmerich.com/omnis-dolores-qui-tempora-et-explicabo-aperiam.html', 2, '2026-02-09 15:48:13', '2026-02-09 15:48:13'), +(12, '9B4A92C32AEA', 'Chase Johns', 'nicole06@example.org', '**** **** **** 0605', 2, 2028, 'Custom Plan', 1, 103.25, 19.91, 'GBP', '093ed010-93e6-3b76-a5fd-3b77b016625f', 'succeeded', 'Stripe', 'http://vonrueden.info/vero-aut-eum-facere-unde-labore-a.html', 2, '2026-02-11 03:31:26', '2026-02-11 03:31:26'), +(13, '9B4A92C32E65', 'Rosa Purdy Jr.', 'nleffler@example.org', '**** **** **** 1774', 1, 2028, 'Free Plan', 2, 282.19, 56.22, 'GBP', '46f18ba1-2bb4-37f6-8477-0a4264b1d5c4', 'succeeded', 'Paypal', 'https://www.zemlak.biz/omnis-rerum-maiores-quo-vel-incidunt-distinctio', 2, '2026-02-25 21:31:30', '2026-02-25 21:31:30'), +(14, '9B4A92C331DC', 'Dr. Astrid Stiedemann', 'marks.laurel@example.net', '**** **** **** 9385', 6, 2024, 'Professional Plan', 4, 34.30, 2.53, 'USD', '3b4f0f8a-daef-3c0a-9e1d-df4f7f87b073', 'succeeded', 'Bank Transfer', 'http://www.kilback.com/totam-provident-impedit-iusto-nemo-fugit-quisquam', 2, '2026-02-27 02:51:54', '2026-02-27 02:51:54'), +(15, '9B4A92C3355D', 'Morris Davis', 'bogisich.fleta@example.org', '**** **** **** 5207', 5, 2029, 'Custom Plan', 1, 31.97, 8.24, 'EUR', '94dcc0fb-7bca-30c1-870d-1268782a13f6', 'succeeded', 'Paypal', NULL, 2, '2026-02-09 03:56:28', '2026-02-09 03:56:28'), +(16, '9B4A92C338B7', 'Mia Ullrich II', 'gutkowski.vergie@example.net', '**** **** **** 3640', 9, 2026, 'Custom Plan', 1, 220.01, 59.34, 'USD', '3092eb1a-12c5-35f7-bd18-b684e4bb4d1f', 'succeeded', 'Stripe', 'http://www.roob.com/', 2, '2026-02-25 11:41:42', '2026-02-25 11:41:42'), +(17, '9B4A92C33C33', 'Miss Maryjane Moen', 'ernestine81@example.net', '**** **** **** 2464', 1, 2025, 'Professional Plan', 4, 290.91, 45.19, 'GBP', '6e272248-4437-3d7a-805a-9035ebd92692', 'succeeded', 'Bank Transfer', 'http://treutel.com/ut-qui-deleniti-aliquid-quis-est-distinctio-optio', 2, '2026-02-26 10:02:09', '2026-02-26 10:02:09'), +(18, '9B4A92C33FA4', 'Skylar Abbott II', 'kmcclure@example.net', '**** **** **** 1026', 1, 2026, 'Free Plan', 2, 114.74, 27.81, 'USD', '2e4fdff8-28ee-30e6-9c11-2a8b4e40b97a', 'succeeded', 'Stripe', NULL, 2, '2026-02-08 08:30:24', '2026-02-08 08:30:24'), +(19, '9B4A92C342F4', 'Norma Abernathy', 'sim.batz@example.org', '**** **** **** 0039', 9, 2028, 'Free Plan', 2, 84.90, 8.44, 'GBP', 'c0f4192e-9e28-3184-aa94-4925bc56ff59', 'succeeded', 'Bank Transfer', 'http://www.donnelly.org/atque-ea-est-et-ut-omnis-optio', 2, '2026-02-20 20:16:31', '2026-02-20 20:16:31'), +(20, '9B4A92C34655', 'Prof. Alaina Kunze', 'vonrueden.daisha@example.com', '**** **** **** 9782', 5, 2026, 'Free Plan', 2, 178.68, 25.59, 'USD', '945d3a76-80da-3fbd-9d71-0106d11619b6', 'succeeded', 'Bank Transfer', 'http://www.hauck.info/', 2, '2026-02-10 13:05:00', '2026-02-10 13:05:00'), +(21, '9B4A92C349CC', 'Ned Beahan Jr.', 'olson.sofia@example.org', '**** **** **** 7329', 8, 2025, 'Custom Plan', 1, 79.63, 21.86, 'GBP', '74d3d83b-2dde-3cae-bd54-15730696de94', 'succeeded', 'Paypal', NULL, 2, '2026-02-01 13:26:57', '2026-02-01 13:26:57'), +(22, '9B4A92C34D37', 'Mrs. Missouri Muller I', 'anya56@example.org', '**** **** **** 2757', 5, 2025, 'Free Plan', 2, 248.02, 14.04, 'EUR', '382a7a93-b172-3f30-b6c5-f13aed2f3972', 'succeeded', 'Bank Transfer', 'http://koepp.com/fugiat-sint-non-qui-distinctio-quidem.html', 2, '2026-02-03 01:37:44', '2026-02-03 01:37:44'), +(23, '9B4A92C350C6', 'Laury Bashirian', 'edna.mitchell@example.org', '**** **** **** 1460', 6, 2030, 'Professional Plan', 4, 65.41, 3.84, 'EUR', 'de8612e9-515e-3e4a-9065-039494ffd994', 'succeeded', 'Bank Transfer', NULL, 2, '2026-02-10 12:03:18', '2026-02-10 12:03:18'), +(24, '9B4A92C3543B', 'Flavie Mitchell', 'alessandro78@example.net', '**** **** **** 2905', 12, 2025, 'Professional Plan', 4, 172.65, 16.18, 'GBP', '7266cf09-9354-36f7-aff9-d67abfa239ba', 'succeeded', 'Bank Transfer', 'http://www.hegmann.com/officiis-numquam-et-assumenda-et', 2, '2026-03-11 04:22:56', '2026-03-11 04:22:56'), +(25, '9B4A92C357CB', 'Merl Cormier', 'creola.hartmann@example.com', '**** **** **** 4068', 9, 2028, 'Free Plan', 2, 275.16, 69.51, 'EUR', 'afaaca17-2e4e-3dcb-89f4-0648bb0ed5ef', 'succeeded', 'Paypal', NULL, 2, '2026-03-08 00:32:48', '2026-03-08 00:32:48'), +(26, '9B4A92C35B35', 'Prof. Wyatt Towne', 'lindgren.william@example.org', '**** **** **** 9351', 1, 2025, 'Professional Plan', 4, 44.89, 10.87, 'USD', '3d64f4e1-25f0-3205-989a-bcce6bf4392e', 'succeeded', 'Paypal', 'http://www.mills.com/iusto-temporibus-vel-magnam.html', 2, '2026-03-24 08:49:24', '2026-03-24 08:49:24'), +(27, '9B4A92C35EBD', 'Meda Sanford', 'ttowne@example.net', '**** **** **** 0488', 9, 2030, 'Professional Plan', 4, 210.56, 41.82, 'EUR', 'c559f5cb-2974-37fa-83d2-d917f6b689c3', 'succeeded', 'Bank Transfer', 'https://wiza.org/sint-consequuntur-soluta-ad-illum.html', 2, '2026-03-19 03:08:14', '2026-03-19 03:08:14'), +(28, '9B4A92C3622A', 'Dessie Miller MD', 'raheem.schaefer@example.com', '**** **** **** 0033', 9, 2026, 'Custom Plan', 1, 120.76, 7.59, 'GBP', '021d21ca-4f1a-3df4-be8c-09cbea0b0c05', 'succeeded', 'Bank Transfer', 'http://stracke.com/sequi-dolorem-quasi-illo-numquam-provident', 2, '2026-03-17 13:04:23', '2026-03-17 13:04:23'), +(29, '9B4A92C365D5', 'Malcolm Gutkowski', 'hjakubowski@example.net', '**** **** **** 7914', 7, 2027, 'Professional Plan', 4, 267.27, 77.06, 'USD', '5839919b-a1b7-35f0-9de2-5c66c7ebe650', 'succeeded', 'Stripe', 'http://ritchie.com/', 2, '2026-03-27 11:03:22', '2026-03-27 11:03:22'), +(30, '9B4A92C36967', 'Prof. Paolo Smith I', 'bkoss@example.com', '**** **** **** 8175', 12, 2029, 'Custom Plan', 1, 201.85, 38.66, 'USD', 'a546de4a-e542-39d4-bc48-8470ad0a242f', 'succeeded', 'Bank Transfer', 'https://hansen.biz/facilis-ut-et-tempora-sunt-quibusdam-nesciunt.html', 2, '2026-03-28 13:22:31', '2026-03-28 13:22:31'), +(31, '9B4A92C36CDE', 'Miss Sunny Mohr Sr.', 'adavis@example.org', '**** **** **** 9361', 8, 2025, 'Professional Plan', 4, 270.35, 44.51, 'GBP', 'ac82d28f-5624-3cd3-a8b2-708a12cbdabd', 'succeeded', 'Paypal', 'http://www.skiles.org/quia-eum-illum-sapiente-eveniet-est-enim-adipisci-et.html', 2, '2026-03-12 06:44:42', '2026-03-12 06:44:42'), +(32, '9B4A92C37050', 'Dr. Lenny Koss I', 'leonie59@example.com', '**** **** **** 5397', 7, 2027, 'Professional Plan', 4, 119.54, 3.70, 'USD', '5a52cc70-7779-3d4c-9390-7fb7b3647b05', 'succeeded', 'Stripe', NULL, 2, '2026-03-24 23:14:45', '2026-03-24 23:14:45'), +(33, '9B4A92C373BA', 'Armand Yost', 'gladys.kihn@example.com', '**** **** **** 7897', 2, 2025, 'Custom Plan', 1, 250.85, 63.79, 'USD', '92411cf0-9172-360c-b55b-5d37a6915313', 'succeeded', 'Paypal', 'https://www.schmitt.biz/excepturi-nobis-aliquid-sit-laboriosam-labore-est-eaque', 2, '2026-03-14 10:07:59', '2026-03-14 10:07:59'), +(34, '9B4A92C3774F', 'Mrs. Abigail Johns', 'greichel@example.org', '**** **** **** 1687', 9, 2030, 'Custom Plan', 1, 43.81, 7.72, 'USD', 'ef2563f3-d34c-3077-8007-2caf34ea4b01', 'succeeded', 'Stripe', NULL, 2, '2026-03-08 11:03:16', '2026-03-08 11:03:16'), +(35, '9B4A92C37AAE', 'Margaretta Donnelly V', 'rath.vito@example.net', '**** **** **** 0514', 4, 2030, 'Custom Plan', 1, 255.47, 2.02, 'EUR', 'e02a1377-d3df-324d-a408-d11e2bf096b2', 'succeeded', 'Stripe', 'http://www.lockman.com/repudiandae-architecto-maiores-iusto-facilis.html', 2, '2026-03-18 17:47:28', '2026-03-18 17:47:28'), +(36, '9B4A92C37E37', 'Sydney Mills IV', 'fsmitham@example.com', '**** **** **** 2013', 5, 2025, 'Free Plan', 2, 91.68, 10.11, 'EUR', '4063a4bc-39c4-32d1-99ca-03e515e7a979', 'succeeded', 'Bank Transfer', NULL, 2, '2026-04-15 12:46:13', '2026-04-15 12:46:13'), +(37, '9B4A92C38195', 'Mr. Kaleb Cruickshank DDS', 'hassan.ernser@example.com', '**** **** **** 0471', 3, 2029, 'Free Plan', 2, 39.36, 5.32, 'GBP', '238b5714-5c7c-3ce5-8673-5de845971461', 'succeeded', 'Paypal', 'http://www.klein.com/voluptatum-numquam-ut-itaque-qui-ut-voluptas-voluptas-ut', 2, '2026-04-03 04:24:33', '2026-04-03 04:24:33'), +(38, '9B4A92C38527', 'Jeff Ferry', 'josefina.davis@example.net', '**** **** **** 7694', 2, 2029, 'Custom Plan', 1, 95.59, 18.29, 'USD', 'aaaddf87-f5c5-3ebb-a19c-68fe82c66304', 'succeeded', 'Bank Transfer', 'http://thompson.com/laborum-non-aspernatur-dolorem-eaque-voluptatem-et', 2, '2026-04-29 03:32:40', '2026-04-29 03:32:40'), +(39, '9B4A92C3889E', 'Kassandra Schmeler', 'littel.danny@example.net', '**** **** **** 1822', 9, 2028, 'Free Plan', 2, 142.23, 7.88, 'USD', '4a1dc0d2-619c-35b3-bd31-b4bb67544fbe', 'succeeded', 'Bank Transfer', 'http://www.dicki.com/architecto-et-consequatur-perspiciatis-beatae.html', 2, '2026-04-14 08:36:29', '2026-04-14 08:36:29'), +(40, '9B4A92C38C25', 'Ayla Flatley', 'rsawayn@example.net', '**** **** **** 1821', 12, 2024, 'Custom Plan', 1, 278.85, 0.62, 'GBP', '71a7c3e6-2fa2-38e4-b416-30a08357f0a7', 'succeeded', 'Bank Transfer', NULL, 2, '2026-04-16 23:58:41', '2026-04-16 23:58:41'), +(41, '9B4A92C38F8D', 'Gerard Ferry', 'janice.bartell@example.net', '**** **** **** 7286', 12, 2029, 'Custom Plan', 1, 253.66, 29.66, 'GBP', '40864896-119c-3924-b643-477982f4f63f', 'succeeded', 'Paypal', NULL, 2, '2026-04-03 02:16:02', '2026-04-03 02:16:02'), +(42, '9B4A92C392EB', 'Mckenzie Nolan', 'ternser@example.com', '**** **** **** 9178', 2, 2029, 'Free Plan', 2, 229.24, 44.89, 'GBP', '4becd9bb-196c-3181-818b-46ed1f5f045a', 'succeeded', 'Paypal', 'http://schroeder.net/', 2, '2026-04-07 14:10:25', '2026-04-07 14:10:25'), +(43, '9B4A92C39655', 'Miss Lou Kunde MD', 'gokeefe@example.com', '**** **** **** 9803', 4, 2030, 'Professional Plan', 4, 224.47, 61.09, 'GBP', '3be8fa74-d73b-31d7-9dd8-2f88cf70c89b', 'succeeded', 'Paypal', NULL, 2, '2026-04-24 04:04:26', '2026-04-24 04:04:26'), +(44, '9B4A92C39B39', 'Molly Klocko', 'hahn.kitty@example.org', '**** **** **** 5694', 1, 2028, 'Custom Plan', 1, 40.83, 1.24, 'USD', 'fdb32fb8-be27-30c8-ab0b-e70ace9f3331', 'succeeded', 'Bank Transfer', NULL, 2, '2026-04-02 00:15:36', '2026-04-02 00:15:36'), +(45, '9B4A92C39EA1', 'Dr. Thaddeus Stiedemann III', 'bode.abner@example.org', '**** **** **** 5115', 6, 2027, 'Professional Plan', 4, 240.44, 28.26, 'EUR', 'aa288f03-8d50-3ce0-ba07-7cc374fc2204', 'succeeded', 'Stripe', NULL, 2, '2026-04-21 03:53:28', '2026-04-21 03:53:28'), +(46, '9B4A92C3A21B', 'Mrs. Anabel Simonis', 'isidro49@example.net', '**** **** **** 1201', 5, 2030, 'Free Plan', 2, 181.18, 7.39, 'EUR', '37ec94ee-bd60-392c-8bd9-33fcdb6a5a43', 'succeeded', 'Bank Transfer', 'http://breitenberg.net/vel-quae-dolorem-et-et-velit', 2, '2026-04-10 12:09:57', '2026-04-10 12:09:57'), +(47, '9B4A92C3A60F', 'Natalie Schoen', 'rhermann@example.net', '**** **** **** 5637', 1, 2026, 'Professional Plan', 4, 153.15, 22.11, 'GBP', '5f423cdd-0e00-3e5c-a9da-8754a7b97fd9', 'succeeded', 'Stripe', 'http://www.kulas.org/', 2, '2026-04-19 23:00:46', '2026-04-19 23:00:46'), +(48, '9B4A92C3A974', 'Lelah Boyle', 'jcrooks@example.org', '**** **** **** 4168', 3, 2027, 'Free Plan', 2, 64.68, 10.92, 'GBP', 'a767649c-8d2d-33a4-817f-efbdf51893fc', 'succeeded', 'Bank Transfer', NULL, 2, '2026-04-11 21:38:35', '2026-04-11 21:38:35'), +(49, '9B4A92C3ACD9', 'Prof. Laurel Beahan Sr.', 'lorenz.osinski@example.com', '**** **** **** 4108', 9, 2030, 'Professional Plan', 4, 262.13, 49.95, 'EUR', 'b8189687-ab0f-39d2-8d23-c1cb751ece7e', 'succeeded', 'Bank Transfer', 'https://www.lockman.com/temporibus-enim-illo-iure-et-voluptas', 2, '2026-05-23 11:13:36', '2026-05-23 11:13:36'), +(50, '9B4A92C3B04A', 'Ludwig Langosh III', 'pratke@example.org', '**** **** **** 4361', 3, 2027, 'Custom Plan', 1, 275.96, 26.05, 'USD', '69b4b79f-7f7c-3261-bd57-4b8fdfa1f715', 'succeeded', 'Stripe', NULL, 2, '2026-04-30 23:38:03', '2026-04-30 23:38:03'), +(51, '9B4A92C3B3B2', 'Karli Morar IV', 'stoltenberg.domenic@example.net', '**** **** **** 1880', 10, 2029, 'Custom Plan', 1, 176.36, 46.70, 'USD', '0cfaa6fc-beea-3922-a115-e15c89c7a4bb', 'succeeded', 'Paypal', NULL, 2, '2026-05-18 21:50:21', '2026-05-18 21:50:21'), +(52, '9B4A92C3B71F', 'Brain Wisozk', 'qreichert@example.net', '**** **** **** 0380', 9, 2029, 'Free Plan', 2, 206.28, 19.47, 'EUR', 'b6eb07e4-be16-3bdd-b5c8-df5aadb5ff85', 'succeeded', 'Paypal', NULL, 2, '2026-05-02 09:30:05', '2026-05-02 09:30:05'), +(53, '9B4A92C3BA8C', 'Dr. Nathaniel Gulgowski', 'ghermann@example.com', '**** **** **** 5371', 9, 2026, 'Professional Plan', 4, 95.91, 8.14, 'USD', '4f6678df-d733-3fa3-a56f-55562b16e35a', 'succeeded', 'Bank Transfer', 'http://jacobs.net/', 2, '2026-05-12 19:07:42', '2026-05-12 19:07:42'), +(54, '9B4A92C3C2B0', 'Adaline Berge', 'gokon@example.com', '**** **** **** 2715', 12, 2025, 'Professional Plan', 4, 93.58, 19.10, 'USD', 'd4d7799a-c9e2-377c-af65-256aab64fc28', 'succeeded', 'Paypal', NULL, 2, '2026-05-11 19:45:40', '2026-05-11 19:45:40'), +(55, '9B4A92C3CED9', 'Alan Jacobson Jr.', 'whuels@example.net', '**** **** **** 8891', 4, 2030, 'Professional Plan', 4, 223.43, 34.44, 'EUR', '693c705a-9a45-3f0f-b972-a0f44a9de8bb', 'succeeded', 'Bank Transfer', NULL, 2, '2026-05-08 03:44:20', '2026-05-08 03:44:20'), +(56, '9B4A92C3D4D3', 'Demarcus Cole', 'davonte.hettinger@example.com', '**** **** **** 0834', 11, 2028, 'Professional Plan', 4, 175.06, 10.96, 'USD', 'e6567714-bb10-3298-bd06-bac257aad136', 'succeeded', 'Paypal', NULL, 2, '2026-05-06 12:15:37', '2026-05-06 12:15:37'), +(57, '9B4A92C3D8B3', 'Estelle Klocko', 'yasmine36@example.net', '**** **** **** 8308', 4, 2027, 'Free Plan', 2, 133.47, 8.24, 'USD', '5f1d8aca-19c7-359e-b441-b10083d7002f', 'succeeded', 'Paypal', 'http://www.boyer.org/numquam-delectus-pariatur-provident-est-id-non', 2, '2026-05-24 20:35:40', '2026-05-24 20:35:40'), +(58, '9B4A92C3DC72', 'Efrain Gleichner', 'emily.kshlerin@example.net', '**** **** **** 3173', 8, 2025, 'Custom Plan', 1, 77.99, 17.65, 'EUR', '987e4d41-35bb-389b-b0a5-b8ab6e5c3618', 'succeeded', 'Stripe', NULL, 2, '2026-04-30 23:27:11', '2026-04-30 23:27:11'), +(59, '9B4A92C3DFF3', 'Dr. Santiago Johnston PhD', 'price.nicole@example.net', '**** **** **** 3601', 4, 2024, 'Custom Plan', 1, 120.01, 28.00, 'USD', 'ce6ae4ca-0d18-31c2-9ade-f429ea9fb273', 'succeeded', 'Paypal', NULL, 2, '2026-05-13 10:31:24', '2026-05-13 10:31:24'), +(60, '9B4A92C3E37D', 'Amiya Waelchi PhD', 'qlebsack@example.org', '**** **** **** 3072', 8, 2027, 'Free Plan', 2, 56.54, 3.95, 'USD', '88916d97-eec0-3778-9970-88d927253ca8', 'succeeded', 'Paypal', 'http://keeling.com/magni-tempore-assumenda-dicta-nemo-nulla-nihil', 2, '2026-05-18 09:24:38', '2026-05-18 09:24:38'), +(61, '9B4A92C3E710', 'Diamond Emard', 'sklocko@example.com', '**** **** **** 9597', 8, 2024, 'Free Plan', 2, 128.79, 16.89, 'EUR', '4759ea14-eab0-37c3-90b7-6b3bbecc1bf4', 'succeeded', 'Bank Transfer', NULL, 2, '2026-05-23 08:13:47', '2026-05-23 08:13:47'), +(62, '9B4A92C3EA9C', 'Miss Rossie Heller', 'waters.jermey@example.com', '**** **** **** 6602', 5, 2030, 'Starter Plan', 3, 111.57, 12.89, 'GBP', '8e20c8ff-7fff-362e-b6a5-4b1a6836e7bf', 'succeeded', 'Paypal', NULL, 2, '2026-06-17 04:56:56', '2026-06-17 04:56:56'), +(63, '9B4A92C3EE21', 'Murphy Parisian', 'rdouglas@example.com', '**** **** **** 8497', 3, 2029, 'Custom Plan', 1, 198.48, 28.04, 'GBP', 'a65ed45a-2588-3599-add3-71634b14074b', 'succeeded', 'Paypal', NULL, 2, '2026-06-10 15:19:11', '2026-06-10 15:19:11'), +(64, '9B4A92C3F198', 'Mrs. Larissa Schaefer II', 'tristin41@example.org', '**** **** **** 0056', 7, 2025, 'Professional Plan', 4, 167.13, 23.36, 'USD', '52114534-be35-3ef5-877b-eec9c2073c65', 'succeeded', 'Stripe', NULL, 2, '2026-06-22 20:23:37', '2026-06-22 20:23:37'), +(65, '9B4A92C3F620', 'Geovany Waters', 'imogene.hayes@example.org', '**** **** **** 3760', 6, 2027, 'Starter Plan', 3, 179.24, 40.40, 'GBP', '4618ecdf-b9b9-3132-bee0-dcd8ef90a453', 'succeeded', 'Paypal', NULL, 2, '2026-06-27 17:38:32', '2026-06-27 17:38:32'), +(66, '9B4A92C3F9C0', 'Torrey Mayer II', 'medhurst.jade@example.com', '**** **** **** 4131', 8, 2029, 'Professional Plan', 4, 63.41, 8.12, 'EUR', '20bab350-e830-3a44-886d-903adb8aad91', 'succeeded', 'Bank Transfer', NULL, 2, '2026-06-04 00:40:25', '2026-06-04 00:40:25'), +(67, '9B4A92C3FD4A', 'Joy Dibbert', 'cameron.kozey@example.org', '**** **** **** 5258', 5, 2025, 'Professional Plan', 4, 117.56, 16.80, 'USD', '21bac83a-8119-3aed-84da-98df510009d4', 'succeeded', 'Stripe', 'https://www.spinka.com/autem-assumenda-incidunt-temporibus-porro-ut', 2, '2026-06-20 01:22:58', '2026-06-20 01:22:58'), +(68, '9B4A92C400BD', 'Charles Kutch', 'david81@example.org', '**** **** **** 2369', 10, 2025, 'Professional Plan', 4, 110.02, 1.42, 'GBP', 'e54da31a-601f-3d5f-87f1-7bee979dd98e', 'succeeded', 'Stripe', 'http://moore.info/', 2, '2026-06-04 15:45:41', '2026-06-04 15:45:41'), +(69, '9B4A92C40446', 'Stephanie Schultz', 'wpagac@example.net', '**** **** **** 0229', 5, 2025, 'Professional Plan', 4, 236.24, 59.97, 'GBP', '75692e28-fa11-3c85-9e0f-402ca19be5ad', 'succeeded', 'Paypal', 'http://www.lebsack.biz/beatae-numquam-officia-ut-aspernatur-architecto-maxime', 2, '2026-06-21 19:02:19', '2026-06-21 19:02:19'), +(70, '9B4A92C407BE', 'Margarita D\'Amore', 'rwunsch@example.net', '**** **** **** 6768', 10, 2030, 'Starter Plan', 3, 279.00, 28.87, 'GBP', 'c110346a-3a9c-3a62-853a-3169e7024fe2', 'succeeded', 'Paypal', 'https://cremin.biz/est-et-non-omnis-delectus-asperiores-voluptas-provident-et.html', 2, '2026-06-19 15:57:46', '2026-06-19 15:57:46'), +(71, '9B4A92C40B47', 'Flossie Mertz', 'ritchie.kenyon@example.net', '**** **** **** 7727', 11, 2030, 'Starter Plan', 3, 269.84, 63.13, 'EUR', '3b884728-0ba8-37fb-b245-06c2a45bc64a', 'succeeded', 'Bank Transfer', 'http://sauer.com/quos-qui-ut-et-qui-iste-iusto', 2, '2026-06-03 10:09:02', '2026-06-03 10:09:02'), +(72, '9B4A92C40EC7', 'Syble Simonis', 'critchie@example.com', '**** **** **** 4981', 1, 2030, 'Starter Plan', 3, 202.20, 12.46, 'EUR', '4eb8653c-03bc-3c15-a0ed-f03a4fb175c8', 'succeeded', 'Stripe', NULL, 2, '2026-06-13 06:15:45', '2026-06-13 06:15:45'), +(73, '9B4A92C41227', 'Mrs. Lavina Huels', 'fidel08@example.com', '**** **** **** 1975', 2, 2027, 'Professional Plan', 4, 62.97, 18.71, 'EUR', 'e0f346b5-df2f-36a8-828d-81a57d46a875', 'succeeded', 'Bank Transfer', NULL, 2, '2026-06-19 02:01:13', '2026-06-19 02:01:13'), +(74, '9B4A92C41595', 'Selina Marks', 'lucienne.prosacco@example.org', '**** **** **** 0468', 2, 2030, 'Free Plan', 2, 194.14, 10.39, 'EUR', '0c6d841e-ff91-3fc9-94cf-1007dc5520ea', 'succeeded', 'Bank Transfer', NULL, 2, '2026-06-07 10:05:26', '2026-06-07 10:05:26'), +(75, '9B4A92C41915', 'Precious Raynor', 'margarett.leannon@example.net', '**** **** **** 5015', 1, 2026, 'Free Plan', 2, 137.88, 11.51, 'EUR', 'f0b49092-829d-3e7f-ad74-7d32d6a5e5d9', 'succeeded', 'Paypal', 'http://www.bernhard.com/ipsam-sed-qui-enim-nemo-ex-laboriosam-molestiae', 2, '2026-06-24 04:54:50', '2026-06-24 04:54:50'), +(76, '9B4A92C41CA6', 'Abigail Zieme', 'george06@example.org', '**** **** **** 6835', 1, 2029, 'Free Plan', 2, 197.03, 7.11, 'USD', '6095e872-b1d0-373b-bf39-e228f1488624', 'succeeded', 'Stripe', 'http://www.ratke.info/', 2, '2026-06-01 19:23:54', '2026-06-01 19:23:54'), +(77, '9B4A92C42036', 'Mrs. Jacynthe Dach PhD', 'barton.macejkovic@example.net', '**** **** **** 5797', 12, 2027, 'Professional Plan', 4, 231.62, 40.58, 'EUR', 'cf694b17-d924-3695-8914-6a682b273804', 'succeeded', 'Bank Transfer', NULL, 2, '2026-07-06 03:34:21', '2026-07-06 03:34:21'), +(78, '9B4A92C4239C', 'Ms. Fleta Weber', 'pouros.alford@example.com', '**** **** **** 9427', 2, 2025, 'Free Plan', 2, 258.95, 53.29, 'GBP', '63d12b8b-d134-3715-aa3a-3277cb511a98', 'succeeded', 'Paypal', 'http://www.gerlach.info/sunt-natus-tempora-ducimus-dolores-occaecati-temporibus-et', 2, '2026-07-18 20:47:01', '2026-07-18 20:47:01'), +(79, '9B4A92C42709', 'Ms. Heloise Waelchi', 'marquardt.jaqueline@example.org', '**** **** **** 2019', 7, 2027, 'Custom Plan', 1, 48.74, 6.66, 'USD', 'def6f9ac-fd7f-394c-b111-c01a1ff6dcc0', 'succeeded', 'Bank Transfer', NULL, 2, '2026-07-11 04:31:20', '2026-07-11 04:31:20'), +(80, '9B4A92C42A7F', 'George Heller Sr.', 'claude08@example.net', '**** **** **** 5286', 1, 2026, 'Starter Plan', 3, 115.63, 2.38, 'USD', 'ba68e690-1fac-3a2c-bb32-5b9b494511cb', 'succeeded', 'Bank Transfer', NULL, 2, '2026-07-29 10:43:40', '2026-07-29 10:43:40'), +(81, '9B4A92C42E06', 'Mr. Domingo Bernier', 'nokeefe@example.net', '**** **** **** 5187', 2, 2029, 'Free Plan', 2, 206.79, 15.89, 'GBP', '24e7aca3-7716-3f59-bfb0-6179f1eea234', 'succeeded', 'Stripe', 'http://www.erdman.biz/possimus-laboriosam-quam-et-blanditiis', 2, '2026-07-25 07:08:52', '2026-07-25 07:08:52'), +(82, '9B4A92C4330A', 'Oswaldo Halvorson', 'evert02@example.net', '**** **** **** 9665', 9, 2025, 'Custom Plan', 1, 235.04, 43.10, 'EUR', '5657ec3f-d550-3ed0-ac9d-0e21516bd075', 'succeeded', 'Paypal', NULL, 2, '2026-06-30 23:24:00', '2026-06-30 23:24:00'), +(83, '9B4A92C43675', 'Dr. Robin Renner', 'xromaguera@example.net', '**** **** **** 7148', 5, 2026, 'Free Plan', 2, 78.98, 17.01, 'EUR', 'b608290d-f7b8-3429-b9f6-6ced61f9e08b', 'succeeded', 'Paypal', NULL, 2, '2026-07-11 13:34:37', '2026-07-11 13:34:37'), +(84, '9B4A92C439E6', 'Prof. Mazie Auer', 'terrence.kihn@example.com', '**** **** **** 2277', 9, 2028, 'Free Plan', 2, 123.84, 27.16, 'USD', '1f37f631-9547-3b5a-8910-9bf8b252f7f4', 'succeeded', 'Paypal', NULL, 2, '2026-07-09 14:14:40', '2026-07-09 14:14:40'), +(85, '9B4A92C43D4C', 'Jabari Beier', 'lizzie10@example.com', '**** **** **** 5285', 4, 2030, 'Professional Plan', 4, 129.90, 9.70, 'EUR', 'bf498b9e-3f11-39d7-9680-736482c2a2b1', 'succeeded', 'Stripe', NULL, 2, '2026-07-21 13:03:12', '2026-07-21 13:03:12'), +(86, '9B4A92C440C5', 'Prof. Jessie Hills', 'lturcotte@example.org', '**** **** **** 3503', 9, 2026, 'Starter Plan', 3, 122.34, 15.85, 'USD', '3211bcde-b4c7-3fc3-883f-4bc38d0b3069', 'succeeded', 'Stripe', NULL, 2, '2026-08-27 21:26:22', '2026-08-27 21:26:22'), +(87, '9B4A92C44428', 'Rosemarie Kuhn', 'lfahey@example.org', '**** **** **** 1249', 8, 2028, 'Custom Plan', 1, 194.72, 30.78, 'USD', 'b2b95327-f6b9-372a-b856-c537f9f740e9', 'succeeded', 'Stripe', NULL, 2, '2026-08-13 02:45:29', '2026-08-13 02:45:29'), +(88, '9B4A92C4478B', 'Dr. Jonathon Kemmer II', 'pablo.prohaska@example.net', '**** **** **** 7050', 6, 2029, 'Professional Plan', 4, 224.04, 59.65, 'USD', '24b77330-de60-3ae2-9158-63af07696905', 'succeeded', 'Stripe', 'http://baumbach.com/similique-nam-quidem-repellendus-consequatur-corrupti-iste-eos', 2, '2026-08-13 20:01:07', '2026-08-13 20:01:07'), +(89, '9B4A92C44B09', 'Prof. Devante Cormier DDS', 'zboncak.althea@example.org', '**** **** **** 1022', 1, 2028, 'Starter Plan', 3, 42.52, 3.61, 'USD', '71559a31-f19f-3447-8322-ef84629ad869', 'succeeded', 'Bank Transfer', NULL, 2, '2026-08-11 04:57:46', '2026-08-11 04:57:46'), +(90, '9B4A92C44EA7', 'Samir Stiedemann', 'heidenreich.efrain@example.org', '**** **** **** 2525', 3, 2030, 'Professional Plan', 4, 58.64, 4.01, 'EUR', '53b29d6f-f6eb-3e85-b238-3e1a80d0ac2b', 'succeeded', 'Bank Transfer', NULL, 2, '2026-08-23 00:26:17', '2026-08-23 00:26:17'), +(91, '9B4A92C45228', 'Zita Schiller', 'yschimmel@example.net', '**** **** **** 0970', 8, 2029, 'Custom Plan', 1, 161.67, 29.08, 'GBP', '87e5778a-ae6a-3936-b2e1-66cedbfef1ca', 'succeeded', 'Bank Transfer', NULL, 2, '2026-08-07 09:56:40', '2026-08-07 09:56:40'), +(92, '9B4A92C455A4', 'Gus Jones', 'grover.flatley@example.net', '**** **** **** 3984', 2, 2027, 'Starter Plan', 3, 219.81, 42.07, 'EUR', '1fc2bdd1-653c-3da6-8752-8c8ee0d02470', 'succeeded', 'Paypal', NULL, 2, '2026-08-19 17:47:09', '2026-08-19 17:47:09'), +(93, '9B4A92C45917', 'Mara Kuhlman II', 'feeney.audra@example.org', '**** **** **** 5677', 8, 2025, 'Free Plan', 2, 289.46, 5.52, 'EUR', '76b52311-41a1-3c34-a982-d107092433a5', 'succeeded', 'Paypal', 'https://cummerata.biz/placeat-consequuntur-non-dignissimos-nihil-ipsa-nulla.html', 2, '2026-09-12 02:35:02', '2026-09-12 02:35:02'), +(94, '9B4A92C45CBA', 'Raegan O\'Kon', 'trevion00@example.com', '**** **** **** 3672', 5, 2025, 'Free Plan', 2, 54.04, 12.55, 'EUR', 'e3eb9c4e-2023-323f-96a0-b3b515faccec', 'succeeded', 'Bank Transfer', 'http://wunsch.org/ipsam-consectetur-voluptates-molestiae', 2, '2026-09-09 00:13:11', '2026-09-09 00:13:11'), +(95, '9B4A92C46047', 'Gudrun Bauch', 'jamal01@example.com', '**** **** **** 8876', 8, 2026, 'Custom Plan', 1, 258.84, 76.29, 'USD', '4630d314-ad23-3637-8ce1-5e6d590c862f', 'succeeded', 'Paypal', NULL, 2, '2026-09-02 14:11:42', '2026-09-02 14:11:42'), +(96, '9B4A92C463B3', 'Dr. Dannie Goodwin II', 'alang@example.com', '**** **** **** 5172', 6, 2025, 'Starter Plan', 3, 94.09, 24.50, 'USD', 'c42662d3-d60c-3f6e-8bd8-388b8fd6e43f', 'succeeded', 'Paypal', NULL, 2, '2026-09-18 18:12:04', '2026-09-18 18:12:04'), +(97, '9B4A92C4672D', 'Jesus Smitham', 'pkeeling@example.org', '**** **** **** 7708', 10, 2024, 'Starter Plan', 3, 255.44, 3.30, 'EUR', 'ab3aafd9-04d6-3c88-9541-ad00e2820f22', 'succeeded', 'Stripe', NULL, 2, '2026-09-25 16:43:31', '2026-09-25 16:43:31'), +(98, '9B4A92C46AA5', 'Dr. Javier Bauch MD', 'mmills@example.org', '**** **** **** 9827', 2, 2024, 'Free Plan', 2, 177.37, 11.02, 'USD', '03bb7435-adf4-3545-8443-1725ec4008b1', 'succeeded', 'Paypal', NULL, 2, '2026-09-27 22:45:23', '2026-09-27 22:45:23'), +(99, '9B4A92C46EDE', 'Dr. Omer Eichmann PhD', 'wilfredo04@example.net', '**** **** **** 4309', 11, 2024, 'Professional Plan', 4, 144.95, 4.65, 'USD', '807aa477-c9bd-38e5-a749-d800f15fb6f5', 'succeeded', 'Paypal', NULL, 2, '2026-09-28 19:48:52', '2026-09-28 19:48:52'), +(100, '9B4A92C4725F', 'Ms. Maia Rau', 'domenica.crona@example.net', '**** **** **** 0860', 10, 2030, 'Starter Plan', 3, 220.04, 30.44, 'EUR', '4e81fa50-e855-3a8a-8461-a89ddd43590b', 'succeeded', 'Bank Transfer', NULL, 2, '2026-09-17 16:23:24', '2026-09-17 16:23:24'), +(101, '9B4A92C475C8', 'Serenity Denesik', 'hillard.quitzon@example.net', '**** **** **** 2383', 5, 2028, 'Free Plan', 2, 163.58, 29.88, 'GBP', '36006582-dcc6-3855-818e-23c0c479c90f', 'succeeded', 'Stripe', NULL, 2, '2026-09-16 09:01:31', '2026-09-16 09:01:31'), +(102, '9B4A92C4793B', 'Macie Schaefer', 'abe33@example.net', '**** **** **** 4605', 6, 2027, 'Free Plan', 2, 114.64, 30.22, 'USD', '92b4f6be-cfd0-3e89-bd63-ffb00589ea37', 'succeeded', 'Stripe', 'http://daniel.net/optio-accusantium-quos-consequatur-et-assumenda-veritatis-delectus-laudantium', 2, '2026-09-12 21:02:19', '2026-09-12 21:02:19'), +(103, '9B4A92C47CDF', 'Dr. Wellington Koelpin', 'evelyn.weissnat@example.com', '**** **** **** 2347', 1, 2027, 'Custom Plan', 1, 117.21, 26.64, 'GBP', '1f191503-4469-3097-b67a-90aae5ac2b77', 'succeeded', 'Paypal', 'http://www.lueilwitz.com/', 2, '2026-09-01 03:06:52', '2026-09-01 03:06:52'), +(104, '9B4A92C4808C', 'Elwin Torp', 'walter.elisa@example.com', '**** **** **** 7042', 7, 2025, 'Professional Plan', 4, 245.14, 11.45, 'EUR', 'b0a0898a-59c5-3eb8-80ca-5bec86b8fd57', 'succeeded', 'Stripe', NULL, 2, '2026-09-20 08:35:20', '2026-09-20 08:35:20'), +(105, '9B4A92C48408', 'Janet Conroy', 'sbeatty@example.org', '**** **** **** 2291', 7, 2030, 'Professional Plan', 4, 221.98, 49.68, 'EUR', 'a3ffe815-235f-3b4d-865c-1572b544ebba', 'succeeded', 'Stripe', 'http://www.schamberger.com/rerum-ea-quia-explicabo-accusantium', 2, '2026-09-28 19:29:52', '2026-09-28 19:29:52'), +(106, '9B4A92C487AC', 'Mrs. Addison Leuschke', 'serenity.schaefer@example.com', '**** **** **** 4518', 6, 2029, 'Professional Plan', 4, 204.41, 19.36, 'EUR', 'f0fe666b-c975-3342-b89f-d4e49405614d', 'succeeded', 'Bank Transfer', 'http://adams.com/sapiente-laudantium-ea-temporibus-et-quis-dolorem-consequatur-alias', 2, '2026-10-09 13:16:39', '2026-10-09 13:16:39'), +(107, '9B4A92C48B47', 'Miss Syble Spinka Sr.', 'jana37@example.org', '**** **** **** 7911', 7, 2027, 'Professional Plan', 4, 82.07, 22.41, 'USD', '24d11068-d47e-3bf8-ada6-c7d0601df6fc', 'succeeded', 'Bank Transfer', 'https://www.effertz.com/cupiditate-veniam-et-animi-voluptatem', 2, '2026-10-09 00:43:25', '2026-10-09 00:43:25'), +(108, '9B4A92C48ED3', 'Dr. Rolando Lakin V', 'rory05@example.com', '**** **** **** 1086', 6, 2028, 'Starter Plan', 3, 208.08, 43.96, 'EUR', '64e7f9a1-1078-3135-9f1c-d55ee6902ec6', 'succeeded', 'Stripe', 'http://schmeler.com/dolorem-quas-rerum-et-sapiente', 2, '2026-10-17 03:02:06', '2026-10-17 03:02:06'), +(109, '9B4A92C49252', 'Miss Adrianna Morissette', 'smckenzie@example.net', '**** **** **** 5827', 8, 2024, 'Starter Plan', 3, 44.75, 6.53, 'USD', '78f0345b-90d0-320b-9027-7778312163fd', 'succeeded', 'Bank Transfer', 'http://corkery.com/quis-quo-corrupti-inventore-doloremque-et-ut-eaque', 2, '2026-10-24 18:36:19', '2026-10-24 18:36:19'), +(110, '9B4A92C495E1', 'Ms. Felicita Roberts Sr.', 'sabina.mckenzie@example.net', '**** **** **** 5626', 8, 2025, 'Free Plan', 2, 61.77, 5.12, 'EUR', 'd50d3b65-144f-3523-a4bf-234f65feb91c', 'succeeded', 'Stripe', NULL, 2, '2026-10-23 10:45:44', '2026-10-23 10:45:44'), +(111, '9B4A92C49940', 'Roberto Wintheiser', 'pagac.rodolfo@example.com', '**** **** **** 3772', 11, 2028, 'Custom Plan', 1, 212.34, 31.85, 'EUR', 'bdbe660b-61ff-30a0-9d22-73bb44a275ae', 'succeeded', 'Paypal', NULL, 2, '2026-10-09 22:20:15', '2026-10-09 22:20:15'), +(112, '9B4A92C49CBB', 'Samantha Schulist', 'daren41@example.com', '**** **** **** 1857', 9, 2024, 'Professional Plan', 4, 172.49, 31.48, 'USD', '4ae86fd9-be37-328a-8d18-3ed0bc86a10d', 'succeeded', 'Paypal', 'http://grimes.com/', 2, '2026-10-14 23:06:47', '2026-10-14 23:06:47'), +(113, '9B4A92C4A02D', 'Modesto Toy', 'lschoen@example.net', '**** **** **** 8073', 7, 2025, 'Custom Plan', 1, 117.52, 8.80, 'GBP', '088950b0-fc9e-39bc-96d0-ab1d82693226', 'succeeded', 'Bank Transfer', 'http://www.wunsch.com/', 2, '2026-10-29 07:38:24', '2026-10-29 07:38:24'), +(114, '9B4A92C4A390', 'Ms. Phoebe Goldner Jr.', 'dudley.stiedemann@example.net', '**** **** **** 3281', 11, 2029, 'Professional Plan', 4, 139.75, 1.18, 'USD', '73b2b2f0-d24a-3f3d-9b6d-997bd1f2d155', 'succeeded', 'Bank Transfer', 'http://hane.biz/enim-quo-odit-officia-animi-ea-aliquid', 2, '2026-10-02 20:20:02', '2026-10-02 20:20:02'), +(115, '9B4A92C4A711', 'Lauren Fay', 'merle28@example.com', '**** **** **** 5224', 9, 2027, 'Free Plan', 2, 234.67, 17.26, 'GBP', '4c23d03b-3fa0-37b6-8715-8d60bd9a4d20', 'succeeded', 'Stripe', 'https://ebert.biz/aut-numquam-optio-soluta-ipsa-et.html', 2, '2026-10-19 17:46:39', '2026-10-19 17:46:39'), +(116, '9B4A92C4AAAE', 'Avery Kulas', 'ford07@example.net', '**** **** **** 2564', 8, 2028, 'Free Plan', 2, 61.66, 1.73, 'USD', '51e33e69-64c0-3dde-94b2-3b6747897753', 'succeeded', 'Stripe', NULL, 2, '2026-11-20 18:19:26', '2026-11-20 18:19:26'), +(117, '9B4A92C4AE35', 'River Senger', 'tstreich@example.com', '**** **** **** 3043', 11, 2027, 'Custom Plan', 1, 155.09, 11.23, 'GBP', 'ffe41d6f-9d61-31e9-9316-ac7ceb34cf35', 'succeeded', 'Stripe', 'http://www.thiel.com/adipisci-architecto-eaque-sequi-id-officiis', 2, '2026-11-13 08:49:33', '2026-11-13 08:49:33'), +(118, '9B4A92C4B1CB', 'Amanda Bayer', 'maritza.satterfield@example.org', '**** **** **** 3295', 6, 2027, 'Professional Plan', 4, 189.70, 1.07, 'USD', 'c3e18497-70a2-3406-a9e0-79d791de781f', 'succeeded', 'Bank Transfer', 'http://shanahan.com/aut-autem-optio-quo-harum-qui', 2, '2026-11-21 07:57:17', '2026-11-21 07:57:17'), +(119, '9B4A92C4B57A', 'Shany Kiehn', 'tschulist@example.org', '**** **** **** 7261', 7, 2028, 'Custom Plan', 1, 172.48, 49.33, 'GBP', 'fed43ff9-35c6-3a20-8227-5da6d64d8384', 'succeeded', 'Paypal', 'https://sporer.info/tempore-voluptas-quos-voluptates-tempore.html', 2, '2026-11-02 01:57:01', '2026-11-02 01:57:01'), +(120, '9B4A92C4B8F3', 'Sidney Gulgowski', 'nathanael60@example.org', '**** **** **** 7133', 5, 2029, 'Starter Plan', 3, 183.00, 46.39, 'USD', '83f2a764-79cd-3195-97af-c73d1c8a589c', 'succeeded', 'Bank Transfer', NULL, 2, '2026-11-17 03:12:49', '2026-11-17 03:12:49'), +(121, '9B4A92C4BC6C', 'Kiana VonRueden', 'johnston.jonatan@example.org', '**** **** **** 1811', 12, 2030, 'Starter Plan', 3, 292.77, 76.31, 'GBP', '3b0f7ef3-45d1-3eab-a991-25549225a7c1', 'succeeded', 'Stripe', 'http://veum.org/', 2, '2026-11-28 17:59:21', '2026-11-28 17:59:21'), +(122, '9B4A92C4BFEF', 'Ms. Autumn Schmitt', 'hegmann.elijah@example.net', '**** **** **** 7202', 2, 2024, 'Professional Plan', 4, 221.00, 57.49, 'USD', '258c605d-4b70-303a-afa6-469cc8fa7599', 'succeeded', 'Paypal', 'https://www.pfannerstill.com/id-sint-ut-accusantium-omnis-qui', 2, '2026-11-03 00:41:22', '2026-11-03 00:41:22'), +(123, '9B4A92C4C380', 'Miss Marina Hahn', 'kurtis44@example.net', '**** **** **** 8021', 1, 2029, 'Custom Plan', 1, 97.16, 11.89, 'USD', 'f1e545b5-c292-3eb7-a16d-d5d12f916f26', 'succeeded', 'Stripe', 'http://www.grimes.info/sit-quia-deserunt-ullam-rerum-veritatis.html', 2, '2026-11-06 03:06:38', '2026-11-06 03:06:38'), +(124, '9B4A92C4C6FE', 'Mr. Alden Mraz', 'chelsea.deckow@example.org', '**** **** **** 6158', 4, 2027, 'Custom Plan', 1, 126.06, 9.32, 'GBP', '54ac6cca-bb94-39e5-b984-8de2dc38dd4c', 'succeeded', 'Paypal', NULL, 2, '2026-11-03 18:55:52', '2026-11-03 18:55:52'), +(125, '9B4A92C4CAAE', 'Dr. Herman Reichert II', 'pfannerstill.merl@example.com', '**** **** **** 5837', 3, 2025, 'Custom Plan', 1, 294.07, 1.45, 'GBP', '59e229d6-bdd5-310a-ad95-13fde0b7ab0e', 'succeeded', 'Stripe', 'http://www.torp.biz/beatae-qui-et-qui-eaque', 2, '2026-11-28 17:38:14', '2026-11-28 17:38:14'), +(126, '9B4A92C4CE78', 'Maxime Abernathy', 'jamir.dare@example.net', '**** **** **** 8953', 9, 2029, 'Starter Plan', 3, 31.20, 6.50, 'GBP', '33e38819-7dab-3620-bea5-a27289cc5efa', 'succeeded', 'Stripe', 'http://www.mante.com/tempora-ipsa-dolorem-odio-et-libero-cupiditate-est', 2, '2026-11-29 15:18:34', '2026-11-29 15:18:34'), +(127, '9B4A92C4D202', 'Erica Ankunding', 'qcrona@example.com', '**** **** **** 8319', 12, 2026, 'Professional Plan', 4, 260.31, 28.19, 'GBP', '8c8a62a7-7acb-3840-bf8b-d66e3d50268a', 'succeeded', 'Paypal', NULL, 2, '2026-12-06 16:20:35', '2026-12-06 16:20:35'), +(128, '9B4A92C4D574', 'Alycia Heller', 'vernie36@example.net', '**** **** **** 2977', 7, 2024, 'Custom Plan', 1, 231.96, 47.88, 'EUR', 'e6afad33-1297-3902-9974-4db3e74413d4', 'succeeded', 'Paypal', NULL, 2, '2026-12-24 18:26:07', '2026-12-24 18:26:07'), +(129, '9B4A92C4D8EF', 'Dr. Hellen Nitzsche DVM', 'giovanny04@example.com', '**** **** **** 8414', 1, 2024, 'Custom Plan', 1, 67.63, 12.86, 'GBP', '0f9eb270-d72a-3d66-a2db-9ab7c6fb9d18', 'succeeded', 'Paypal', NULL, 2, '2026-12-07 16:36:17', '2026-12-07 16:36:17'), +(130, '9B4A92C4DC6D', 'Ernest Predovic', 'rex07@example.net', '**** **** **** 0346', 11, 2028, 'Starter Plan', 3, 182.36, 6.19, 'EUR', '72e845f3-d630-303c-81c5-79f79e364c04', 'succeeded', 'Paypal', 'https://www.jenkins.org/quae-iure-quaerat-aperiam-itaque-provident', 2, '2026-12-25 14:58:27', '2026-12-25 14:58:27'), +(131, '9B4A92C4DFFE', 'Natalia Marquardt', 'izabella.parker@example.org', '**** **** **** 3693', 11, 2025, 'Professional Plan', 4, 165.89, 20.29, 'EUR', '98bcefe8-80c8-398d-85a9-70ff2a4d3fad', 'succeeded', 'Bank Transfer', NULL, 2, '2026-12-25 15:11:22', '2026-12-25 15:11:22'), +(132, '9B4A92C4E371', 'Prof. Arlo Wisozk', 'blanche.leannon@example.net', '**** **** **** 9842', 11, 2024, 'Custom Plan', 1, 78.50, 9.38, 'USD', '7e8f973a-7d8b-3c09-8c8f-633309f093ee', 'succeeded', 'Paypal', NULL, 2, '2026-12-09 13:19:31', '2026-12-09 13:19:31'), +(133, '9B4A92C4E6E9', 'Garrison Bradtke', 'whammes@example.com', '**** **** **** 9724', 8, 2025, 'Professional Plan', 4, 264.25, 20.33, 'EUR', '8ed91ee2-4bca-31a0-895d-d17130887aba', 'succeeded', 'Paypal', 'http://www.hettinger.info/aut-est-in-consequatur-laboriosam-sed.html', 2, '2026-12-17 04:20:02', '2026-12-17 04:20:02'), +(134, '9B4A92C4EA87', 'Sally Donnelly', 'ritchie.felicita@example.org', '**** **** **** 7847', 11, 2028, 'Starter Plan', 3, 234.06, 24.83, 'GBP', '067ef3f8-43ca-3d5f-9d51-23e18f697db0', 'succeeded', 'Bank Transfer', NULL, 2, '2026-12-22 04:26:22', '2026-12-22 04:26:22'), +(135, '9B4FA18DF759', 'Company', 'company@example.com', NULL, NULL, NULL, 'Free Plan', 2, 0.00, 0.00, 'PHP', '', 'succeeded', '-', NULL, 2, '2026-03-14 06:03:04', '2026-03-14 06:03:04'), +(136, '9C330525408D', 'Marlon Domagtoy', 'marlon.domagtoy@sebconnexion.com', NULL, NULL, NULL, 'HR PLAN', 3, 0.00, 0.00, 'PHP', '', 'succeeded', '-', NULL, 58, '2026-03-25 08:46:10', '2026-03-25 08:46:10'), +(137, '9E08A8575A74', 'Company', 'company@example.com', NULL, NULL, NULL, 'Free Plan', 2, 0.00, 0.00, 'PHP', '', 'succeeded', '-', NULL, 2, '2026-04-16 15:06:45', '2026-04-16 15:06:45'), +(138, '9E08AA3344DD', 'Company', 'company@example.com', NULL, NULL, NULL, 'HR PLAN', 3, 0.00, 0.00, 'PHP', '', 'succeeded', '-', NULL, 2, '2026-04-16 15:07:15', '2026-04-16 15:07:15'), +(139, '9E08ACB34099', 'Company', 'company@example.com', NULL, NULL, NULL, 'Free Plan', 2, 0.00, 0.00, 'PHP', '', 'succeeded', '-', NULL, 2, '2026-04-16 15:07:55', '2026-04-16 15:07:55'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `overtimes` +-- + +CREATE TABLE `overtimes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(255) NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `total_days` int(11) NOT NULL, + `hours` decimal(8,2) NOT NULL, + `rate` decimal(10,2) NOT NULL, + `start_date` date NOT NULL, + `end_date` date NOT NULL, + `notes` text DEFAULT NULL, + `status` enum('active','expired') NOT NULL DEFAULT 'active', + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `overtimes` +-- + +INSERT INTO `overtimes` (`id`, `title`, `employee_id`, `total_days`, `hours`, `rate`, `start_date`, `end_date`, `notes`, `status`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'System Maintenance', 8, 3, 24.00, 20.00, '2026-03-06', '2026-03-08', 'After hours system maintenance and updates for server infrastructure.', 'active', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 'System Maintenance', 10, 3, 24.00, 20.00, '2026-02-12', '2026-02-14', 'After hours system maintenance and updates for server infrastructure.', 'active', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 'System Maintenance', 12, 3, 24.00, 20.00, '2026-03-06', '2026-03-08', 'After hours system maintenance and updates for server infrastructure.', 'active', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 'Holiday Emergency Support', 14, 1, 8.00, 30.00, '2026-02-25', '2026-02-25', 'Emergency support during holiday period for critical system maintenance.', 'active', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 'System Maintenance', 16, 3, 24.00, 20.00, '2026-03-03', '2026-03-05', 'After hours system maintenance and updates for server infrastructure.', 'active', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 'System Maintenance', 18, 3, 24.00, 20.00, '2026-02-23', '2026-02-25', 'After hours system maintenance and updates for server infrastructure.', 'active', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 'System Maintenance', 20, 3, 24.00, 20.00, '2026-03-03', '2026-03-05', 'After hours system maintenance and updates for server infrastructure.', 'active', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 'System Maintenance', 22, 3, 24.00, 20.00, '2026-03-04', '2026-03-06', 'After hours system maintenance and updates for server infrastructure.', 'active', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 'Holiday Emergency Support', 24, 1, 8.00, 30.00, '2026-03-05', '2026-03-05', 'Emergency support during holiday period for critical system maintenance.', 'active', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 'Holiday Emergency Support', 26, 1, 8.00, 30.00, '2026-03-02', '2026-03-02', 'Emergency support during holiday period for critical system maintenance.', 'active', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `password_reset_tokens` +-- + +CREATE TABLE `password_reset_tokens` ( + `email` varchar(255) NOT NULL, + `token` varchar(255) NOT NULL, + `created_at` timestamp NULL DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `payrolls` +-- + +CREATE TABLE `payrolls` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(255) NOT NULL, + `payroll_frequency` enum('weekly','biweekly','semi-monthly','monthly') NOT NULL DEFAULT 'monthly', + `cutoff_number` tinyint(4) DEFAULT NULL COMMENT '1 = 1st cutoff, 2 = 2nd cutoff. Used for statutory deduction proration.', + `pay_period_start` date DEFAULT NULL, + `pay_period_end` date DEFAULT NULL, + `pay_date` date DEFAULT NULL, + `notes` longtext DEFAULT NULL, + `total_gross_pay` decimal(10,2) DEFAULT NULL, + `total_deductions` decimal(10,2) DEFAULT NULL, + `total_net_pay` decimal(10,2) DEFAULT NULL, + `employee_count` int(11) DEFAULT NULL, + `status` enum('draft','processing','completed','cancelled') NOT NULL DEFAULT 'draft', + `is_payroll_paid` enum('paid','unpaid') NOT NULL DEFAULT 'unpaid', + `bank_account_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `payrolls` +-- + +INSERT INTO `payrolls` (`id`, `title`, `payroll_frequency`, `cutoff_number`, `pay_period_start`, `pay_period_end`, `pay_date`, `notes`, `total_gross_pay`, `total_deductions`, `total_net_pay`, `employee_count`, `status`, `is_payroll_paid`, `bank_account_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'July 2025 Payroll', 'monthly', NULL, '2025-07-01', '2025-07-31', '2025-08-05', 'Monthly payroll processing for July 2025', 563406.02, 102843.73, 460562.29, 10, 'completed', 'unpaid', NULL, 2, 2, '2026-03-14 00:17:52', '2026-03-16 14:21:43'), +(2, 'August 2025 Payroll', 'monthly', NULL, '2025-08-01', '2025-08-31', '2025-09-05', 'Monthly payroll processing for August 2025', NULL, NULL, NULL, NULL, 'draft', 'unpaid', NULL, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 'September 2025 Payroll', 'monthly', NULL, '2025-09-01', '2025-09-30', '2025-10-05', 'Monthly payroll processing for September 2025', NULL, NULL, NULL, NULL, 'draft', 'unpaid', NULL, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 'October 2025 Payroll', 'monthly', NULL, '2025-10-01', '2025-10-31', '2025-11-05', 'Monthly payroll processing for October 2025', NULL, NULL, NULL, NULL, 'draft', 'unpaid', NULL, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 'Payroll January 31, 2026', 'semi-monthly', NULL, '2026-01-11', '2026-01-25', '2026-01-31', NULL, 68976.66, 6526.95, 62449.71, 10, 'completed', 'unpaid', NULL, NULL, 58, '2026-03-26 13:17:56', '2026-03-26 13:18:09'), +(6, 'test', 'semi-monthly', 2, '2026-01-11', '2026-01-25', '2026-01-31', NULL, 68976.66, 17064.10, 51912.56, 10, 'completed', 'unpaid', NULL, NULL, 58, '2026-03-26 13:56:56', '2026-03-26 13:57:00'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `payroll_entries` +-- + +CREATE TABLE `payroll_entries` ( + `id` bigint(20) UNSIGNED NOT NULL, + `payroll_id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `salary_structure_id` bigint(20) UNSIGNED DEFAULT NULL, + `basic_salary` decimal(10,2) NOT NULL DEFAULT 0.00, + `total_allowances` decimal(10,2) NOT NULL DEFAULT 0.00, + `total_deductions` decimal(10,2) NOT NULL DEFAULT 0.00, + `total_loans` decimal(10,2) NOT NULL DEFAULT 0.00, + `gross_pay` decimal(10,2) NOT NULL DEFAULT 0.00, + `net_pay` decimal(10,2) NOT NULL DEFAULT 0.00, + `per_day_salary` decimal(10,2) NOT NULL DEFAULT 0.00, + `daily_rate` decimal(10,2) DEFAULT NULL, + `hourly_rate` decimal(10,2) DEFAULT NULL, + `working_days` int(11) NOT NULL DEFAULT 0, + `present_days` decimal(5,2) NOT NULL DEFAULT 0.00, + `half_days` decimal(5,2) NOT NULL DEFAULT 0.00, + `half_day_deduction` decimal(10,2) NOT NULL DEFAULT 0.00, + `absent_days` decimal(5,2) NOT NULL DEFAULT 0.00, + `absent_day_deduction` decimal(10,2) NOT NULL DEFAULT 0.00, + `paid_leave_days` decimal(5,2) NOT NULL DEFAULT 0.00, + `unpaid_leave_days` decimal(5,2) NOT NULL DEFAULT 0.00, + `unpaid_leave_deduction` decimal(10,2) NOT NULL DEFAULT 0.00, + `manual_overtime_hours` decimal(5,2) NOT NULL DEFAULT 0.00, + `total_manual_overtimes` decimal(10,2) NOT NULL DEFAULT 0.00, + `attendance_overtime_hours` decimal(5,2) NOT NULL DEFAULT 0.00, + `attendance_overtime_rate` decimal(10,2) NOT NULL DEFAULT 0.00, + `attendance_overtime_amount` decimal(10,2) NOT NULL DEFAULT 0.00, + `overtime_hours` decimal(5,2) NOT NULL DEFAULT 0.00, + `late_hours` decimal(8,2) NOT NULL DEFAULT 0.00, + `undertime_hours` decimal(8,2) NOT NULL DEFAULT 0.00, + `late_deduction` decimal(10,2) NOT NULL DEFAULT 0.00, + `undertime_deduction` decimal(10,2) NOT NULL DEFAULT 0.00, + `holiday_pay` decimal(10,2) NOT NULL DEFAULT 0.00, + `night_diff_amount` decimal(10,2) NOT NULL DEFAULT 0.00, + `statutory_breakdown` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`statutory_breakdown`)), + `status` enum('paid','unpaid') NOT NULL DEFAULT 'unpaid', + `allowances_breakdown` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`allowances_breakdown`)), + `deductions_breakdown` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`deductions_breakdown`)), + `manual_overtimes_breakdown` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`manual_overtimes_breakdown`)), + `loans_breakdown` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`loans_breakdown`)), + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `payroll_entries` +-- + +INSERT INTO `payroll_entries` (`id`, `payroll_id`, `employee_id`, `salary_structure_id`, `basic_salary`, `total_allowances`, `total_deductions`, `total_loans`, `gross_pay`, `net_pay`, `per_day_salary`, `daily_rate`, `hourly_rate`, `working_days`, `present_days`, `half_days`, `half_day_deduction`, `absent_days`, `absent_day_deduction`, `paid_leave_days`, `unpaid_leave_days`, `unpaid_leave_deduction`, `manual_overtime_hours`, `total_manual_overtimes`, `attendance_overtime_hours`, `attendance_overtime_rate`, `attendance_overtime_amount`, `overtime_hours`, `late_hours`, `undertime_hours`, `late_deduction`, `undertime_deduction`, `holiday_pay`, `night_diff_amount`, `statutory_breakdown`, `status`, `allowances_breakdown`, `deductions_breakdown`, `manual_overtimes_breakdown`, `loans_breakdown`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 8, NULL, 25000.00, 7538.00, 2746.55, 0.00, 32538.00, 29791.45, 961.54, NULL, NULL, 27, 17.00, 0.00, 0.00, 2.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 6.00, 150.24, 0.00, 6.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, NULL, 'unpaid', '[{\"name\":\"House Rent Allowance (HRA)\",\"amount\":25},{\"name\":\"Shift Allowance\",\"amount\":7500},{\"name\":\"Performance Bonus\",\"amount\":5},{\"name\":\"Travel Allowance\",\"amount\":8}]', '[{\"name\":\"Income Tax\",\"amount\":150},{\"name\":\"Provident Fund (PF)\",\"amount\":12},{\"name\":\"Loan Deduction\",\"amount\":300},{\"name\":\"Insurance Premium\",\"amount\":2}]', '[]', '[{\"name\":\"Equipment Loan\",\"amount\":0,\"loan_id\":29},{\"name\":\"Salary Advance\",\"amount\":0,\"loan_id\":30},{\"name\":\"Travel Loan\",\"amount\":0,\"loan_id\":31},{\"name\":\"Festival Advance\",\"amount\":0,\"loan_id\":32}]', 2, 2, '2026-03-16 14:21:43', '2026-03-16 14:21:43'), +(2, 1, 10, NULL, 30000.00, 9808.00, 3753.05, 0.00, 39808.00, 36054.95, 1153.85, NULL, NULL, 27, 15.00, 0.00, 0.00, 6.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 6.00, 180.29, 0.00, 6.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, NULL, 'unpaid', '[{\"name\":\"House Rent Allowance (HRA)\",\"amount\":4200},{\"name\":\"Performance Bonus\",\"amount\":2800},{\"name\":\"Transport Allowance\",\"amount\":2800},{\"name\":\"Mobile Allowance\",\"amount\":8}]', '[{\"name\":\"Loan Deduction\",\"amount\":12},{\"name\":\"Income Tax\",\"amount\":400},{\"name\":\"Provident Fund (PF)\",\"amount\":5},{\"name\":\"Professional Tax\",\"amount\":6}]', '[]', '[{\"name\":\"Equipment Loan\",\"amount\":0,\"loan_id\":9},{\"name\":\"Medical Loan\",\"amount\":0,\"loan_id\":10},{\"name\":\"Vehicle Loan\",\"amount\":0,\"loan_id\":11},{\"name\":\"Home Loan\",\"amount\":0,\"loan_id\":12}]', 2, 2, '2026-03-16 14:21:43', '2026-03-16 14:21:43'), +(3, 1, 12, NULL, 35000.00, 10528.00, 4889.55, 0.00, 45528.00, 40638.45, 1346.15, NULL, NULL, 27, 18.00, 0.00, 0.00, 2.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 7.50, 210.34, 0.00, 7.50, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, NULL, 'unpaid', '[{\"name\":\"Travel Allowance\",\"amount\":3000},{\"name\":\"Shift Allowance\",\"amount\":8},{\"name\":\"Overtime Allowance\",\"amount\":7500},{\"name\":\"Medical Allowance\",\"amount\":20}]', '[{\"name\":\"Loan Deduction\",\"amount\":10},{\"name\":\"Canteen Charges\",\"amount\":2},{\"name\":\"Employee State Insurance (ESI)\",\"amount\":350},{\"name\":\"Late Coming Fine\",\"amount\":150}]', '[]', '[{\"name\":\"Vehicle Loan\",\"amount\":0,\"loan_id\":37},{\"name\":\"Medical Loan\",\"amount\":0,\"loan_id\":38},{\"name\":\"Equipment Loan\",\"amount\":0,\"loan_id\":39},{\"name\":\"Home Loan\",\"amount\":0,\"loan_id\":40}]', 2, 2, '2026-03-16 14:21:43', '2026-03-16 14:21:43'), +(4, 1, 14, NULL, 40000.00, 12012.00, 7182.06, 0.00, 52733.16, 45551.10, 1538.46, NULL, NULL, 27, 18.00, 0.00, 0.00, 1.00, 1538.46, 0.00, 0.00, 0.00, 0.00, 721.16, 3.00, 240.39, 721.16, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, NULL, 'unpaid', '[{\"name\":\"Mobile Allowance\",\"amount\":2800},{\"name\":\"Food Allowance\",\"amount\":2800},{\"name\":\"Transport Allowance\",\"amount\":6400},{\"name\":\"Performance Bonus\",\"amount\":12}]', '[{\"name\":\"Canteen Charges\",\"amount\":6},{\"name\":\"Loan Deduction\",\"amount\":7},{\"name\":\"Professional Tax\",\"amount\":2},{\"name\":\"Absence Deduction\",\"amount\":200}]', '[]', '[{\"name\":\"Home Loan\",\"amount\":0,\"loan_id\":21},{\"name\":\"Equipment Loan\",\"amount\":0,\"loan_id\":22},{\"name\":\"Salary Advance\",\"amount\":0,\"loan_id\":23},{\"name\":\"Personal Loan\",\"amount\":0,\"loan_id\":24}]', 2, 2, '2026-03-16 14:21:43', '2026-03-16 14:21:43'), +(5, 1, 16, NULL, 50000.00, 12410.00, 11583.76, 0.00, 68720.24, 57136.48, 1923.08, NULL, NULL, 27, 19.00, 0.00, 0.00, 2.00, 3846.16, 0.00, 0.00, 0.00, 0.00, 6310.24, 21.00, 300.49, 6310.24, 21.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, NULL, 'unpaid', '[{\"name\":\"Shift Allowance\",\"amount\":3000},{\"name\":\"Food Allowance\",\"amount\":6400},{\"name\":\"Performance Bonus\",\"amount\":3000},{\"name\":\"Overtime Allowance\",\"amount\":10}]', '[{\"name\":\"Canteen Charges\",\"amount\":2},{\"name\":\"Insurance Premium\",\"amount\":100},{\"name\":\"Late Coming Fine\",\"amount\":5},{\"name\":\"Employee State Insurance (ESI)\",\"amount\":2}]', '[]', '[{\"name\":\"Education Loan\",\"amount\":0,\"loan_id\":5},{\"name\":\"Equipment Loan\",\"amount\":0,\"loan_id\":6},{\"name\":\"Personal Loan\",\"amount\":0,\"loan_id\":7},{\"name\":\"Home Loan\",\"amount\":0,\"loan_id\":8}]', 2, 2, '2026-03-16 14:21:43', '2026-03-16 14:21:43'), +(6, 1, 18, NULL, 60000.00, 7545.00, 17119.67, 0.00, 69167.59, 52047.92, 2307.69, NULL, NULL, 27, 17.00, 0.00, 0.00, 3.00, 6923.07, 0.00, 0.00, 0.00, 0.00, 1622.59, 4.50, 360.58, 1622.59, 4.50, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, NULL, 'unpaid', '[{\"name\":\"Mobile Allowance\",\"amount\":25},{\"name\":\"Travel Allowance\",\"amount\":7500},{\"name\":\"Shift Allowance\",\"amount\":8},{\"name\":\"Transport Allowance\",\"amount\":12}]', '[{\"name\":\"Absence Deduction\",\"amount\":6},{\"name\":\"Income Tax\",\"amount\":200},{\"name\":\"Uniform Charges\",\"amount\":12},{\"name\":\"Insurance Premium\",\"amount\":150}]', '[]', '[{\"name\":\"Home Loan\",\"amount\":0,\"loan_id\":33},{\"name\":\"Salary Advance\",\"amount\":0,\"loan_id\":34},{\"name\":\"Vehicle Loan\",\"amount\":0,\"loan_id\":35},{\"name\":\"Education Loan\",\"amount\":0,\"loan_id\":36}]', 2, 2, '2026-03-16 14:21:43', '2026-03-16 14:21:43'), +(7, 1, 20, NULL, 75000.00, 70.00, 19449.04, 0.00, 83408.41, 63959.37, 2884.62, NULL, NULL, 27, 17.00, 0.00, 0.00, 2.00, 5769.24, 0.00, 0.00, 0.00, 0.00, 8338.41, 18.50, 450.73, 8338.41, 18.50, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, NULL, 'unpaid', '[{\"name\":\"House Rent Allowance (HRA)\",\"amount\":18},{\"name\":\"Shift Allowance\",\"amount\":12},{\"name\":\"Medical Allowance\",\"amount\":15},{\"name\":\"Education Allowance\",\"amount\":25}]', '[{\"name\":\"Late Coming Fine\",\"amount\":300},{\"name\":\"Absence Deduction\",\"amount\":2},{\"name\":\"Professional Tax\",\"amount\":3},{\"name\":\"Provident Fund (PF)\",\"amount\":12}]', '[]', '[{\"name\":\"Education Loan\",\"amount\":0,\"loan_id\":25},{\"name\":\"Salary Advance\",\"amount\":0,\"loan_id\":26},{\"name\":\"Travel Loan\",\"amount\":0,\"loan_id\":27},{\"name\":\"Personal Loan\",\"amount\":0,\"loan_id\":28}]', 2, 2, '2026-03-16 14:21:43', '2026-03-16 14:21:43'), +(8, 1, 22, NULL, 90000.00, 4270.00, 24344.13, 0.00, 98326.47, 73982.34, 3461.54, NULL, NULL, 27, 19.00, 0.00, 0.00, 2.00, 6923.08, 0.00, 0.00, 0.00, 0.00, 4056.47, 7.50, 540.86, 4056.47, 7.50, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, NULL, 'unpaid', '[{\"name\":\"Transport Allowance\",\"amount\":25},{\"name\":\"Education Allowance\",\"amount\":20},{\"name\":\"Travel Allowance\",\"amount\":25},{\"name\":\"Performance Bonus\",\"amount\":4200}]', '[{\"name\":\"Insurance Premium\",\"amount\":12},{\"name\":\"Provident Fund (PF)\",\"amount\":6},{\"name\":\"Late Coming Fine\",\"amount\":7},{\"name\":\"Loan Deduction\",\"amount\":2}]', '[]', '[{\"name\":\"Home Loan\",\"amount\":0,\"loan_id\":13},{\"name\":\"Medical Loan\",\"amount\":0,\"loan_id\":14},{\"name\":\"Emergency Loan\",\"amount\":0,\"loan_id\":15},{\"name\":\"Equipment Loan\",\"amount\":0,\"loan_id\":16}]', 2, 2, '2026-03-16 14:21:43', '2026-03-16 14:21:43'), +(9, 1, 24, NULL, 25000.00, 9224.00, 5781.17, 0.00, 37378.99, 31597.82, 961.54, NULL, NULL, 27, 17.00, 0.00, 0.00, 3.00, 2884.62, 0.00, 0.00, 0.00, 0.00, 3154.99, 21.00, 150.24, 3154.99, 21.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, NULL, 'unpaid', '[{\"name\":\"Overtime Allowance\",\"amount\":6400},{\"name\":\"Food Allowance\",\"amount\":2800},{\"name\":\"Travel Allowance\",\"amount\":12},{\"name\":\"Transport Allowance\",\"amount\":12}]', '[{\"name\":\"Loan Deduction\",\"amount\":7},{\"name\":\"Absence Deduction\",\"amount\":250},{\"name\":\"Uniform Charges\",\"amount\":7},{\"name\":\"Income Tax\",\"amount\":350}]', '[]', '[{\"name\":\"Home Loan\",\"amount\":0,\"loan_id\":1},{\"name\":\"Personal Loan\",\"amount\":0,\"loan_id\":2},{\"name\":\"Festival Advance\",\"amount\":0,\"loan_id\":3},{\"name\":\"Education Loan\",\"amount\":0,\"loan_id\":4}]', 2, 2, '2026-03-16 14:21:43', '2026-03-16 14:21:43'), +(10, 1, 26, NULL, 30000.00, 4445.00, 5994.75, 0.00, 35797.16, 29802.41, 1153.85, NULL, NULL, 27, 17.00, 0.00, 0.00, 2.00, 2307.70, 0.00, 0.00, 0.00, 0.00, 1352.16, 7.50, 180.29, 1352.16, 7.50, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, NULL, 'unpaid', '[{\"name\":\"Overtime Allowance\",\"amount\":20},{\"name\":\"House Rent Allowance (HRA)\",\"amount\":25},{\"name\":\"Medical Allowance\",\"amount\":2800},{\"name\":\"Travel Allowance\",\"amount\":1600}]', '[{\"name\":\"Loan Deduction\",\"amount\":150},{\"name\":\"Provident Fund (PF)\",\"amount\":5},{\"name\":\"Absence Deduction\",\"amount\":200},{\"name\":\"Uniform Charges\",\"amount\":2}]', '[]', '[{\"name\":\"Medical Loan\",\"amount\":0,\"loan_id\":17},{\"name\":\"Personal Loan\",\"amount\":0,\"loan_id\":18},{\"name\":\"Emergency Loan\",\"amount\":0,\"loan_id\":19},{\"name\":\"Home Loan\",\"amount\":0,\"loan_id\":20}]', 2, 2, '2026-03-16 14:21:43', '2026-03-16 14:21:43'), +(11, 5, 58, 11, 0.00, 0.00, 475.01, 0.00, 0.00, -475.01, 0.04, 0.04, 0.01, 12, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.01, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, '{\"sss\":{\"msc\":5000,\"employee\":225,\"employer\":475,\"total\":700},\"philhealth\":{\"base\":10000,\"employee\":250,\"employer\":250,\"total\":500},\"pagibig\":{\"base\":1,\"employee\":0.01,\"employer\":0.02,\"total\":0.03},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":475.01}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:18:09', '2026-03-26 13:18:09'), +(12, 5, 71, 12, 8000.00, 0.00, 0.00, 0.00, 8000.00, 8000.00, 1000.00, 1000.00, 125.00, 12, 8.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 2.99, 156.25, 0.00, 2.99, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, '{\"sss\":{\"employee\":0,\"employer\":0},\"philhealth\":{\"employee\":0,\"employer\":0},\"pagibig\":{\"employee\":0,\"employer\":0},\"tax\":{\"tax\":0},\"total_employee_share\":0,\"skipped_reason\":\"Statutory deducted on 2nd cutoff only\"}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:18:09', '2026-03-26 13:18:09'), +(13, 5, 72, 13, 8000.00, 0.00, 0.00, 0.00, 8000.00, 8000.00, 1000.00, 1000.00, 125.00, 12, 8.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.84, 156.25, 0.00, 0.84, 0.45, 2.85, 0.00, 0.00, 0.00, 0.00, '{\"sss\":{\"employee\":0,\"employer\":0},\"philhealth\":{\"employee\":0,\"employer\":0},\"pagibig\":{\"employee\":0,\"employer\":0},\"tax\":{\"tax\":0},\"total_employee_share\":0,\"skipped_reason\":\"Statutory deducted on 2nd cutoff only\"}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:18:09', '2026-03-26 13:18:09'), +(14, 5, 73, 14, 8307.72, 0.00, 0.00, 0.00, 8307.72, 8307.72, 923.08, 923.08, 115.39, 12, 9.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 13.70, 144.24, 0.00, 13.70, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, '{\"sss\":{\"employee\":0,\"employer\":0},\"philhealth\":{\"employee\":0,\"employer\":0},\"pagibig\":{\"employee\":0,\"employer\":0},\"tax\":{\"tax\":0},\"total_employee_share\":0,\"skipped_reason\":\"Statutory deducted on 2nd cutoff only\"}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:18:09', '2026-03-26 13:18:09'), +(15, 5, 74, 15, 6769.20, 0.00, 0.00, 0.00, 6769.20, 6769.20, 846.15, 846.15, 105.77, 12, 8.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 12.48, 132.21, 0.00, 12.48, 0.00, 2.00, 0.00, 0.00, 0.00, 0.00, '{\"sss\":{\"employee\":0,\"employer\":0},\"philhealth\":{\"employee\":0,\"employer\":0},\"pagibig\":{\"employee\":0,\"employer\":0},\"tax\":{\"tax\":0},\"total_employee_share\":0,\"skipped_reason\":\"Statutory deducted on 2nd cutoff only\"}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:18:09', '2026-03-26 13:18:09'), +(16, 5, 75, 16, 7650.00, 0.00, 1680.85, 0.00, 8122.55, 6441.70, 765.00, 765.00, 95.63, 12, 10.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 213.97, 1.79, 119.54, 213.97, 1.79, 0.00, 1.98, 0.00, 189.35, 0.00, 258.58, '{\"sss\":{\"msc\":18500,\"employee\":832.5,\"employer\":1757.5,\"total\":2590},\"philhealth\":{\"base\":18360,\"employee\":459,\"employer\":459,\"total\":918},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":1491.5}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:18:09', '2026-03-26 13:18:09'), +(17, 5, 76, 17, 7400.00, 0.00, 1454.00, 0.00, 7815.37, 6361.37, 740.00, 740.00, 92.50, 12, 10.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 146.84, 1.27, 115.63, 146.84, 1.27, 0.00, 0.00, 0.00, 0.00, 0.00, 268.53, '{\"sss\":{\"msc\":18000,\"employee\":810,\"employer\":1710,\"total\":2520},\"philhealth\":{\"base\":17760,\"employee\":444,\"employer\":444,\"total\":888},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":1454}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:18:09', '2026-03-26 13:18:09'), +(18, 5, 77, 18, 5923.05, 0.00, 24.33, 0.00, 6059.23, 6034.90, 846.15, 846.15, 105.77, 12, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 136.18, 1.03, 132.21, 136.18, 1.03, 0.23, 0.00, 24.33, 0.00, 0.00, 0.00, '{\"sss\":{\"employee\":0,\"employer\":0},\"philhealth\":{\"employee\":0,\"employer\":0},\"pagibig\":{\"employee\":0,\"employer\":0},\"tax\":{\"tax\":0},\"total_employee_share\":0,\"skipped_reason\":\"Statutory deducted on 2nd cutoff only\"}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:18:09', '2026-03-26 13:18:09'), +(19, 5, 78, 19, 6950.00, 0.00, 1533.26, 0.00, 7411.42, 5878.16, 695.00, 695.00, 86.88, 12, 10.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 225.89, 2.08, 108.60, 225.89, 2.08, 0.00, 2.00, 0.00, 173.76, 0.00, 235.53, '{\"sss\":{\"msc\":16500,\"employee\":742.5,\"employer\":1567.5,\"total\":2310},\"philhealth\":{\"base\":16680,\"employee\":417,\"employer\":417,\"total\":834},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":1359.5}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:18:09', '2026-03-26 13:18:09'), +(20, 5, 79, 20, 7645.00, 0.00, 1359.50, 0.00, 8491.17, 7131.67, 695.00, 695.00, 86.88, 12, 11.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 537.57, 4.95, 108.60, 537.57, 4.95, 0.00, 0.00, 0.00, 0.00, 0.00, 308.60, '{\"sss\":{\"msc\":16500,\"employee\":742.5,\"employer\":1567.5,\"total\":2310},\"philhealth\":{\"base\":16680,\"employee\":417,\"employer\":417,\"total\":834},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":1359.5}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:18:09', '2026-03-26 13:18:09'), +(21, 6, 58, 11, 0.00, 0.00, 475.01, 0.00, 0.00, -475.01, 0.04, 0.04, 0.01, 12, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.01, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, '{\"sss\":{\"msc\":5000,\"employee\":225,\"employer\":475,\"total\":700},\"philhealth\":{\"base\":10000,\"employee\":250,\"employer\":250,\"total\":500},\"pagibig\":{\"base\":1,\"employee\":0.01,\"employer\":0.02,\"total\":0.03},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":475.01}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:57:00', '2026-03-26 13:57:00'), +(22, 6, 71, 12, 8000.00, 0.00, 2492.05, 0.00, 8000.00, 5507.95, 1000.00, 1000.00, 125.00, 12, 8.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 2.99, 156.25, 0.00, 2.99, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, '{\"sss\":{\"msc\":26000,\"employee\":1170,\"employer\":2470,\"total\":3640},\"philhealth\":{\"base\":26000,\"employee\":650,\"employer\":650,\"total\":1300},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":472.05,\"bracket\":\"15%\"},\"total_employee_share\":2492.05}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:57:00', '2026-03-26 13:57:00'), +(23, 6, 72, 13, 8000.00, 0.00, 2492.05, 0.00, 8000.00, 5507.95, 1000.00, 1000.00, 125.00, 12, 8.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.84, 156.25, 0.00, 0.84, 0.45, 2.85, 0.00, 0.00, 0.00, 0.00, '{\"sss\":{\"msc\":26000,\"employee\":1170,\"employer\":2470,\"total\":3640},\"philhealth\":{\"base\":26000,\"employee\":650,\"employer\":650,\"total\":1300},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":472.05,\"bracket\":\"15%\"},\"total_employee_share\":2492.05}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:57:00', '2026-03-26 13:57:00'), +(24, 6, 73, 14, 8307.72, 0.00, 2073.05, 0.00, 8307.72, 6234.67, 923.08, 923.08, 115.39, 12, 9.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 13.70, 144.24, 0.00, 13.70, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, '{\"sss\":{\"msc\":24000,\"employee\":1080,\"employer\":2280,\"total\":3360},\"philhealth\":{\"base\":24000,\"employee\":600,\"employer\":600,\"total\":1200},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":193.05,\"bracket\":\"15%\"},\"total_employee_share\":2073.05}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:57:00', '2026-03-26 13:57:00'), +(25, 6, 74, 15, 6769.20, 0.00, 1740.00, 0.00, 6769.20, 5029.20, 846.15, 846.15, 105.77, 12, 8.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 12.48, 132.21, 0.00, 12.48, 0.00, 2.00, 0.00, 0.00, 0.00, 0.00, '{\"sss\":{\"msc\":22000,\"employee\":990,\"employer\":2090,\"total\":3080},\"philhealth\":{\"base\":22000,\"employee\":550,\"employer\":550,\"total\":1100},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":1740}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:57:00', '2026-03-26 13:57:00'), +(26, 6, 75, 16, 7650.00, 0.00, 1680.85, 0.00, 8122.55, 6441.70, 765.00, 765.00, 95.63, 12, 10.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 213.97, 1.79, 119.54, 213.97, 1.79, 0.00, 1.98, 0.00, 189.35, 0.00, 258.58, '{\"sss\":{\"msc\":18500,\"employee\":832.5,\"employer\":1757.5,\"total\":2590},\"philhealth\":{\"base\":18360,\"employee\":459,\"employer\":459,\"total\":918},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":1491.5}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:57:00', '2026-03-26 13:57:00'), +(27, 6, 76, 17, 7400.00, 0.00, 1454.00, 0.00, 7815.37, 6361.37, 740.00, 740.00, 92.50, 12, 10.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 146.84, 1.27, 115.63, 146.84, 1.27, 0.00, 0.00, 0.00, 0.00, 0.00, 268.53, '{\"sss\":{\"msc\":18000,\"employee\":810,\"employer\":1710,\"total\":2520},\"philhealth\":{\"base\":17760,\"employee\":444,\"employer\":444,\"total\":888},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":1454}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:57:00', '2026-03-26 13:57:00'), +(28, 6, 77, 18, 5923.05, 0.00, 1764.33, 0.00, 6059.23, 4294.90, 846.15, 846.15, 105.77, 12, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 136.18, 1.03, 132.21, 136.18, 1.03, 0.23, 0.00, 24.33, 0.00, 0.00, 0.00, '{\"sss\":{\"msc\":22000,\"employee\":990,\"employer\":2090,\"total\":3080},\"philhealth\":{\"base\":22000,\"employee\":550,\"employer\":550,\"total\":1100},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":1740}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:57:00', '2026-03-26 13:57:00'), +(29, 6, 78, 19, 6950.00, 0.00, 1533.26, 0.00, 7411.42, 5878.16, 695.00, 695.00, 86.88, 12, 10.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 225.89, 2.08, 108.60, 225.89, 2.08, 0.00, 2.00, 0.00, 173.76, 0.00, 235.53, '{\"sss\":{\"msc\":16500,\"employee\":742.5,\"employer\":1567.5,\"total\":2310},\"philhealth\":{\"base\":16680,\"employee\":417,\"employer\":417,\"total\":834},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":1359.5}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:57:00', '2026-03-26 13:57:00'), +(30, 6, 79, 20, 7645.00, 0.00, 1359.50, 0.00, 8491.17, 7131.67, 695.00, 695.00, 86.88, 12, 11.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 537.57, 4.95, 108.60, 537.57, 4.95, 0.00, 0.00, 0.00, 0.00, 0.00, 308.60, '{\"sss\":{\"msc\":16500,\"employee\":742.5,\"employer\":1567.5,\"total\":2310},\"philhealth\":{\"base\":16680,\"employee\":417,\"employer\":417,\"total\":834},\"pagibig\":{\"base\":10000,\"employee\":200,\"employer\":200,\"total\":400},\"tax\":{\"tax\":0,\"bracket\":\"0%\"},\"total_employee_share\":1359.5}', 'unpaid', '[]', '[]', '[]', '[]', 58, 58, '2026-03-26 13:57:00', '2026-03-26 13:57:00'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `payroll_entry_adjustments` +-- + +CREATE TABLE `payroll_entry_adjustments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `payroll_entry_id` bigint(20) UNSIGNED NOT NULL, + `type` enum('earning','deduction') NOT NULL, + `name` varchar(255) NOT NULL, + `amount` decimal(10,2) NOT NULL DEFAULT 0.00, + `reason` text DEFAULT NULL, + `added_by` bigint(20) UNSIGNED NOT NULL, + `created_by` 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 `payroll_settings` +-- + +CREATE TABLE `payroll_settings` ( + `id` bigint(20) UNSIGNED NOT NULL, + `key` varchar(255) NOT NULL, + `value` text DEFAULT NULL, + `created_by` 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; + +-- +-- Dumping data for table `payroll_settings` +-- + +INSERT INTO `payroll_settings` (`id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'statutory_mode', 'manual', 58, '2026-03-26 14:29:13', '2026-03-26 14:29:13'), +(2, 'statutory_deduction_cutoff', 'second', 58, '2026-03-26 14:29:13', '2026-03-26 14:29:13'), +(3, 'default_pay_frequency', 'semi-monthly', 58, '2026-03-26 14:29:13', '2026-03-26 14:29:13'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pay_groups` +-- + +CREATE TABLE `pay_groups` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `type` enum('office','daily') NOT NULL DEFAULT 'office', + `annual_working_days` int(11) NOT NULL, + `created_by` 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; + +-- +-- Dumping data for table `pay_groups` +-- + +INSERT INTO `pay_groups` (`id`, `name`, `type`, `annual_working_days`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Regular (5 days/week)', 'office', 261, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(2, 'Regular (6 days/week)', 'office', 312, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(3, 'Daily Paid', 'daily', 312, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(4, 'Regular (6 days/week)', 'office', 312, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(5, 'Regular (5 days/week)', 'office', 261, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(6, 'Daily Paid', 'daily', 312, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(7, 'Managerial / Exempt', 'office', 312, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(8, 'Daily Paid / Piece-Rate', 'daily', 312, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(9, 'Office Staff', 'office', 261, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `permissions` +-- + +CREATE TABLE `permissions` ( + `id` bigint(20) UNSIGNED NOT NULL, + `add_on` varchar(255) NOT NULL, + `module` varchar(255) NOT NULL, + `label` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `guard_name` varchar(255) 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 `permissions` +-- + +INSERT INTO `permissions` (`id`, `add_on`, `module`, `label`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES +(1, 'general', 'dashboard', 'Manage Dashboard', 'manage-dashboard', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(2, 'general', 'users', 'Manage Users', 'manage-users', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(3, 'general', 'users', 'Manage All Users', 'manage-any-users', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(4, 'general', 'users', 'Manage Own Users', 'manage-own-users', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(5, 'general', 'users', 'Create Users', 'create-users', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(6, 'general', 'users', 'Edit Users', 'edit-users', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(7, 'general', 'users', 'Delete Users', 'delete-users', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(8, 'general', 'users', 'Change Password Users', 'change-password-users', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(9, 'general', 'users', 'Login As User', 'impersonate-users', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(10, 'general', 'users', 'Change Status Users', 'toggle-status-users', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(11, 'general', 'users', 'View Login History', 'view-login-history', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(12, 'general', 'roles', 'Manage Roles', 'manage-roles', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(13, 'general', 'roles', 'Create Roles', 'create-roles', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(14, 'general', 'roles', 'Edit Roles', 'edit-roles', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(15, 'general', 'roles', 'Delete Roles', 'delete-roles', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(16, 'general', 'warehouses', 'Manage Warehouses', 'manage-warehouses', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(17, 'general', 'warehouses', 'Manage All Warehouses', 'manage-any-warehouses', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(18, 'general', 'warehouses', 'Manage Own Warehouses', 'manage-own-warehouses', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(19, 'general', 'warehouses', 'Create Warehouses', 'create-warehouses', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(20, 'general', 'warehouses', 'Edit Warehouses', 'edit-warehouses', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(21, 'general', 'warehouses', 'Delete Warehouses', 'delete-warehouses', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(22, 'general', 'transfers', 'Manage Transfers', 'manage-transfers', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(23, 'general', 'transfers', 'Manage All Transfers', 'manage-any-transfers', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(24, 'general', 'transfers', 'Manage Own Transfers', 'manage-own-transfers', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(25, 'general', 'transfers', 'Create Transfers', 'create-transfers', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(26, 'general', 'transfers', 'Edit Transfers', 'edit-transfers', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(27, 'general', 'transfers', 'Delete Transfers', 'delete-transfers', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(28, 'general', 'settings', 'Manage Settings', 'manage-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(29, 'general', 'settings', 'Edit Settings', 'edit-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(30, 'general', 'settings', 'Manage Brand Settings', 'manage-brand-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(31, 'general', 'settings', 'Edit Brand Settings', 'edit-brand-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(32, 'general', 'settings', 'Manage Company Settings', 'manage-company-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(33, 'general', 'settings', 'Edit Company Settings', 'edit-company-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(34, 'general', 'settings', 'Manage System Settings', 'manage-system-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(35, 'general', 'settings', 'Edit System Settings', 'edit-system-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(36, 'general', 'settings', 'Manage Currency Settings', 'manage-currency-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(37, 'general', 'settings', 'Edit Currency Settings', 'edit-currency-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(38, 'general', 'settings', 'Manage Cache Settings', 'manage-cache-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(39, 'general', 'settings', 'Clear Cache', 'clear-cache', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(40, 'general', 'settings', 'Manage Cookie Settings', 'manage-cookie-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(41, 'general', 'settings', 'Edit Cookie Settings', 'edit-cookie-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(42, 'general', 'settings', 'Manage SEO Settings', 'manage-seo-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(43, 'general', 'settings', 'Edit SEO Settings', 'edit-seo-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(44, 'general', 'settings', 'Manage Storage Settings', 'manage-storage-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(45, 'general', 'settings', 'Edit Storage Settings', 'edit-storage-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(46, 'general', 'settings', 'Manage Email Settings', 'manage-email-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(47, 'general', 'settings', 'Edit Email Settings', 'edit-email-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(48, 'general', 'settings', 'Test Email', 'test-email', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(49, 'general', 'settings', 'Manage Bank Transfer Settings', 'manage-bank-transfer-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(50, 'general', 'settings', 'Edit Bank Transfer Settings', 'edit-bank-transfer-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(51, 'general', 'bank-transfer', 'Manage Bank Transfer Requests', 'manage-bank-transfer-requests', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(52, 'general', 'bank-transfer', 'Approve Bank Transfer Requests', 'approve-bank-transfer-requests', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(53, 'general', 'bank-transfer', 'Reject Bank Transfer Requests', 'reject-bank-transfer-requests', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(54, 'general', 'bank-transfer', 'Delete Bank Transfer Requests', 'delete-bank-transfer-requests', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(55, 'general', 'settings', 'Manage Email Notification Settings', 'manage-email-notification-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(56, 'general', 'settings', 'Manage Pusher Settings', 'manage-pusher-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(57, 'general', 'settings', 'Edit Pusher Settings', 'edit-pusher-settings', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(58, 'general', 'media', 'Manage Media', 'manage-media', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(59, 'general', 'media', 'Manage All Media', 'manage-any-media', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(60, 'general', 'media', 'Manage Own Media', 'manage-own-media', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(61, 'general', 'media', 'Create Media', 'create-media', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(62, 'general', 'media', 'Download Media', 'download-media', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(63, 'general', 'media', 'Delete Media', 'delete-media', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(64, 'general', 'media', 'Manage Media Directories', 'manage-media-directories', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(65, 'general', 'media', 'Manage All Media Directories', 'manage-any-media-directories', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(66, 'general', 'media', 'Manage Own Media Directories', 'manage-own-media-directories', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(67, 'general', 'media', 'Create Media Directories', 'create-media-directories', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(68, 'general', 'media', 'Edit Media Directories', 'edit-media-directories', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(69, 'general', 'media', 'Delete Media Directories', 'delete-media-directories', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(70, 'general', 'helpdesk-categories', 'Manage Helpdesk Categories', 'manage-helpdesk-categories', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(71, 'general', 'helpdesk-categories', 'Create Helpdesk Categories', 'create-helpdesk-categories', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(72, 'general', 'helpdesk-categories', 'Edit Helpdesk Categories', 'edit-helpdesk-categories', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(73, 'general', 'helpdesk-categories', 'Delete Helpdesk Categories', 'delete-helpdesk-categories', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(74, 'general', 'helpdesk-tickets', 'Manage Helpdesk Tickets', 'manage-helpdesk-tickets', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(75, 'general', 'helpdesk-tickets', 'Manage All Helpdesk Tickets', 'manage-any-helpdesk-tickets', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(76, 'general', 'helpdesk-tickets', 'Manage Own Helpdesk Tickets', 'manage-own-helpdesk-tickets', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(77, 'general', 'helpdesk-tickets', 'View Helpdesk Tickets', 'view-helpdesk-tickets', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(78, 'general', 'helpdesk-tickets', 'Create Helpdesk Tickets', 'create-helpdesk-tickets', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(79, 'general', 'helpdesk-tickets', 'Edit Helpdesk Tickets', 'edit-helpdesk-tickets', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(80, 'general', 'helpdesk-tickets', 'Delete Helpdesk Tickets', 'delete-helpdesk-tickets', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(81, 'general', 'helpdesk-replies', 'Manage Helpdesk Replies', 'manage-helpdesk-replies', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(82, 'general', 'helpdesk-replies', 'Create Helpdesk Replies', 'create-helpdesk-replies', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(83, 'general', 'helpdesk-replies', 'Delete Helpdesk Replies', 'delete-helpdesk-replies', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(84, 'general', 'languages', 'Manage Languages', 'manage-languages', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(85, 'general', 'languages', 'Edit Languages', 'edit-languages', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(86, 'general', 'add-on', 'Manage Add-on', 'manage-add-on', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(87, 'general', 'add-on', 'Manage Actions', 'manage-actions', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(88, 'general', 'plans', 'Manage Plans', 'manage-plans', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(89, 'general', 'plans', 'Manage All Plans', 'manage-any-plans', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(90, 'general', 'plans', 'Manage Own Plans', 'manage-own-plans', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(91, 'general', 'plans', 'View Plans', 'view-plans', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(92, 'general', 'plans', 'Create Plans', 'create-plans', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(93, 'general', 'plans', 'Edit Plans', 'edit-plans', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(94, 'general', 'plans', 'Delete Plans', 'delete-plans', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(95, 'general', 'coupons', 'Manage Coupons', 'manage-coupons', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(96, 'general', 'coupons', 'Manage All Coupons', 'manage-any-coupons', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(97, 'general', 'coupons', 'Manage Own Coupons', 'manage-own-coupons', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(98, 'general', 'coupons', 'View Coupons', 'view-coupons', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(99, 'general', 'coupons', 'Create Coupons', 'create-coupons', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(100, 'general', 'coupons', 'Edit Coupons', 'edit-coupons', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(101, 'general', 'coupons', 'Delete Coupons', 'delete-coupons', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(102, 'general', 'profile', 'Manage Profile', 'manage-profile', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(103, 'general', 'profile', 'Edit Profile', 'edit-profile', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(104, 'general', 'profile', 'Change Password Profile', 'change-password-profile', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(105, 'general', 'email-templates', 'Manage Email Templates', 'manage-email-templates', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(106, 'general', 'email-templates', 'Edit Email Templates', 'edit-email-templates', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(107, 'general', 'notification-templates', 'Manage Notification Templates', 'manage-notification-templates', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(108, 'general', 'notification-templates', 'Edit Notification Templates', 'edit-notification-templates', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(109, 'general', 'orders', 'Manage Orders', 'manage-orders', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(110, 'general', 'messenger', 'Manage Messenger', 'manage-messenger', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(111, 'general', 'messenger', 'Send Messages', 'send-messages', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(112, 'general', 'messenger', 'View Messages', 'view-messages', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(113, 'general', 'messenger', 'Edit Messages', 'edit-messages', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(114, 'general', 'messenger', 'Delete Messages', 'delete-messages', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(115, 'general', 'messenger', 'Favorite Messages', 'toggle-favorite-messages', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(116, 'general', 'messenger', 'Pinned Messages', 'toggle-pinned-messages', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(117, 'general', 'purchase-invoices', 'Manage Purchase Invoices', 'manage-purchase-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(118, 'general', 'purchase-invoices', 'Manage All Purchase Invoices', 'manage-any-purchase-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(119, 'general', 'purchase-invoices', 'Manage Own Purchase Invoices', 'manage-own-purchase-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(120, 'general', 'purchase-invoices', 'View Purchase Invoices', 'view-purchase-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(121, 'general', 'purchase-invoices', 'Create Purchase Invoices', 'create-purchase-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(122, 'general', 'purchase-invoices', 'Edit Purchase Invoices', 'edit-purchase-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(123, 'general', 'purchase-invoices', 'Delete Purchase Invoices', 'delete-purchase-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(124, 'general', 'purchase-invoices', 'Post Purchase Invoices', 'post-purchase-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(125, 'general', 'purchase-invoices', 'Print Purchase Invoices', 'print-purchase-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(126, 'general', 'purchase-return-invoices', 'Manage Purchase Return Invoices', 'manage-purchase-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(127, 'general', 'purchase-return-invoices', 'Manage All Purchase Return Invoices', 'manage-any-purchase-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(128, 'general', 'purchase-return-invoices', 'Manage Own Purchase Return Invoices', 'manage-own-purchase-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(129, 'general', 'purchase-return-invoices', 'View Purchase Return Invoices', 'view-purchase-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(130, 'general', 'purchase-return-invoices', 'Create Purchase Return Invoices', 'create-purchase-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(131, 'general', 'purchase-return-invoices', 'Delete Purchase Return Invoices', 'delete-purchase-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(132, 'general', 'purchase-return-invoices', 'Approve Purchase Return Invoices', 'approve-purchase-returns-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(133, 'general', 'purchase-return-invoices', 'Complete Purchase Return Invoices', 'complete-purchase-returns-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(134, 'general', 'sales-invoices', 'Manage Sales Invoices', 'manage-sales-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(135, 'general', 'sales-invoices', 'Manage All Sales Invoices', 'manage-any-sales-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(136, 'general', 'sales-invoices', 'Manage Own Sales Invoices', 'manage-own-sales-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(137, 'general', 'sales-invoices', 'View Sales Invoices', 'view-sales-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(138, 'general', 'sales-invoices', 'Create Sales Invoices', 'create-sales-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(139, 'general', 'sales-invoices', 'Edit Sales Invoices', 'edit-sales-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(140, 'general', 'sales-invoices', 'Delete Sales Invoices', 'delete-sales-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(141, 'general', 'sales-invoices', 'Post Sales Invoices', 'post-sales-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(142, 'general', 'sales-invoices', 'Print Sales Invoices', 'print-sales-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(143, 'general', 'sales-return-invoices', 'Manage Sales Return Invoices', 'manage-sales-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(144, 'general', 'sales-return-invoices', 'Manage All Sales Return Invoices', 'manage-any-sales-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(145, 'general', 'sales-return-invoices', 'Manage Own Sales Return Invoices', 'manage-own-sales-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(146, 'general', 'sales-return-invoices', 'View Sales Return Invoices', 'view-sales-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(147, 'general', 'sales-return-invoices', 'Create Sales Return Invoices', 'create-sales-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(148, 'general', 'sales-return-invoices', 'Delete Sales Return Invoices', 'delete-sales-return-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(149, 'general', 'sales-return-invoices', 'Approve Sales Return Invoices', 'approve-sales-returns-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(150, 'general', 'sales-return-invoices', 'Complete Sales Return Invoices', 'complete-sales-returns-invoices', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(151, 'general', 'sales-proposals', 'Manage Sales Proposals', 'manage-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(152, 'general', 'sales-proposals', 'Manage All Sales Proposals', 'manage-any-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(153, 'general', 'sales-proposals', 'Manage Own Sales Proposals', 'manage-own-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(154, 'general', 'sales-proposals', 'View Sales Proposals', 'view-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(155, 'general', 'sales-proposals', 'Create Sales Proposals', 'create-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(156, 'general', 'sales-proposals', 'Edit Sales Proposals', 'edit-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(157, 'general', 'sales-proposals', 'Delete Sales Proposals', 'delete-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(158, 'general', 'sales-proposals', 'Print Sales Proposals', 'print-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(159, 'general', 'sales-proposals', 'Sent Sales Proposals', 'sent-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(160, 'general', 'sales-proposals', 'Accept Sales Proposals', 'accept-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(161, 'general', 'sales-proposals', 'Convert Sales Proposals', 'convert-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(162, 'general', 'sales-proposals', 'Reject Sales Proposals', 'reject-sales-proposals', 'web', '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(163, 'Taskly', 'project', 'Manage Project Dashboard', 'manage-project-dashboard', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(164, 'Taskly', 'project', 'Manage Project', 'manage-project', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(165, 'Taskly', 'project', 'Manage All Project', 'manage-any-project', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(166, 'Taskly', 'project', 'Manage Own Project', 'manage-own-project', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(167, 'Taskly', 'project', 'View Project', 'view-project', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(168, 'Taskly', 'project', 'Create Project', 'create-project', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(169, 'Taskly', 'project', 'Edit Project', 'edit-project', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(170, 'Taskly', 'project', 'Delete Project', 'delete-project', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(171, 'Taskly', 'project', 'Duplicate Project', 'duplicate-project', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(172, 'Taskly', 'project-report', 'Manage Project Report', 'manage-project-report', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(173, 'Taskly', 'project-report', 'View Project Report', 'view-project-report', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(174, 'Taskly', 'project', 'Invite Project Member', 'invite-project-member', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(175, 'Taskly', 'project', 'Delete Project Member', 'delete-project-member', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(176, 'Taskly', 'project', 'Invite Project Client', 'invite-project-client', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(177, 'Taskly', 'project', 'Delete Project Client', 'delete-project-client', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(178, 'Taskly', 'project-milestone', 'Manage Project Milestone', 'manage-project-milestone', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(179, 'Taskly', 'project-milestone', 'Create Project Milestone', 'create-project-milestone', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(180, 'Taskly', 'project-milestone', 'Edit Project Milestone', 'edit-project-milestone', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(181, 'Taskly', 'project-milestone', 'Delete Project Milestone', 'delete-project-milestone', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(182, 'Taskly', 'project-task', 'Manage Project Task', 'manage-project-task', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(183, 'Taskly', 'project-task', 'Manage All Project Task', 'manage-any-project-task', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(184, 'Taskly', 'project-task', 'Manage Own Project Task', 'manage-own-project-task', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(185, 'Taskly', 'project-task', 'Create Project Task', 'create-project-task', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(186, 'Taskly', 'project-task', 'View Project Task', 'view-project-task', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(187, 'Taskly', 'project-task', 'Edit Project Task', 'edit-project-task', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(188, 'Taskly', 'project-task', 'Delete Project Task', 'delete-project-task', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(189, 'Taskly', 'project-task', 'Manage Project Task Comments', 'manage-project-task-comments', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(190, 'Taskly', 'project-task', 'Create Project Task Comments', 'create-project-task-comments', 'web', '2026-03-14 05:59:46', '2026-03-14 05:59:46'), +(191, 'Taskly', 'project-task', 'Delete Project Task Comments', 'delete-project-task-comments', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(192, 'Taskly', 'project-task', 'Manage Project Subtask', 'manage-project-subtask', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(193, 'Taskly', 'project-task', 'Create Project Subtask', 'create-project-subtask', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(194, 'Taskly', 'project-bug', 'Manage Project Bug', 'manage-project-bug', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(195, 'Taskly', 'project-bug', 'Manage All Project Bug', 'manage-any-project-bug', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(196, 'Taskly', 'project-bug', 'Manage Own Project Bug', 'manage-own-project-bug', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(197, 'Taskly', 'project-bug', 'Create Project Bug', 'create-project-bug', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(198, 'Taskly', 'project-bug', 'Edit Project Bug', 'edit-project-bug', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(199, 'Taskly', 'project-bug', 'View Project Bug', 'view-project-bug', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(200, 'Taskly', 'project-bug', 'Delete Project Bug', 'delete-project-bug', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(201, 'Taskly', 'project-bug', 'Manage Project Bug Comments', 'manage-project-bug-comments', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(202, 'Taskly', 'project-bug', 'Create Project Bug Comments', 'create-project-bug-comments', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(203, 'Taskly', 'project-bug', 'Delete Project Bug Comments', 'delete-project-bug-comments', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(204, 'Taskly', 'task-stages', 'Manage Task Stages', 'manage-task-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(205, 'Taskly', 'task-stages', 'Manage All Task Stages', 'manage-any-task-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(206, 'Taskly', 'task-stages', 'Manage Own Task Stages', 'manage-own-task-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(207, 'Taskly', 'task-stages', 'Create Task Stages', 'create-task-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(208, 'Taskly', 'task-stages', 'Edit Task Stages', 'edit-task-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(209, 'Taskly', 'task-stages', 'Delete Task Stages', 'delete-task-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(210, 'Taskly', 'bug-stages', 'Manage Bug Stages', 'manage-bug-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(211, 'Taskly', 'bug-stages', 'Manage All Bug Stages', 'manage-any-bug-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(212, 'Taskly', 'bug-stages', 'Manage Own Bug Stages', 'manage-own-bug-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(213, 'Taskly', 'bug-stages', 'Create Bug Stages', 'create-bug-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(214, 'Taskly', 'bug-stages', 'Edit Bug Stages', 'edit-bug-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(215, 'Taskly', 'bug-stages', 'Delete Bug Stages', 'delete-bug-stages', 'web', '2026-03-14 05:59:47', '2026-03-14 05:59:47'), +(216, 'Account', 'account', 'Manage Account', 'manage-account', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(217, 'Account', 'account', 'Manage Account Dashboard', 'manage-account-dashboard', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(218, 'Account', 'vendors', 'Manage Vendors', 'manage-vendors', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(219, 'Account', 'vendors', 'Manage All Vendors', 'manage-any-vendors', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(220, 'Account', 'vendors', 'Manage Own Vendors', 'manage-own-vendors', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(221, 'Account', 'vendors', 'View Vendors', 'view-vendors', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(222, 'Account', 'vendors', 'Create Vendors', 'create-vendors', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(223, 'Account', 'vendors', 'Edit Vendors', 'edit-vendors', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(224, 'Account', 'vendors', 'Delete Vendors', 'delete-vendors', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(225, 'Account', 'customers', 'Manage Customers', 'manage-customers', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(226, 'Account', 'customers', 'Manage All Customers', 'manage-any-customers', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(227, 'Account', 'customers', 'Manage Own Customers', 'manage-own-customers', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(228, 'Account', 'customers', 'View Customers', 'view-customers', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(229, 'Account', 'customers', 'Create Customers', 'create-customers', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(230, 'Account', 'customers', 'Edit Customers', 'edit-customers', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(231, 'Account', 'customers', 'Delete Customers', 'delete-customers', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(232, 'Account', 'bank-accounts', 'Manage BankAccounts', 'manage-bank-accounts', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(233, 'Account', 'bank-accounts', 'Manage All BankAccounts', 'manage-any-bank-accounts', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(234, 'Account', 'bank-accounts', 'Manage Own BankAccounts', 'manage-own-bank-accounts', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(235, 'Account', 'bank-accounts', 'View BankAccounts', 'view-bank-accounts', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(236, 'Account', 'bank-accounts', 'Create BankAccounts', 'create-bank-accounts', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(237, 'Account', 'bank-accounts', 'Edit BankAccounts', 'edit-bank-accounts', 'web', '2026-03-14 05:59:48', '2026-03-14 05:59:48'), +(238, 'Account', 'bank-accounts', 'Delete BankAccounts', 'delete-bank-accounts', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(239, 'Account', 'account-types', 'Manage AccountTypes', 'manage-account-types', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(240, 'Account', 'account-types', 'Manage All AccountTypes', 'manage-any-account-types', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(241, 'Account', 'account-types', 'Manage Own AccountTypes', 'manage-own-account-types', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(242, 'Account', 'account-types', 'View AccountTypes', 'view-account-types', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(243, 'Account', 'account-types', 'Create AccountTypes', 'create-account-types', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(244, 'Account', 'account-types', 'Edit AccountTypes', 'edit-account-types', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(245, 'Account', 'account-types', 'Delete AccountTypes', 'delete-account-types', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(246, 'Account', 'chart-of-accounts', 'Manage ChartOfAccounts', 'manage-chart-of-accounts', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(247, 'Account', 'chart-of-accounts', 'Manage All ChartOfAccounts', 'manage-any-chart-of-accounts', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(248, 'Account', 'chart-of-accounts', 'Manage Own ChartOfAccounts', 'manage-own-chart-of-accounts', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(249, 'Account', 'chart-of-accounts', 'View ChartOfAccounts', 'view-chart-of-accounts', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(250, 'Account', 'chart-of-accounts', 'Create ChartOfAccounts', 'create-chart-of-accounts', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(251, 'Account', 'chart-of-accounts', 'Edit ChartOfAccounts', 'edit-chart-of-accounts', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(252, 'Account', 'chart-of-accounts', 'Delete ChartOfAccounts', 'delete-chart-of-accounts', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(253, 'Account', 'vendor-payments', 'Manage Vendor Payments', 'manage-vendor-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(254, 'Account', 'vendor-payments', 'Manage All Vendor Payments', 'manage-any-vendor-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(255, 'Account', 'vendor-payments', 'Manage Own Vendor Payments', 'manage-own-vendor-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(256, 'Account', 'vendor-payments', 'View Vendor Payments', 'view-vendor-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(257, 'Account', 'vendor-payments', 'Create Vendor Payments', 'create-vendor-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(258, 'Account', 'vendor-payments', 'Cleared Vendor Payments', 'cleared-vendor-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(259, 'Account', 'vendor-payments', 'Delete Vendor Payments', 'delete-vendor-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(260, 'Account', 'customer-payments', 'Manage Customer Payments', 'manage-customer-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(261, 'Account', 'customer-payments', 'Manage All Customer Payments', 'manage-any-customer-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(262, 'Account', 'customer-payments', 'Manage Own Customer Payments', 'manage-own-customer-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(263, 'Account', 'customer-payments', 'View Customer Payments', 'view-customer-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(264, 'Account', 'customer-payments', 'Create Customer Payments', 'create-customer-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(265, 'Account', 'customer-payments', 'Clear Customer Payments', 'cleared-customer-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(266, 'Account', 'customer-payments', 'Delete Customer Payments', 'delete-customer-payments', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(267, 'Account', 'bank-transaction', 'Manage Bank Transaction', 'manage-bank-transactions', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(268, 'Account', 'bank-transaction', 'Reconcile Bank Transaction', 'reconcile-bank-transactions', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(269, 'Account', 'debit-notes', 'Manage Debit Notes', 'manage-debit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(270, 'Account', 'debit-notes', 'Manage All Debit Notes', 'manage-any-debit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(271, 'Account', 'debit-notes', 'Manage Own Debit Notes', 'manage-own-debit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(272, 'Account', 'debit-notes', 'View Debit Notes', 'view-debit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(273, 'Account', 'debit-notes', 'Create Debit Notes', 'create-debit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(274, 'Account', 'debit-notes', 'Approve Debit Notes', 'approve-debit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(275, 'Account', 'debit-notes', 'Delete Debit Notes', 'delete-debit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(276, 'Account', 'credit-notes', 'Manage Credit Notes', 'manage-credit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(277, 'Account', 'credit-notes', 'Manage All Credit Notes', 'manage-any-credit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(278, 'Account', 'credit-notes', 'Manage Own Credit Notes', 'manage-own-credit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(279, 'Account', 'credit-notes', 'View Credit Notes', 'view-credit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(280, 'Account', 'credit-notes', 'Create Credit Notes', 'create-credit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(281, 'Account', 'credit-notes', 'Approve Credit Notes', 'approve-credit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(282, 'Account', 'credit-notes', 'Delete Credit Notes', 'delete-credit-notes', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(283, 'Account', 'bank-transfers', 'Manage Bank Transfers', 'manage-bank-transfers', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(284, 'Account', 'bank-transfers', 'Manage All Bank Transfers', 'manage-any-bank-transfers', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(285, 'Account', 'bank-transfers', 'Manage Own Bank Transfers', 'manage-own-bank-transfers', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(286, 'Account', 'bank-transfers', 'View Bank Transfers', 'view-bank-transfers', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(287, 'Account', 'bank-transfers', 'Create Bank Transfers', 'create-bank-transfers', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(288, 'Account', 'bank-transfers', 'Edit Bank Transfers', 'edit-bank-transfers', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(289, 'Account', 'bank-transfers', 'Delete Bank Transfers', 'delete-bank-transfers', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(290, 'Account', 'bank-transfers', 'Process Bank Transfers', 'process-bank-transfers', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(291, 'Account', 'revenue-categories', 'Manage RevenueCategories', 'manage-revenue-categories', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(292, 'Account', 'revenue-categories', 'Manage All RevenueCategories', 'manage-any-revenue-categories', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(293, 'Account', 'revenue-categories', 'Manage Own RevenueCategories', 'manage-own-revenue-categories', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(294, 'Account', 'revenue-categories', 'Create RevenueCategories', 'create-revenue-categories', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(295, 'Account', 'revenue-categories', 'Edit RevenueCategories', 'edit-revenue-categories', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(296, 'DoubleEntry', 'DoubleEntry', 'Doubleentry Manage', 'doubleentry manage', 'web', '2026-03-14 05:59:49', '2026-03-14 05:59:49'), +(297, 'Account', 'revenue-categories', 'Delete RevenueCategories', 'delete-revenue-categories', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(298, 'Account', 'expense-categories', 'Manage ExpenseCategories', 'manage-expense-categories', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(299, 'Account', 'expense-categories', 'Manage All ExpenseCategories', 'manage-any-expense-categories', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(300, 'Account', 'expense-categories', 'Manage Own ExpenseCategories', 'manage-own-expense-categories', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(301, 'Account', 'expense-categories', 'Create ExpenseCategories', 'create-expense-categories', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(302, 'Account', 'expense-categories', 'Edit ExpenseCategories', 'edit-expense-categories', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(303, 'Account', 'expense-categories', 'Delete ExpenseCategories', 'delete-expense-categories', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(304, 'Account', 'revenues', 'Manage Revenues', 'manage-revenues', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(305, 'DoubleEntry', 'DoubleEntry', 'Report Ledger', 'report ledger', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(306, 'Account', 'revenues', 'Manage All Revenues', 'manage-any-revenues', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(307, 'Account', 'revenues', 'Manage Own Revenues', 'manage-own-revenues', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(308, 'Account', 'revenues', 'View Revenues', 'view-revenues', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(309, 'Account', 'revenues', 'Create Revenues', 'create-revenues', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(310, 'Account', 'revenues', 'Edit Revenues', 'edit-revenues', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(311, 'Account', 'revenues', 'Delete Revenues', 'delete-revenues', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(312, 'Account', 'revenues', 'Approve Revenues', 'approve-revenues', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(313, 'Account', 'revenues', 'Post Revenues', 'post-revenues', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(314, 'DoubleEntry', 'DoubleEntry', 'Report Balance Sheet', 'report balance sheet', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(315, 'Account', 'expenses', 'Manage Expenses', 'manage-expenses', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(316, 'Account', 'expenses', 'Manage All Expenses', 'manage-any-expenses', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(317, 'Account', 'expenses', 'Manage Own Expenses', 'manage-own-expenses', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(318, 'Account', 'expenses', 'View Expenses', 'view-expenses', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(319, 'Account', 'expenses', 'Create Expenses', 'create-expenses', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(320, 'Account', 'expenses', 'Edit Expenses', 'edit-expenses', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(321, 'Account', 'expenses', 'Delete Expenses', 'delete-expenses', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(322, 'Account', 'expenses', 'Approve Expenses', 'approve-expenses', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(323, 'Account', 'expenses', 'Post Expenses', 'post-expenses', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(324, 'DoubleEntry', 'DoubleEntry', 'Report Profit Loss', 'report profit loss', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(325, 'Account', 'account-reports', 'Manage Account Reports', 'manage-account-reports', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(326, 'Account', 'account-reports', 'View Invoice Aging', 'view-invoice-aging', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(327, 'Account', 'account-reports', 'Print Invoice Aging', 'print-invoice-aging', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(328, 'Account', 'account-reports', 'View Bill Aging', 'view-bill-aging', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(329, 'Account', 'account-reports', 'Print Bill Aging', 'print-bill-aging', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(330, 'Account', 'account-reports', 'View Tax Summary', 'view-tax-summary', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(331, 'Account', 'account-reports', 'Print Tax Summary', 'print-tax-summary', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(332, 'Account', 'account-reports', 'View Customer Balance', 'view-customer-balance', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(333, 'DoubleEntry', 'DoubleEntry', 'Report Trial Balance', 'report trial balance', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(334, 'Account', 'account-reports', 'Print Customer Balance', 'print-customer-balance', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(335, 'Account', 'account-reports', 'View Vendor Balance', 'view-vendor-balance', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(336, 'Account', 'account-reports', 'Print Vendor Balance', 'print-vendor-balance', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(337, 'Account', 'account-reports', 'View Customer Detail Report', 'view-customer-detail-report', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(338, 'Account', 'account-reports', 'Print Customer Detail Report', 'print-customer-detail-report', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(339, 'Account', 'account-reports', 'View Vendor Detail Report', 'view-vendor-detail-report', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(340, 'Account', 'account-reports', 'Print Vendor Detail Report', 'print-vendor-detail-report', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(341, 'DoubleEntry', 'DoubleEntry', 'Journalentry Manage', 'journalentry manage', 'web', '2026-03-14 05:59:50', '2026-03-14 05:59:50'), +(342, 'DoubleEntry', 'DoubleEntry', 'Journalentry Create', 'journalentry create', 'web', '2026-03-14 05:59:51', '2026-03-14 05:59:51'), +(343, 'DoubleEntry', 'DoubleEntry', 'Journalentry Show', 'journalentry show', 'web', '2026-03-14 05:59:51', '2026-03-14 05:59:51'), +(344, 'DoubleEntry', 'DoubleEntry', 'Journalentry Edit', 'journalentry edit', 'web', '2026-03-14 05:59:51', '2026-03-14 05:59:51'), +(345, 'DoubleEntry', 'DoubleEntry', 'Journalentry Delete', 'journalentry delete', 'web', '2026-03-14 05:59:51', '2026-03-14 05:59:51'), +(346, 'DoubleEntry', 'DoubleEntry', 'Report Sales', 'report sales', 'web', '2026-03-14 05:59:51', '2026-03-14 05:59:51'), +(347, 'DoubleEntry', 'DoubleEntry', 'Report Receivables', 'report receivables', 'web', '2026-03-14 05:59:51', '2026-03-14 05:59:51'), +(348, 'DoubleEntry', 'DoubleEntry', 'Report Payables', 'report payables', 'web', '2026-03-14 05:59:52', '2026-03-14 05:59:52'), +(349, 'Hrm', 'Dashboard', 'Manage HRM Dashboard', 'manage-hrm-dashboard', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(350, 'Hrm', 'hrm', 'Manage Hrm', 'manage-hrm', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(351, 'Hrm', 'branches', 'Manage Branches', 'manage-branches', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(352, 'Hrm', 'branches', 'Manage All Branches', 'manage-any-branches', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(353, 'Hrm', 'branches', 'Manage Own Branches', 'manage-own-branches', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(354, 'Hrm', 'branches', 'Create Branches', 'create-branches', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(355, 'Hrm', 'branches', 'Edit Branches', 'edit-branches', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(356, 'Hrm', 'branches', 'Delete Branches', 'delete-branches', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(357, 'Hrm', 'departments', 'Manage Departments', 'manage-departments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(358, 'Hrm', 'departments', 'Manage All Departments', 'manage-any-departments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(359, 'Hrm', 'departments', 'Manage Own Departments', 'manage-own-departments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(360, 'Hrm', 'departments', 'Create Departments', 'create-departments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(361, 'Hrm', 'departments', 'Edit Departments', 'edit-departments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(362, 'Hrm', 'departments', 'Delete Departments', 'delete-departments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(363, 'Hrm', 'designations', 'Manage Designations', 'manage-designations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(364, 'Hrm', 'designations', 'Manage All Designations', 'manage-any-designations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(365, 'Hrm', 'designations', 'Manage Own Designations', 'manage-own-designations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(366, 'Hrm', 'designations', 'Create Designations', 'create-designations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(367, 'Hrm', 'designations', 'Edit Designations', 'edit-designations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(368, 'Hrm', 'designations', 'Delete Designations', 'delete-designations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(369, 'Hrm', 'employee-document-types', 'Manage Document Types', 'manage-employee-document-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(370, 'Hrm', 'employee-document-types', 'Manage All Document Types', 'manage-any-employee-document-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(371, 'Hrm', 'employee-document-types', 'Manage Own Document Types', 'manage-own-employee-document-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(372, 'Hrm', 'employee-document-types', 'Create Document Types', 'create-employee-document-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(373, 'Hrm', 'employee-document-types', 'Edit Document Types', 'edit-employee-document-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(374, 'Hrm', 'employee-document-types', 'Delete Document Types', 'delete-employee-document-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(375, 'Hrm', 'employees', 'Manage Employees', 'manage-employees', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(376, 'Hrm', 'employees', 'Manage All Employees', 'manage-any-employees', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'); +INSERT INTO `permissions` (`id`, `add_on`, `module`, `label`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES +(377, 'Hrm', 'employees', 'Manage Own Employees', 'manage-own-employees', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(378, 'Hrm', 'employees', 'View Employees', 'view-employees', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(379, 'Hrm', 'employees', 'Create Employees', 'create-employees', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(380, 'Hrm', 'employees', 'Edit Employees', 'edit-employees', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(381, 'Hrm', 'employees', 'Delete Employees', 'delete-employees', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(382, 'Hrm', 'award-types', 'Manage Award Types', 'manage-award-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(383, 'Hrm', 'award-types', 'Manage All Award Types', 'manage-any-award-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(384, 'Hrm', 'award-types', 'Manage Own Award Types', 'manage-own-award-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(385, 'Hrm', 'award-types', 'Create Award Types', 'create-award-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(386, 'Hrm', 'award-types', 'Edit Award Types', 'edit-award-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(387, 'Hrm', 'award-types', 'Delete Award Types', 'delete-award-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(388, 'Hrm', 'awards', 'Manage Awards', 'manage-awards', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(389, 'Hrm', 'awards', 'Manage All Awards', 'manage-any-awards', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(390, 'Hrm', 'awards', 'Manage Own Awards', 'manage-own-awards', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(391, 'Hrm', 'awards', 'Create Awards', 'create-awards', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(392, 'Hrm', 'awards', 'View Awards', 'view-awards', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(393, 'Hrm', 'awards', 'Edit Awards', 'edit-awards', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(394, 'Hrm', 'awards', 'Delete Awards', 'delete-awards', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(395, 'Hrm', 'promotions', 'Manage Promotions', 'manage-promotions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(396, 'Hrm', 'promotions', 'Manage All Promotions', 'manage-any-promotions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(397, 'Hrm', 'promotions', 'Manage Own Promotions', 'manage-own-promotions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(398, 'Hrm', 'promotions', 'Manage Promotions Status', 'manage-promotions-status', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(399, 'Hrm', 'promotions', 'View Promotions', 'view-promotions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(400, 'Hrm', 'promotions', 'Create Promotions', 'create-promotions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(401, 'Hrm', 'promotions', 'Edit Promotions', 'edit-promotions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(402, 'Hrm', 'promotions', 'Delete Promotions', 'delete-promotions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(403, 'Hrm', 'resignations', 'Manage Resignations', 'manage-resignations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(404, 'Hrm', 'resignations', 'Manage All Resignations', 'manage-any-resignations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(405, 'Hrm', 'resignations', 'Manage Own Resignations', 'manage-own-resignations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(406, 'Hrm', 'resignations', 'Manage Resignation Status', 'manage-resignation-status', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(407, 'Hrm', 'resignations', 'View Resignations', 'view-resignations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(408, 'Hrm', 'resignations', 'Create Resignations', 'create-resignations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(409, 'Hrm', 'resignations', 'Edit Resignations', 'edit-resignations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(410, 'Hrm', 'resignations', 'Delete Resignations', 'delete-resignations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(411, 'Hrm', 'termination-types', 'Manage Termination Types', 'manage-termination-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(412, 'Hrm', 'termination-types', 'Manage All Termination Types', 'manage-any-termination-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(413, 'Hrm', 'termination-types', 'Manage Own Termination Types', 'manage-own-termination-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(414, 'Hrm', 'termination-types', 'Create Termination Types', 'create-termination-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(415, 'Hrm', 'termination-types', 'Edit Termination Types', 'edit-termination-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(416, 'Hrm', 'termination-types', 'Delete Termination Types', 'delete-termination-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(417, 'Hrm', 'terminations', 'Manage Terminations', 'manage-terminations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(418, 'Hrm', 'terminations', 'Manage All Terminations', 'manage-any-terminations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(419, 'Hrm', 'terminations', 'Manage Own Terminations', 'manage-own-terminations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(420, 'Hrm', 'terminations', 'Manage Termination Status', 'manage-termination-status', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(421, 'Hrm', 'terminations', 'View Terminations', 'view-terminations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(422, 'Hrm', 'terminations', 'Create Terminations', 'create-terminations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(423, 'Hrm', 'terminations', 'Edit Terminations', 'edit-terminations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(424, 'Hrm', 'terminations', 'Delete Terminations', 'delete-terminations', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(425, 'Hrm', 'warning-types', 'Manage Warning Types', 'manage-warning-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(426, 'Hrm', 'warning-types', 'Manage All Warning Types', 'manage-any-warning-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(427, 'Hrm', 'warning-types', 'Manage Own Warning Types', 'manage-own-warning-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(428, 'Hrm', 'warning-types', 'Create Warning Types', 'create-warning-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(429, 'Hrm', 'warning-types', 'Edit Warning Types', 'edit-warning-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(430, 'Hrm', 'warning-types', 'Delete Warning Types', 'delete-warning-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(431, 'Hrm', 'warnings', 'Manage Warnings', 'manage-warnings', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(432, 'Hrm', 'warnings', 'Manage All Warnings', 'manage-any-warnings', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(433, 'Hrm', 'warnings', 'Manage Own Warnings', 'manage-own-warnings', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(434, 'Hrm', 'warnings', 'Manage Warning Response', 'manage-warning-response', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(435, 'Hrm', 'warnings', 'View Warnings', 'view-warnings', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(436, 'Hrm', 'warnings', 'Create Warnings', 'create-warnings', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(437, 'Hrm', 'warnings', 'Edit Warnings', 'edit-warnings', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(438, 'Hrm', 'warnings', 'Delete Warnings', 'delete-warnings', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(439, 'Hrm', 'complaint-types', 'Manage Complaint Types', 'manage-complaint-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(440, 'Hrm', 'complaint-types', 'Manage All Complaint Types', 'manage-any-complaint-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(441, 'Hrm', 'complaint-types', 'Manage Own Complaint Types', 'manage-own-complaint-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(442, 'Hrm', 'complaint-types', 'Create Complaint Types', 'create-complaint-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(443, 'Hrm', 'complaint-types', 'Edit Complaint Types', 'edit-complaint-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(444, 'Hrm', 'complaint-types', 'Delete Complaint Types', 'delete-complaint-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(445, 'Hrm', 'complaints', 'Manage Complaints', 'manage-complaints', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(446, 'Hrm', 'complaints', 'Manage All Complaints', 'manage-any-complaints', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(447, 'Hrm', 'complaints', 'Manage Own Complaints', 'manage-own-complaints', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(448, 'Hrm', 'complaints', 'Manage Complaint Status', 'manage-complaint-status', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(449, 'Hrm', 'complaints', 'View Complaints', 'view-complaints', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(450, 'Hrm', 'complaints', 'Create Complaints', 'create-complaints', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(451, 'Hrm', 'complaints', 'Edit Complaints', 'edit-complaints', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(452, 'Hrm', 'complaints', 'Delete Complaints', 'delete-complaints', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(453, 'Hrm', 'employee-transfers', 'Manage Employee Transfers', 'manage-employee-transfers', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(454, 'Hrm', 'employee-transfers', 'Manage All Employee Transfers', 'manage-any-employee-transfers', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(455, 'Hrm', 'employee-transfers', 'Manage Own Employee Transfers', 'manage-own-employee-transfers', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(456, 'Hrm', 'employee-transfers', 'Manage Employee Transfers Status', 'manage-employee-transfers-status', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(457, 'Hrm', 'employee-transfers', 'View Employee Transfers', 'view-employee-transfers', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(458, 'Hrm', 'employee-transfers', 'Create Employee Transfers', 'create-employee-transfers', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(459, 'Hrm', 'employee-transfers', 'Edit Employee Transfers', 'edit-employee-transfers', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(460, 'Hrm', 'employee-transfers', 'Delete Employee Transfers', 'delete-employee-transfers', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(461, 'Hrm', 'holiday-types', 'Manage Holiday Types', 'manage-holiday-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(462, 'Hrm', 'holiday-types', 'Manage All Holiday Types', 'manage-any-holiday-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(463, 'Hrm', 'holiday-types', 'Manage Own Holiday Types', 'manage-own-holiday-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(464, 'Hrm', 'holiday-types', 'Create Holiday Types', 'create-holiday-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(465, 'Hrm', 'holiday-types', 'Edit Holiday Types', 'edit-holiday-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(466, 'Hrm', 'holiday-types', 'Delete Holiday Types', 'delete-holiday-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(467, 'Hrm', 'holidays', 'Manage Holidays', 'manage-holidays', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(468, 'Hrm', 'holidays', 'Manage All Holidays', 'manage-any-holidays', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(469, 'Hrm', 'holidays', 'Manage Own Holidays', 'manage-own-holidays', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(470, 'Hrm', 'holidays', 'View Holidays', 'view-holidays', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(471, 'Hrm', 'holidays', 'Create Holidays', 'create-holidays', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(472, 'Hrm', 'holidays', 'Edit Holidays', 'edit-holidays', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(473, 'Hrm', 'holidays', 'Delete Holidays', 'delete-holidays', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(474, 'Hrm', 'document-categories', 'Manage Document Categories', 'manage-document-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(475, 'Hrm', 'document-categories', 'Manage All Document Categories', 'manage-any-document-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(476, 'Hrm', 'document-categories', 'Manage Own Document Categories', 'manage-own-document-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(477, 'Hrm', 'document-categories', 'Create Document Categories', 'create-document-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(478, 'Hrm', 'document-categories', 'Edit Document Categories', 'edit-document-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(479, 'Hrm', 'document-categories', 'Delete Document Categories', 'delete-document-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(480, 'Hrm', 'hrm-documents', 'Manage Documents', 'manage-hrm-documents', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(481, 'Hrm', 'hrm-documents', 'Manage All Documents', 'manage-any-hrm-documents', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(482, 'Hrm', 'hrm-documents', 'Manage Own Documents', 'manage-own-hrm-documents', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(483, 'Hrm', 'hrm-documents', 'Manage Documents status', 'manage-hrm-documents-status', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(484, 'Hrm', 'hrm-documents', 'View Documents', 'view-hrm-documents', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(485, 'Hrm', 'hrm-documents', 'Download Documents', 'download-hrm-documents', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(486, 'Hrm', 'hrm-documents', 'Create Documents', 'create-hrm-documents', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(487, 'Hrm', 'hrm-documents', 'Edit Documents', 'edit-hrm-documents', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(488, 'Hrm', 'hrm-documents', 'Delete Documents', 'delete-hrm-documents', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(489, 'Hrm', 'acknowledgments', 'Manage Acknowledgments', 'manage-acknowledgments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(490, 'Hrm', 'acknowledgments', 'Manage All Acknowledgments', 'manage-any-acknowledgments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(491, 'Hrm', 'acknowledgments', 'Manage Own Acknowledgments', 'manage-own-acknowledgments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(492, 'Hrm', 'acknowledgments', 'Manage Acknowledgment Status', 'manage-acknowledgment-status', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(493, 'Hrm', 'acknowledgments', 'Download Acknowledgment', 'download-acknowledgment', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(494, 'Hrm', 'acknowledgments', 'View Acknowledgments', 'view-acknowledgments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(495, 'Hrm', 'acknowledgments', 'Create Acknowledgments', 'create-acknowledgments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(496, 'Hrm', 'acknowledgments', 'Edit Acknowledgments', 'edit-acknowledgments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(497, 'Hrm', 'acknowledgments', 'Delete Acknowledgments', 'delete-acknowledgments', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(498, 'Hrm', 'announcement-categories', 'Manage Announcement Categories', 'manage-announcement-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(499, 'Hrm', 'announcement-categories', 'Manage All Announcement Categories', 'manage-any-announcement-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(500, 'Hrm', 'announcement-categories', 'Manage Own Announcement Categories', 'manage-own-announcement-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(501, 'Hrm', 'announcement-categories', 'Create Announcement Categories', 'create-announcement-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(502, 'Hrm', 'announcement-categories', 'Edit Announcement Categories', 'edit-announcement-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(503, 'Hrm', 'announcement-categories', 'Delete Announcement Categories', 'delete-announcement-categories', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(504, 'Hrm', 'announcements', 'Manage Announcements', 'manage-announcements', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(505, 'Hrm', 'announcements', 'Manage All Announcements', 'manage-any-announcements', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(506, 'Hrm', 'announcements', 'Manage Own Announcements', 'manage-own-announcements', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(507, 'Hrm', 'announcements', 'Manage Announcement Status', 'manage-announcements-status', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(508, 'Hrm', 'announcements', 'View Announcements', 'view-announcements', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(509, 'Hrm', 'announcements', 'Create Announcements', 'create-announcements', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(510, 'Hrm', 'announcements', 'Edit Announcements', 'edit-announcements', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(511, 'Hrm', 'announcements', 'Delete Announcements', 'delete-announcements', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(512, 'Hrm', 'event-types', 'Manage Event Types', 'manage-event-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(513, 'Hrm', 'event-types', 'Manage All Event Types', 'manage-any-event-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(514, 'Hrm', 'event-types', 'Manage Own Event Types', 'manage-own-event-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(515, 'Hrm', 'event-types', 'Create Event Types', 'create-event-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(516, 'Hrm', 'event-types', 'Edit Event Types', 'edit-event-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(517, 'Hrm', 'event-types', 'Delete Event Types', 'delete-event-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(518, 'Hrm', 'events', 'Manage Events', 'manage-events', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(519, 'Hrm', 'events', 'Manage All Events', 'manage-any-events', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(520, 'Hrm', 'events', 'Manage Own Events', 'manage-own-events', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(521, 'Hrm', 'events', 'Manage Event Status', 'manage-event-status', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(522, 'Hrm', 'events', 'View Event Calendar', 'view-event-calendar', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(523, 'Hrm', 'events', 'View Events', 'view-events', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(524, 'Hrm', 'events', 'Create Events', 'create-events', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(525, 'Hrm', 'events', 'Edit Events', 'edit-events', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(526, 'Hrm', 'events', 'Delete Events', 'delete-events', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(527, 'Hrm', 'leave-types', 'Manage Leave Types', 'manage-leave-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(528, 'Hrm', 'leave-types', 'Manage All Leave Types', 'manage-any-leave-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(529, 'Hrm', 'leave-types', 'Manage Own Leave Types', 'manage-own-leave-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(530, 'Hrm', 'leave-types', 'View Leave Types', 'view-leave-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(531, 'Hrm', 'leave-types', 'Create Leave Types', 'create-leave-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(532, 'Hrm', 'leave-types', 'Edit Leave Types', 'edit-leave-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(533, 'Hrm', 'leave-types', 'Delete Leave Types', 'delete-leave-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(534, 'Hrm', 'leave-applications', 'Manage Leave Applications', 'manage-leave-applications', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(535, 'Hrm', 'leave-applications', 'Manage All Leave Applications', 'manage-any-leave-applications', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(536, 'Hrm', 'leave-applications', 'Manage Own Leave Applications', 'manage-own-leave-applications', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(537, 'Hrm', 'leave-applications', 'Manage Leave Status', 'manage-leave-status', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(538, 'Hrm', 'leave-applications', 'View Leave Applications', 'view-leave-applications', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(539, 'Hrm', 'leave-applications', 'Create Leave Applications', 'create-leave-applications', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(540, 'Hrm', 'leave-applications', 'Edit Leave Applications', 'edit-leave-applications', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(541, 'Hrm', 'leave-applications', 'Delete Leave Applications', 'delete-leave-applications', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(542, 'Hrm', 'leave-balance', 'View Leave Balance', 'manage-leave-balance', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(543, 'Hrm', 'leave-balance', 'Manage All Leave Balance', 'manage-any-leave-balance', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(544, 'Hrm', 'leave-balance', 'Manage Own Leave Balance', 'manage-own-leave-balance', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(545, 'Hrm', 'shifts', 'Manage Shifts', 'manage-shifts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(546, 'Hrm', 'shifts', 'Manage All Shifts', 'manage-any-shifts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(547, 'Hrm', 'shifts', 'Manage Own Shifts', 'manage-own-shifts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(548, 'Hrm', 'shifts', 'View Shifts', 'view-shifts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(549, 'Hrm', 'shifts', 'Create Shifts', 'create-shifts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(550, 'Hrm', 'shifts', 'Edit Shifts', 'edit-shifts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(551, 'Hrm', 'shifts', 'Delete Shifts', 'delete-shifts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(552, 'Hrm', 'attendances', 'Manage Attendances', 'manage-attendances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(553, 'Hrm', 'attendances', 'Manage All Attendances', 'manage-any-attendances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(554, 'Hrm', 'attendances', 'Manage Own Attendances', 'manage-own-attendances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(555, 'Hrm', 'attendances', 'View Attendances', 'view-attendances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(556, 'Hrm', 'attendances', 'Create Attendances', 'create-attendances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(557, 'Hrm', 'attendances', 'Edit Attendances', 'edit-attendances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(558, 'Hrm', 'attendances', 'Delete Attendances', 'delete-attendances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(559, 'Hrm', 'attendances', 'Clock In', 'clock-in', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(560, 'Hrm', 'attendances', 'Clock Out', 'clock-out', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(561, 'Hrm', 'payslip', 'Manage Payslip', 'manage-payslip', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(562, 'Hrm', 'payslip', 'Manage All Payslip', 'manage-any-payslip', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(563, 'Hrm', 'payslip', 'Manage Own Payslip', 'manage-own-payslip', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(564, 'Hrm', 'payslip', 'Pay Payslip', 'pay-payslip', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(565, 'Hrm', 'payslip', 'Download Payslip', 'download-payslip', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(566, 'Hrm', 'payslip', 'View Payslip', 'view-payslip', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(567, 'Hrm', 'payslip', 'Delete Payslip', 'delete-payslip', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(568, 'Payroll', 'Payroll', 'Manage Set Salary', 'manage-set-salary', 'web', '2026-03-14 05:59:55', '2026-03-14 06:00:05'), +(569, 'Payroll', 'Payroll', 'Manage Any Set Salary', 'manage-any-set-salary', 'web', '2026-03-14 05:59:55', '2026-03-14 06:00:05'), +(570, 'Payroll', 'Payroll', 'Manage Own Set Salary', 'manage-own-set-salary', 'web', '2026-03-14 05:59:55', '2026-03-14 06:00:05'), +(571, 'Payroll', 'Payroll', 'View Set Salary', 'view-set-salary', 'web', '2026-03-14 05:59:55', '2026-03-14 06:00:05'), +(572, 'Hrm', 'set-salary', 'Create Set Salary', 'create-set-salary', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(573, 'Payroll', 'Payroll', 'Edit Set Salary', 'edit-set-salary', 'web', '2026-03-14 05:59:55', '2026-03-14 06:00:05'), +(574, 'Hrm', 'set-salary', 'Delete Set Salary', 'delete-set-salary', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(575, 'Hrm', 'allowance-types', 'Manage Allowance Types', 'manage-allowance-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(576, 'Hrm', 'allowance-types', 'Manage All Allowance Types', 'manage-any-allowance-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(577, 'Hrm', 'allowance-types', 'Manage Own Allowance Types', 'manage-own-allowance-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(578, 'Hrm', 'allowance-types', 'Create Allowance Types', 'create-allowance-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(579, 'Hrm', 'allowance-types', 'Edit Allowance Types', 'edit-allowance-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(580, 'Hrm', 'allowance-types', 'Delete Allowance Types', 'delete-allowance-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(581, 'Hrm', 'deduction-types', 'Manage Deduction Types', 'manage-deduction-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(582, 'Hrm', 'deduction-types', 'Manage All Deduction Types', 'manage-any-deduction-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(583, 'Hrm', 'deduction-types', 'Manage Own Deduction Types', 'manage-own-deduction-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(584, 'Hrm', 'deduction-types', 'Create Deduction Types', 'create-deduction-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(585, 'Hrm', 'deduction-types', 'Edit Deduction Types', 'edit-deduction-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(586, 'Hrm', 'deduction-types', 'Delete Deduction Types', 'delete-deduction-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(587, 'Hrm', 'loan-types', 'Manage Loan Types', 'manage-loan-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(588, 'Hrm', 'loan-types', 'Manage All Loan Types', 'manage-any-loan-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(589, 'Hrm', 'loan-types', 'Manage Own Loan Types', 'manage-own-loan-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(590, 'Hrm', 'loan-types', 'Create Loan Types', 'create-loan-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(591, 'Hrm', 'loan-types', 'Edit Loan Types', 'edit-loan-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(592, 'Hrm', 'loan-types', 'Delete Loan Types', 'delete-loan-types', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(593, 'Hrm', 'allowances', 'Manage Allowances', 'manage-allowances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(594, 'Hrm', 'allowances', 'Manage All Allowances', 'manage-any-allowances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(595, 'Hrm', 'allowances', 'Manage Own Allowances', 'manage-own-allowances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(596, 'Hrm', 'allowances', 'Create Allowances', 'create-allowances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(597, 'Hrm', 'allowances', 'Edit Allowances', 'edit-allowances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(598, 'Hrm', 'allowances', 'Delete Allowances', 'delete-allowances', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(599, 'Hrm', 'deductions', 'Manage Deductions', 'manage-deductions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(600, 'Hrm', 'deductions', 'Manage All Deductions', 'manage-any-deductions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(601, 'Hrm', 'deductions', 'Manage Own Deductions', 'manage-own-deductions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(602, 'Hrm', 'deductions', 'Create Deductions', 'create-deductions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(603, 'Hrm', 'deductions', 'Edit Deductions', 'edit-deductions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(604, 'Hrm', 'deductions', 'Delete Deductions', 'delete-deductions', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(605, 'Hrm', 'loans', 'Manage Loans', 'manage-loans', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(606, 'Hrm', 'loans', 'Manage All Loans', 'manage-any-loans', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(607, 'Hrm', 'loans', 'Manage Own Loans', 'manage-own-loans', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(608, 'Hrm', 'loans', 'View Loans', 'view-loans', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(609, 'Hrm', 'loans', 'Create Loans', 'create-loans', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(610, 'Hrm', 'loans', 'Edit Loans', 'edit-loans', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(611, 'Hrm', 'loans', 'Delete Loans', 'delete-loans', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(612, 'Hrm', 'overtimes', 'Manage Overtimes', 'manage-overtimes', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(613, 'Hrm', 'overtimes', 'Manage All Overtimes', 'manage-any-overtimes', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(614, 'Hrm', 'overtimes', 'Manage Own Overtimes', 'manage-own-overtimes', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(615, 'Hrm', 'overtimes', 'View Overtimes', 'view-overtimes', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(616, 'Hrm', 'overtimes', 'Create Overtimes', 'create-overtimes', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(617, 'Hrm', 'overtimes', 'Edit Overtimes', 'edit-overtimes', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(618, 'Hrm', 'overtimes', 'Delete Overtimes', 'delete-overtimes', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(619, 'Payroll', 'Payroll', 'Manage Payrolls', 'manage-payrolls', 'web', '2026-03-14 05:59:55', '2026-03-14 06:00:04'), +(620, 'Hrm', 'payrolls', 'Manage All Payrolls', 'manage-any-payrolls', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(621, 'Hrm', 'payrolls', 'Manage Own Payrolls', 'manage-own-payrolls', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(622, 'Hrm', 'payrolls', 'View Payrolls', 'view-payrolls', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(623, 'Hrm', 'payrolls', 'View All Payrolls', 'view-any-payrolls', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(624, 'Hrm', 'payrolls', 'View Own Payrolls', 'view-own-payrolls', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(625, 'Hrm', 'payrolls', 'Run Payrolls', 'run-payrolls', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(626, 'Hrm', 'payrolls', 'Create Payrolls', 'create-payrolls', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(627, 'Hrm', 'payrolls', 'Edit Payrolls', 'edit-payrolls', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(628, 'Hrm', 'payrolls', 'Delete Payrolls', 'delete-payrolls', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(629, 'Hrm', 'working-days', 'Manage Working Days', 'manage-working-days', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(630, 'Hrm', 'working-days', 'Edit Working Days', 'edit-working-days', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(631, 'Hrm', 'ip-restricts', 'Manage Ip Restricts', 'manage-ip-restricts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(632, 'Hrm', 'ip-restricts', 'Manage All Ip Restricts', 'manage-any-ip-restricts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(633, 'Hrm', 'ip-restricts', 'Manage Own Ip Restricts', 'manage-own-ip-restricts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(634, 'Hrm', 'ip-restricts', 'Create Ip Restricts', 'create-ip-restricts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(635, 'Hrm', 'ip-restricts', 'Edit Ip Restricts', 'edit-ip-restricts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(636, 'Hrm', 'ip-restricts', 'Delete Ip Restricts', 'delete-ip-restricts', 'web', '2026-03-14 05:59:55', '2026-03-14 05:59:55'), +(637, 'Payroll', 'Payroll', 'Create Payroll', 'create-payroll', 'web', '2026-03-14 06:00:04', '2026-03-14 06:00:04'), +(638, 'Payroll', 'Payroll', 'View Payroll', 'view-payroll', 'web', '2026-03-14 06:00:05', '2026-03-14 06:00:05'), +(639, 'Payroll', 'Payroll', 'Edit Payroll', 'edit-payroll', 'web', '2026-03-14 06:00:05', '2026-03-14 06:00:05'), +(640, 'Payroll', 'Payroll', 'Delete Payroll', 'delete-payroll', 'web', '2026-03-14 06:00:05', '2026-03-14 06:00:05'), +(641, 'Payroll', 'Payroll', 'Run Payroll', 'run-payroll', 'web', '2026-03-14 06:00:05', '2026-03-14 06:00:05'), +(642, 'Payroll', 'Payroll', 'Pay Salary', 'pay-salary', 'web', '2026-03-14 06:00:05', '2026-03-14 06:00:05'), +(643, 'Payroll', 'Payroll', 'Print Payslip', 'print-payslip', 'web', '2026-03-14 06:00:05', '2026-03-14 06:00:05'), +(644, 'Payroll', 'Payroll', 'Manage Salary Components', 'manage-salary-components', 'web', '2026-03-14 06:00:05', '2026-03-14 06:00:05'), +(645, 'Payroll', 'Payroll', 'Create Salary Component', 'create-salary-component', 'web', '2026-03-14 06:00:05', '2026-03-14 06:00:05'), +(646, 'Payroll', 'Payroll', 'Edit Salary Component', 'edit-salary-component', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(647, 'Lead', 'lead', 'Manage CRM Dashboard', 'manage-crm-dashboard', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(648, 'Lead', 'pipelines', 'Manage Pipelines', 'manage-pipelines', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(649, 'Payroll', 'Payroll', 'Delete Salary Component', 'delete-salary-component', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(650, 'Lead', 'pipelines', 'Manage All Pipelines', 'manage-any-pipelines', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(651, 'Lead', 'pipelines', 'Manage Own Pipelines', 'manage-own-pipelines', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(652, 'Lead', 'pipelines', 'Create Pipelines', 'create-pipelines', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(653, 'Payroll', 'Payroll', 'Manage Pay Groups', 'manage-pay-groups', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(654, 'Lead', 'pipelines', 'Edit Pipelines', 'edit-pipelines', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(655, 'Lead', 'pipelines', 'Delete Pipelines', 'delete-pipelines', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(656, 'Lead', 'lead-stages', 'Manage LeadStages', 'manage-lead-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(657, 'Payroll', 'Payroll', 'Create Pay Group', 'create-pay-group', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(658, 'Lead', 'lead-stages', 'Manage All LeadStages', 'manage-any-lead-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(659, 'Lead', 'lead-stages', 'Manage Own LeadStages', 'manage-own-lead-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(660, 'Lead', 'lead-stages', 'Create LeadStages', 'create-lead-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(661, 'Payroll', 'Payroll', 'Edit Pay Group', 'edit-pay-group', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(662, 'Lead', 'lead-stages', 'Edit LeadStages', 'edit-lead-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(663, 'Lead', 'lead-stages', 'Delete LeadStages', 'delete-lead-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(664, 'Lead', 'deal-stages', 'Manage DealStages', 'manage-deal-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(665, 'Payroll', 'Payroll', 'Delete Pay Group', 'delete-pay-group', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(666, 'Lead', 'deal-stages', 'Manage All DealStages', 'manage-any-deal-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(667, 'Lead', 'deal-stages', 'Manage Own DealStages', 'manage-own-deal-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(668, 'Lead', 'deal-stages', 'Create DealStages', 'create-deal-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(669, 'Payroll', 'Payroll', 'Manage Payroll Settings', 'manage-payroll-settings', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(670, 'Lead', 'deal-stages', 'Edit DealStages', 'edit-deal-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(671, 'Lead', 'deal-stages', 'Delete DealStages', 'delete-deal-stages', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(672, 'Lead', 'labels', 'Manage Labels', 'manage-labels', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(673, 'Lead', 'labels', 'Manage All Labels', 'manage-any-labels', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(674, 'Lead', 'labels', 'Manage Own Labels', 'manage-own-labels', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(675, 'Lead', 'labels', 'Create Labels', 'create-labels', 'web', '2026-03-14 06:00:06', '2026-03-14 06:00:06'), +(676, 'Lead', 'labels', 'Edit Labels', 'edit-labels', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(677, 'Lead', 'labels', 'Delete Labels', 'delete-labels', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(678, 'Lead', 'sources', 'Manage Sources', 'manage-sources', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(679, 'Lead', 'sources', 'Manage All Sources', 'manage-any-sources', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(680, 'Lead', 'sources', 'Manage Own Sources', 'manage-own-sources', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(681, 'Lead', 'sources', 'Create Sources', 'create-sources', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(682, 'Lead', 'sources', 'Edit Sources', 'edit-sources', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(683, 'Lead', 'sources', 'Delete Sources', 'delete-sources', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(684, 'Lead', 'leads', 'Manage Leads', 'manage-leads', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(685, 'Lead', 'leads', 'Manage All Leads', 'manage-any-leads', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(686, 'Lead', 'leads', 'Manage Own Leads', 'manage-own-leads', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(687, 'Lead', 'leads', 'View Leads', 'view-leads', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(688, 'Lead', 'leads', 'Create Leads', 'create-leads', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(689, 'Lead', 'leads', 'Edit Leads', 'edit-leads', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(690, 'Lead', 'leads', 'Delete Leads', 'delete-leads', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(691, 'Lead', 'leads', 'Move Leads', 'lead-move', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(692, 'Pos', 'pos', 'Manage Pos Dashboard', 'manage-pos-dashboard', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(693, 'Lead', 'lead-tasks', 'Manage Lead Tasks', 'manage-lead-tasks', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(694, 'Pos', 'pos', 'Manage Pos', 'manage-pos', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(695, 'Lead', 'lead-tasks', 'Manage All Lead Tasks', 'manage-any-lead-tasks', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(696, 'Pos', 'pos', 'Create Pos', 'create-pos', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(697, 'Lead', 'lead-tasks', 'Manage Own Lead Tasks', 'manage-own-lead-tasks', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(698, 'Pos', 'pos-orders', 'Manage Pos Orders', 'manage-pos-orders', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(699, 'Lead', 'lead-tasks', 'Create Lead Tasks', 'create-lead-tasks', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(700, 'Pos', 'pos-orders', 'View Pos Orders', 'view-pos-orders', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(701, 'Lead', 'lead-tasks', 'Edit Lead Tasks', 'edit-lead-tasks', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(702, 'Pos', 'pos-barcodes', 'Manage Pos Barcodes', 'manage-pos-barcodes', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(703, 'Lead', 'lead-tasks', 'Delete Lead Tasks', 'delete-lead-tasks', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(704, 'Pos', 'pos-barcodes', 'Print Pos Barcodes', 'print-pos-barcodes', 'web', '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(705, 'Lead', 'deals', 'Manage Deals', 'manage-deals', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(706, 'Pos', 'pos-reports', 'Manage Pos Reports', 'manage-pos-reports', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(707, 'Lead', 'deals', 'Manage All Deals', 'manage-any-deals', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(708, 'Pos', 'pos-reports', 'View Pos Reports', 'view-pos-reports', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(709, 'Lead', 'deals', 'Manage Own Deals', 'manage-own-deals', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(710, 'Lead', 'deals', 'View Deals', 'view-deals', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(711, 'Lead', 'deals', 'Create Deals', 'create-deals', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(712, 'Lead', 'deals', 'Edit Deals', 'edit-deals', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(713, 'Lead', 'deals', 'Delete Deals', 'delete-deals', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(714, 'Lead', 'deals', 'Move Deals', 'deal-move', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(715, 'Lead', 'deal-tasks', 'Manage Deal Tasks', 'manage-deal-tasks', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(716, 'Lead', 'deal-tasks', 'Manage All Deal Tasks', 'manage-any-deal-tasks', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(717, 'Lead', 'deal-tasks', 'Manage Own Deal Tasks', 'manage-own-deal-tasks', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(718, 'Lead', 'deal-tasks', 'Create Deal Tasks', 'create-deal-tasks', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(719, 'Lead', 'deal-tasks', 'Edit Deal Tasks', 'edit-deal-tasks', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(720, 'Lead', 'deal-tasks', 'Delete Deal Tasks', 'delete-deal-tasks', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(721, 'Lead', 'reports', 'Manage Reports', 'manage-reports', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(722, 'Lead', 'reports', 'View Reports', 'view-reports', 'web', '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(723, 'SkillsMatrix', 'SkillsMatrix', 'Manage Skills Matrix', 'manage-skills-matrix', 'web', '2026-03-14 06:28:53', '2026-03-14 06:28:53'), +(724, 'SkillsMatrix', 'SkillsMatrix', 'View Skills Profile', 'view-skills-profile', 'web', '2026-03-14 06:28:53', '2026-03-14 06:28:53'), +(725, 'CertTracker', 'CertTracker', 'Manage Certifications', 'manage-certifications', 'web', '2026-03-14 06:28:53', '2026-03-14 06:28:53'), +(726, 'CertTracker', 'CertTracker', 'View Certifications', 'view-certifications', 'web', '2026-03-14 06:28:53', '2026-03-14 06:28:53'), +(727, 'Engagement', 'Engagement', 'Manage Engagements', 'manage-engagements', 'web', '2026-03-14 06:28:54', '2026-03-14 06:28:54'), +(728, 'Engagement', 'Engagement', 'View Engagements', 'view-engagements', 'web', '2026-03-14 06:28:54', '2026-03-14 06:28:54'), +(729, 'Utilization', 'Utilization', 'Manage Utilization', 'manage-utilization', 'web', '2026-03-14 06:28:54', '2026-03-14 06:28:54'), +(730, 'Utilization', 'Utilization', 'View Utilization', 'view-utilization', 'web', '2026-03-14 06:28:54', '2026-03-14 06:28:54'), +(731, 'PropertyManagement', 'PropertyManagement', 'Manage Properties', 'manage-properties', 'web', '2026-03-14 09:46:25', '2026-03-14 09:46:25'), +(732, 'PropertyManagement', 'PropertyManagement', 'View Properties', 'view-properties', 'web', '2026-03-14 09:46:25', '2026-03-14 09:46:25'), +(733, 'PropertyManagement', 'PropertyManagement', 'Manage Leases', 'manage-leases', 'web', '2026-03-14 09:46:25', '2026-03-14 09:46:25'), +(734, 'PropertyManagement', 'PropertyManagement', 'Manage Maintenance Requests', 'manage-maintenance-requests', 'web', '2026-03-14 09:46:25', '2026-03-14 09:46:25'), +(735, 'PropertyManagement', 'PropertyManagement', 'Manage Property Audits', 'manage-property-audits', 'web', '2026-03-14 09:46:25', '2026-03-14 09:46:25'), +(736, 'PropertyManagement', 'PropertyManagement', 'Manage Property Settings', 'manage-property-settings', 'web', '2026-03-14 09:46:25', '2026-03-14 09:46:25'), +(737, 'PropertyManagement', 'PropertyManagement', 'View Property Reports', 'view-property-reports', 'web', '2026-03-14 09:46:25', '2026-03-14 09:46:25'), +(738, 'Hospital', 'hospital-dashboard', 'Manage Hospital Dashboard', 'manage-hospital-dashboard', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(739, 'Hospital', 'hospital', 'Manage Hospital', 'manage-hospital', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(740, 'Hospital', 'doctors', 'Manage Doctors', 'manage-doctors', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(741, 'Hospital', 'doctors', 'Create Doctors', 'create-doctors', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(742, 'Hospital', 'doctors', 'Edit Doctors', 'edit-doctors', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(743, 'Hospital', 'doctors', 'Delete Doctors', 'delete-doctors', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(744, 'Hospital', 'patients', 'Manage Patients', 'manage-patients', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(745, 'Hospital', 'patients', 'Create Patients', 'create-patients', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(746, 'Hospital', 'patients', 'Edit Patients', 'edit-patients', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(747, 'Hospital', 'patients', 'Delete Patients', 'delete-patients', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(748, 'Hospital', 'appointments', 'Manage Appointments', 'manage-appointments', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(749, 'Hospital', 'appointments', 'Create Appointments', 'create-appointments', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(750, 'Hospital', 'appointments', 'Edit Appointments', 'edit-appointments', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(751, 'Hospital', 'appointments', 'Delete Appointments', 'delete-appointments', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(752, 'Hospital', 'beds', 'Manage Beds', 'manage-beds', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(753, 'Hospital', 'beds', 'Create Beds', 'create-beds', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(754, 'Hospital', 'beds', 'Edit Beds', 'edit-beds', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(755, 'Hospital', 'beds', 'Delete Beds', 'delete-beds', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(756, 'Hospital', 'medical-records', 'Manage Medical Records', 'manage-medical-records', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(757, 'Hospital', 'medical-records', 'Create Medical Records', 'create-medical-records', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(758, 'Hospital', 'medical-records', 'Edit Medical Records', 'edit-medical-records', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(759, 'Hospital', 'medical-records', 'Delete Medical Records', 'delete-medical-records', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(760, 'Hospital', 'lab-tests', 'Manage Lab Tests', 'manage-lab-tests', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(761, 'Hospital', 'lab-tests', 'Create Lab Tests', 'create-lab-tests', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(762, 'Hospital', 'lab-tests', 'Edit Lab Tests', 'edit-lab-tests', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(763, 'Hospital', 'lab-tests', 'Delete Lab Tests', 'delete-lab-tests', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(764, 'Hospital', 'surgeries', 'Manage Surgeries', 'manage-surgeries', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(765, 'Hospital', 'surgeries', 'Create Surgeries', 'create-surgeries', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(766, 'Hospital', 'surgeries', 'Edit Surgeries', 'edit-surgeries', 'web', '2026-04-23 14:36:13', '2026-04-23 14:36:13'), +(767, 'Hospital', 'surgeries', 'Delete Surgeries', 'delete-surgeries', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(768, 'Hospital', 'ambulance', 'Manage Ambulance', 'manage-ambulance', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(769, 'Hospital', 'ambulance', 'Create Ambulance', 'create-ambulance', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(770, 'Hospital', 'ambulance', 'Edit Ambulance', 'edit-ambulance', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(771, 'Hospital', 'ambulance', 'Delete Ambulance', 'delete-ambulance', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(772, 'Hospital', 'medicines', 'Manage Medicines', 'manage-medicines', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(773, 'Hospital', 'medicines', 'Create Medicines', 'create-medicines', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(774, 'Hospital', 'medicines', 'Edit Medicines', 'edit-medicines', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'); +INSERT INTO `permissions` (`id`, `add_on`, `module`, `label`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES +(775, 'Hospital', 'medicines', 'Delete Medicines', 'delete-medicines', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(776, 'Hospital', 'visitors', 'Manage Visitors', 'manage-visitors', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(777, 'Hospital', 'visitors', 'Create Visitors', 'create-visitors', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(778, 'Hospital', 'visitors', 'Delete Visitors', 'delete-visitors', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(779, 'Hospital', 'hospital-setup', 'Manage Hospital Setup', 'manage-hospital-setup', 'web', '2026-04-23 14:36:14', '2026-04-23 14:36:14'), +(780, 'ProductService', 'product-service-item', 'Manage Product Service', 'manage-product-service-item', 'web', '2026-04-27 14:42:27', '2026-04-27 14:42:27'), +(781, 'ProductService', 'product-service-item', 'Manage All Product Service', 'manage-any-product-service-item', 'web', '2026-04-27 14:42:27', '2026-04-27 14:42:27'), +(782, 'ProductService', 'product-service-item', 'Manage Own Product Service', 'manage-own-product-service-item', 'web', '2026-04-27 14:42:27', '2026-04-27 14:42:27'), +(783, 'ProductService', 'product-service-item', 'View Product Service', 'view-product-service-item', 'web', '2026-04-27 14:42:27', '2026-04-27 14:42:27'), +(784, 'ProductService', 'product-service-item', 'Create Product Service', 'create-product-service-item', 'web', '2026-04-27 14:42:27', '2026-04-27 14:42:27'), +(785, 'ProductService', 'product-service-item', 'Edit Product Service', 'edit-product-service-item', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(786, 'ProductService', 'product-service-item', 'Delete Product Service', 'delete-product-service-item', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(787, 'ProductService', 'product-service-item', 'Manage Stock', 'manage-stock', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(788, 'ProductService', 'product-service-item', 'Create Stock', 'create-stock', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(789, 'ProductService', 'product-service-category', 'Manage Categories', 'manage-product-service-categories', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(790, 'ProductService', 'product-service-category', 'Manage All Categories', 'manage-any-product-service-categories', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(791, 'ProductService', 'product-service-category', 'Manage Own Categories', 'manage-own-product-service-categories', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(792, 'ProductService', 'product-service-category', 'Create Categories', 'create-product-service-categories', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(793, 'ProductService', 'product-service-category', 'Edit Categories', 'edit-product-service-categories', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(794, 'ProductService', 'product-service-category', 'Delete Categories', 'delete-product-service-categories', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(795, 'ProductService', 'product-service-tax', 'Manage Taxes', 'manage-product-service-taxes', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(796, 'ProductService', 'product-service-tax', 'Manage All Taxes', 'manage-any-product-service-taxes', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(797, 'ProductService', 'product-service-tax', 'Manage Own Taxes', 'manage-own-product-service-taxes', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(798, 'ProductService', 'product-service-tax', 'Create Taxes', 'create-product-service-taxes', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(799, 'ProductService', 'product-service-tax', 'Edit Taxes', 'edit-product-service-taxes', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(800, 'ProductService', 'product-service-tax', 'Delete Taxes', 'delete-product-service-taxes', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(801, 'ProductService', 'product-service-unit', 'Manage Units', 'manage-product-service-units', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(802, 'ProductService', 'product-service-unit', 'Manage All Units', 'manage-any-product-service-units', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(803, 'ProductService', 'product-service-unit', 'Manage Own Units', 'manage-own-product-service-units', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(804, 'ProductService', 'product-service-unit', 'Create Units', 'create-product-service-units', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(805, 'ProductService', 'product-service-unit', 'Edit Units', 'edit-product-service-units', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(806, 'ProductService', 'product-service-unit', 'Delete Units', 'delete-product-service-units', 'web', '2026-04-27 14:42:28', '2026-04-27 14:42:28'), +(807, 'AIDocument', 'AIDocument', 'Ai Document Manage', 'ai document manage', 'web', '2026-04-27 14:42:37', '2026-04-27 14:42:37'), +(808, 'AIDocument', 'AIDocument', 'Ai Document Generate', 'ai document generate', 'web', '2026-04-27 14:42:37', '2026-04-27 14:42:37'), +(809, 'AIDocument', 'AIDocument', 'Ai Document Generate PDF', 'ai document generate PDF', 'web', '2026-04-27 14:42:37', '2026-04-27 14:42:37'), +(810, 'AIDocument', 'AIDocument', 'Ai Document Generate Word', 'ai document generate Word', 'web', '2026-04-27 14:42:38', '2026-04-27 14:42:38'), +(811, 'AIDocument', 'AIDocument', 'Ai Document Generate TXT', 'ai document generate TXT', 'web', '2026-04-27 14:42:38', '2026-04-27 14:42:38'), +(812, 'AIDocument', 'AIDocument', 'Ai Document Copy', 'ai document copy', 'web', '2026-04-27 14:42:38', '2026-04-27 14:42:38'), +(813, 'AIDocument', 'AIDocument', 'Ai Document Save', 'ai document save', 'web', '2026-04-27 14:42:39', '2026-04-27 14:42:39'), +(814, 'AIDocument', 'AIDocument', 'Ai Document Create', 'ai document create', 'web', '2026-04-27 14:42:39', '2026-04-27 14:42:39'), +(815, 'AIDocument', 'AIDocument', 'Ai Document View', 'ai document view', 'web', '2026-04-27 14:42:39', '2026-04-27 14:42:39'), +(816, 'AIDocument', 'AIDocument', 'Document History Manage', 'document history manage', 'web', '2026-04-27 14:42:40', '2026-04-27 14:42:40'), +(817, 'AIDocument', 'AIDocument', 'Document History Edit', 'document history edit', 'web', '2026-04-27 14:42:40', '2026-04-27 14:42:40'), +(818, 'AIDocument', 'AIDocument', 'Document History Delete', 'document history delete', 'web', '2026-04-27 14:42:41', '2026-04-27 14:42:41'), +(819, 'AIDocument', 'AIDocument', 'Sidebar Ai Manage', 'sidebar ai manage', 'web', '2026-04-27 14:42:41', '2026-04-27 14:42:41'), +(820, 'Fleet', 'Fleet', 'Fleet Manage', 'fleet manage', 'web', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(821, 'Fleet', 'Fleet', 'Driver Manage', 'driver manage', 'web', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), +(822, 'Fleet', 'Fleet', 'Driver Create', 'driver create', 'web', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(823, 'Fleet', 'Fleet', 'Driver Show', 'driver show', 'web', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(824, 'Fleet', 'Fleet', 'Driver Edit', 'driver edit', 'web', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), +(825, 'Fleet', 'Fleet', 'Driver Delete', 'driver delete', 'web', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(826, 'Fleet', 'Fleet', 'License Manage', 'license manage', 'web', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), +(827, 'Fleet', 'Fleet', 'License Create', 'license create', 'web', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(828, 'Fleet', 'Fleet', 'License Edit', 'license edit', 'web', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(829, 'Fleet', 'Fleet', 'License Delete', 'license delete', 'web', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), +(830, 'Fleet', 'Fleet', 'Vehicletype Manage', 'vehicletype manage', 'web', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(831, 'Fleet', 'Fleet', 'Vehicletype Create', 'vehicletype create', 'web', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(832, 'Fleet', 'Fleet', 'Vehicletype Edit', 'vehicletype edit', 'web', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), +(833, 'Fleet', 'Fleet', 'Vehicletype Delete', 'vehicletype delete', 'web', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(834, 'Fleet', 'Fleet', 'Fueltype Manage', 'fueltype manage', 'web', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), +(835, 'Fleet', 'Fleet', 'Fueltype Create', 'fueltype create', 'web', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), +(836, 'Fleet', 'Fleet', 'Fueltype Edit', 'fueltype edit', 'web', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(837, 'Fleet', 'Fleet', 'Fueltype Delete', 'fueltype delete', 'web', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(838, 'Fleet', 'Fleet', 'Recuerring Manage', 'recuerring manage', 'web', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), +(839, 'Fleet', 'Fleet', 'Recuerring Create', 'recuerring create', 'web', '2026-04-27 14:42:50', '2026-04-27 14:42:50'), +(840, 'Fleet', 'Fleet', 'Recuerring Edit', 'recuerring edit', 'web', '2026-04-27 14:42:50', '2026-04-27 14:42:50'), +(841, 'Fleet', 'Fleet', 'Recuerring Delete', 'recuerring delete', 'web', '2026-04-27 14:42:50', '2026-04-27 14:42:50'), +(842, 'Fleet', 'Fleet', 'MaintenanceType Manage', 'maintenanceType manage', 'web', '2026-04-27 14:42:51', '2026-04-27 14:42:51'), +(843, 'Fleet', 'Fleet', 'MaintenanceType Create', 'maintenanceType create', 'web', '2026-04-27 14:42:51', '2026-04-27 14:42:51'), +(844, 'Fleet', 'Fleet', 'MaintenanceType Edit', 'maintenanceType edit', 'web', '2026-04-27 14:42:52', '2026-04-27 14:42:52'), +(845, 'Fleet', 'Fleet', 'MaintenanceType Delete', 'maintenanceType delete', 'web', '2026-04-27 14:42:52', '2026-04-27 14:42:52'), +(846, 'Fleet', 'Fleet', 'Fleet Customer Manage', 'fleet customer manage', 'web', '2026-04-27 14:42:52', '2026-04-27 14:42:52'), +(847, 'Fleet', 'Fleet', 'Fleet Customer Create', 'fleet customer create', 'web', '2026-04-27 14:42:53', '2026-04-27 14:42:53'), +(848, 'Fleet', 'Fleet', 'Fleet Customer Edit', 'fleet customer edit', 'web', '2026-04-27 14:42:53', '2026-04-27 14:42:53'), +(849, 'Fleet', 'Fleet', 'Fleet Customer Delete', 'fleet customer delete', 'web', '2026-04-27 14:42:53', '2026-04-27 14:42:53'), +(850, 'Fleet', 'Fleet', 'Vehicle Manage', 'vehicle manage', 'web', '2026-04-27 14:42:54', '2026-04-27 14:42:54'), +(851, 'Fleet', 'Fleet', 'Vehicle Create', 'vehicle create', 'web', '2026-04-27 14:42:54', '2026-04-27 14:42:54'), +(852, 'Fleet', 'Fleet', 'Vehicle Show', 'vehicle show', 'web', '2026-04-27 14:42:54', '2026-04-27 14:42:54'), +(853, 'Fleet', 'Fleet', 'Vehicle Edit', 'vehicle edit', 'web', '2026-04-27 14:42:55', '2026-04-27 14:42:55'), +(854, 'Fleet', 'Fleet', 'Vehicle Delete', 'vehicle delete', 'web', '2026-04-27 14:42:55', '2026-04-27 14:42:55'), +(855, 'Fleet', 'Fleet', 'Insurance Manage', 'insurance manage', 'web', '2026-04-27 14:42:55', '2026-04-27 14:42:55'), +(856, 'Fleet', 'Fleet', 'Insurance Create', 'insurance create', 'web', '2026-04-27 14:42:56', '2026-04-27 14:42:56'), +(857, 'Fleet', 'Fleet', 'Insurance Edit', 'insurance edit', 'web', '2026-04-27 14:42:56', '2026-04-27 14:42:56'), +(858, 'Fleet', 'Fleet', 'Insurance Show', 'insurance show', 'web', '2026-04-27 14:42:57', '2026-04-27 14:42:57'), +(859, 'Fleet', 'Fleet', 'Insurance Delete', 'insurance delete', 'web', '2026-04-27 14:42:57', '2026-04-27 14:42:57'), +(860, 'Fleet', 'Fleet', 'Fuel Manage', 'fuel manage', 'web', '2026-04-27 14:42:57', '2026-04-27 14:42:57'), +(861, 'Fleet', 'Fleet', 'Fuel Create', 'fuel create', 'web', '2026-04-27 14:42:58', '2026-04-27 14:42:58'), +(862, 'Fleet', 'Fleet', 'Fuel Edit', 'fuel edit', 'web', '2026-04-27 14:42:58', '2026-04-27 14:42:58'), +(863, 'Fleet', 'Fleet', 'Fuel Delete', 'fuel delete', 'web', '2026-04-27 14:42:58', '2026-04-27 14:42:58'), +(864, 'Fleet', 'Fleet', 'Booking Manage', 'booking manage', 'web', '2026-04-27 14:42:59', '2026-04-27 14:42:59'), +(865, 'Fleet', 'Fleet', 'Booking Create', 'booking create', 'web', '2026-04-27 14:42:59', '2026-04-27 14:42:59'), +(866, 'Fleet', 'Fleet', 'Booking Edit', 'booking edit', 'web', '2026-04-27 14:43:00', '2026-04-27 14:43:00'), +(867, 'Fleet', 'Fleet', 'Booking Show', 'booking show', 'web', '2026-04-27 14:43:00', '2026-04-27 14:43:00'), +(868, 'Fleet', 'Fleet', 'Booking Delete', 'booking delete', 'web', '2026-04-27 14:43:00', '2026-04-27 14:43:00'), +(869, 'Fleet', 'Fleet', 'Payment Booking Manage', 'payment booking manage', 'web', '2026-04-27 14:43:01', '2026-04-27 14:43:01'), +(870, 'Fleet', 'Fleet', 'Payment Booking Delete', 'payment booking delete', 'web', '2026-04-27 14:43:01', '2026-04-27 14:43:01'), +(871, 'Fleet', 'Fleet', 'Maintenance Manage', 'maintenance manage', 'web', '2026-04-27 14:43:02', '2026-04-27 14:43:02'), +(872, 'Fleet', 'Fleet', 'Maintenance Create', 'maintenance create', 'web', '2026-04-27 14:43:02', '2026-04-27 14:43:02'), +(873, 'Fleet', 'Fleet', 'Maintenance Edit', 'maintenance edit', 'web', '2026-04-27 14:43:03', '2026-04-27 14:43:03'), +(874, 'Fleet', 'Fleet', 'Maintenance Delete', 'maintenance delete', 'web', '2026-04-27 14:43:03', '2026-04-27 14:43:03'), +(875, 'Fleet', 'Fleet', 'Fleet Dashboard Manage', 'fleet dashboard manage', 'web', '2026-04-27 14:43:04', '2026-04-27 14:43:04'), +(876, 'Fleet', 'Fleet', 'Fleetavailability Manage', 'fleetavailability manage', 'web', '2026-04-27 14:43:04', '2026-04-27 14:43:04'), +(877, 'Fleet', 'Fleet', 'Fleetavailability Show', 'fleetavailability show', 'web', '2026-04-27 14:43:05', '2026-04-27 14:43:05'), +(878, 'Fleet', 'Fleet', 'Fleet Report Manage', 'fleet report manage', 'web', '2026-04-27 14:43:05', '2026-04-27 14:43:05'), +(879, 'Fleet', 'Fleet', 'Report Maintenance Manage', 'report maintenance manage', 'web', '2026-04-27 14:43:05', '2026-04-27 14:43:05'), +(880, 'Fleet', 'Fleet', 'Report Fuelhistoryreport Manage', 'report fuelhistoryreport manage', 'web', '2026-04-27 14:43:06', '2026-04-27 14:43:06'), +(881, 'Fleet', 'Fleet', 'Fleet Logbook Manage', 'fleet logbook manage', 'web', '2026-04-27 14:43:06', '2026-04-27 14:43:06'), +(882, 'Fleet', 'Fleet', 'Fleet Logbook Create', 'fleet logbook create', 'web', '2026-04-27 14:43:06', '2026-04-27 14:43:06'), +(883, 'Fleet', 'Fleet', 'Fleet Logbook Edit', 'fleet logbook edit', 'web', '2026-04-27 14:43:07', '2026-04-27 14:43:07'), +(884, 'Fleet', 'Fleet', 'Fleet Logbook Show', 'fleet logbook show', 'web', '2026-04-27 14:43:07', '2026-04-27 14:43:07'), +(885, 'Fleet', 'Fleet', 'Fleet Logbook Delete', 'fleet logbook delete', 'web', '2026-04-27 14:43:08', '2026-04-27 14:43:08'), +(886, 'Fleet', 'Fleet', 'Fleet Insurance Booking Create', 'fleet insurance booking create', 'web', '2026-04-27 14:43:08', '2026-04-27 14:43:08'), +(887, 'Fleet', 'Fleet', 'Fleet Insurance Booking Edit', 'fleet insurance booking edit', 'web', '2026-04-27 14:43:08', '2026-04-27 14:43:08'), +(888, 'Fleet', 'Fleet', 'Fleet Insurance Booking Delete', 'fleet insurance booking delete', 'web', '2026-04-27 14:43:09', '2026-04-27 14:43:09'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `personal_access_tokens` +-- + +CREATE TABLE `personal_access_tokens` ( + `id` bigint(20) UNSIGNED NOT NULL, + `tokenable_type` varchar(255) NOT NULL, + `tokenable_id` bigint(20) UNSIGNED NOT NULL, + `name` text 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; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pipelines` +-- + +CREATE TABLE `pipelines` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `pipelines` +-- + +INSERT INTO `pipelines` (`id`, `name`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Marketing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 'Lead Qualification', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 'Sales', 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `plans` +-- + +CREATE TABLE `plans` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `description` text DEFAULT NULL, + `number_of_users` int(11) NOT NULL DEFAULT 1, + `custom_plan` tinyint(1) NOT NULL DEFAULT 0, + `status` tinyint(1) NOT NULL DEFAULT 1, + `free_plan` tinyint(1) NOT NULL DEFAULT 0, + `modules` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`modules`)), + `package_price_yearly` decimal(10,2) NOT NULL DEFAULT 0.00, + `package_price_monthly` decimal(10,2) NOT NULL DEFAULT 0.00, + `price_per_user_monthly` decimal(10,2) NOT NULL DEFAULT 0.00, + `price_per_user_yearly` decimal(10,2) NOT NULL DEFAULT 0.00, + `storage_limit` int(11) NOT NULL DEFAULT 0, + `price_per_storage_monthly` decimal(10,2) NOT NULL DEFAULT 0.00, + `price_per_storage_yearly` decimal(10,2) NOT NULL DEFAULT 0.00, + `trial` tinyint(1) NOT NULL DEFAULT 0, + `trial_days` int(11) NOT NULL DEFAULT 0, + `created_by` bigint(20) 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 `plans` +-- + +INSERT INTO `plans` (`id`, `name`, `description`, `number_of_users`, `custom_plan`, `status`, `free_plan`, `modules`, `package_price_yearly`, `package_price_monthly`, `price_per_user_monthly`, `price_per_user_yearly`, `storage_limit`, `price_per_storage_monthly`, `price_per_storage_yearly`, `trial`, `trial_days`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Custom Plan', 'Tailored solution for specific business needs', 0, 1, 1, 0, '[]', 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00, 0, 0, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(2, 'Free Plan', 'Perfect for getting started with basic features', 10, 0, 1, 1, '[\"Taskly\",\"Account\",\"Hrm\",\"Lead\",\"Pos\",\"Stripe\",\"Paypal\",\"DoubleEntry\",\"SkillsMatrix\",\"CertTracker\",\"Engagement\",\"Utilization\",\"Payroll\",\"PropertyManagement\",\"Hospital\",\"AIHub\",\"AIDocument\",\"ProductService\"]', 0.00, 0.00, 0.00, 0.00, 1048576, 0.00, 0.00, 1, 200, 1, '2026-03-14 00:17:35', '2026-04-27 14:47:22'), +(3, 'HR PLAN', 'Great for small teams and growing businesses', -1, 0, 1, 1, '[\"Account\",\"Hrm\",\"Stripe\",\"Paypal\",\"DoubleEntry\",\"Payroll\"]', 240.00, 25.00, 0.00, 0.00, 10485760, 0.00, 0.00, 0, 14, 1, '2026-03-14 00:17:35', '2026-03-25 08:45:56'), +(4, 'Professional Plan', 'Advanced features for established businesses', 100, 0, 1, 0, '[\"Taskly\",\"Account\",\"Hrm\",\"Lead\",\"Pos\",\"Stripe\",\"Paypal\"]', 960.00, 99.00, 0.00, 0.00, 0, 0.00, 0.00, 1, 30, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_amenities` +-- + +CREATE TABLE `pm_amenities` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `icon` varchar(255) DEFAULT NULL, + `amenity_type_id` bigint(20) UNSIGNED NOT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `created_by` 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; + +-- +-- Dumping data for table `pm_amenities` +-- + +INSERT INTO `pm_amenities` (`id`, `name`, `icon`, `amenity_type_id`, `is_active`, `created_by`, `created_at`, `updated_at`) VALUES +(25, 'Swimming Pool', 'swimming_pool', 73, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(26, 'Gym/Fitness Center', 'gym_fitness_center', 74, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(27, 'Covered Parking', 'covered_parking', 75, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(28, '24/7 Security', '24_7_security', 76, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(29, 'Elevator', 'elevator', 77, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(30, 'Rooftop Deck', 'rooftop_deck', 78, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(31, 'Function Room', 'function_room', 79, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(32, 'Playground', 'playground', 80, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(33, 'Laundry Area', 'laundry_area', 81, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(34, 'CCTV System', 'cctv_system', 82, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(35, 'Fire Alarm', 'fire_alarm', 83, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(36, 'Garden/Landscape', 'garden_landscape', 84, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_amenity_types` +-- + +CREATE TABLE `pm_amenity_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `created_by` 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; + +-- +-- Dumping data for table `pm_amenity_types` +-- + +INSERT INTO `pm_amenity_types` (`id`, `name`, `is_active`, `created_by`, `created_at`, `updated_at`) VALUES +(73, 'Swimming Pool', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(74, 'Gym/Fitness Center', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(75, 'Covered Parking', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(76, '24/7 Security', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(77, 'Elevator', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(78, 'Rooftop Deck', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(79, 'Function Room', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(80, 'Playground', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(81, 'Laundry Area', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(82, 'CCTV System', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(83, 'Fire Alarm', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(84, 'Garden/Landscape', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_area_types` +-- + +CREATE TABLE `pm_area_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `unit_value` varchar(255) DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `created_by` 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; + +-- +-- Dumping data for table `pm_area_types` +-- + +INSERT INTO `pm_area_types` (`id`, `name`, `unit_value`, `is_active`, `created_by`, `created_at`, `updated_at`) VALUES +(25, 'Gross Floor Area', NULL, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(26, 'Net Usable Area', NULL, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(27, 'Carpeted Area', NULL, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(28, 'Super Built-up Area', NULL, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_energy_efficiency_types` +-- + +CREATE TABLE `pm_energy_efficiency_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `created_by` 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; + +-- +-- Dumping data for table `pm_energy_efficiency_types` +-- + +INSERT INTO `pm_energy_efficiency_types` (`id`, `name`, `is_active`, `created_by`, `created_at`, `updated_at`) VALUES +(25, 'A+ (Excellent)', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(26, 'A (Very Good)', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(27, 'B (Good)', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(28, 'C (Average)', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_expense_links` +-- + +CREATE TABLE `pm_expense_links` ( + `id` bigint(20) UNSIGNED NOT NULL, + `expense_id` bigint(20) UNSIGNED NOT NULL, + `property_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; + +-- +-- Dumping data for table `pm_expense_links` +-- + +INSERT INTO `pm_expense_links` (`id`, `expense_id`, `property_id`, `created_at`, `updated_at`) VALUES +(6, 1, 41, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(7, 2, 42, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(8, 3, 43, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(9, 4, 44, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(10, 5, 45, '2026-03-14 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_invoice_links` +-- + +CREATE TABLE `pm_invoice_links` ( + `id` bigint(20) UNSIGNED NOT NULL, + `invoice_id` bigint(20) UNSIGNED NOT NULL, + `property_id` bigint(20) UNSIGNED NOT NULL, + `lease_id` bigint(20) UNSIGNED DEFAULT NULL, + `billing_period` varchar(20) 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 `pm_leases` +-- + +CREATE TABLE `pm_leases` ( + `id` bigint(20) UNSIGNED NOT NULL, + `property_id` bigint(20) UNSIGNED NOT NULL, + `tenant_name` varchar(255) NOT NULL, + `tenant_email` varchar(255) DEFAULT NULL, + `tenant_phone` varchar(255) DEFAULT NULL, + `tenant_user_id` bigint(20) UNSIGNED DEFAULT NULL, + `start_date` date NOT NULL, + `end_date` date NOT NULL, + `monthly_rent` decimal(15,2) NOT NULL DEFAULT 0.00, + `billing_cycle` varchar(20) NOT NULL DEFAULT 'monthly', + `next_invoice_date` date DEFAULT NULL, + `invoice_prefix` varchar(10) NOT NULL DEFAULT 'RENT', + `security_deposit` decimal(15,2) NOT NULL DEFAULT 0.00, + `lease_status` enum('pending','active','expired','terminated') NOT NULL DEFAULT 'pending', + `lease_document` varchar(255) DEFAULT NULL, + `notes` text DEFAULT NULL, + `auto_invoice` tinyint(1) NOT NULL DEFAULT 0, + `created_by` 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; + +-- +-- Dumping data for table `pm_leases` +-- + +INSERT INTO `pm_leases` (`id`, `property_id`, `tenant_name`, `tenant_email`, `tenant_phone`, `tenant_user_id`, `start_date`, `end_date`, `monthly_rent`, `billing_cycle`, `next_invoice_date`, `invoice_prefix`, `security_deposit`, `lease_status`, `lease_document`, `notes`, `auto_invoice`, `created_by`, `created_at`, `updated_at`) VALUES +(17, 41, 'Maria Santos', 'maria.santos@demo.test', '+639171234567', NULL, '2025-10-14', '2026-10-14', 25000.00, 'monthly', '2026-03-29', 'RENT', 50000.00, 'active', NULL, NULL, 1, 2, '2025-10-14 11:28:43', '2026-03-14 11:28:43'), +(18, 42, 'Juan dela Cruz', 'juan.delacruz@demo.test', '+639182345678', NULL, '2025-12-14', '2026-12-14', 85000.00, 'monthly', '2026-03-23', 'RENT', 170000.00, 'active', NULL, NULL, 1, 2, '2025-12-14 11:28:43', '2026-03-14 11:28:43'), +(19, 43, 'Ana Reyes', 'ana.reyes@demo.test', '+639193456789', NULL, '2025-12-14', '2026-12-14', 18000.00, 'monthly', '2026-03-23', 'RENT', 36000.00, 'active', NULL, NULL, 1, 2, '2025-12-14 11:28:43', '2026-03-14 11:28:43'), +(20, 44, 'Carlos Garcia', 'carlos.garcia@demo.test', '+639204567890', NULL, '2025-07-14', '2026-07-14', 120000.00, 'monthly', '2026-03-18', 'RENT', 240000.00, 'active', NULL, NULL, 1, 2, '2025-07-14 11:28:43', '2026-03-14 11:28:43'), +(21, 46, 'Sofia Hernandez', 'sofia.hernandez@demo.test', '+639215678901', NULL, '2025-05-14', '2026-05-14', 35000.00, 'monthly', '2026-03-26', 'RENT', 70000.00, 'active', NULL, NULL, 1, 2, '2025-05-14 11:28:43', '2026-03-14 11:28:43'), +(22, 47, 'Miguel Torres', 'miguel.torres@demo.test', '+639226789012', NULL, '2025-07-14', '2026-07-14', 65000.00, 'monthly', '2026-03-24', 'RENT', 130000.00, 'active', NULL, NULL, 1, 2, '2025-07-14 11:28:43', '2026-03-14 11:28:43'), +(23, 45, 'Rosa Aquino', 'rosa.aquino@demo.test', '+639237890123', NULL, '2024-09-14', '2025-09-14', 14000.00, 'monthly', NULL, 'RENT', 28000.00, 'expired', NULL, NULL, 0, 2, '2024-09-14 11:28:43', '2026-03-14 11:28:43'), +(24, 45, 'Pedro Ramos', 'pedro.ramos@demo.test', '+639248901234', NULL, '2024-09-14', '2025-09-14', 14000.00, 'monthly', NULL, 'RENT', 28000.00, 'expired', NULL, NULL, 0, 2, '2024-09-14 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_maintenance_files` +-- + +CREATE TABLE `pm_maintenance_files` ( + `id` bigint(20) UNSIGNED NOT NULL, + `maintenance_request_id` bigint(20) UNSIGNED NOT NULL, + `filename` varchar(255) NOT NULL, + `filepath` varchar(255) 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 `pm_maintenance_files` +-- + +INSERT INTO `pm_maintenance_files` (`id`, `maintenance_request_id`, `filename`, `filepath`, `created_at`, `updated_at`) VALUES +(4, 8, 'photo_evidence.jpg', 'maintenance/files/demo_placeholder.jpg', '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(5, 9, 'photo_evidence.jpg', 'maintenance/files/demo_placeholder.jpg', '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(6, 10, 'photo_evidence.jpg', 'maintenance/files/demo_placeholder.jpg', '2026-03-14 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_maintenance_requests` +-- + +CREATE TABLE `pm_maintenance_requests` ( + `id` bigint(20) UNSIGNED NOT NULL, + `property_id` bigint(20) UNSIGNED NOT NULL, + `lease_id` bigint(20) UNSIGNED DEFAULT NULL, + `title` varchar(255) NOT NULL, + `description` text DEFAULT NULL, + `priority` enum('low','medium','high','critical') NOT NULL DEFAULT 'medium', + `status` enum('open','assigned','in_progress','resolved','closed') NOT NULL DEFAULT 'open', + `assigned_to` bigint(20) UNSIGNED DEFAULT NULL, + `estimated_cost` decimal(15,2) NOT NULL DEFAULT 0.00, + `actual_cost` decimal(15,2) NOT NULL DEFAULT 0.00, + `due_date` date DEFAULT NULL, + `resolved_at` datetime DEFAULT NULL, + `requested_by` bigint(20) UNSIGNED DEFAULT NULL, + `requested_by_type` varchar(255) NOT NULL DEFAULT 'staff', + `created_by` 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; + +-- +-- Dumping data for table `pm_maintenance_requests` +-- + +INSERT INTO `pm_maintenance_requests` (`id`, `property_id`, `lease_id`, `title`, `description`, `priority`, `status`, `assigned_to`, `estimated_cost`, `actual_cost`, `due_date`, `resolved_at`, `requested_by`, `requested_by_type`, `created_by`, `created_at`, `updated_at`) VALUES +(8, 41, 17, 'Leaking faucet in bathroom', 'Demo maintenance: Leaking faucet in bathroom', 'medium', 'resolved', 18, 2500.00, 1800.00, NULL, '2026-03-14 19:28:43', 2, 'staff', 2, '2026-02-28 11:28:43', '2026-03-14 11:28:43'), +(9, 42, 18, 'AC unit not cooling properly', 'Demo maintenance: AC unit not cooling properly', 'high', 'in_progress', 18, 15000.00, 0.00, NULL, NULL, 2, 'staff', 2, '2026-03-09 11:28:43', '2026-03-14 11:28:43'), +(10, 43, 19, 'Broken window lock', 'Demo maintenance: Broken window lock', 'medium', 'assigned', 18, 3000.00, 0.00, NULL, NULL, 2, 'staff', 2, '2026-03-11 11:28:43', '2026-03-14 11:28:43'), +(11, 44, 20, 'Elevator maintenance required', 'Demo maintenance: Elevator maintenance required', 'critical', 'open', NULL, 50000.00, 0.00, NULL, NULL, 2, 'staff', 2, '2026-03-13 11:28:43', '2026-03-14 11:28:43'), +(12, 46, 22, 'Water heater replacement', 'Demo maintenance: Water heater replacement', 'high', 'resolved', 18, 8000.00, 9500.00, NULL, '2026-03-14 19:28:43', 2, 'staff', 2, '2026-02-21 11:28:43', '2026-03-14 11:28:43'), +(13, 47, 23, 'Roof leak during typhoon', 'Demo maintenance: Roof leak during typhoon', 'critical', 'in_progress', 18, 25000.00, 0.00, NULL, NULL, 2, 'staff', 2, '2026-03-12 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_messages` +-- + +CREATE TABLE `pm_messages` ( + `id` bigint(20) UNSIGNED NOT NULL, + `property_id` bigint(20) UNSIGNED NOT NULL, + `lease_id` bigint(20) UNSIGNED DEFAULT NULL, + `sender_id` bigint(20) UNSIGNED NOT NULL, + `sender_type` varchar(20) NOT NULL DEFAULT 'tenant', + `message` text NOT NULL, + `read_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 `pm_messages` +-- + +INSERT INTO `pm_messages` (`id`, `property_id`, `lease_id`, `sender_id`, `sender_type`, `message`, `read_at`, `created_at`, `updated_at`) VALUES +(1, 41, 17, 16, 'tenant', 'Hi, the kitchen sink is leaking again. Can someone check it?', '2026-03-14 11:28:43', '2026-03-09 11:28:43', '2026-03-14 11:28:43'), +(2, 41, 17, 2, 'landlord', 'Thanks for letting us know, Maria. We\'ll send a plumber tomorrow morning.', '2026-03-14 11:28:43', '2026-03-10 11:28:43', '2026-03-14 11:28:43'), +(3, 42, 18, 8, 'tenant', 'When will the AC repair be completed? It\'s been 3 days.', NULL, '2026-03-11 11:28:43', '2026-03-14 11:28:43'), +(4, 42, 18, 2, 'landlord', 'The parts are on order, expected delivery tomorrow. Repair should be done by Friday.', NULL, '2026-03-12 11:28:43', '2026-03-14 11:28:43'), +(5, 44, 20, 8, 'tenant', 'Requesting approval for office renovation plans attached.', '2026-03-14 11:28:43', '2026-03-04 11:28:43', '2026-03-14 11:28:43'), +(6, 44, 20, 2, 'landlord', 'Renovation plans approved. Please coordinate with building admin for permits.', '2026-03-14 11:28:43', '2026-03-06 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_ownership_types` +-- + +CREATE TABLE `pm_ownership_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `created_by` 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; + +-- +-- Dumping data for table `pm_ownership_types` +-- + +INSERT INTO `pm_ownership_types` (`id`, `name`, `is_active`, `created_by`, `created_at`, `updated_at`) VALUES +(31, 'Freehold', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(32, 'Leasehold', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(33, 'Co-operative', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(34, 'Joint Venture', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(35, 'REIT', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_properties` +-- + +CREATE TABLE `pm_properties` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `short_description` text DEFAULT NULL, + `long_description` longtext DEFAULT NULL, + `address` text DEFAULT NULL, + `country` varchar(255) DEFAULT NULL, + `city` varchar(255) DEFAULT NULL, + `zip_code` varchar(255) DEFAULT NULL, + `size` varchar(255) DEFAULT NULL, + `bathrooms` int(11) NOT NULL DEFAULT 0, + `bedrooms` int(11) NOT NULL DEFAULT 0, + `rooms` int(11) NOT NULL DEFAULT 0, + `floor` varchar(255) DEFAULT NULL, + `sale_price` decimal(15,2) NOT NULL DEFAULT 0.00, + `rent_price_incl` decimal(15,2) NOT NULL DEFAULT 0.00, + `rent_price_excl` decimal(15,2) NOT NULL DEFAULT 0.00, + `main_image` varchar(255) DEFAULT NULL, + `floor_plan_image` varchar(255) DEFAULT NULL, + `video_url` varchar(255) DEFAULT NULL, + `lat` decimal(10,7) DEFAULT NULL, + `lng` decimal(10,7) DEFAULT NULL, + `category_id` bigint(20) UNSIGNED DEFAULT NULL, + `ownership_type_id` bigint(20) UNSIGNED DEFAULT NULL, + `area_type_id` bigint(20) UNSIGNED DEFAULT NULL, + `energy_efficiency_type_id` bigint(20) UNSIGNED DEFAULT NULL, + `status` enum('available','occupied','reserved','under_maintenance') NOT NULL DEFAULT 'available', + `rel_type` varchar(50) DEFAULT NULL, + `rel_id` bigint(20) UNSIGNED DEFAULT NULL, + `purpose` enum('residential','commercial','industrial','land','mixed') NOT NULL DEFAULT 'residential', + `selected_agent` bigint(20) UNSIGNED DEFAULT NULL, + `is_featured` tinyint(1) NOT NULL DEFAULT 0, + `is_enabled` tinyint(1) NOT NULL DEFAULT 1, + `created_by` 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; + +-- +-- Dumping data for table `pm_properties` +-- + +INSERT INTO `pm_properties` (`id`, `name`, `short_description`, `long_description`, `address`, `country`, `city`, `zip_code`, `size`, `bathrooms`, `bedrooms`, `rooms`, `floor`, `sale_price`, `rent_price_incl`, `rent_price_excl`, `main_image`, `floor_plan_image`, `video_url`, `lat`, `lng`, `category_id`, `ownership_type_id`, `area_type_id`, `energy_efficiency_type_id`, `status`, `rel_type`, `rel_id`, `purpose`, `selected_agent`, `is_featured`, `is_enabled`, `created_by`, `created_at`, `updated_at`) VALUES +(41, 'Sunset Residences Unit 301', 'Demo property: Sunset Residences Unit 301', 'This is a demo residential property located in Makati, Philippines. It features 65 sqm of space.', '301 Sunset Blvd, Brgy. San Antonio', 'Philippines', 'Makati', '1203', '65', 1, 2, 4, '3', 0.00, 25000.00, 22000.00, NULL, NULL, NULL, NULL, NULL, 40, 31, 25, 25, 'occupied', NULL, NULL, 'residential', 18, 1, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(42, 'Greenfield Commercial Space', 'Demo property: Greenfield Commercial Space', 'This is a demo commercial property located in Pasig, Philippines. It features 150 sqm of space.', '88 Greenfield Ave, Brgy. Ugong', 'Philippines', 'Pasig', '1604', '150', 2, 0, 3, '1', 0.00, 85000.00, 74800.00, NULL, NULL, NULL, NULL, NULL, 38, 32, 26, 26, 'occupied', NULL, NULL, 'commercial', 18, 1, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(43, 'Pine Valley Townhouse', 'Demo property: Pine Valley Townhouse', 'This is a demo residential property located in Antipolo, Philippines. It features 120 sqm of space.', 'Lot 12 Block 5, Pine Valley Subd', 'Philippines', 'Antipolo', '1870', '120', 2, 3, 6, '2', 0.00, 18000.00, 15840.00, NULL, NULL, NULL, NULL, NULL, 41, 33, 27, 27, 'occupied', NULL, NULL, 'residential', 18, 1, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(44, 'Metro Tower Office 15F', 'Demo property: Metro Tower Office 15F', 'This is a demo commercial property located in Makati, Philippines. It features 200 sqm of space.', '15F Metro Tower, Ayala Ave', 'Philippines', 'Makati', '1226', '200', 3, 0, 5, '15', 0.00, 120000.00, 105600.00, NULL, NULL, NULL, NULL, NULL, 38, 34, 28, 28, 'occupied', NULL, NULL, 'commercial', 18, 0, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(45, 'Lakeview Apartment 2B', 'Demo property: Lakeview Apartment 2B', 'This is a demo residential property located in Taguig, Philippines. It features 45 sqm of space.', 'Unit 2B, Lakeview Gardens', 'Philippines', 'Taguig', '1634', '45', 1, 1, 3, '2', 0.00, 15000.00, 13200.00, NULL, NULL, NULL, NULL, NULL, 37, 35, 25, 25, 'available', NULL, NULL, 'residential', 18, 0, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(46, 'BGC Studio Unit', 'Demo property: BGC Studio Unit', 'This is a demo residential property located in Taguig, Philippines. It features 32 sqm of space.', '32F One Uptown, BGC', 'Philippines', 'Taguig', '1634', '32', 1, 0, 1, '32', 0.00, 35000.00, 30800.00, NULL, NULL, NULL, NULL, NULL, 40, 31, 26, 26, 'occupied', NULL, NULL, 'residential', 18, 0, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(47, 'Makati Warehouse A', 'Demo property: Makati Warehouse A', 'This is a demo industrial property located in Makati, Philippines. It features 500 sqm of space.', 'Lot 5, Makati Industrial Park', 'Philippines', 'Makati', '1218', '500', 1, 0, 2, '1', 0.00, 65000.00, 57200.00, NULL, NULL, NULL, NULL, NULL, 42, 32, 27, 27, 'occupied', NULL, NULL, 'industrial', 18, 0, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(48, 'Cebu Beach House', 'Demo property: Cebu Beach House', 'This is a demo residential property located in Cebu, Philippines. It features 180 sqm of space.', 'Lot 8 Moalboal Road', 'Philippines', 'Cebu', '6032', '180', 3, 4, 8, '1', 0.00, 22000.00, 19360.00, NULL, NULL, NULL, NULL, NULL, 37, 33, 28, 28, 'reserved', NULL, NULL, 'residential', 18, 0, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(49, 'Davao Commercial Lot', 'Demo property: Davao Commercial Lot', 'This is a demo commercial property located in Davao, Philippines. It features 300 sqm of space.', 'Lot 3, JP Laurel Ave', 'Philippines', 'Davao', '8000', '300', 0, 0, 0, '0', 0.00, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, 38, 34, 25, 25, 'available', NULL, NULL, 'commercial', 18, 0, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(50, 'QC Industrial Compound', 'Demo property: QC Industrial Compound', 'This is a demo industrial property located in Quezon City, Philippines. It features 800 sqm of space.', 'Compound A, Balintawak', 'Philippines', 'Quezon City', '1106', '800', 2, 0, 4, '1', 0.00, 95000.00, 83600.00, NULL, NULL, NULL, NULL, NULL, 39, 35, 26, 26, 'under_maintenance', NULL, NULL, 'industrial', 18, 0, 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_property_amenities` +-- + +CREATE TABLE `pm_property_amenities` ( + `property_id` bigint(20) UNSIGNED NOT NULL, + `amenity_id` bigint(20) UNSIGNED NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `pm_property_amenities` +-- + +INSERT INTO `pm_property_amenities` (`property_id`, `amenity_id`) VALUES +(41, 26), +(41, 27), +(41, 29), +(41, 30), +(41, 35), +(42, 29), +(42, 30), +(42, 33), +(42, 36), +(43, 25), +(43, 26), +(43, 27), +(43, 31), +(43, 33), +(44, 27), +(44, 33), +(44, 35), +(45, 25), +(45, 27), +(46, 25), +(46, 27), +(46, 28), +(46, 30), +(46, 36), +(47, 26), +(47, 27), +(47, 30), +(47, 32), +(47, 33), +(48, 26), +(48, 27), +(48, 28), +(48, 32), +(48, 33), +(49, 26), +(49, 30), +(49, 31), +(49, 32), +(49, 36), +(50, 26), +(50, 29), +(50, 31), +(50, 34), +(50, 36); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_property_assignments` +-- + +CREATE TABLE `pm_property_assignments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `property_id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `role` enum('agent','inspector','manager') NOT NULL DEFAULT 'agent', + `assigned_to` varchar(50) DEFAULT NULL, + `assigned_id` bigint(20) UNSIGNED DEFAULT NULL, + `assigned_date` 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; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_property_attachments` +-- + +CREATE TABLE `pm_property_attachments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `property_id` bigint(20) UNSIGNED NOT NULL, + `file_name` varchar(255) NOT NULL, + `file_path` varchar(255) NOT NULL, + `file_type` varchar(50) DEFAULT NULL, + `file_size` bigint(20) UNSIGNED NOT NULL DEFAULT 0, + `uploaded_by` 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 `pm_property_audits` +-- + +CREATE TABLE `pm_property_audits` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `auditor_id` bigint(20) UNSIGNED NOT NULL, + `audit_date` date NOT NULL, + `property_ids` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`property_ids`)), + `notes` text DEFAULT NULL, + `status` enum('planned','in_progress','completed') NOT NULL DEFAULT 'planned', + `created_by` 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 `pm_property_categories` +-- + +CREATE TABLE `pm_property_categories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `icon` varchar(255) DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `created_by` 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; + +-- +-- Dumping data for table `pm_property_categories` +-- + +INSERT INTO `pm_property_categories` (`id`, `name`, `icon`, `is_active`, `created_by`, `created_at`, `updated_at`) VALUES +(37, 'Residential', 'residential', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(38, 'Commercial', 'commercial', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(39, 'Industrial', 'industrial', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(40, 'Condominium', 'condominium', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(41, 'Townhouse', 'townhouse', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'), +(42, 'Warehouse', 'warehouse', 1, 2, '2026-03-14 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_property_events` +-- + +CREATE TABLE `pm_property_events` ( + `id` bigint(20) UNSIGNED NOT NULL, + `property_id` bigint(20) UNSIGNED NOT NULL, + `event_by` bigint(20) UNSIGNED DEFAULT NULL, + `event_type` varchar(255) NOT NULL, + `description` text DEFAULT NULL, + `event_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`event_data`)), + `created_by` bigint(20) UNSIGNED 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 `pm_property_history` +-- + +CREATE TABLE `pm_property_history` ( + `id` bigint(20) UNSIGNED NOT NULL, + `property_id` bigint(20) UNSIGNED NOT NULL, + `event` varchar(255) NOT NULL, + `field` varchar(255) DEFAULT NULL, + `old_value` text DEFAULT NULL, + `new_value` text DEFAULT NULL, + `changed_by` 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; + +-- +-- Dumping data for table `pm_property_history` +-- + +INSERT INTO `pm_property_history` (`id`, `property_id`, `event`, `field`, `old_value`, `new_value`, `changed_by`, `created_at`, `updated_at`) VALUES +(1, 41, 'status_change', 'status', 'available', 'occupied', 2, '2025-12-14 11:28:43', '2026-03-14 11:28:43'), +(2, 42, 'status_change', 'status', 'available', 'occupied', 2, '2026-01-13 11:28:43', '2026-03-14 11:28:43'), +(3, 43, 'status_change', 'status', 'available', 'occupied', 2, '2026-01-28 11:28:43', '2026-03-14 11:28:43'), +(4, 44, 'lease_created', NULL, NULL, 'Active lease signed', 2, '2025-11-14 11:28:43', '2026-03-14 11:28:43'), +(5, 45, 'status_change', 'status', 'occupied', 'available', 2, '2026-02-12 11:28:43', '2026-03-14 11:28:43'), +(6, 46, 'rent_increase', 'rent_price_incl', '30000', '35000', 2, '2026-02-27 11:28:43', '2026-03-14 11:28:43'), +(7, 47, 'status_change', 'status', 'available', 'occupied', 2, '2025-10-15 11:28:43', '2026-03-14 11:28:43'), +(8, 48, 'status_change', 'status', 'available', 'reserved', 2, '2026-03-07 11:28:43', '2026-03-14 11:28:43'), +(9, 50, 'status_change', 'status', 'occupied', 'under_maintenance', 2, '2026-03-04 11:28:43', '2026-03-14 11:28:43'), +(10, 41, 'agent_assigned', 'selected_agent', NULL, 'Agent assigned', 2, '2025-12-04 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pm_property_images` +-- + +CREATE TABLE `pm_property_images` ( + `id` bigint(20) UNSIGNED NOT NULL, + `property_id` bigint(20) UNSIGNED NOT NULL, + `image_path` varchar(255) NOT NULL, + `sort_order` 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 `pm_property_leads` +-- + +CREATE TABLE `pm_property_leads` ( + `property_id` bigint(20) UNSIGNED NOT NULL, + `lead_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 `pm_property_notes` +-- + +CREATE TABLE `pm_property_notes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `property_id` bigint(20) UNSIGNED NOT NULL, + `note_text` text NOT NULL, + `note_type` varchar(20) NOT NULL DEFAULT 'general', + `is_pinned` tinyint(1) NOT NULL DEFAULT 0, + `created_by` 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; + +-- +-- Dumping data for table `pm_property_notes` +-- + +INSERT INTO `pm_property_notes` (`id`, `property_id`, `note_text`, `note_type`, `is_pinned`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 41, 'Tenant renewed for another year. Consider increasing rent by 5% next cycle.', 'general', 1, 2, '2026-03-07 11:28:43', '2026-03-14 11:28:43'), +(2, 42, 'Fire safety inspection due next month. Contact building admin.', 'general', 1, 2, '2026-03-11 11:28:43', '2026-03-14 11:28:43'), +(3, 44, 'Office layout reconfiguration approved by tenant. Budget: ₱150,000.', 'general', 0, 2, '2026-02-14 11:28:43', '2026-03-14 11:28:43'), +(4, 46, 'Tenant requests pet-friendly policy update. Review HOA rules.', 'general', 0, 2, '2026-03-07 11:28:43', '2026-03-14 11:28:43'), +(5, 50, 'Structural assessment completed. Estimated repair timeline: 6 weeks.', 'general', 1, 2, '2026-02-23 11:28:43', '2026-03-14 11:28:43'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pos` +-- + +CREATE TABLE `pos` ( + `id` bigint(20) UNSIGNED NOT NULL, + `sale_number` varchar(255) NOT NULL, + `customer_id` bigint(20) UNSIGNED DEFAULT NULL, + `warehouse_id` bigint(20) UNSIGNED DEFAULT NULL, + `pos_date` date NOT NULL, + `status` enum('completed','pending','cancelled') NOT NULL DEFAULT 'completed', + `bank_account_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `pos` +-- + +INSERT INTO `pos` (`id`, `sale_number`, `customer_id`, `warehouse_id`, `pos_date`, `status`, `bank_account_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, '#POS00001', 15, 15, '2025-09-15', 'completed', NULL, 2, 2, '2025-09-15 00:17:53', '2026-03-14 00:17:53'), +(2, '#POS00002', NULL, 9, '2025-09-20', 'completed', NULL, 2, 2, '2025-09-20 00:17:53', '2026-03-14 00:17:53'), +(3, '#POS00003', 44, 1, '2025-09-25', 'completed', NULL, 2, 2, '2025-09-25 00:17:53', '2026-03-14 00:17:53'), +(4, '#POS00004', 54, 1, '2025-09-30', 'completed', NULL, 2, 2, '2025-09-30 00:17:53', '2026-03-14 00:17:53'), +(5, '#POS00005', NULL, 6, '2025-10-05', 'completed', NULL, 2, 2, '2025-10-05 00:17:53', '2026-03-14 00:17:53'), +(6, '#POS00006', 43, 1, '2025-10-10', 'completed', NULL, 2, 2, '2025-10-10 00:17:53', '2026-03-14 00:17:53'), +(7, '#POS00007', NULL, 1, '2025-10-15', 'completed', NULL, 2, 2, '2025-10-15 00:17:53', '2026-03-14 00:17:53'), +(8, '#POS00008', 48, 9, '2025-10-20', 'completed', NULL, 2, 2, '2025-10-20 00:17:53', '2026-03-14 00:17:53'), +(9, '#POS00009', NULL, 1, '2025-10-25', 'completed', NULL, 2, 2, '2025-10-25 00:17:53', '2026-03-14 00:17:53'), +(10, '#POS00010', 17, 1, '2025-10-30', 'completed', NULL, 2, 2, '2025-10-30 00:17:53', '2026-03-14 00:17:53'), +(11, '#POS00011', NULL, 13, '2025-11-04', 'completed', NULL, 2, 2, '2025-11-04 00:17:53', '2026-03-14 00:17:53'), +(12, '#POS00012', 45, 9, '2025-11-09', 'completed', NULL, 2, 2, '2025-11-09 00:17:53', '2026-03-14 00:17:53'), +(13, '#POS00013', NULL, 1, '2025-11-14', 'completed', NULL, 2, 2, '2025-11-14 00:17:53', '2026-03-14 00:17:53'), +(14, '#POS00014', 17, 5, '2025-11-19', 'completed', NULL, 2, 2, '2025-11-19 00:17:53', '2026-03-14 00:17:53'), +(15, '#POS00015', NULL, 1, '2025-11-24', 'completed', NULL, 2, 2, '2025-11-24 00:17:53', '2026-03-14 00:17:53'), +(16, '#POS00016', 46, 13, '2025-11-29', 'completed', NULL, 2, 2, '2025-11-29 00:17:53', '2026-03-14 00:17:53'), +(17, '#POS00017', NULL, 11, '2025-12-04', 'completed', NULL, 2, 2, '2025-12-04 00:17:53', '2026-03-14 00:17:53'), +(18, '#POS00018', 54, 1, '2025-12-09', 'completed', NULL, 2, 2, '2025-12-09 00:17:53', '2026-03-14 00:17:53'), +(19, '#POS00019', NULL, 9, '2025-12-14', 'completed', NULL, 2, 2, '2025-12-14 00:17:53', '2026-03-14 00:17:54'), +(20, '#POS00020', 19, 3, '2025-12-19', 'completed', NULL, 2, 2, '2025-12-19 00:17:53', '2026-03-14 00:17:54'), +(21, '#POS00021', NULL, 13, '2025-12-24', 'completed', NULL, 2, 2, '2025-12-24 00:17:53', '2026-03-14 00:17:54'), +(22, '#POS00022', 15, 2, '2025-12-29', 'completed', NULL, 2, 2, '2025-12-29 00:17:53', '2026-03-14 00:17:54'), +(23, '#POS00023', NULL, 2, '2026-01-03', 'completed', NULL, 2, 2, '2026-01-03 00:17:53', '2026-03-14 00:17:54'), +(24, '#POS00024', 43, 1, '2026-01-08', 'completed', NULL, 2, 2, '2026-01-08 00:17:53', '2026-03-14 00:17:54'), +(25, '#POS00025', 23, 1, '2026-01-13', 'completed', NULL, 2, 2, '2026-01-13 00:17:53', '2026-01-13 00:17:53'), +(26, '#POS00026', NULL, 1, '2026-01-18', 'completed', NULL, 2, 2, '2026-01-18 00:17:53', '2026-03-14 00:17:54'), +(27, '#POS00027', 50, 3, '2026-01-23', 'completed', NULL, 2, 2, '2026-01-23 00:17:53', '2026-03-14 00:17:54'), +(28, '#POS00028', NULL, 15, '2026-03-07', 'completed', NULL, 2, 2, '2026-03-07 00:17:53', '2026-03-14 00:17:54'), +(29, '#POS00029', 27, 11, '2026-03-11', 'completed', NULL, 2, 2, '2026-03-11 00:17:53', '2026-03-14 00:17:54'), +(30, '#POS00030', NULL, 1, '2026-03-13', 'completed', NULL, 2, 2, '2026-03-13 00:17:53', '2026-03-14 00:17:54'), +(31, '#POS00001', 27, 1, '2025-09-15', 'completed', NULL, 2, 2, '2025-09-15 06:00:08', '2026-03-14 06:00:08'), +(32, '#POS00002', NULL, 13, '2025-09-20', 'completed', NULL, 2, 2, '2025-09-20 06:00:08', '2026-03-14 06:00:08'), +(33, '#POS00003', 19, 1, '2025-09-25', 'completed', NULL, 2, 2, '2025-09-25 06:00:08', '2026-03-14 06:00:08'), +(34, '#POS00004', 17, 1, '2025-09-30', 'completed', NULL, 2, 2, '2025-09-30 06:00:08', '2026-03-14 06:00:08'), +(35, '#POS00005', NULL, 5, '2025-10-05', 'completed', NULL, 2, 2, '2025-10-05 06:00:08', '2026-03-14 06:00:08'), +(36, '#POS00006', 13, 1, '2025-10-10', 'completed', NULL, 2, 2, '2025-10-10 06:00:08', '2026-03-14 06:00:08'), +(37, '#POS00007', NULL, 1, '2025-10-15', 'completed', NULL, 2, 2, '2025-10-15 06:00:08', '2026-03-14 06:00:08'), +(38, '#POS00008', 57, 9, '2025-10-20', 'completed', NULL, 2, 2, '2025-10-20 06:00:08', '2026-03-14 06:00:08'), +(39, '#POS00009', NULL, 13, '2025-10-25', 'completed', NULL, 2, 2, '2025-10-25 06:00:08', '2026-03-14 06:00:08'), +(40, '#POS00010', 15, 5, '2025-10-30', 'completed', NULL, 2, 2, '2025-10-30 06:00:08', '2026-03-14 06:00:08'), +(41, '#POS00011', NULL, 9, '2025-11-04', 'completed', NULL, 2, 2, '2025-11-04 06:00:08', '2026-03-14 06:00:08'), +(42, '#POS00012', 45, 13, '2025-11-09', 'completed', NULL, 2, 2, '2025-11-09 06:00:08', '2026-03-14 06:00:08'), +(43, '#POS00013', NULL, 1, '2025-11-14', 'completed', NULL, 2, 2, '2025-11-14 06:00:08', '2026-03-14 06:00:08'), +(44, '#POS00014', 51, 2, '2025-11-19', 'completed', NULL, 2, 2, '2025-11-19 06:00:08', '2026-03-14 06:00:08'), +(45, '#POS00015', NULL, 1, '2025-11-24', 'completed', NULL, 2, 2, '2025-11-24 06:00:08', '2026-03-14 06:00:08'), +(46, '#POS00016', 49, 1, '2025-11-29', 'completed', NULL, 2, 2, '2025-11-29 06:00:08', '2026-03-14 06:00:08'), +(47, '#POS00017', NULL, 9, '2025-12-04', 'completed', NULL, 2, 2, '2025-12-04 06:00:08', '2026-03-14 06:00:08'), +(48, '#POS00018', 45, 9, '2025-12-09', 'completed', NULL, 2, 2, '2025-12-09 06:00:08', '2026-03-14 06:00:08'), +(49, '#POS00019', NULL, 1, '2025-12-14', 'completed', NULL, 2, 2, '2025-12-14 06:00:08', '2026-03-14 06:00:08'), +(50, '#POS00020', 50, 1, '2025-12-19', 'completed', NULL, 2, 2, '2025-12-19 06:00:08', '2026-03-14 06:00:08'), +(51, '#POS00021', NULL, 9, '2025-12-24', 'completed', NULL, 2, 2, '2025-12-24 06:00:08', '2026-03-14 06:00:08'), +(52, '#POS00022', 13, 4, '2025-12-29', 'completed', NULL, 2, 2, '2025-12-29 06:00:08', '2026-03-14 06:00:08'), +(53, '#POS00023', NULL, 5, '2026-01-03', 'completed', NULL, 2, 2, '2026-01-03 06:00:08', '2026-03-14 06:00:08'), +(54, '#POS00024', 21, 1, '2026-01-08', 'completed', NULL, 2, 2, '2026-01-08 06:00:08', '2026-03-14 06:00:08'), +(55, '#POS00025', 13, 5, '2026-01-13', 'completed', NULL, 2, 2, '2026-01-13 06:00:08', '2026-03-14 06:00:08'), +(56, '#POS00026', NULL, 2, '2026-01-18', 'completed', NULL, 2, 2, '2026-01-18 06:00:08', '2026-03-14 06:00:08'), +(57, '#POS00027', 54, 8, '2026-01-23', 'completed', NULL, 2, 2, '2026-01-23 06:00:08', '2026-03-14 06:00:08'), +(58, '#POS00028', NULL, 1, '2026-03-07', 'completed', NULL, 2, 2, '2026-03-07 06:00:08', '2026-03-14 06:00:08'), +(59, '#POS00029', 48, 1, '2026-03-11', 'completed', NULL, 2, 2, '2026-03-11 06:00:08', '2026-03-14 06:00:08'), +(60, '#POS00030', NULL, 11, '2026-03-13', 'completed', NULL, 2, 2, '2026-03-13 06:00:08', '2026-03-14 06:00:08'), +(61, '#POS00001', 27, 1, '2025-09-15', 'completed', NULL, 2, 2, '2025-09-15 06:00:08', '2026-03-14 06:00:08'), +(62, '#POS00002', NULL, 5, '2025-09-20', 'completed', NULL, 2, 2, '2025-09-20 06:00:08', '2026-03-14 06:00:08'), +(63, '#POS00003', 54, 11, '2025-09-25', 'completed', NULL, 2, 2, '2025-09-25 06:00:08', '2026-03-14 06:00:08'), +(64, '#POS00004', 15, 5, '2025-09-30', 'completed', NULL, 2, 2, '2025-09-30 06:00:08', '2026-03-14 06:00:08'), +(65, '#POS00005', NULL, 1, '2025-10-05', 'completed', NULL, 2, 2, '2025-10-05 06:00:08', '2026-03-14 06:00:08'), +(66, '#POS00006', 49, 9, '2025-10-10', 'completed', NULL, 2, 2, '2025-10-10 06:00:08', '2026-03-14 06:00:08'), +(67, '#POS00007', NULL, 1, '2025-10-15', 'completed', NULL, 2, 2, '2025-10-15 06:00:08', '2026-03-14 06:00:08'), +(68, '#POS00008', 13, 1, '2025-10-20', 'completed', NULL, 2, 2, '2025-10-20 06:00:08', '2026-03-14 06:00:08'), +(69, '#POS00009', NULL, 13, '2025-10-25', 'completed', NULL, 2, 2, '2025-10-25 06:00:08', '2026-03-14 06:00:08'), +(70, '#POS00010', 51, 1, '2025-10-30', 'completed', NULL, 2, 2, '2025-10-30 06:00:08', '2026-03-14 06:00:08'), +(71, '#POS00011', NULL, 13, '2025-11-04', 'completed', NULL, 2, 2, '2025-11-04 06:00:08', '2026-03-14 06:00:08'), +(72, '#POS00012', 56, 7, '2025-11-09', 'completed', NULL, 2, 2, '2025-11-09 06:00:08', '2025-11-09 06:00:08'), +(73, '#POS00013', NULL, 1, '2025-11-14', 'completed', NULL, 2, 2, '2025-11-14 06:00:08', '2026-03-14 06:00:08'), +(74, '#POS00014', 19, 5, '2025-11-19', 'completed', NULL, 2, 2, '2025-11-19 06:00:08', '2026-03-14 06:00:08'), +(75, '#POS00015', NULL, 1, '2025-11-24', 'completed', NULL, 2, 2, '2025-11-24 06:00:08', '2026-03-14 06:00:08'), +(76, '#POS00016', 11, 1, '2025-11-29', 'completed', NULL, 2, 2, '2025-11-29 06:00:08', '2026-03-14 06:00:08'), +(77, '#POS00017', NULL, 9, '2025-12-04', 'completed', NULL, 2, 2, '2025-12-04 06:00:08', '2026-03-14 06:00:08'), +(78, '#POS00018', 17, 2, '2025-12-09', 'completed', NULL, 2, 2, '2025-12-09 06:00:08', '2026-03-14 06:00:08'), +(79, '#POS00019', NULL, 9, '2025-12-14', 'completed', NULL, 2, 2, '2025-12-14 06:00:08', '2026-03-14 06:00:08'), +(80, '#POS00020', 23, 1, '2025-12-19', 'completed', NULL, 2, 2, '2025-12-19 06:00:08', '2026-03-14 06:00:08'), +(81, '#POS00021', NULL, 4, '2025-12-24', 'completed', NULL, 2, 2, '2025-12-24 06:00:08', '2026-03-14 06:00:08'), +(82, '#POS00022', 25, 11, '2025-12-29', 'completed', NULL, 2, 2, '2025-12-29 06:00:08', '2026-03-14 06:00:08'), +(83, '#POS00023', NULL, 9, '2026-01-03', 'completed', NULL, 2, 2, '2026-01-03 06:00:08', '2026-03-14 06:00:08'), +(84, '#POS00024', 27, 11, '2026-01-08', 'completed', NULL, 2, 2, '2026-01-08 06:00:08', '2026-03-14 06:00:08'), +(85, '#POS00025', 11, 11, '2026-01-13', 'completed', NULL, 2, 2, '2026-01-13 06:00:08', '2026-03-14 06:00:08'), +(86, '#POS00026', NULL, 8, '2026-01-18', 'completed', NULL, 2, 2, '2026-01-18 06:00:08', '2026-03-14 06:00:08'), +(87, '#POS00027', 27, 1, '2026-01-23', 'completed', NULL, 2, 2, '2026-01-23 06:00:08', '2026-03-14 06:00:08'), +(88, '#POS00028', NULL, 6, '2026-03-07', 'completed', NULL, 2, 2, '2026-03-07 06:00:08', '2026-03-14 06:00:08'), +(89, '#POS00029', 21, 1, '2026-03-11', 'completed', NULL, 2, 2, '2026-03-11 06:00:08', '2026-03-14 06:00:08'), +(90, '#POS00030', NULL, 5, '2026-03-13', 'completed', NULL, 2, 2, '2026-03-13 06:00:08', '2026-03-14 06:00:08'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pos_items` +-- + +CREATE TABLE `pos_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `pos_id` bigint(20) UNSIGNED DEFAULT NULL, + `product_id` bigint(20) UNSIGNED DEFAULT NULL, + `quantity` decimal(8,2) NOT NULL, + `price` decimal(10,2) NOT NULL, + `subtotal` decimal(10,2) NOT NULL, + `tax_ids` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`tax_ids`)), + `tax_amount` decimal(10,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(10,2) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `pos_items` +-- + +INSERT INTO `pos_items` (`id`, `pos_id`, `product_id`, `quantity`, `price`, `subtotal`, `tax_ids`, `tax_amount`, `total_amount`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 6, 1.00, 199.99, 199.99, '[1,2,3]', 90.00, 289.99, 2, 2, '2025-09-15 00:17:53', '2025-09-15 00:17:53'), +(2, 1, 11, 1.00, 15.99, 15.99, '[1,2]', 4.80, 20.79, 2, 2, '2025-09-15 00:17:53', '2025-09-15 00:17:53'), +(3, 2, 15, 2.00, 59.99, 119.98, '[1,2,3]', 53.99, 173.97, 2, 2, '2025-09-20 00:17:53', '2025-09-20 00:17:53'), +(4, 2, 18, 3.00, 35.99, 107.97, '[1]', 19.43, 127.40, 2, 2, '2025-09-20 00:17:53', '2025-09-20 00:17:53'), +(5, 3, 12, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-09-25 00:17:53', '2025-09-25 00:17:53'), +(6, 4, 9, 2.00, 45.00, 90.00, '[1,2]', 27.00, 117.00, 2, 2, '2025-09-30 00:17:53', '2025-09-30 00:17:53'), +(7, 4, 20, 1.00, 150.00, 150.00, '[1]', 27.00, 177.00, 2, 2, '2025-09-30 00:17:53', '2025-09-30 00:17:53'), +(8, 4, 24, 3.00, 39.99, 119.97, '[1,2,3]', 53.99, 173.96, 2, 2, '2025-09-30 00:17:53', '2025-09-30 00:17:53'), +(9, 5, 1, 2.00, 25.99, 51.98, '[1]', 9.36, 61.34, 2, 2, '2025-10-05 00:17:53', '2025-10-05 00:17:53'), +(10, 5, 5, 1.00, 18.99, 18.99, '[1,2,3]', 8.55, 27.54, 2, 2, '2025-10-05 00:17:53', '2025-10-05 00:17:53'), +(11, 6, 2, 3.00, 89.99, 269.97, '[1,2,3]', 121.49, 391.46, 2, 2, '2025-10-10 00:17:53', '2025-10-10 00:17:53'), +(12, 6, 11, 4.00, 15.99, 63.96, '[1,2]', 19.19, 83.15, 2, 2, '2025-10-10 00:17:53', '2025-10-10 00:17:53'), +(13, 6, 20, 4.00, 150.00, 600.00, '[1]', 108.00, 708.00, 2, 2, '2025-10-10 00:17:53', '2025-10-10 00:17:53'), +(14, 7, 8, 2.00, 699.99, 1399.98, '[1,2,3]', 629.99, 2029.97, 2, 2, '2025-10-15 00:17:53', '2025-10-15 00:17:53'), +(15, 7, 10, 2.00, 120.00, 240.00, '[1,2,3]', 108.00, 348.00, 2, 2, '2025-10-15 00:17:53', '2025-10-15 00:17:53'), +(16, 7, 11, 2.00, 15.99, 31.98, '[1,2]', 9.59, 41.57, 2, 2, '2025-10-15 00:17:53', '2025-10-15 00:17:53'), +(17, 7, 22, 2.00, 6.99, 13.98, '[1,2]', 4.19, 18.17, 2, 2, '2025-10-15 00:17:53', '2025-10-15 00:17:53'), +(18, 7, 24, 4.00, 39.99, 159.96, '[1,2,3]', 71.98, 231.94, 2, 2, '2025-10-15 00:17:53', '2025-10-15 00:17:53'), +(19, 8, 9, 1.00, 45.00, 45.00, '[1,2]', 13.50, 58.50, 2, 2, '2025-10-20 00:17:53', '2025-10-20 00:17:53'), +(20, 8, 13, 2.00, 300.00, 600.00, '[1]', 108.00, 708.00, 2, 2, '2025-10-20 00:17:53', '2025-10-20 00:17:53'), +(21, 8, 21, 3.00, 899.99, 2699.97, '[1,2]', 809.99, 3509.96, 2, 2, '2025-10-20 00:17:53', '2025-10-20 00:17:53'), +(22, 9, 8, 2.00, 699.99, 1399.98, '[1,2,3]', 629.99, 2029.97, 2, 2, '2025-10-25 00:17:53', '2025-10-25 00:17:53'), +(23, 9, 12, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-10-25 00:17:53', '2025-10-25 00:17:53'), +(24, 9, 19, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-10-25 00:17:53', '2025-10-25 00:17:53'), +(25, 10, 9, 2.00, 45.00, 90.00, '[1,2]', 27.00, 117.00, 2, 2, '2025-10-30 00:17:53', '2025-10-30 00:17:53'), +(26, 10, 18, 2.00, 35.99, 71.98, '[1]', 12.96, 84.94, 2, 2, '2025-10-30 00:17:53', '2025-10-30 00:17:53'), +(27, 10, 24, 1.00, 39.99, 39.99, '[1,2,3]', 18.00, 57.99, 2, 2, '2025-10-30 00:17:53', '2025-10-30 00:17:53'), +(28, 11, 2, 3.00, 89.99, 269.97, '[1,2,3]', 121.49, 391.46, 2, 2, '2025-11-04 00:17:53', '2025-11-04 00:17:53'), +(29, 11, 8, 1.00, 699.99, 699.99, '[1,2,3]', 315.00, 1014.99, 2, 2, '2025-11-04 00:17:53', '2025-11-04 00:17:53'), +(30, 11, 13, 2.00, 300.00, 600.00, '[1]', 108.00, 708.00, 2, 2, '2025-11-04 00:17:53', '2025-11-04 00:17:53'), +(31, 11, 15, 1.00, 59.99, 59.99, '[1,2,3]', 27.00, 86.99, 2, 2, '2025-11-04 00:17:53', '2025-11-04 00:17:53'), +(32, 12, 15, 2.00, 59.99, 119.98, '[1,2,3]', 53.99, 173.97, 2, 2, '2025-11-09 00:17:53', '2025-11-09 00:17:53'), +(33, 12, 21, 2.00, 899.99, 1799.98, '[1,2]', 539.99, 2339.97, 2, 2, '2025-11-09 00:17:53', '2025-11-09 00:17:53'), +(34, 13, 7, 2.00, 3.99, 7.98, '[1]', 1.44, 9.42, 2, 2, '2025-11-14 00:17:53', '2025-11-14 00:17:53'), +(35, 13, 19, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-11-14 00:17:53', '2025-11-14 00:17:53'), +(36, 14, 2, 1.00, 89.99, 89.99, '[1,2,3]', 40.50, 130.49, 2, 2, '2025-11-19 00:17:53', '2025-11-19 00:17:53'), +(37, 14, 4, 3.00, 80.00, 240.00, '[1,2,3]', 108.00, 348.00, 2, 2, '2025-11-19 00:17:53', '2025-11-19 00:17:53'), +(38, 14, 13, 2.00, 300.00, 600.00, '[1]', 108.00, 708.00, 2, 2, '2025-11-19 00:17:53', '2025-11-19 00:17:53'), +(39, 15, 8, 2.00, 699.99, 1399.98, '[1,2,3]', 629.99, 2029.97, 2, 2, '2025-11-24 00:17:53', '2025-11-24 00:17:53'), +(40, 15, 24, 2.00, 39.99, 79.98, '[1,2,3]', 35.99, 115.97, 2, 2, '2025-11-24 00:17:53', '2025-11-24 00:17:53'), +(41, 16, 10, 2.00, 120.00, 240.00, '[1,2,3]', 108.00, 348.00, 2, 2, '2025-11-29 00:17:53', '2025-11-29 00:17:53'), +(42, 16, 19, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-11-29 00:17:53', '2025-11-29 00:17:53'), +(43, 17, 9, 1.00, 45.00, 45.00, '[1,2]', 13.50, 58.50, 2, 2, '2025-12-04 00:17:53', '2025-12-04 00:17:53'), +(44, 18, 1, 4.00, 25.99, 103.96, '[1]', 18.71, 122.67, 2, 2, '2025-12-09 00:17:53', '2025-12-09 00:17:53'), +(45, 18, 5, 4.00, 18.99, 75.96, '[1,2,3]', 34.18, 110.14, 2, 2, '2025-12-09 00:17:53', '2025-12-09 00:17:53'), +(46, 18, 12, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-12-09 00:17:53', '2025-12-09 00:17:53'), +(47, 18, 13, 4.00, 300.00, 1200.00, '[1]', 216.00, 1416.00, 2, 2, '2025-12-09 00:17:53', '2025-12-09 00:17:53'), +(48, 18, 20, 4.00, 150.00, 600.00, '[1]', 108.00, 708.00, 2, 2, '2025-12-09 00:17:53', '2025-12-09 00:17:53'), +(49, 19, 6, 1.00, 199.99, 199.99, '[1,2,3]', 90.00, 289.99, 2, 2, '2025-12-14 00:17:53', '2025-12-14 00:17:53'), +(50, 19, 7, 1.00, 3.99, 3.99, '[1]', 0.72, 4.71, 2, 2, '2025-12-14 00:17:53', '2025-12-14 00:17:53'), +(51, 19, 11, 2.00, 15.99, 31.98, '[1,2]', 9.59, 41.57, 2, 2, '2025-12-14 00:17:53', '2025-12-14 00:17:53'), +(52, 19, 15, 1.00, 59.99, 59.99, '[1,2,3]', 27.00, 86.99, 2, 2, '2025-12-14 00:17:53', '2025-12-14 00:17:53'), +(53, 19, 18, 3.00, 35.99, 107.97, '[1]', 19.43, 127.40, 2, 2, '2025-12-14 00:17:53', '2025-12-14 00:17:53'), +(54, 20, 1, 1.00, 25.99, 25.99, '[1]', 4.68, 30.67, 2, 2, '2025-12-19 00:17:53', '2025-12-19 00:17:53'), +(55, 21, 5, 1.00, 18.99, 18.99, '[1,2,3]', 8.55, 27.54, 2, 2, '2025-12-24 00:17:53', '2025-12-24 00:17:53'), +(56, 21, 10, 1.00, 120.00, 120.00, '[1,2,3]', 54.00, 174.00, 2, 2, '2025-12-24 00:17:53', '2025-12-24 00:17:53'), +(57, 22, 5, 1.00, 18.99, 18.99, '[1,2,3]', 8.55, 27.54, 2, 2, '2025-12-29 00:17:53', '2025-12-29 00:17:53'), +(58, 22, 12, 1.00, 24.99, 24.99, '[1,2]', 7.50, 32.49, 2, 2, '2025-12-29 00:17:53', '2025-12-29 00:17:53'), +(59, 22, 22, 2.00, 6.99, 13.98, '[1,2]', 4.19, 18.17, 2, 2, '2025-12-29 00:17:53', '2025-12-29 00:17:53'), +(60, 23, 21, 1.00, 899.99, 899.99, '[1,2]', 270.00, 1169.99, 2, 2, '2026-01-03 00:17:53', '2026-01-03 00:17:53'), +(61, 23, 22, 1.00, 6.99, 6.99, '[1,2]', 2.10, 9.09, 2, 2, '2026-01-03 00:17:53', '2026-01-03 00:17:53'), +(62, 24, 2, 2.00, 89.99, 179.98, '[1,2,3]', 80.99, 260.97, 2, 2, '2026-01-08 00:17:53', '2026-01-08 00:17:53'), +(63, 24, 8, 3.00, 699.99, 2099.97, '[1,2,3]', 944.99, 3044.96, 2, 2, '2026-01-08 00:17:53', '2026-01-08 00:17:53'), +(64, 24, 19, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2026-01-08 00:17:53', '2026-01-08 00:17:53'), +(65, 25, 2, 1.00, 89.99, 89.99, '[1,2,3]', 40.50, 130.49, 2, 2, '2026-01-13 00:17:53', '2026-01-13 00:17:53'), +(66, 25, 24, 1.00, 39.99, 39.99, '[1,2,3]', 18.00, 57.99, 2, 2, '2026-01-13 00:17:53', '2026-01-13 00:17:53'), +(67, 26, 15, 1.00, 59.99, 59.99, '[1,2,3]', 27.00, 86.99, 2, 2, '2026-01-18 00:17:53', '2026-01-18 00:17:53'), +(68, 26, 20, 1.00, 150.00, 150.00, '[1]', 27.00, 177.00, 2, 2, '2026-01-18 00:17:53', '2026-01-18 00:17:53'), +(69, 27, 1, 2.00, 25.99, 51.98, '[1]', 9.36, 61.34, 2, 2, '2026-01-23 00:17:53', '2026-01-23 00:17:53'), +(70, 27, 20, 1.00, 150.00, 150.00, '[1]', 27.00, 177.00, 2, 2, '2026-01-23 00:17:53', '2026-01-23 00:17:53'), +(71, 28, 9, 1.00, 45.00, 45.00, '[1,2]', 13.50, 58.50, 2, 2, '2026-03-07 00:17:53', '2026-03-07 00:17:53'), +(72, 28, 11, 2.00, 15.99, 31.98, '[1,2]', 9.59, 41.57, 2, 2, '2026-03-07 00:17:53', '2026-03-07 00:17:53'), +(73, 29, 2, 1.00, 89.99, 89.99, '[1,2,3]', 40.50, 130.49, 2, 2, '2026-03-11 00:17:53', '2026-03-11 00:17:53'), +(74, 29, 7, 2.00, 3.99, 7.98, '[1]', 1.44, 9.42, 2, 2, '2026-03-11 00:17:53', '2026-03-11 00:17:53'), +(75, 29, 9, 1.00, 45.00, 45.00, '[1,2]', 13.50, 58.50, 2, 2, '2026-03-11 00:17:53', '2026-03-11 00:17:53'), +(76, 30, 5, 2.00, 18.99, 37.98, '[1,2,3]', 17.09, 55.07, 2, 2, '2026-03-13 00:17:53', '2026-03-13 00:17:53'), +(77, 30, 13, 3.00, 300.00, 900.00, '[1]', 162.00, 1062.00, 2, 2, '2026-03-13 00:17:53', '2026-03-13 00:17:53'), +(78, 30, 24, 3.00, 39.99, 119.97, '[1,2,3]', 53.99, 173.96, 2, 2, '2026-03-13 00:17:53', '2026-03-13 00:17:53'), +(79, 31, 2, 1.00, 89.99, 89.99, '[1,2,3]', 40.50, 130.49, 2, 2, '2025-09-15 06:00:08', '2025-09-15 06:00:08'), +(80, 31, 16, 2.00, 34.99, 69.98, '[1,2,3]', 31.49, 101.47, 2, 2, '2025-09-15 06:00:08', '2025-09-15 06:00:08'), +(81, 32, 10, 1.00, 120.00, 120.00, '[1,2,3]', 54.00, 174.00, 2, 2, '2025-09-20 06:00:08', '2025-09-20 06:00:08'), +(82, 32, 15, 2.00, 59.99, 119.98, '[1,2,3]', 53.99, 173.97, 2, 2, '2025-09-20 06:00:08', '2025-09-20 06:00:08'), +(83, 33, 4, 2.00, 80.00, 160.00, '[1,2,3]', 72.00, 232.00, 2, 2, '2025-09-25 06:00:08', '2025-09-25 06:00:08'), +(84, 33, 20, 1.00, 150.00, 150.00, '[1]', 27.00, 177.00, 2, 2, '2025-09-25 06:00:08', '2025-09-25 06:00:08'), +(85, 34, 10, 1.00, 120.00, 120.00, '[1,2,3]', 54.00, 174.00, 2, 2, '2025-09-30 06:00:08', '2025-09-30 06:00:08'), +(86, 34, 12, 1.00, 24.99, 24.99, '[1,2]', 7.50, 32.49, 2, 2, '2025-09-30 06:00:08', '2025-09-30 06:00:08'), +(87, 35, 2, 2.00, 89.99, 179.98, '[1,2,3]', 80.99, 260.97, 2, 2, '2025-10-05 06:00:08', '2025-10-05 06:00:08'), +(88, 35, 6, 2.00, 199.99, 399.98, '[1,2,3]', 179.99, 579.97, 2, 2, '2025-10-05 06:00:08', '2025-10-05 06:00:08'), +(89, 36, 13, 4.00, 300.00, 1200.00, '[1]', 216.00, 1416.00, 2, 2, '2025-10-10 06:00:08', '2025-10-10 06:00:08'), +(90, 36, 20, 4.00, 150.00, 600.00, '[1]', 108.00, 708.00, 2, 2, '2025-10-10 06:00:08', '2025-10-10 06:00:08'), +(91, 36, 21, 4.00, 899.99, 3599.96, '[1,2]', 1079.99, 4679.95, 2, 2, '2025-10-10 06:00:08', '2025-10-10 06:00:08'), +(92, 36, 25, 4.00, 250.00, 1000.00, '[1,2,3]', 450.00, 1450.00, 2, 2, '2025-10-10 06:00:08', '2025-10-10 06:00:08'), +(93, 37, 4, 2.00, 80.00, 160.00, '[1,2,3]', 72.00, 232.00, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(94, 37, 8, 3.00, 699.99, 2099.97, '[1,2,3]', 944.99, 3044.96, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(95, 37, 9, 3.00, 45.00, 135.00, '[1,2]', 40.50, 175.50, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(96, 37, 20, 5.00, 150.00, 750.00, '[1]', 135.00, 885.00, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(97, 37, 21, 2.00, 899.99, 1799.98, '[1,2]', 539.99, 2339.97, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(98, 37, 24, 4.00, 39.99, 159.96, '[1,2,3]', 71.98, 231.94, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(99, 38, 1, 3.00, 25.99, 77.97, '[1]', 14.03, 92.00, 2, 2, '2025-10-20 06:00:08', '2025-10-20 06:00:08'), +(100, 38, 2, 1.00, 89.99, 89.99, '[1,2,3]', 40.50, 130.49, 2, 2, '2025-10-20 06:00:08', '2025-10-20 06:00:08'), +(101, 38, 21, 1.00, 899.99, 899.99, '[1,2]', 270.00, 1169.99, 2, 2, '2025-10-20 06:00:08', '2025-10-20 06:00:08'), +(102, 38, 22, 2.00, 6.99, 13.98, '[1,2]', 4.19, 18.17, 2, 2, '2025-10-20 06:00:08', '2025-10-20 06:00:08'), +(103, 39, 6, 4.00, 199.99, 799.96, '[1,2,3]', 359.98, 1159.94, 2, 2, '2025-10-25 06:00:08', '2025-10-25 06:00:08'), +(104, 39, 9, 2.00, 45.00, 90.00, '[1,2]', 27.00, 117.00, 2, 2, '2025-10-25 06:00:08', '2025-10-25 06:00:08'), +(105, 39, 15, 3.00, 59.99, 179.97, '[1,2,3]', 80.99, 260.96, 2, 2, '2025-10-25 06:00:08', '2025-10-25 06:00:08'), +(106, 40, 7, 2.00, 3.99, 7.98, '[1]', 1.44, 9.42, 2, 2, '2025-10-30 06:00:08', '2025-10-30 06:00:08'), +(107, 40, 8, 1.00, 699.99, 699.99, '[1,2,3]', 315.00, 1014.99, 2, 2, '2025-10-30 06:00:08', '2025-10-30 06:00:08'), +(108, 40, 13, 1.00, 300.00, 300.00, '[1]', 54.00, 354.00, 2, 2, '2025-10-30 06:00:08', '2025-10-30 06:00:08'), +(109, 41, 8, 2.00, 699.99, 1399.98, '[1,2,3]', 629.99, 2029.97, 2, 2, '2025-11-04 06:00:08', '2025-11-04 06:00:08'), +(110, 41, 9, 1.00, 45.00, 45.00, '[1,2]', 13.50, 58.50, 2, 2, '2025-11-04 06:00:08', '2025-11-04 06:00:08'), +(111, 41, 21, 3.00, 899.99, 2699.97, '[1,2]', 809.99, 3509.96, 2, 2, '2025-11-04 06:00:08', '2025-11-04 06:00:08'), +(112, 42, 1, 1.00, 25.99, 25.99, '[1]', 4.68, 30.67, 2, 2, '2025-11-09 06:00:08', '2025-11-09 06:00:08'), +(113, 42, 10, 2.00, 120.00, 240.00, '[1,2,3]', 108.00, 348.00, 2, 2, '2025-11-09 06:00:08', '2025-11-09 06:00:08'), +(114, 43, 9, 1.00, 45.00, 45.00, '[1,2]', 13.50, 58.50, 2, 2, '2025-11-14 06:00:08', '2025-11-14 06:00:08'), +(115, 43, 20, 1.00, 150.00, 150.00, '[1]', 27.00, 177.00, 2, 2, '2025-11-14 06:00:08', '2025-11-14 06:00:08'), +(116, 44, 8, 3.00, 699.99, 2099.97, '[1,2,3]', 944.99, 3044.96, 2, 2, '2025-11-19 06:00:08', '2025-11-19 06:00:08'), +(117, 44, 22, 3.00, 6.99, 20.97, '[1,2]', 6.29, 27.26, 2, 2, '2025-11-19 06:00:08', '2025-11-19 06:00:08'), +(118, 44, 25, 2.00, 250.00, 500.00, '[1,2,3]', 225.00, 725.00, 2, 2, '2025-11-19 06:00:08', '2025-11-19 06:00:08'), +(119, 45, 11, 1.00, 15.99, 15.99, '[1,2]', 4.80, 20.79, 2, 2, '2025-11-24 06:00:08', '2025-11-24 06:00:08'), +(120, 45, 19, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-11-24 06:00:08', '2025-11-24 06:00:08'), +(121, 46, 12, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-11-29 06:00:08', '2025-11-29 06:00:08'), +(122, 46, 20, 3.00, 150.00, 450.00, '[1]', 81.00, 531.00, 2, 2, '2025-11-29 06:00:08', '2025-11-29 06:00:08'), +(123, 47, 1, 1.00, 25.99, 25.99, '[1]', 4.68, 30.67, 2, 2, '2025-12-04 06:00:08', '2025-12-04 06:00:08'), +(124, 47, 18, 1.00, 35.99, 35.99, '[1]', 6.48, 42.47, 2, 2, '2025-12-04 06:00:08', '2025-12-04 06:00:08'), +(125, 48, 7, 2.00, 3.99, 7.98, '[1]', 1.44, 9.42, 2, 2, '2025-12-09 06:00:08', '2025-12-09 06:00:08'), +(126, 48, 9, 3.00, 45.00, 135.00, '[1,2]', 40.50, 175.50, 2, 2, '2025-12-09 06:00:08', '2025-12-09 06:00:08'), +(127, 48, 21, 2.00, 899.99, 1799.98, '[1,2]', 539.99, 2339.97, 2, 2, '2025-12-09 06:00:08', '2025-12-09 06:00:08'), +(128, 49, 2, 1.00, 89.99, 89.99, '[1,2,3]', 40.50, 130.49, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(129, 49, 7, 2.00, 3.99, 7.98, '[1]', 1.44, 9.42, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(130, 49, 15, 1.00, 59.99, 59.99, '[1,2,3]', 27.00, 86.99, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(131, 49, 19, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(132, 49, 25, 2.00, 250.00, 500.00, '[1,2,3]', 225.00, 725.00, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(133, 50, 2, 2.00, 89.99, 179.98, '[1,2,3]', 80.99, 260.97, 2, 2, '2025-12-19 06:00:08', '2025-12-19 06:00:08'), +(134, 50, 18, 2.00, 35.99, 71.98, '[1]', 12.96, 84.94, 2, 2, '2025-12-19 06:00:08', '2025-12-19 06:00:08'), +(135, 50, 24, 2.00, 39.99, 79.98, '[1,2,3]', 35.99, 115.97, 2, 2, '2025-12-19 06:00:08', '2025-12-19 06:00:08'), +(136, 51, 7, 2.00, 3.99, 7.98, '[1]', 1.44, 9.42, 2, 2, '2025-12-24 06:00:08', '2025-12-24 06:00:08'), +(137, 51, 13, 1.00, 300.00, 300.00, '[1]', 54.00, 354.00, 2, 2, '2025-12-24 06:00:08', '2025-12-24 06:00:08'), +(138, 51, 19, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-12-24 06:00:08', '2025-12-24 06:00:08'), +(139, 51, 21, 1.00, 899.99, 899.99, '[1,2]', 270.00, 1169.99, 2, 2, '2025-12-24 06:00:08', '2025-12-24 06:00:08'), +(140, 52, 5, 1.00, 18.99, 18.99, '[1,2,3]', 8.55, 27.54, 2, 2, '2025-12-29 06:00:08', '2025-12-29 06:00:08'), +(141, 52, 6, 2.00, 199.99, 399.98, '[1,2,3]', 179.99, 579.97, 2, 2, '2025-12-29 06:00:08', '2025-12-29 06:00:08'), +(142, 52, 8, 2.00, 699.99, 1399.98, '[1,2,3]', 629.99, 2029.97, 2, 2, '2025-12-29 06:00:08', '2025-12-29 06:00:08'), +(143, 53, 6, 1.00, 199.99, 199.99, '[1,2,3]', 90.00, 289.99, 2, 2, '2026-01-03 06:00:08', '2026-01-03 06:00:08'), +(144, 54, 12, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2026-01-08 06:00:08', '2026-01-08 06:00:08'), +(145, 54, 19, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2026-01-08 06:00:08', '2026-01-08 06:00:08'), +(146, 54, 20, 2.00, 150.00, 300.00, '[1]', 54.00, 354.00, 2, 2, '2026-01-08 06:00:08', '2026-01-08 06:00:08'), +(147, 55, 6, 1.00, 199.99, 199.99, '[1,2,3]', 90.00, 289.99, 2, 2, '2026-01-13 06:00:08', '2026-01-13 06:00:08'), +(148, 56, 22, 1.00, 6.99, 6.99, '[1,2]', 2.10, 9.09, 2, 2, '2026-01-18 06:00:08', '2026-01-18 06:00:08'), +(149, 57, 4, 2.00, 80.00, 160.00, '[1,2,3]', 72.00, 232.00, 2, 2, '2026-01-23 06:00:08', '2026-01-23 06:00:08'), +(150, 58, 2, 1.00, 89.99, 89.99, '[1,2,3]', 40.50, 130.49, 2, 2, '2026-03-07 06:00:08', '2026-03-07 06:00:08'), +(151, 58, 4, 1.00, 80.00, 80.00, '[1,2,3]', 36.00, 116.00, 2, 2, '2026-03-07 06:00:08', '2026-03-07 06:00:08'), +(152, 58, 19, 3.00, 24.99, 74.97, '[1,2]', 22.49, 97.46, 2, 2, '2026-03-07 06:00:08', '2026-03-07 06:00:08'), +(153, 59, 13, 2.00, 300.00, 600.00, '[1]', 108.00, 708.00, 2, 2, '2026-03-11 06:00:08', '2026-03-11 06:00:08'), +(154, 59, 21, 2.00, 899.99, 1799.98, '[1,2]', 539.99, 2339.97, 2, 2, '2026-03-11 06:00:08', '2026-03-11 06:00:08'), +(155, 59, 25, 2.00, 250.00, 500.00, '[1,2,3]', 225.00, 725.00, 2, 2, '2026-03-11 06:00:08', '2026-03-11 06:00:08'), +(156, 60, 9, 3.00, 45.00, 135.00, '[1,2]', 40.50, 175.50, 2, 2, '2026-03-13 06:00:08', '2026-03-13 06:00:08'), +(157, 60, 13, 2.00, 300.00, 600.00, '[1]', 108.00, 708.00, 2, 2, '2026-03-13 06:00:08', '2026-03-13 06:00:08'), +(158, 61, 2, 1.00, 89.99, 89.99, '[1,2,3]', 40.50, 130.49, 2, 2, '2025-09-15 06:00:08', '2025-09-15 06:00:08'), +(159, 62, 7, 2.00, 3.99, 7.98, '[1]', 1.44, 9.42, 2, 2, '2025-09-20 06:00:08', '2025-09-20 06:00:08'), +(160, 62, 13, 2.00, 300.00, 600.00, '[1]', 108.00, 708.00, 2, 2, '2025-09-20 06:00:08', '2025-09-20 06:00:08'), +(161, 63, 1, 2.00, 25.99, 51.98, '[1]', 9.36, 61.34, 2, 2, '2025-09-25 06:00:08', '2025-09-25 06:00:08'), +(162, 63, 9, 2.00, 45.00, 90.00, '[1,2]', 27.00, 117.00, 2, 2, '2025-09-25 06:00:08', '2025-09-25 06:00:08'), +(163, 64, 2, 2.00, 89.99, 179.98, '[1,2,3]', 80.99, 260.97, 2, 2, '2025-09-30 06:00:08', '2025-09-30 06:00:08'), +(164, 64, 6, 3.00, 199.99, 599.97, '[1,2,3]', 269.99, 869.96, 2, 2, '2025-09-30 06:00:08', '2025-09-30 06:00:08'), +(165, 64, 12, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-09-30 06:00:08', '2025-09-30 06:00:08'), +(166, 64, 13, 3.00, 300.00, 900.00, '[1]', 162.00, 1062.00, 2, 2, '2025-09-30 06:00:08', '2025-09-30 06:00:08'), +(167, 65, 25, 2.00, 250.00, 500.00, '[1,2,3]', 225.00, 725.00, 2, 2, '2025-10-05 06:00:08', '2025-10-05 06:00:08'), +(168, 66, 8, 3.00, 699.99, 2099.97, '[1,2,3]', 944.99, 3044.96, 2, 2, '2025-10-10 06:00:08', '2025-10-10 06:00:08'), +(169, 66, 10, 4.00, 120.00, 480.00, '[1,2,3]', 216.00, 696.00, 2, 2, '2025-10-10 06:00:08', '2025-10-10 06:00:08'), +(170, 66, 15, 3.00, 59.99, 179.97, '[1,2,3]', 80.99, 260.96, 2, 2, '2025-10-10 06:00:08', '2025-10-10 06:00:08'), +(171, 66, 20, 1.00, 150.00, 150.00, '[1]', 27.00, 177.00, 2, 2, '2025-10-10 06:00:08', '2025-10-10 06:00:08'), +(172, 66, 21, 1.00, 899.99, 899.99, '[1,2]', 270.00, 1169.99, 2, 2, '2025-10-10 06:00:08', '2025-10-10 06:00:08'), +(173, 67, 2, 4.00, 89.99, 359.96, '[1,2,3]', 161.98, 521.94, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(174, 67, 10, 4.00, 120.00, 480.00, '[1,2,3]', 216.00, 696.00, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(175, 67, 12, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(176, 67, 19, 3.00, 24.99, 74.97, '[1,2]', 22.49, 97.46, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(177, 67, 20, 5.00, 150.00, 750.00, '[1]', 135.00, 885.00, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(178, 67, 24, 5.00, 39.99, 199.95, '[1,2,3]', 89.98, 289.93, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(179, 68, 13, 3.00, 300.00, 900.00, '[1]', 162.00, 1062.00, 2, 2, '2025-10-20 06:00:08', '2025-10-20 06:00:08'), +(180, 68, 15, 2.00, 59.99, 119.98, '[1,2,3]', 53.99, 173.97, 2, 2, '2025-10-20 06:00:08', '2025-10-20 06:00:08'), +(181, 68, 18, 3.00, 35.99, 107.97, '[1]', 19.43, 127.40, 2, 2, '2025-10-20 06:00:08', '2025-10-20 06:00:08'), +(182, 68, 25, 1.00, 250.00, 250.00, '[1,2,3]', 112.50, 362.50, 2, 2, '2025-10-20 06:00:08', '2025-10-20 06:00:08'), +(183, 69, 2, 2.00, 89.99, 179.98, '[1,2,3]', 80.99, 260.97, 2, 2, '2025-10-25 06:00:08', '2025-10-25 06:00:08'), +(184, 69, 4, 2.00, 80.00, 160.00, '[1,2,3]', 72.00, 232.00, 2, 2, '2025-10-25 06:00:08', '2025-10-25 06:00:08'), +(185, 69, 15, 4.00, 59.99, 239.96, '[1,2,3]', 107.98, 347.94, 2, 2, '2025-10-25 06:00:08', '2025-10-25 06:00:08'), +(186, 70, 10, 2.00, 120.00, 240.00, '[1,2,3]', 108.00, 348.00, 2, 2, '2025-10-30 06:00:08', '2025-10-30 06:00:08'), +(187, 70, 11, 2.00, 15.99, 31.98, '[1,2]', 9.59, 41.57, 2, 2, '2025-10-30 06:00:08', '2025-10-30 06:00:08'), +(188, 70, 12, 1.00, 24.99, 24.99, '[1,2]', 7.50, 32.49, 2, 2, '2025-10-30 06:00:08', '2025-10-30 06:00:08'), +(189, 71, 10, 3.00, 120.00, 360.00, '[1,2,3]', 162.00, 522.00, 2, 2, '2025-11-04 06:00:08', '2025-11-04 06:00:08'), +(190, 71, 24, 3.00, 39.99, 119.97, '[1,2,3]', 53.99, 173.96, 2, 2, '2025-11-04 06:00:08', '2025-11-04 06:00:08'), +(191, 72, 9, 1.00, 45.00, 45.00, '[1,2]', 13.50, 58.50, 2, 2, '2025-11-09 06:00:08', '2025-11-09 06:00:08'), +(192, 73, 12, 1.00, 24.99, 24.99, '[1,2]', 7.50, 32.49, 2, 2, '2025-11-14 06:00:08', '2025-11-14 06:00:08'), +(193, 74, 1, 3.00, 25.99, 77.97, '[1]', 14.03, 92.00, 2, 2, '2025-11-19 06:00:08', '2025-11-19 06:00:08'), +(194, 74, 13, 1.00, 300.00, 300.00, '[1]', 54.00, 354.00, 2, 2, '2025-11-19 06:00:08', '2025-11-19 06:00:08'), +(195, 75, 2, 2.00, 89.99, 179.98, '[1,2,3]', 80.99, 260.97, 2, 2, '2025-11-24 06:00:08', '2025-11-24 06:00:08'), +(196, 75, 18, 2.00, 35.99, 71.98, '[1]', 12.96, 84.94, 2, 2, '2025-11-24 06:00:08', '2025-11-24 06:00:08'), +(197, 76, 5, 3.00, 18.99, 56.97, '[1,2,3]', 25.64, 82.61, 2, 2, '2025-11-29 06:00:08', '2025-11-29 06:00:08'), +(198, 76, 6, 2.00, 199.99, 399.98, '[1,2,3]', 179.99, 579.97, 2, 2, '2025-11-29 06:00:08', '2025-11-29 06:00:08'), +(199, 76, 9, 2.00, 45.00, 90.00, '[1,2]', 27.00, 117.00, 2, 2, '2025-11-29 06:00:08', '2025-11-29 06:00:08'), +(200, 76, 25, 1.00, 250.00, 250.00, '[1,2,3]', 112.50, 362.50, 2, 2, '2025-11-29 06:00:08', '2025-11-29 06:00:08'), +(201, 77, 21, 2.00, 899.99, 1799.98, '[1,2]', 539.99, 2339.97, 2, 2, '2025-12-04 06:00:08', '2025-12-04 06:00:08'), +(202, 77, 22, 1.00, 6.99, 6.99, '[1,2]', 2.10, 9.09, 2, 2, '2025-12-04 06:00:08', '2025-12-04 06:00:08'), +(203, 78, 4, 4.00, 80.00, 320.00, '[1,2,3]', 144.00, 464.00, 2, 2, '2025-12-09 06:00:08', '2025-12-09 06:00:08'), +(204, 78, 5, 3.00, 18.99, 56.97, '[1,2,3]', 25.64, 82.61, 2, 2, '2025-12-09 06:00:08', '2025-12-09 06:00:08'), +(205, 78, 12, 4.00, 24.99, 99.96, '[1,2]', 29.99, 129.95, 2, 2, '2025-12-09 06:00:08', '2025-12-09 06:00:08'), +(206, 78, 18, 1.00, 35.99, 35.99, '[1]', 6.48, 42.47, 2, 2, '2025-12-09 06:00:08', '2025-12-09 06:00:08'), +(207, 78, 22, 3.00, 6.99, 20.97, '[1,2]', 6.29, 27.26, 2, 2, '2025-12-09 06:00:08', '2025-12-09 06:00:08'), +(208, 79, 1, 2.00, 25.99, 51.98, '[1]', 9.36, 61.34, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(209, 79, 8, 3.00, 699.99, 2099.97, '[1,2,3]', 944.99, 3044.96, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(210, 79, 18, 1.00, 35.99, 35.99, '[1]', 6.48, 42.47, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(211, 79, 19, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(212, 79, 21, 1.00, 899.99, 899.99, '[1,2]', 270.00, 1169.99, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(213, 80, 12, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2025-12-19 06:00:08', '2025-12-19 06:00:08'), +(214, 81, 4, 1.00, 80.00, 80.00, '[1,2,3]', 36.00, 116.00, 2, 2, '2025-12-24 06:00:08', '2025-12-24 06:00:08'), +(215, 81, 8, 3.00, 699.99, 2099.97, '[1,2,3]', 944.99, 3044.96, 2, 2, '2025-12-24 06:00:08', '2025-12-24 06:00:08'), +(216, 82, 9, 2.00, 45.00, 90.00, '[1,2]', 27.00, 117.00, 2, 2, '2025-12-29 06:00:08', '2025-12-29 06:00:08'), +(217, 83, 5, 1.00, 18.99, 18.99, '[1,2,3]', 8.55, 27.54, 2, 2, '2026-01-03 06:00:08', '2026-01-03 06:00:08'), +(218, 83, 18, 2.00, 35.99, 71.98, '[1]', 12.96, 84.94, 2, 2, '2026-01-03 06:00:08', '2026-01-03 06:00:08'), +(219, 84, 7, 2.00, 3.99, 7.98, '[1]', 1.44, 9.42, 2, 2, '2026-01-08 06:00:08', '2026-01-08 06:00:08'), +(220, 84, 9, 3.00, 45.00, 135.00, '[1,2]', 40.50, 175.50, 2, 2, '2026-01-08 06:00:08', '2026-01-08 06:00:08'), +(221, 84, 18, 1.00, 35.99, 35.99, '[1]', 6.48, 42.47, 2, 2, '2026-01-08 06:00:08', '2026-01-08 06:00:08'), +(222, 85, 9, 1.00, 45.00, 45.00, '[1,2]', 13.50, 58.50, 2, 2, '2026-01-13 06:00:08', '2026-01-13 06:00:08'), +(223, 85, 12, 1.00, 24.99, 24.99, '[1,2]', 7.50, 32.49, 2, 2, '2026-01-13 06:00:08', '2026-01-13 06:00:08'), +(224, 86, 2, 2.00, 89.99, 179.98, '[1,2,3]', 80.99, 260.97, 2, 2, '2026-01-18 06:00:08', '2026-01-18 06:00:08'), +(225, 87, 15, 2.00, 59.99, 119.98, '[1,2,3]', 53.99, 173.97, 2, 2, '2026-01-23 06:00:08', '2026-01-23 06:00:08'), +(226, 87, 16, 2.00, 34.99, 69.98, '[1,2,3]', 31.49, 101.47, 2, 2, '2026-01-23 06:00:08', '2026-01-23 06:00:08'), +(227, 88, 12, 1.00, 24.99, 24.99, '[1,2]', 7.50, 32.49, 2, 2, '2026-03-07 06:00:08', '2026-03-07 06:00:08'), +(228, 88, 15, 1.00, 59.99, 59.99, '[1,2,3]', 27.00, 86.99, 2, 2, '2026-03-07 06:00:08', '2026-03-07 06:00:08'), +(229, 88, 25, 1.00, 250.00, 250.00, '[1,2,3]', 112.50, 362.50, 2, 2, '2026-03-07 06:00:08', '2026-03-07 06:00:08'), +(230, 89, 16, 1.00, 34.99, 34.99, '[1,2,3]', 15.75, 50.74, 2, 2, '2026-03-11 06:00:08', '2026-03-11 06:00:08'), +(231, 90, 5, 1.00, 18.99, 18.99, '[1,2,3]', 8.55, 27.54, 2, 2, '2026-03-13 06:00:08', '2026-03-13 06:00:08'), +(232, 90, 12, 2.00, 24.99, 49.98, '[1,2]', 14.99, 64.97, 2, 2, '2026-03-13 06:00:08', '2026-03-13 06:00:08'), +(233, 90, 13, 2.00, 300.00, 600.00, '[1]', 108.00, 708.00, 2, 2, '2026-03-13 06:00:08', '2026-03-13 06:00:08'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `pos_payments` +-- + +CREATE TABLE `pos_payments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `pos_id` bigint(20) UNSIGNED DEFAULT NULL, + `discount` decimal(10,2) NOT NULL, + `amount` decimal(10,2) NOT NULL, + `discount_amount` decimal(10,2) NOT NULL DEFAULT 0.00, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `pos_payments` +-- + +INSERT INTO `pos_payments` (`id`, `pos_id`, `discount`, `amount`, `discount_amount`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 43.50, 310.77, 267.27, 2, 2, '2025-09-15 00:17:53', '2025-09-15 00:17:53'), +(2, 2, 21.00, 301.38, 280.38, 2, 2, '2025-09-20 00:17:53', '2025-09-20 00:17:53'), +(3, 3, 24.50, 64.97, 40.47, 2, 2, '2025-09-25 00:17:53', '2025-09-25 00:17:53'), +(4, 4, 18.50, 467.96, 449.46, 2, 2, '2025-09-30 00:17:53', '2025-09-30 00:17:53'), +(5, 5, 3.50, 88.87, 85.37, 2, 2, '2025-10-05 00:17:53', '2025-10-05 00:17:53'), +(6, 6, 189.00, 1182.60, 993.60, 2, 2, '2025-10-10 00:17:53', '2025-10-10 00:17:53'), +(7, 7, 213.50, 2669.66, 2456.16, 2, 2, '2025-10-15 00:17:53', '2025-10-15 00:17:53'), +(8, 8, 427.50, 4276.46, 3848.96, 2, 2, '2025-10-20 00:17:53', '2025-10-20 00:17:53'), +(9, 9, 0.00, 2159.92, 2159.92, 2, 2, '2025-10-25 00:17:53', '2025-10-25 00:17:53'), +(10, 10, 62.50, 259.92, 197.42, 2, 2, '2025-10-30 00:17:53', '2025-10-30 00:17:53'), +(11, 11, 176.00, 2201.43, 2025.43, 2, 2, '2025-11-04 00:17:53', '2025-11-04 00:17:53'), +(12, 12, 276.50, 2513.95, 2237.45, 2, 2, '2025-11-09 00:17:53', '2025-11-09 00:17:53'), +(13, 13, 6.00, 74.39, 68.39, 2, 2, '2025-11-14 00:17:53', '2025-11-14 00:17:53'), +(14, 14, 130.50, 1186.49, 1055.99, 2, 2, '2025-11-19 00:17:53', '2025-11-19 00:17:53'), +(15, 15, 21.50, 2145.94, 2124.44, 2, 2, '2025-11-24 00:17:53', '2025-11-24 00:17:53'), +(16, 16, 78.50, 412.97, 334.47, 2, 2, '2025-11-29 00:17:53', '2025-11-29 00:17:53'), +(17, 17, 1.00, 58.50, 57.50, 2, 2, '2025-12-04 00:17:53', '2025-12-04 00:17:53'), +(18, 18, 508.50, 2421.79, 1913.29, 2, 2, '2025-12-09 00:17:53', '2025-12-09 00:17:53'), +(19, 19, 22.00, 550.66, 528.66, 2, 2, '2025-12-14 00:17:53', '2025-12-14 00:17:53'), +(20, 20, 2.00, 30.67, 28.67, 2, 2, '2025-12-19 00:17:53', '2025-12-19 00:17:53'), +(21, 21, 14.00, 201.54, 187.54, 2, 2, '2025-12-24 00:17:53', '2025-12-24 00:17:53'), +(22, 22, 8.50, 78.20, 69.70, 2, 2, '2025-12-29 00:17:53', '2025-12-29 00:17:53'), +(23, 23, 165.00, 1179.07, 1014.07, 2, 2, '2026-01-03 00:17:53', '2026-01-03 00:17:53'), +(24, 24, 505.50, 3370.90, 2865.40, 2, 2, '2026-01-08 00:17:53', '2026-01-08 00:17:53'), +(25, 25, 37.50, 188.47, 150.97, 2, 2, '2026-01-13 00:17:53', '2026-01-13 00:17:53'), +(26, 26, 103.00, 263.99, 160.99, 2, 2, '2026-01-18 00:17:53', '2026-01-18 00:17:53'), +(27, 27, 62.00, 238.34, 176.34, 2, 2, '2026-01-23 00:17:53', '2026-01-23 00:17:53'), +(28, 28, 10.00, 100.07, 90.07, 2, 2, '2026-03-07 00:17:53', '2026-03-07 00:17:53'), +(29, 29, 16.00, 198.40, 182.40, 2, 2, '2026-03-11 00:17:53', '2026-03-11 00:17:53'), +(30, 30, 0.00, 1291.03, 1291.03, 2, 2, '2026-03-13 00:17:53', '2026-03-13 00:17:53'), +(31, 31, 90.50, 231.96, 141.46, 2, 2, '2025-09-15 06:00:08', '2025-09-15 06:00:08'), +(32, 32, 21.00, 347.97, 326.97, 2, 2, '2025-09-20 06:00:08', '2025-09-20 06:00:08'), +(33, 33, 135.00, 409.00, 274.00, 2, 2, '2025-09-25 06:00:08', '2025-09-25 06:00:08'), +(34, 34, 18.50, 206.49, 187.99, 2, 2, '2025-09-30 06:00:08', '2025-09-30 06:00:08'), +(35, 35, 126.00, 840.94, 714.94, 2, 2, '2025-10-05 06:00:08', '2025-10-05 06:00:08'), +(36, 36, 743.00, 8253.95, 7510.95, 2, 2, '2025-10-10 06:00:08', '2025-10-10 06:00:08'), +(37, 37, 414.50, 6909.37, 6494.87, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(38, 38, 169.50, 1410.65, 1241.15, 2, 2, '2025-10-20 06:00:08', '2025-10-20 06:00:08'), +(39, 39, 46.00, 1537.90, 1491.90, 2, 2, '2025-10-25 06:00:08', '2025-10-25 06:00:08'), +(40, 40, 124.00, 1378.40, 1254.40, 2, 2, '2025-10-30 06:00:08', '2025-10-30 06:00:08'), +(41, 41, 616.00, 5598.43, 4982.43, 2, 2, '2025-11-04 06:00:08', '2025-11-04 06:00:08'), +(42, 42, 11.50, 378.67, 367.17, 2, 2, '2025-11-09 06:00:08', '2025-11-09 06:00:08'), +(43, 43, 37.50, 235.50, 198.00, 2, 2, '2025-11-14 06:00:08', '2025-11-14 06:00:08'), +(44, 44, 493.50, 3797.22, 3303.72, 2, 2, '2025-11-19 06:00:08', '2025-11-19 06:00:08'), +(45, 45, 5.00, 85.76, 80.76, 2, 2, '2025-11-24 06:00:08', '2025-11-24 06:00:08'), +(46, 46, 155.00, 595.97, 440.97, 2, 2, '2025-11-29 06:00:08', '2025-11-29 06:00:08'), +(47, 47, 6.00, 73.14, 67.14, 2, 2, '2025-12-04 06:00:08', '2025-12-04 06:00:08'), +(48, 48, 252.50, 2524.89, 2272.39, 2, 2, '2025-12-09 06:00:08', '2025-12-09 06:00:08'), +(49, 49, 101.50, 1016.86, 915.36, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(50, 50, 51.00, 461.88, 410.88, 2, 2, '2025-12-19 06:00:08', '2025-12-19 06:00:08'), +(51, 51, 64.00, 1598.38, 1534.38, 2, 2, '2025-12-24 06:00:08', '2025-12-24 06:00:08'), +(52, 52, 290.00, 2637.48, 2347.48, 2, 2, '2025-12-29 06:00:08', '2025-12-29 06:00:08'), +(53, 53, 6.00, 289.99, 283.99, 2, 2, '2026-01-03 06:00:08', '2026-01-03 06:00:08'), +(54, 54, 97.00, 483.95, 386.95, 2, 2, '2026-01-08 06:00:08', '2026-01-08 06:00:08'), +(55, 55, 153.50, 289.99, 136.49, 2, 2, '2026-01-13 06:00:08', '2026-01-13 06:00:08'), +(56, 56, 3.00, 9.09, 6.09, 2, 2, '2026-01-18 06:00:08', '2026-01-18 06:00:08'), +(57, 57, 153.00, 232.00, 79.00, 2, 2, '2026-01-23 06:00:08', '2026-01-23 06:00:08'), +(58, 58, 41.50, 343.95, 302.45, 2, 2, '2026-03-07 06:00:08', '2026-03-07 06:00:08'), +(59, 59, 339.50, 3772.97, 3433.47, 2, 2, '2026-03-11 06:00:08', '2026-03-11 06:00:08'), +(60, 60, 79.50, 883.50, 804.00, 2, 2, '2026-03-13 06:00:08', '2026-03-13 06:00:08'), +(61, 61, 32.50, 130.49, 97.99, 2, 2, '2025-09-15 06:00:08', '2025-09-15 06:00:08'), +(62, 62, 64.50, 717.42, 652.92, 2, 2, '2025-09-20 06:00:08', '2025-09-20 06:00:08'), +(63, 63, 53.50, 178.34, 124.84, 2, 2, '2025-09-25 06:00:08', '2025-09-25 06:00:08'), +(64, 64, 203.00, 2257.90, 2054.90, 2, 2, '2025-09-30 06:00:08', '2025-09-30 06:00:08'), +(65, 65, 87.00, 725.00, 638.00, 2, 2, '2025-10-05 06:00:08', '2025-10-05 06:00:08'), +(66, 66, 1337.00, 5348.90, 4011.90, 2, 2, '2025-10-10 06:00:08', '2025-10-10 06:00:08'), +(67, 67, 179.00, 2555.30, 2376.30, 2, 2, '2025-10-15 06:00:08', '2025-10-15 06:00:08'), +(68, 68, 69.00, 1725.88, 1656.88, 2, 2, '2025-10-20 06:00:08', '2025-10-20 06:00:08'), +(69, 69, 50.50, 840.91, 790.41, 2, 2, '2025-10-25 06:00:08', '2025-10-25 06:00:08'), +(70, 70, 88.50, 422.06, 333.56, 2, 2, '2025-10-30 06:00:08', '2025-10-30 06:00:08'), +(71, 71, 139.00, 695.96, 556.96, 2, 2, '2025-11-04 06:00:08', '2025-11-04 06:00:08'), +(72, 72, 7.00, 58.50, 51.50, 2, 2, '2025-11-09 06:00:08', '2025-11-09 06:00:08'), +(73, 73, 2.50, 32.49, 29.99, 2, 2, '2025-11-14 06:00:08', '2025-11-14 06:00:08'), +(74, 74, 58.00, 446.00, 388.00, 2, 2, '2025-11-19 06:00:08', '2025-11-19 06:00:08'), +(75, 75, 34.50, 345.91, 311.41, 2, 2, '2025-11-24 06:00:08', '2025-11-24 06:00:08'), +(76, 76, 160.00, 1142.08, 982.08, 2, 2, '2025-11-29 06:00:08', '2025-11-29 06:00:08'), +(77, 77, 117.50, 2349.06, 2231.56, 2, 2, '2025-12-04 06:00:08', '2025-12-04 06:00:08'), +(78, 78, 201.50, 746.28, 544.78, 2, 2, '2025-12-09 06:00:08', '2025-12-09 06:00:08'), +(79, 79, 263.00, 4383.72, 4120.72, 2, 2, '2025-12-14 06:00:08', '2025-12-14 06:00:08'), +(80, 80, 3.00, 64.97, 61.97, 2, 2, '2025-12-19 06:00:08', '2025-12-19 06:00:08'), +(81, 81, 126.50, 3160.96, 3034.46, 2, 2, '2025-12-24 06:00:08', '2025-12-24 06:00:08'), +(82, 82, 29.50, 117.00, 87.50, 2, 2, '2025-12-29 06:00:08', '2025-12-29 06:00:08'), +(83, 83, 4.50, 112.47, 107.97, 2, 2, '2026-01-03 06:00:08', '2026-01-03 06:00:08'), +(84, 84, 22.50, 227.38, 204.88, 2, 2, '2026-01-08 06:00:08', '2026-01-08 06:00:08'), +(85, 85, 0.00, 90.99, 90.99, 2, 2, '2026-01-13 06:00:08', '2026-01-13 06:00:08'), +(86, 86, 109.50, 260.97, 151.47, 2, 2, '2026-01-18 06:00:08', '2026-01-18 06:00:08'), +(87, 87, 66.00, 275.44, 209.44, 2, 2, '2026-01-23 06:00:08', '2026-01-23 06:00:08'), +(88, 88, 43.50, 481.97, 438.47, 2, 2, '2026-03-07 06:00:08', '2026-03-07 06:00:08'), +(89, 89, 7.50, 50.74, 43.24, 2, 2, '2026-03-11 06:00:08', '2026-03-11 06:00:08'), +(90, 90, 72.00, 800.51, 728.51, 2, 2, '2026-03-13 06:00:08', '2026-03-13 06:00:08'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `product_service_categories` +-- + +CREATE TABLE `product_service_categories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `color` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `product_service_categories` +-- + +INSERT INTO `product_service_categories` (`id`, `name`, `color`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Books & Stationery', '#10B981', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Automotive & Tools', '#06B6D4', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'Health & Beauty', '#EC4899', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Fruits & Vegetables', '#6B7280', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'Jewelry & Accessories', '#84CC16', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 'Home & Garden', '#F59E0B', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 'Electronics & Technology', '#3B82F6', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 'Fashion & Apparel', '#efe444', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 'Sports & Fitness', '#8B5CF6', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 'Food & Beverages', '#F97316', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, 'Electronics & Technology', '#3B82F6', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(12, 'Food & Beverages', '#F97316', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(13, 'Jewelry & Accessories', '#84CC16', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(14, 'Books & Stationery', '#10B981', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(15, 'Fashion & Apparel', '#efe444', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(16, 'Home & Garden', '#F59E0B', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(17, 'Health & Beauty', '#EC4899', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(18, 'Sports & Fitness', '#8B5CF6', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(19, 'Automotive & Tools', '#06B6D4', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(20, 'Fruits & Vegetables', '#6B7280', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(21, 'Electronics & Technology', '#3B82F6', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(22, 'Books & Stationery', '#10B981', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(23, 'Jewelry & Accessories', '#84CC16', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(24, 'Automotive & Tools', '#06B6D4', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(25, 'Food & Beverages', '#F97316', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(26, 'Health & Beauty', '#EC4899', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(27, 'Sports & Fitness', '#8B5CF6', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(28, 'Fashion & Apparel', '#efe444', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(29, 'Fruits & Vegetables', '#6B7280', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(30, 'Home & Garden', '#F59E0B', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `product_service_items` +-- + +CREATE TABLE `product_service_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `sku` varchar(255) DEFAULT NULL, + `tax_ids` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`tax_ids`)), + `category_id` bigint(20) UNSIGNED DEFAULT NULL, + `description` text DEFAULT NULL, + `long_description` longtext DEFAULT NULL, + `sale_price` decimal(10,2) DEFAULT NULL, + `purchase_price` decimal(10,2) DEFAULT NULL, + `min_stock_level` int(11) NOT NULL DEFAULT 0, + `unit` varchar(255) DEFAULT NULL, + `image` varchar(255) DEFAULT NULL, + `images` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`images`)), + `type` varchar(255) DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `product_service_items` +-- + +INSERT INTO `product_service_items` (`id`, `name`, `sku`, `tax_ids`, `category_id`, `description`, `long_description`, `sale_price`, `purchase_price`, `min_stock_level`, `unit`, `image`, `images`, `type`, `is_active`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Ink Cartridge', 'BOOK-PART-011', '[1]', 1, 'Compatible ink cartridge replacement for various printer models and brands available', NULL, 25.99, 12.00, 0, '1', 'ink_cartridge_image.png', '\"[\\\"ink_cartridge_images_1.png\\\"]\"', 'part', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Laptop Battery', 'ELEC-PART-004', '[1,2,3]', 7, 'High capacity replacement lithium battery compatible with multiple laptop models', NULL, 89.99, 45.00, 0, '1', 'laptop_battery_image.png', '\"[\\\"laptop_battery_images_1.png\\\",\\\"laptop_battery_images_2.png\\\"]\"', 'part', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'IT Support Service', 'ELEC-SERV-003', '[1,2,3]', 7, 'Comprehensive technical support and system maintenance service package for business operations', NULL, 75.00, 0.00, 0, '43', 'it_support_service_image.png', NULL, 'service', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Brake Pad Set', 'AUTO-PART-032', '[1,2,3]', 2, 'Durable replacement brake pads compatible with most mid-size cars and SUVs', NULL, 80.00, 40.00, 0, '2', 'brake_pad_set_image.png', '\"[\\\"brake_pad_set_images_1.png\\\"]\"', 'part', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'Shampoo', 'BEAUTY-PROD-018', '[1,2,3]', 3, 'Natural organic shampoo for all hair types with essential oils and formula', NULL, 18.99, 9.00, 0, '24', 'shampoo_image.png', '\"[\\\"shampoo_images_1.png\\\",\\\"shampoo_images_2.png\\\",\\\"shampoo_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 'Watch', 'JEWEL-PROD-033', '[1,2,3]', 5, 'Elegant stainless steel watch with water resistance and precision quartz movement', NULL, 199.99, 120.00, 0, '1', 'watch_image.png', '\"[\\\"watch_images_1.png\\\",\\\"watch_images_2.png\\\",\\\"watch_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 'Apple', 'FRUIT-PROD-022', '[1]', 4, 'Fresh organic red apples packed with natural vitamins and minerals from orchards', NULL, 3.99, 2.00, 0, '28', 'apple_image.png', '\"[\\\"apple_images_1.png\\\",\\\"apple_images_2.png\\\",\\\"apple_images_3.png\\\",\\\"apple_images_4.png\\\",\\\"apple_images_5.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 'Smartphone', 'ELEC-PROD-002', '[1,2,3]', 7, 'Latest model smartphone with advanced camera system and high speed processing', NULL, 699.99, 450.00, 0, '1', 'smartphone_image.png', '\"[\\\"smartphone_images_1.png\\\",\\\"smartphone_images_2.png\\\",\\\"smartphone_images_3.png\\\",\\\"smartphone_images_4.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 'Car Engine Oil', 'AUTO-PROD-029', '[1,2]', 2, 'High-performance synthetic engine oil designed for modern cars and extended engine life', NULL, 45.00, 25.00, 0, '24', 'car_engine_oil_image.png', '\"[\\\"car_engine_oil_images_1.png\\\",\\\"car_engine_oil_images_2.png\\\",\\\"car_engine_oil_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 'Cordless Drill Machine', 'AUTO-PROD-030', '[1,2,3]', 2, 'Rechargeable cordless drill with variable speed and multiple drill bit attachments', NULL, 120.00, 70.00, 0, '1', 'cordless_drill_machine_image.png', '\"[\\\"cordless_drill_machine_images_1.png\\\",\\\"cordless_drill_machine_images_2.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, 'Coffee', 'FOOD-PROD-026', '[1,2]', 10, 'Premium arabica coffee beans roasted to perfection with rich aroma and taste', NULL, 15.99, 8.00, 0, '28', 'coffee_image.png', '\"[\\\"coffee_images_1.png\\\",\\\"coffee_images_2.png\\\",\\\"coffee_images_3.png\\\",\\\"coffee_images_4.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, 'T-Shirt', 'FASH-PROD-005', '[1,2]', 8, 'Organic cotton comfortable casual wear t-shirt available in multiple colors', NULL, 24.99, 12.00, 0, '1', 't_shirt_image.png', '\"[\\\"t_shirt_images_1.png\\\",\\\"t_shirt_images_2.png\\\",\\\"t_shirt_images_3.png\\\",\\\"t_shirt_images_4.png\\\",\\\"t_shirt_images_5.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(13, 'Light Bulb', 'HOME-PART-014', '[1]', 6, 'Standard household light bulb for daily lighting needs', NULL, 300.00, 250.00, 0, '1', 'light_bulb_image.png', '\"[\\\"light_bulb_images_1.png\\\",\\\"light_bulb_images_2.png\\\"]\"', 'part', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 'Tailoring Service', 'FASH-SERV-007', '[1]', 8, 'Professional clothing alteration and custom tailoring service for perfect fit garments', NULL, 45.00, 0.00, 0, '48', 'tailoring_service_image.png', NULL, 'service', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, 'Jeans', 'FASH-PROD-006', '[1,2,3]', 8, 'Classic fit premium denim jeans with stretch comfort technology for everyday', NULL, 59.99, 35.00, 0, '5', 'jeans_image.png', '\"[\\\"jeans_images_1.png\\\",\\\"jeans_images_2.png\\\",\\\"jeans_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(16, 'Notebook', 'BOOK-PROD-009', '[1,2,3]', 1, 'Premium handcrafted leather bound notebook with high quality lined pages for professionals', NULL, 34.99, 18.00, 0, '9', 'notebook_image.png', '\"[\\\"notebook_images_1.png\\\",\\\"notebook_images_2.png\\\",\\\"notebook_images_3.png\\\",\\\"notebook_images_4.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(17, 'Massage Therapy Service', 'BEAUTY-SERV-020', '[1,2,3]', 3, 'Professional full-body massage therapy for relaxation and stress relief', NULL, 120.00, 0.00, 0, '47', 'massage_therapy_service_image.png', NULL, 'service', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(18, 'Face Cream', 'BEAUTY-PROD-019', '[1]', 3, 'Anti aging moisturizing face cream with vitamin E and hyaluronic acid', NULL, 35.99, 18.00, 0, NULL, 'face_cream_image.png', NULL, 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(19, 'Plant Pot', 'HOME-PROD-012', '[1,2]', 6, 'Decorative ceramic plant pot perfect for indoor plant cultivation with drainage', NULL, 24.99, 12.00, 0, '13', 'plant_pot_image.png', '\"[\\\"plant_pot_images_1.png\\\",\\\"plant_pot_images_2.png\\\",\\\"plant_pot_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(20, 'Yoga Mat', 'SPORT-PART-017', '[1]', 9, 'Everyday yoga mat for home or gym workouts', NULL, 150.00, 70.00, 0, '1', 'yoga_mat_image.png', '\"[\\\"yoga_mat_images_1.png\\\"]\"', 'part', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(21, 'Laptop', 'ELEC-PROD-001', '[1,2]', 7, 'High performance business laptop with advanced graphics processing power for professionals', NULL, 899.99, 650.00, 0, '1', 'laptop_image.png', '\"[\\\"laptop_images_1.png\\\",\\\"laptop_images_2.png\\\",\\\"laptop_images_3.png\\\",\\\"laptop_images_4.png\\\",\\\"laptop_images_5.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(22, 'Raspberry', 'FRUIT-PROD-023', '[1,2]', 4, 'Fresh organic raspberries packed with antioxidants and natural sweetness for eating', NULL, 6.99, 4.00, 0, '30', 'raspberry_image.png', '\"[\\\"raspberry_images_1.png\\\",\\\"raspberry_images_2.png\\\",\\\"raspberry_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(23, 'Jewelry Repair Service', 'JEWEL-SERV-034', '[1,2]', 5, 'Professional jewelry repair and restoration service for watches rings and necklaces', NULL, 35.00, 0.00, 0, NULL, 'jewelry_repair_service_image.png', NULL, 'service', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(24, 'Football', 'SPORT-PROD-015', '[1,2,3]', 9, 'Official regulation size football for competitive games and training with leather', NULL, 39.99, 22.00, 0, '22', 'football_image.png', '\"[\\\"football_images_1.png\\\",\\\"football_images_2.png\\\",\\\"football_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(25, 'Belt', 'FASH-PART-008', '[1,2,3]', 8, 'Leather belt for casual and formal wear', NULL, 250.00, 120.00, 0, '1', 'belt_image.png', '\"[\\\"belt_images_1.png\\\",\\\"belt_images_2.png\\\"]\"', 'part', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(26, 'Jewelry Repair Service', 'JEWEL-SERV-034', '[1]', 13, 'Professional jewelry repair and restoration service for watches rings and necklaces', NULL, 35.00, 0.00, 0, NULL, 'jewelry_repair_service_image.png', NULL, 'service', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(27, 'Massage Therapy Service', 'BEAUTY-SERV-020', '[1,2,3]', 17, 'Professional full-body massage therapy for relaxation and stress relief', NULL, 120.00, 0.00, 0, '47', 'massage_therapy_service_image.png', NULL, 'service', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(28, 'Face Cream', 'BEAUTY-PROD-019', '[1,2,3]', 17, 'Anti aging moisturizing face cream with vitamin E and hyaluronic acid', NULL, 35.99, 18.00, 0, NULL, 'face_cream_image.png', NULL, 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(29, 'Notebook', 'BOOK-PROD-009', '[1,2,3]', 14, 'Premium handcrafted leather bound notebook with high quality lined pages for professionals', NULL, 34.99, 18.00, 0, '9', 'notebook_image.png', '\"[\\\"notebook_images_1.png\\\",\\\"notebook_images_2.png\\\",\\\"notebook_images_3.png\\\",\\\"notebook_images_4.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(30, 'Ink Cartridge', 'BOOK-PART-011', '[1,2,3]', 14, 'Compatible ink cartridge replacement for various printer models and brands available', NULL, 25.99, 12.00, 0, '1', 'ink_cartridge_image.png', '\"[\\\"ink_cartridge_images_1.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(31, 'Raspberry', 'FRUIT-PROD-023', '[1,2]', 20, 'Fresh organic raspberries packed with antioxidants and natural sweetness for eating', NULL, 6.99, 4.00, 0, '30', 'raspberry_image.png', '\"[\\\"raspberry_images_1.png\\\",\\\"raspberry_images_2.png\\\",\\\"raspberry_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(32, 'Laptop Battery', 'ELEC-PART-004', '[1,2]', 11, 'High capacity replacement lithium battery compatible with multiple laptop models', NULL, 89.99, 45.00, 0, '1', 'laptop_battery_image.png', '\"[\\\"laptop_battery_images_1.png\\\",\\\"laptop_battery_images_2.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(33, 'Jeans', 'FASH-PROD-006', '[1,2,3]', 15, 'Classic fit premium denim jeans with stretch comfort technology for everyday', NULL, 59.99, 35.00, 0, '5', 'jeans_image.png', '\"[\\\"jeans_images_1.png\\\",\\\"jeans_images_2.png\\\",\\\"jeans_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(34, 'T-Shirt', 'FASH-PROD-005', '[1]', 15, 'Organic cotton comfortable casual wear t-shirt available in multiple colors', NULL, 24.99, 12.00, 0, '1', 't_shirt_image.png', '\"[\\\"t_shirt_images_1.png\\\",\\\"t_shirt_images_2.png\\\",\\\"t_shirt_images_3.png\\\",\\\"t_shirt_images_4.png\\\",\\\"t_shirt_images_5.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(35, 'Tailoring Service', 'FASH-SERV-007', '[1,2]', 15, 'Professional clothing alteration and custom tailoring service for perfect fit garments', NULL, 45.00, 0.00, 0, '48', 'tailoring_service_image.png', NULL, 'service', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(36, 'Apple', 'FRUIT-PROD-022', '[1,2,3]', 20, 'Fresh organic red apples packed with natural vitamins and minerals from orchards', NULL, 3.99, 2.00, 0, '28', 'apple_image.png', '\"[\\\"apple_images_1.png\\\",\\\"apple_images_2.png\\\",\\\"apple_images_3.png\\\",\\\"apple_images_4.png\\\",\\\"apple_images_5.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(37, 'IT Support Service', 'ELEC-SERV-003', '[1]', 11, 'Comprehensive technical support and system maintenance service package for business operations', NULL, 75.00, 0.00, 0, '43', 'it_support_service_image.png', NULL, 'service', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(38, 'Watch', 'JEWEL-PROD-033', '[1,2]', 13, 'Elegant stainless steel watch with water resistance and precision quartz movement', NULL, 199.99, 120.00, 0, '1', 'watch_image.png', '\"[\\\"watch_images_1.png\\\",\\\"watch_images_2.png\\\",\\\"watch_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(39, 'Shampoo', 'BEAUTY-PROD-018', '[1,2,3]', 17, 'Natural organic shampoo for all hair types with essential oils and formula', NULL, 18.99, 9.00, 0, '24', 'shampoo_image.png', '\"[\\\"shampoo_images_1.png\\\",\\\"shampoo_images_2.png\\\",\\\"shampoo_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(40, 'Car Engine Oil', 'AUTO-PROD-029', '[1,2,3]', 19, 'High-performance synthetic engine oil designed for modern cars and extended engine life', NULL, 45.00, 25.00, 0, '24', 'car_engine_oil_image.png', '\"[\\\"car_engine_oil_images_1.png\\\",\\\"car_engine_oil_images_2.png\\\",\\\"car_engine_oil_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(41, 'Football', 'SPORT-PROD-015', '[1,2]', 18, 'Official regulation size football for competitive games and training with leather', NULL, 39.99, 22.00, 0, '22', 'football_image.png', '\"[\\\"football_images_1.png\\\",\\\"football_images_2.png\\\",\\\"football_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(42, 'Belt', 'FASH-PART-008', '[1,2]', 15, 'Leather belt for casual and formal wear', NULL, 250.00, 120.00, 0, '1', 'belt_image.png', '\"[\\\"belt_images_1.png\\\",\\\"belt_images_2.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(43, 'Plant Pot', 'HOME-PROD-012', '[1,2,3]', 16, 'Decorative ceramic plant pot perfect for indoor plant cultivation with drainage', NULL, 24.99, 12.00, 0, '13', 'plant_pot_image.png', '\"[\\\"plant_pot_images_1.png\\\",\\\"plant_pot_images_2.png\\\",\\\"plant_pot_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(44, 'Smartphone', 'ELEC-PROD-002', '[1]', 11, 'Latest model smartphone with advanced camera system and high speed processing', NULL, 699.99, 450.00, 0, '1', 'smartphone_image.png', '\"[\\\"smartphone_images_1.png\\\",\\\"smartphone_images_2.png\\\",\\\"smartphone_images_3.png\\\",\\\"smartphone_images_4.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(45, 'Brake Pad Set', 'AUTO-PART-032', '[1]', 19, 'Durable replacement brake pads compatible with most mid-size cars and SUVs', NULL, 80.00, 40.00, 0, '2', 'brake_pad_set_image.png', '\"[\\\"brake_pad_set_images_1.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(46, 'Coffee', 'FOOD-PROD-026', '[1,2,3]', 12, 'Premium arabica coffee beans roasted to perfection with rich aroma and taste', NULL, 15.99, 8.00, 0, '28', 'coffee_image.png', '\"[\\\"coffee_images_1.png\\\",\\\"coffee_images_2.png\\\",\\\"coffee_images_3.png\\\",\\\"coffee_images_4.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(47, 'Laptop', 'ELEC-PROD-001', '[1,2]', 11, 'High performance business laptop with advanced graphics processing power for professionals', NULL, 899.99, 650.00, 0, '1', 'laptop_image.png', '\"[\\\"laptop_images_1.png\\\",\\\"laptop_images_2.png\\\",\\\"laptop_images_3.png\\\",\\\"laptop_images_4.png\\\",\\\"laptop_images_5.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(48, 'Cordless Drill Machine', 'AUTO-PROD-030', '[1,2]', 19, 'Rechargeable cordless drill with variable speed and multiple drill bit attachments', NULL, 120.00, 70.00, 0, '1', 'cordless_drill_machine_image.png', '\"[\\\"cordless_drill_machine_images_1.png\\\",\\\"cordless_drill_machine_images_2.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(49, 'Light Bulb', 'HOME-PART-014', '[1,2,3]', 16, 'Standard household light bulb for daily lighting needs', NULL, 300.00, 250.00, 0, '1', 'light_bulb_image.png', '\"[\\\"light_bulb_images_1.png\\\",\\\"light_bulb_images_2.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(50, 'Yoga Mat', 'SPORT-PART-017', '[1,2]', 18, 'Everyday yoga mat for home or gym workouts', NULL, 150.00, 70.00, 0, '1', 'yoga_mat_image.png', '\"[\\\"yoga_mat_images_1.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(51, 'Jewelry Repair Service', 'JEWEL-SERV-034', '[1,2,3]', 23, 'Professional jewelry repair and restoration service for watches rings and necklaces', NULL, 35.00, 0.00, 0, NULL, 'jewelry_repair_service_image.png', NULL, 'service', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(52, 'Coffee', 'FOOD-PROD-026', '[1]', 25, 'Premium arabica coffee beans roasted to perfection with rich aroma and taste', NULL, 15.99, 8.00, 0, '28', 'coffee_image.png', '\"[\\\"coffee_images_1.png\\\",\\\"coffee_images_2.png\\\",\\\"coffee_images_3.png\\\",\\\"coffee_images_4.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(53, 'Face Cream', 'BEAUTY-PROD-019', '[1,2]', 26, 'Anti aging moisturizing face cream with vitamin E and hyaluronic acid', NULL, 35.99, 18.00, 0, NULL, 'face_cream_image.png', NULL, 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(54, 'Watch', 'JEWEL-PROD-033', '[1]', 23, 'Elegant stainless steel watch with water resistance and precision quartz movement', NULL, 199.99, 120.00, 0, '1', 'watch_image.png', '\"[\\\"watch_images_1.png\\\",\\\"watch_images_2.png\\\",\\\"watch_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(55, 'Light Bulb', 'HOME-PART-014', '[1,2,3]', 30, 'Standard household light bulb for daily lighting needs', NULL, 300.00, 250.00, 0, '1', 'light_bulb_image.png', '\"[\\\"light_bulb_images_1.png\\\",\\\"light_bulb_images_2.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(56, 'Massage Therapy Service', 'BEAUTY-SERV-020', '[1]', 26, 'Professional full-body massage therapy for relaxation and stress relief', NULL, 120.00, 0.00, 0, '47', 'massage_therapy_service_image.png', NULL, 'service', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(57, 'T-Shirt', 'FASH-PROD-005', '[1,2]', 28, 'Organic cotton comfortable casual wear t-shirt available in multiple colors', NULL, 24.99, 12.00, 0, '1', 't_shirt_image.png', '\"[\\\"t_shirt_images_1.png\\\",\\\"t_shirt_images_2.png\\\",\\\"t_shirt_images_3.png\\\",\\\"t_shirt_images_4.png\\\",\\\"t_shirt_images_5.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(58, 'Belt', 'FASH-PART-008', '[1,2,3]', 28, 'Leather belt for casual and formal wear', NULL, 250.00, 120.00, 0, '1', 'belt_image.png', '\"[\\\"belt_images_1.png\\\",\\\"belt_images_2.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(59, 'Yoga Mat', 'SPORT-PART-017', '[1,2,3]', 27, 'Everyday yoga mat for home or gym workouts', NULL, 150.00, 70.00, 0, '1', 'yoga_mat_image.png', '\"[\\\"yoga_mat_images_1.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(60, 'Smartphone', 'ELEC-PROD-002', '[1,2,3]', 21, 'Latest model smartphone with advanced camera system and high speed processing', NULL, 699.99, 450.00, 0, '1', 'smartphone_image.png', '\"[\\\"smartphone_images_1.png\\\",\\\"smartphone_images_2.png\\\",\\\"smartphone_images_3.png\\\",\\\"smartphone_images_4.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(61, 'Tailoring Service', 'FASH-SERV-007', '[1]', 28, 'Professional clothing alteration and custom tailoring service for perfect fit garments', NULL, 45.00, 0.00, 0, '48', 'tailoring_service_image.png', NULL, 'service', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(62, 'Jeans', 'FASH-PROD-006', '[1,2,3]', 28, 'Classic fit premium denim jeans with stretch comfort technology for everyday', NULL, 59.99, 35.00, 0, '5', 'jeans_image.png', '\"[\\\"jeans_images_1.png\\\",\\\"jeans_images_2.png\\\",\\\"jeans_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(63, 'Shampoo', 'BEAUTY-PROD-018', '[1,2]', 26, 'Natural organic shampoo for all hair types with essential oils and formula', NULL, 18.99, 9.00, 0, '24', 'shampoo_image.png', '\"[\\\"shampoo_images_1.png\\\",\\\"shampoo_images_2.png\\\",\\\"shampoo_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(64, 'Football', 'SPORT-PROD-015', '[1]', 27, 'Official regulation size football for competitive games and training with leather', NULL, 39.99, 22.00, 0, '22', 'football_image.png', '\"[\\\"football_images_1.png\\\",\\\"football_images_2.png\\\",\\\"football_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(65, 'Brake Pad Set', 'AUTO-PART-032', '[1]', 24, 'Durable replacement brake pads compatible with most mid-size cars and SUVs', NULL, 80.00, 40.00, 0, '2', 'brake_pad_set_image.png', '\"[\\\"brake_pad_set_images_1.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(66, 'Car Engine Oil', 'AUTO-PROD-029', '[1,2,3]', 24, 'High-performance synthetic engine oil designed for modern cars and extended engine life', NULL, 45.00, 25.00, 0, '24', 'car_engine_oil_image.png', '\"[\\\"car_engine_oil_images_1.png\\\",\\\"car_engine_oil_images_2.png\\\",\\\"car_engine_oil_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(67, 'Laptop Battery', 'ELEC-PART-004', '[1,2]', 21, 'High capacity replacement lithium battery compatible with multiple laptop models', NULL, 89.99, 45.00, 0, '1', 'laptop_battery_image.png', '\"[\\\"laptop_battery_images_1.png\\\",\\\"laptop_battery_images_2.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(68, 'Ink Cartridge', 'BOOK-PART-011', '[1,2]', 22, 'Compatible ink cartridge replacement for various printer models and brands available', NULL, 25.99, 12.00, 0, '1', 'ink_cartridge_image.png', '\"[\\\"ink_cartridge_images_1.png\\\"]\"', 'part', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(69, 'Plant Pot', 'HOME-PROD-012', '[1,2]', 30, 'Decorative ceramic plant pot perfect for indoor plant cultivation with drainage', NULL, 24.99, 12.00, 0, '13', 'plant_pot_image.png', '\"[\\\"plant_pot_images_1.png\\\",\\\"plant_pot_images_2.png\\\",\\\"plant_pot_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(70, 'Apple', 'FRUIT-PROD-022', '[1]', 29, 'Fresh organic red apples packed with natural vitamins and minerals from orchards', NULL, 3.99, 2.00, 0, '28', 'apple_image.png', '\"[\\\"apple_images_1.png\\\",\\\"apple_images_2.png\\\",\\\"apple_images_3.png\\\",\\\"apple_images_4.png\\\",\\\"apple_images_5.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(71, 'Cordless Drill Machine', 'AUTO-PROD-030', '[1,2]', 24, 'Rechargeable cordless drill with variable speed and multiple drill bit attachments', NULL, 120.00, 70.00, 0, '1', 'cordless_drill_machine_image.png', '\"[\\\"cordless_drill_machine_images_1.png\\\",\\\"cordless_drill_machine_images_2.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(72, 'IT Support Service', 'ELEC-SERV-003', '[1,2,3]', 21, 'Comprehensive technical support and system maintenance service package for business operations', NULL, 75.00, 0.00, 0, '43', 'it_support_service_image.png', NULL, 'service', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(73, 'Notebook', 'BOOK-PROD-009', '[1,2,3]', 22, 'Premium handcrafted leather bound notebook with high quality lined pages for professionals', NULL, 34.99, 18.00, 0, '9', 'notebook_image.png', '\"[\\\"notebook_images_1.png\\\",\\\"notebook_images_2.png\\\",\\\"notebook_images_3.png\\\",\\\"notebook_images_4.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(74, 'Laptop', 'ELEC-PROD-001', '[1,2]', 21, 'High performance business laptop with advanced graphics processing power for professionals', NULL, 899.99, 650.00, 0, '1', 'laptop_image.png', '\"[\\\"laptop_images_1.png\\\",\\\"laptop_images_2.png\\\",\\\"laptop_images_3.png\\\",\\\"laptop_images_4.png\\\",\\\"laptop_images_5.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(75, 'Raspberry', 'FRUIT-PROD-023', '[1]', 29, 'Fresh organic raspberries packed with antioxidants and natural sweetness for eating', NULL, 6.99, 4.00, 0, '30', 'raspberry_image.png', '\"[\\\"raspberry_images_1.png\\\",\\\"raspberry_images_2.png\\\",\\\"raspberry_images_3.png\\\"]\"', 'product', 1, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(76, 'Paracetamol 340mg', 'MED-P0MMT5', NULL, NULL, NULL, NULL, 149.70, 30.68, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), +(77, 'Paracetamol 302mg', 'MED-A4AHPS', NULL, NULL, NULL, NULL, 128.10, 22.82, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:48:48', '2026-05-01 21:48:48'), +(78, 'Paracetamol 158mg', 'MED-136K59', NULL, NULL, NULL, NULL, 119.90, 27.49, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(79, 'Ibuprofen 277mg', 'MED-VPPJJI', NULL, NULL, NULL, NULL, 191.49, 32.40, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(80, 'Amoxicillin 104mg', 'MED-8DZQQC', NULL, NULL, NULL, NULL, 162.66, 21.74, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(81, 'Cetirizine 235mg', 'MED-OVPACR', NULL, NULL, NULL, NULL, 171.33, 39.56, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(82, 'Losartan 264mg', 'MED-1KYBKZ', NULL, NULL, NULL, NULL, 79.13, 18.81, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(83, 'Amlodipine 195mg', 'MED-U4SILN', NULL, NULL, NULL, NULL, 114.73, 25.02, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(84, 'Metformin 243mg', 'MED-V0OYXX', NULL, NULL, NULL, NULL, 169.73, 28.64, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(85, 'Omeprazole 290mg', 'MED-H1FM8V', NULL, NULL, NULL, NULL, 192.07, 28.55, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(86, 'Simvastatin 290mg', 'MED-IBVEZR', NULL, NULL, NULL, NULL, 176.95, 34.44, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(87, 'Azithromycin 427mg', 'MED-JUFRWR', NULL, NULL, NULL, NULL, 116.80, 22.31, 100, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(88, 'Expired generic antibiotic', 'DEAD-VUTEJT', NULL, NULL, NULL, NULL, 150.00, 50.00, 10, NULL, NULL, NULL, 'product', 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `product_service_taxes` +-- + +CREATE TABLE `product_service_taxes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `tax_name` varchar(255) NOT NULL, + `rate` decimal(5,2) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `product_service_taxes` +-- + +INSERT INTO `product_service_taxes` (`id`, `tax_name`, `rate`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'GST', 18.00, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'VAT', 12.00, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'Service Tax', 15.00, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Sales Tax', 8.50, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'GST', 18.00, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(6, 'VAT', 12.00, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(7, 'Service Tax', 15.00, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(8, 'Sales Tax', 8.50, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(9, 'GST', 18.00, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(10, 'VAT', 12.00, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(11, 'Service Tax', 15.00, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(12, 'Sales Tax', 8.50, 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `product_service_units` +-- + +CREATE TABLE `product_service_units` ( + `id` bigint(20) UNSIGNED NOT NULL, + `unit_name` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `product_service_units` +-- + +INSERT INTO `product_service_units` (`id`, `unit_name`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Piece', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Set', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'Unit', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Pack', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'Pair', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 'Dozen', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 'Size', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 'Bundle', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 'Book', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 'Ream', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, 'Sheet', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, 'Notebook', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(13, 'Pot', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 'Bag', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, 'Packet', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(16, 'Meter', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(17, 'Centimeter', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(18, 'Millimeter', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(19, 'Inch', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(20, 'Foot', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(21, 'Equipment', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(22, 'Ball', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(23, 'Kit', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(24, 'Bottle', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(25, 'Tube', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(26, 'Jar', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(27, 'Milliliter', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(28, 'Kilogram', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(29, 'Gram', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(30, 'Basket', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(31, 'Crate', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(32, 'Ton', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(33, 'Liter', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(34, 'Can', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(35, 'Box', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(36, 'Carton', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(37, 'Gallon', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(38, 'Toy', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(39, 'Game', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(40, 'Puzzle', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(41, 'Carat', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(42, 'Ounce', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(43, 'Hour', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(44, 'Day', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(45, 'Month', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(46, 'Year', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(47, 'Session', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(48, 'Service Call', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(49, 'Piece', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(50, 'Set', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(51, 'Unit', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(52, 'Pack', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(53, 'Pair', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(54, 'Dozen', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(55, 'Size', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(56, 'Bundle', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(57, 'Book', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(58, 'Ream', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(59, 'Sheet', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(60, 'Notebook', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(61, 'Pot', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(62, 'Bag', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(63, 'Packet', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(64, 'Meter', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(65, 'Centimeter', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(66, 'Millimeter', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(67, 'Inch', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(68, 'Foot', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(69, 'Equipment', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(70, 'Ball', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(71, 'Kit', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(72, 'Bottle', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(73, 'Tube', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(74, 'Jar', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(75, 'Milliliter', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(76, 'Kilogram', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(77, 'Gram', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(78, 'Basket', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(79, 'Crate', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(80, 'Ton', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(81, 'Liter', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(82, 'Can', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(83, 'Box', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(84, 'Carton', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(85, 'Gallon', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(86, 'Toy', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(87, 'Game', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(88, 'Puzzle', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(89, 'Carat', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(90, 'Ounce', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(91, 'Hour', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(92, 'Day', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(93, 'Month', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(94, 'Year', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(95, 'Session', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(96, 'Service Call', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(97, 'Piece', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(98, 'Set', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(99, 'Unit', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(100, 'Pack', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(101, 'Pair', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(102, 'Dozen', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(103, 'Size', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(104, 'Bundle', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(105, 'Book', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(106, 'Ream', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(107, 'Sheet', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(108, 'Notebook', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(109, 'Pot', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(110, 'Bag', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(111, 'Packet', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(112, 'Meter', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(113, 'Centimeter', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(114, 'Millimeter', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(115, 'Inch', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(116, 'Foot', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(117, 'Equipment', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(118, 'Ball', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(119, 'Kit', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(120, 'Bottle', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(121, 'Tube', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(122, 'Jar', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(123, 'Milliliter', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(124, 'Kilogram', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(125, 'Gram', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(126, 'Basket', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(127, 'Crate', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(128, 'Ton', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(129, 'Liter', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(130, 'Can', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(131, 'Box', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(132, 'Carton', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(133, 'Gallon', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(134, 'Toy', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(135, 'Game', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(136, 'Puzzle', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(137, 'Carat', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(138, 'Ounce', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(139, 'Hour', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(140, 'Day', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(141, 'Month', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(142, 'Year', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(143, 'Session', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(144, 'Service Call', 2, 2, '2026-04-27 14:42:29', '2026-04-27 14:42:29'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `projects` +-- + +CREATE TABLE `projects` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `description` text DEFAULT NULL, + `budget` decimal(10,2) DEFAULT NULL, + `start_date` date DEFAULT NULL, + `end_date` date DEFAULT NULL, + `status` enum('Ongoing','Onhold','Finished') NOT NULL DEFAULT 'Ongoing', + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `projects` +-- + +INSERT INTO `projects` (`id`, `name`, `description`, `budget`, `start_date`, `end_date`, `status`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Inventory Management System', 'Automated inventory tracking system with barcode scanning and reporting.', 30000.00, '2025-09-25', '2025-11-14', 'Finished', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 'Digital Marketing Campaign Tool', 'Automated marketing tool for social media campaigns and analytics.', 32000.00, '2025-10-05', '2025-11-24', 'Finished', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 'CRM System Integration', 'Integration of existing CRM with third-party services and API development.', 35000.00, '2025-10-15', '2025-12-04', 'Finished', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 'Project Portfolio Dashboard', 'Dashboard for monitoring KPIs and project status in real-time.', 27000.00, '2025-10-20', '2025-12-09', 'Finished', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 'Fleet Management System', 'Vehicle tracking and maintenance scheduling system.', 34000.00, '2025-10-25', '2025-12-14', 'Finished', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 'HR & Payroll Management System', 'System to manage employee records, payroll, and attendance with automation.', 38000.00, '2025-11-04', '2026-04-03', 'Ongoing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 'E-commerce Platform Development', 'Complete e-commerce solution with payment integration and inventory management.', 75000.00, '2025-11-14', '2026-04-13', 'Ongoing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 'Learning Management System', 'Online learning platform with course management, quizzes, and progress tracking.', 55000.00, '2025-11-24', '2026-04-23', 'Ongoing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 'Mobile App for Healthcare', 'Cross-platform mobile application for patient management and telemedicine.', 50000.00, '2025-12-04', '2026-05-03', 'Ongoing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 'Food Delivery Application', 'End-to-end mobile app for ordering, tracking, and delivering food.', 48000.00, '2025-12-14', '2026-05-13', 'Ongoing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 'Data Analytics Dashboard', 'Real-time analytics dashboard with advanced reporting capabilities.', 40000.00, '2025-12-24', '2026-04-28', 'Ongoing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 'AI Chatbot Development', 'Intelligent chatbot with natural language processing for customer support.', 45000.00, '2026-01-03', '2026-05-08', 'Ongoing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 'Online Ticket Booking System', 'Web-based system for booking movie and event tickets with seat selection.', 42000.00, '2026-01-08', '2026-04-23', 'Ongoing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 'Security Audit & Compliance', 'Comprehensive security assessment and compliance implementation.', 25000.00, '2026-01-18', '2026-04-13', 'Ongoing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 'Customer Feedback Portal', 'Web portal for collecting, analyzing, and reporting customer feedback.', 28000.00, '2026-01-23', '2026-04-18', 'Ongoing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 'Smart IoT Home Automation', 'IoT-based smart home system for controlling devices remotely.', 65000.00, '2026-02-02', '2026-06-02', 'Onhold', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 'Cloud Migration Project', 'Migration of legacy systems to cloud infrastructure with security enhancements.', 60000.00, '2026-02-12', '2026-06-12', 'Onhold', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 'Warehouse Automation System', 'Robotics-driven warehouse operations and order fulfillment system.', 70000.00, '2026-02-17', '2026-05-28', 'Onhold', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 'Virtual Event Platform', 'Platform for hosting online events with live streaming and networking features.', 46000.00, '2026-02-22', '2026-05-23', 'Onhold', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 'Blockchain Payment Gateway', 'Secure blockchain-based gateway for digital transactions.', 80000.00, '2026-03-04', '2026-06-12', 'Onhold', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `project_activity_logs` +-- + +CREATE TABLE `project_activity_logs` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `user_type` text NOT NULL, + `project_id` bigint(20) UNSIGNED NOT NULL, + `log_type` varchar(255) NOT NULL, + `remark` 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 `project_activity_logs` +-- + +INSERT INTO `project_activity_logs` (`id`, `user_id`, `user_type`, `project_id`, `log_type`, `remark`, `created_at`, `updated_at`) VALUES +(1, 2, 'User', 1, 'Invite User', '{\"user_id\":8}', '2025-09-24 16:00:00', '2026-03-14 00:17:53'), +(2, 2, 'User', 1, 'Invite User', '{\"user_id\":10}', '2025-09-25 16:00:00', '2026-03-14 00:17:53'), +(3, 2, 'User', 1, 'Share with Client', '{\"client_id\":9}', '2025-09-25 16:00:00', '2026-03-14 00:17:53'), +(4, 8, 'User', 1, 'Upload File', '{\"file_name\":\"technical_specs.docx\"}', '2025-09-26 16:00:00', '2026-03-14 00:17:53'), +(5, 16, 'User', 1, 'Create Timesheet', '{\"hours\":7}', '2025-09-26 16:00:00', '2026-03-14 00:17:53'), +(6, 26, 'User', 1, 'Upload File', '{\"file_name\":\"project_charter.pdf\"}', '2025-09-27 16:00:00', '2026-03-14 00:17:53'), +(7, 2, 'User', 1, 'Create Milestone', '{\"title\":\"Project Initiation & Planning\"}', '2025-09-27 16:00:00', '2026-03-14 00:17:53'), +(8, 2, 'User', 1, 'Create Milestone', '{\"title\":\"Requirements Gathering\"}', '2025-09-29 16:00:00', '2026-03-14 00:17:53'), +(9, 16, 'User', 1, 'Create Task', '{\"title\":\"Risk Assessment\"}', '2025-09-29 16:00:00', '2026-03-14 00:17:53'), +(10, 14, 'User', 1, 'Create Task', '{\"title\":\"Requirements Documentation\"}', '2025-09-30 16:00:00', '2026-03-14 00:17:53'), +(11, 2, 'User', 1, 'Create Milestone', '{\"title\":\"Integration & API Development\"}', '2025-10-01 16:00:00', '2026-03-14 00:17:53'), +(12, 24, 'User', 1, 'Create Task', '{\"title\":\"Integration Testing\"}', '2025-10-01 16:00:00', '2026-03-14 00:17:53'), +(13, 22, 'User', 1, 'Create Timesheet', '{\"hours\":6}', '2025-10-01 16:00:00', '2026-03-14 00:17:53'), +(14, 24, 'User', 1, 'Move', '{\"title\":\"Risk Assessment\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-02 16:00:00', '2026-03-14 00:17:53'), +(15, 24, 'User', 1, 'Move', '{\"title\":\"Requirements Documentation\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-03 16:00:00', '2026-03-14 00:17:53'), +(16, 12, 'User', 1, 'Move', '{\"title\":\"Integration Testing\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-03 16:00:00', '2026-03-14 00:17:53'), +(17, 22, 'User', 1, 'Move', '{\"title\":\"Risk Assessment\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-10-04 16:00:00', '2026-03-14 00:17:53'), +(18, 26, 'User', 1, 'Move', '{\"title\":\"Requirements Documentation\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-10-05 16:00:00', '2026-03-14 00:17:53'), +(19, 10, 'User', 1, 'Move', '{\"title\":\"Integration Testing\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-10-06 16:00:00', '2026-03-14 00:17:53'), +(20, 8, 'User', 1, 'Create Timesheet', '{\"hours\":6}', '2025-10-07 16:00:00', '2026-03-14 00:17:53'), +(21, 22, 'User', 1, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2025-10-09 16:00:00', '2026-03-14 00:17:53'), +(22, 10, 'User', 1, 'Move Bug', '{\"title\":\"Login Authentication Failure\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-10-12 16:00:00', '2026-03-14 00:17:53'), +(23, 10, 'User', 1, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2025-10-12 16:00:00', '2026-03-14 00:17:53'), +(24, 22, 'User', 1, 'Move Bug', '{\"title\":\"Data Synchronization Issues\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-10-14 16:00:00', '2026-03-14 00:17:53'), +(25, 26, 'User', 1, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2025-10-15 16:00:00', '2026-03-14 00:17:53'), +(26, 24, 'User', 1, 'Move Bug', '{\"title\":\"Performance Degradation\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-10-21 16:00:00', '2026-03-14 00:17:53'), +(27, 2, 'User', 2, 'Invite User', '{\"user_id\":8}', '2025-10-04 16:00:00', '2026-03-14 00:17:53'), +(28, 2, 'User', 2, 'Share with Client', '{\"client_id\":46}', '2025-10-05 16:00:00', '2026-03-14 00:17:53'), +(29, 10, 'User', 2, 'Create Timesheet', '{\"hours\":7}', '2025-10-05 16:00:00', '2026-03-14 00:17:53'), +(30, 18, 'User', 2, 'Upload File', '{\"file_name\":\"design_mockups.zip\"}', '2025-10-06 16:00:00', '2026-03-14 00:17:53'), +(31, 2, 'User', 2, 'Create Milestone', '{\"title\":\"System Architecture Design\"}', '2025-10-07 16:00:00', '2026-03-14 00:17:53'), +(32, 2, 'User', 2, 'Create Milestone', '{\"title\":\"UI\\/UX Design & Prototyping\"}', '2025-10-09 16:00:00', '2026-03-14 00:17:53'), +(33, 14, 'User', 2, 'Create Task', '{\"title\":\"Technical Architecture Planning\"}', '2025-10-09 16:00:00', '2026-03-14 00:17:53'), +(34, 22, 'User', 2, 'Create Task', '{\"title\":\"API Design\"}', '2025-10-10 16:00:00', '2026-03-14 00:17:53'), +(35, 2, 'User', 2, 'Create Milestone', '{\"title\":\"Integration & API Development\"}', '2025-10-11 16:00:00', '2026-03-14 00:17:53'), +(36, 26, 'User', 2, 'Move', '{\"title\":\"Technical Architecture Planning\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-11 16:00:00', '2026-03-14 00:17:53'), +(37, 24, 'User', 2, 'Move', '{\"title\":\"API Design\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-11 16:00:00', '2026-03-14 00:17:53'), +(38, 18, 'User', 2, 'Create Task', '{\"title\":\"User Interface Mockups\"}', '2025-10-11 16:00:00', '2026-03-14 00:17:53'), +(39, 20, 'User', 2, 'Move', '{\"title\":\"User Interface Mockups\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-12 16:00:00', '2026-03-14 00:17:53'), +(40, 20, 'User', 2, 'Create Timesheet', '{\"hours\":7}', '2025-10-12 16:00:00', '2026-03-14 00:17:53'), +(41, 12, 'User', 2, 'Move', '{\"title\":\"Technical Architecture Planning\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-10-16 16:00:00', '2026-03-14 00:17:53'), +(42, 10, 'User', 2, 'Move', '{\"title\":\"API Design\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-10-17 16:00:00', '2026-03-14 00:17:53'), +(43, 8, 'User', 2, 'Create Timesheet', '{\"hours\":6}', '2025-10-17 16:00:00', '2026-03-14 00:17:53'), +(44, 24, 'User', 2, 'Move', '{\"title\":\"User Interface Mockups\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-10-19 16:00:00', '2026-03-14 00:17:53'), +(45, 12, 'User', 2, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2025-10-19 16:00:00', '2026-03-14 00:17:53'), +(46, 24, 'User', 2, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2025-10-22 16:00:00', '2026-03-14 00:17:53'), +(47, 16, 'User', 2, 'Move Bug', '{\"title\":\"Login Authentication Failure\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-10-24 16:00:00', '2026-03-14 00:17:53'), +(48, 8, 'User', 2, 'Move Bug', '{\"title\":\"Performance Degradation\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-10-27 16:00:00', '2026-03-14 00:17:53'), +(49, 2, 'User', 3, 'Invite User', '{\"user_id\":8}', '2025-10-14 16:00:00', '2026-03-14 00:17:53'), +(50, 2, 'User', 3, 'Share with Client', '{\"client_id\":19}', '2025-10-15 16:00:00', '2026-03-14 00:17:53'), +(51, 26, 'User', 3, 'Upload File', '{\"file_name\":\"requirements.pdf\"}', '2025-10-16 16:00:00', '2026-03-14 00:17:53'), +(52, 2, 'User', 3, 'Create Milestone', '{\"title\":\"Project Initiation & Planning\"}', '2025-10-17 16:00:00', '2026-03-14 00:17:53'), +(53, 12, 'User', 3, 'Create Timesheet', '{\"hours\":7}', '2025-10-17 16:00:00', '2026-03-14 00:17:53'), +(54, 2, 'User', 3, 'Create Milestone', '{\"title\":\"Frontend Development Phase 1\"}', '2025-10-19 16:00:00', '2026-03-14 00:17:53'), +(55, 18, 'User', 3, 'Create Task', '{\"title\":\"Resource Planning\"}', '2025-10-19 16:00:00', '2026-03-14 00:17:53'), +(56, 24, 'User', 3, 'Move', '{\"title\":\"Resource Planning\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-20 16:00:00', '2026-03-14 00:17:53'), +(57, 10, 'User', 3, 'Create Task', '{\"title\":\"User Interface Implementation\"}', '2025-10-20 16:00:00', '2026-03-14 00:17:53'), +(58, 2, 'User', 3, 'Create Milestone', '{\"title\":\"User Training & Documentation\"}', '2025-10-21 16:00:00', '2026-03-14 00:17:53'), +(59, 10, 'User', 3, 'Create Task', '{\"title\":\"Responsive Design\"}', '2025-10-21 16:00:00', '2026-03-14 00:17:53'), +(60, 12, 'User', 3, 'Create Timesheet', '{\"hours\":6}', '2025-10-22 16:00:00', '2026-03-14 00:17:53'), +(61, 12, 'User', 3, 'Move', '{\"title\":\"User Interface Implementation\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-23 16:00:00', '2026-03-14 00:17:53'), +(62, 18, 'User', 3, 'Move', '{\"title\":\"Responsive Design\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-23 16:00:00', '2026-03-14 00:17:53'), +(63, 18, 'User', 3, 'Move', '{\"title\":\"Responsive Design\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-10-25 16:00:00', '2026-03-14 00:17:53'), +(64, 8, 'User', 3, 'Move', '{\"title\":\"Resource Planning\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-10-27 16:00:00', '2026-03-14 00:17:53'), +(65, 10, 'User', 3, 'Create Timesheet', '{\"hours\":8}', '2025-10-27 16:00:00', '2026-03-14 00:17:53'), +(66, 22, 'User', 3, 'Move', '{\"title\":\"User Interface Implementation\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-10-28 16:00:00', '2026-03-14 00:17:53'), +(67, 26, 'User', 3, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2025-10-29 16:00:00', '2026-03-14 00:17:53'), +(68, 10, 'User', 3, 'Move Bug', '{\"title\":\"Login Authentication Failure\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-11-01 16:00:00', '2026-03-14 00:17:53'), +(69, 20, 'User', 3, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2025-11-01 16:00:00', '2026-03-14 00:17:53'), +(70, 12, 'User', 3, 'Move Bug', '{\"title\":\"Data Synchronization Issues\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-11-08 16:00:00', '2026-03-14 00:17:53'), +(71, 2, 'User', 4, 'Invite User', '{\"user_id\":8}', '2025-10-19 16:00:00', '2026-03-14 00:17:53'), +(72, 2, 'User', 4, 'Invite User', '{\"user_id\":10}', '2025-10-20 16:00:00', '2026-03-14 00:17:53'), +(73, 2, 'User', 4, 'Share with Client', '{\"client_id\":45}', '2025-10-20 16:00:00', '2026-03-14 00:17:53'), +(74, 14, 'User', 4, 'Upload File', '{\"file_name\":\"requirements.pdf\"}', '2025-10-21 16:00:00', '2026-03-14 00:17:53'), +(75, 22, 'User', 4, 'Create Timesheet', '{\"hours\":7}', '2025-10-21 16:00:00', '2026-03-14 00:17:53'), +(76, 16, 'User', 4, 'Upload File', '{\"file_name\":\"technical_specs.docx\"}', '2025-10-22 16:00:00', '2026-03-14 00:17:53'), +(77, 2, 'User', 4, 'Create Milestone', '{\"title\":\"System Architecture Design\"}', '2025-10-22 16:00:00', '2026-03-14 00:17:53'), +(78, 2, 'User', 4, 'Create Milestone', '{\"title\":\"Frontend Development Phase 1\"}', '2025-10-24 16:00:00', '2026-03-14 00:17:53'), +(79, 12, 'User', 4, 'Create Task', '{\"title\":\"Database Design\"}', '2025-10-24 16:00:00', '2026-03-14 00:17:53'), +(80, 22, 'User', 4, 'Create Task', '{\"title\":\"User Interface Implementation\"}', '2025-10-25 16:00:00', '2026-03-14 00:17:53'), +(81, 26, 'User', 4, 'Create Timesheet', '{\"hours\":7}', '2025-10-25 16:00:00', '2026-03-14 00:17:53'), +(82, 2, 'User', 4, 'Create Milestone', '{\"title\":\"Performance Optimization\"}', '2025-10-26 16:00:00', '2026-03-14 00:17:53'), +(83, 22, 'User', 4, 'Move', '{\"title\":\"Database Design\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-26 16:00:00', '2026-03-14 00:17:53'), +(84, 12, 'User', 4, 'Create Task', '{\"title\":\"Frontend Routing\"}', '2025-10-26 16:00:00', '2026-03-14 00:17:53'), +(85, 8, 'User', 4, 'Move', '{\"title\":\"User Interface Implementation\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-28 16:00:00', '2026-03-14 00:17:53'), +(86, 22, 'User', 4, 'Move', '{\"title\":\"Frontend Routing\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-29 16:00:00', '2026-03-14 00:17:53'), +(87, 18, 'User', 4, 'Move', '{\"title\":\"Database Design\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-10-30 16:00:00', '2026-03-14 00:17:53'), +(88, 24, 'User', 4, 'Move', '{\"title\":\"User Interface Implementation\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-10-30 16:00:00', '2026-03-14 00:17:53'), +(89, 16, 'User', 4, 'Create Timesheet', '{\"hours\":7}', '2025-10-31 16:00:00', '2026-03-14 00:17:53'), +(90, 26, 'User', 4, 'Move', '{\"title\":\"Frontend Routing\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-11-03 16:00:00', '2026-03-14 00:17:53'), +(91, 20, 'User', 4, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2025-11-03 16:00:00', '2026-03-14 00:17:53'), +(92, 26, 'User', 4, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2025-11-06 16:00:00', '2026-03-14 00:17:53'), +(93, 12, 'User', 4, 'Move Bug', '{\"title\":\"Login Authentication Failure\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-11-08 16:00:00', '2026-03-14 00:17:53'), +(94, 20, 'User', 4, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2025-11-09 16:00:00', '2026-03-14 00:17:53'), +(95, 22, 'User', 4, 'Move Bug', '{\"title\":\"Data Synchronization Issues\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-11-11 16:00:00', '2026-03-14 00:17:53'), +(96, 14, 'User', 4, 'Move Bug', '{\"title\":\"Performance Degradation\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-11-14 16:00:00', '2026-03-14 00:17:53'), +(97, 2, 'User', 5, 'Invite User', '{\"user_id\":8}', '2025-10-24 16:00:00', '2026-03-14 00:17:53'), +(98, 2, 'User', 5, 'Share with Client', '{\"client_id\":15}', '2025-10-25 16:00:00', '2026-03-14 00:17:53'), +(99, 26, 'User', 5, 'Upload File', '{\"file_name\":\"technical_specs.docx\"}', '2025-10-26 16:00:00', '2026-03-14 00:17:53'), +(100, 2, 'User', 5, 'Create Milestone', '{\"title\":\"Project Initiation & Planning\"}', '2025-10-27 16:00:00', '2026-03-14 00:17:53'), +(101, 12, 'User', 5, 'Create Timesheet', '{\"hours\":7}', '2025-10-27 16:00:00', '2026-03-14 00:17:53'), +(102, 2, 'User', 5, 'Create Milestone', '{\"title\":\"UI\\/UX Design & Prototyping\"}', '2025-10-29 16:00:00', '2026-03-14 00:17:53'), +(103, 22, 'User', 5, 'Create Task', '{\"title\":\"Stakeholder Identification\"}', '2025-10-29 16:00:00', '2026-03-14 00:17:53'), +(104, 8, 'User', 5, 'Create Task', '{\"title\":\"Design System Creation\"}', '2025-10-30 16:00:00', '2026-03-14 00:17:53'), +(105, 2, 'User', 5, 'Create Milestone', '{\"title\":\"Production Deployment\"}', '2025-10-31 16:00:00', '2026-03-14 00:17:53'), +(106, 22, 'User', 5, 'Move', '{\"title\":\"Stakeholder Identification\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-31 16:00:00', '2026-03-14 00:17:53'), +(107, 18, 'User', 5, 'Move', '{\"title\":\"Design System Creation\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-10-31 16:00:00', '2026-03-14 00:17:53'), +(108, 22, 'User', 5, 'Create Task', '{\"title\":\"Deployment Pipeline\"}', '2025-10-31 16:00:00', '2026-03-14 00:17:53'), +(109, 8, 'User', 5, 'Create Timesheet', '{\"hours\":6}', '2025-11-01 16:00:00', '2026-03-14 00:17:53'), +(110, 20, 'User', 5, 'Move', '{\"title\":\"Deployment Pipeline\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-11-02 16:00:00', '2026-03-14 00:17:53'), +(111, 10, 'User', 5, 'Move', '{\"title\":\"Stakeholder Identification\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-11-04 16:00:00', '2026-03-14 00:17:53'), +(112, 18, 'User', 5, 'Move', '{\"title\":\"Deployment Pipeline\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-11-04 16:00:00', '2026-03-14 00:17:53'), +(113, 22, 'User', 5, 'Create Timesheet', '{\"hours\":6}', '2025-11-05 16:00:00', '2026-03-14 00:17:53'), +(114, 20, 'User', 5, 'Move', '{\"title\":\"Design System Creation\",\"old_status\":\"in progress\",\"new_status\":\"done\"}', '2025-11-07 16:00:00', '2026-03-14 00:17:53'), +(115, 8, 'User', 5, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2025-11-08 16:00:00', '2026-03-14 00:17:53'), +(116, 16, 'User', 5, 'Move Bug', '{\"title\":\"Login Authentication Failure\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-11-10 16:00:00', '2026-03-14 00:17:53'), +(117, 10, 'User', 5, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2025-11-11 16:00:00', '2026-03-14 00:17:53'), +(118, 26, 'User', 5, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2025-11-14 16:00:00', '2026-03-14 00:17:53'), +(119, 18, 'User', 5, 'Move Bug', '{\"title\":\"Data Synchronization Issues\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-11-15 16:00:00', '2026-03-14 00:17:53'), +(120, 16, 'User', 5, 'Move Bug', '{\"title\":\"Performance Degradation\",\"old_status\":\"new\",\"new_status\":\"resolved\"}', '2025-11-19 16:00:00', '2026-03-14 00:17:53'), +(121, 2, 'User', 6, 'Invite User', '{\"user_id\":8}', '2025-11-03 16:00:00', '2026-03-14 00:17:53'), +(122, 2, 'User', 6, 'Share with Client', '{\"client_id\":43}', '2025-11-04 16:00:00', '2026-03-14 00:17:53'), +(123, 14, 'User', 6, 'Upload File', '{\"file_name\":\"design_mockups.zip\"}', '2025-11-05 16:00:00', '2026-03-14 00:17:53'), +(124, 16, 'User', 6, 'Create Timesheet', '{\"hours\":8}', '2025-11-05 16:00:00', '2026-03-14 00:17:53'), +(125, 2, 'User', 6, 'Create Milestone', '{\"title\":\"System Architecture Design\"}', '2025-11-06 16:00:00', '2026-03-14 00:17:53'), +(126, 2, 'User', 6, 'Create Milestone', '{\"title\":\"UI\\/UX Design & Prototyping\"}', '2025-11-08 16:00:00', '2026-03-14 00:17:53'), +(127, 8, 'User', 6, 'Create Task', '{\"title\":\"Technical Architecture Planning\"}', '2025-11-08 16:00:00', '2026-03-14 00:17:53'), +(128, 26, 'User', 6, 'Create Task', '{\"title\":\"API Design\"}', '2025-11-09 16:00:00', '2026-03-14 00:17:53'), +(129, 2, 'User', 6, 'Create Milestone', '{\"title\":\"Integration & API Development\"}', '2025-11-10 16:00:00', '2026-03-14 00:17:53'), +(130, 22, 'User', 6, 'Move', '{\"title\":\"Technical Architecture Planning\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-11-10 16:00:00', '2026-03-14 00:17:53'), +(131, 20, 'User', 6, 'Create Task', '{\"title\":\"User Interface Mockups\"}', '2025-11-10 16:00:00', '2026-03-14 00:17:53'), +(132, 14, 'User', 6, 'Create Timesheet', '{\"hours\":8}', '2025-11-10 16:00:00', '2026-03-14 00:17:53'), +(133, 18, 'User', 6, 'Create Timesheet', '{\"hours\":6}', '2025-11-14 16:00:00', '2026-03-14 00:17:53'), +(134, 24, 'User', 6, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2025-11-18 16:00:00', '2026-03-14 00:17:53'), +(135, 16, 'User', 6, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2025-11-21 16:00:00', '2026-03-14 00:17:53'), +(136, 14, 'User', 6, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2025-11-24 16:00:00', '2026-03-14 00:17:53'), +(137, 2, 'User', 7, 'Invite User', '{\"user_id\":8}', '2025-11-13 16:00:00', '2026-03-14 00:17:53'), +(138, 2, 'User', 7, 'Invite User', '{\"user_id\":10}', '2025-11-14 16:00:00', '2026-03-14 00:17:53'), +(139, 2, 'User', 7, 'Share with Client', '{\"client_id\":56}', '2025-11-14 16:00:00', '2026-03-14 00:17:53'), +(140, 26, 'User', 7, 'Create Timesheet', '{\"hours\":7}', '2025-11-14 16:00:00', '2026-03-14 00:17:53'), +(141, 24, 'User', 7, 'Upload File', '{\"file_name\":\"requirements.pdf\"}', '2025-11-15 16:00:00', '2026-03-14 00:17:53'), +(142, 2, 'User', 7, 'Create Milestone', '{\"title\":\"Security Implementation\"}', '2025-11-16 16:00:00', '2026-03-14 00:17:53'), +(143, 2, 'User', 7, 'Create Milestone', '{\"title\":\"Performance Optimization\"}', '2025-11-18 16:00:00', '2026-03-14 00:17:53'), +(144, 18, 'User', 7, 'Create Task', '{\"title\":\"Vulnerability Assessment\"}', '2025-11-18 16:00:00', '2026-03-14 00:17:53'), +(145, 12, 'User', 7, 'Create Task', '{\"title\":\"Encryption Implementation\"}', '2025-11-19 16:00:00', '2026-03-14 00:17:53'), +(146, 2, 'User', 7, 'Create Milestone', '{\"title\":\"User Training & Documentation\"}', '2025-11-20 16:00:00', '2026-03-14 00:17:53'), +(147, 18, 'User', 7, 'Move', '{\"title\":\"Vulnerability Assessment\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-11-20 16:00:00', '2026-03-14 00:17:53'), +(148, 26, 'User', 7, 'Create Task', '{\"title\":\"Code Optimization\"}', '2025-11-20 16:00:00', '2026-03-14 00:17:53'), +(149, 20, 'User', 7, 'Create Timesheet', '{\"hours\":8}', '2025-11-20 16:00:00', '2026-03-14 00:17:53'), +(150, 10, 'User', 7, 'Create Timesheet', '{\"hours\":6}', '2025-11-26 16:00:00', '2026-03-14 00:17:53'), +(151, 26, 'User', 7, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2025-11-28 16:00:00', '2026-03-14 00:17:53'), +(152, 8, 'User', 7, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2025-12-01 16:00:00', '2026-03-14 00:17:53'), +(153, 26, 'User', 7, 'Create Bug', '{\"title\":\"UI Component Rendering Bug\"}', '2025-12-04 16:00:00', '2026-03-14 00:17:53'), +(154, 2, 'User', 8, 'Invite User', '{\"user_id\":8}', '2025-11-23 16:00:00', '2026-03-14 00:17:53'), +(155, 2, 'User', 8, 'Share with Client', '{\"client_id\":11}', '2025-11-24 16:00:00', '2026-03-14 00:17:53'), +(156, 12, 'User', 8, 'Upload File', '{\"file_name\":\"technical_specs.docx\"}', '2025-11-25 16:00:00', '2026-03-14 00:17:53'), +(157, 10, 'User', 8, 'Upload File', '{\"file_name\":\"project_charter.pdf\"}', '2025-11-26 16:00:00', '2026-03-14 00:17:53'), +(158, 2, 'User', 8, 'Create Milestone', '{\"title\":\"Project Initiation & Planning\"}', '2025-11-26 16:00:00', '2026-03-14 00:17:53'), +(159, 24, 'User', 8, 'Create Timesheet', '{\"hours\":8}', '2025-11-26 16:00:00', '2026-03-14 00:17:53'), +(160, 2, 'User', 8, 'Create Milestone', '{\"title\":\"Backend Development Phase 1\"}', '2025-11-28 16:00:00', '2026-03-14 00:17:53'), +(161, 22, 'User', 8, 'Create Task', '{\"title\":\"Resource Planning\"}', '2025-11-28 16:00:00', '2026-03-14 00:17:53'), +(162, 12, 'User', 8, 'Create Task', '{\"title\":\"Risk Assessment\"}', '2025-11-29 16:00:00', '2026-03-14 00:17:53'), +(163, 2, 'User', 8, 'Create Milestone', '{\"title\":\"Frontend Development Phase 1\"}', '2025-11-30 16:00:00', '2026-03-14 00:17:53'), +(164, 26, 'User', 8, 'Create Task', '{\"title\":\"Core API Development\"}', '2025-11-30 16:00:00', '2026-03-14 00:17:53'), +(165, 14, 'User', 8, 'Create Timesheet', '{\"hours\":6}', '2025-11-30 16:00:00', '2026-03-14 00:17:53'), +(166, 18, 'User', 8, 'Move', '{\"title\":\"Risk Assessment\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-12-03 16:00:00', '2026-03-14 00:17:53'), +(167, 14, 'User', 8, 'Move', '{\"title\":\"Core API Development\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-12-03 16:00:00', '2026-03-14 00:17:53'), +(168, 20, 'User', 8, 'Create Timesheet', '{\"hours\":6}', '2025-12-06 16:00:00', '2026-03-14 00:17:53'), +(169, 20, 'User', 8, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2025-12-08 16:00:00', '2026-03-14 00:17:53'), +(170, 8, 'User', 8, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2025-12-11 16:00:00', '2026-03-14 00:17:53'), +(171, 22, 'User', 8, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2025-12-14 16:00:00', '2026-03-14 00:17:53'), +(172, 2, 'User', 9, 'Invite User', '{\"user_id\":8}', '2025-12-03 16:00:00', '2026-03-14 00:17:53'), +(173, 2, 'User', 9, 'Share with Client', '{\"client_id\":17}', '2025-12-04 16:00:00', '2026-03-14 00:17:53'), +(174, 14, 'User', 9, 'Create Timesheet', '{\"hours\":7}', '2025-12-04 16:00:00', '2026-03-14 00:17:53'), +(175, 24, 'User', 9, 'Upload File', '{\"file_name\":\"design_mockups.zip\"}', '2025-12-05 16:00:00', '2026-03-14 00:17:53'), +(176, 2, 'User', 9, 'Create Milestone', '{\"title\":\"Project Initiation & Planning\"}', '2025-12-06 16:00:00', '2026-03-14 00:17:53'), +(177, 2, 'User', 9, 'Create Milestone', '{\"title\":\"Integration & API Development\"}', '2025-12-08 16:00:00', '2026-03-14 00:17:53'), +(178, 20, 'User', 9, 'Create Task', '{\"title\":\"Resource Planning\"}', '2025-12-08 16:00:00', '2026-03-14 00:17:53'), +(179, 26, 'User', 9, 'Move', '{\"title\":\"Resource Planning\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-12-09 16:00:00', '2026-03-14 00:17:53'), +(180, 18, 'User', 9, 'Create Task', '{\"title\":\"Risk Assessment\"}', '2025-12-09 16:00:00', '2026-03-14 00:17:53'), +(181, 2, 'User', 9, 'Create Milestone', '{\"title\":\"User Training & Documentation\"}', '2025-12-10 16:00:00', '2026-03-14 00:17:53'), +(182, 18, 'User', 9, 'Create Task', '{\"title\":\"Data Synchronization\"}', '2025-12-10 16:00:00', '2026-03-14 00:17:53'), +(183, 10, 'User', 9, 'Create Timesheet', '{\"hours\":7}', '2025-12-10 16:00:00', '2026-03-14 00:17:53'), +(184, 18, 'User', 9, 'Move', '{\"title\":\"Data Synchronization\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-12-12 16:00:00', '2026-03-14 00:17:53'), +(185, 20, 'User', 9, 'Move', '{\"title\":\"Risk Assessment\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-12-14 16:00:00', '2026-03-14 00:17:53'), +(186, 8, 'User', 9, 'Create Timesheet', '{\"hours\":7}', '2025-12-15 16:00:00', '2026-03-14 00:17:53'), +(187, 26, 'User', 9, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2025-12-18 16:00:00', '2026-03-14 00:17:53'), +(188, 14, 'User', 9, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2025-12-21 16:00:00', '2026-03-14 00:17:53'), +(189, 8, 'User', 9, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2025-12-24 16:00:00', '2026-03-14 00:17:53'), +(190, 2, 'User', 10, 'Invite User', '{\"user_id\":8}', '2025-12-13 16:00:00', '2026-03-14 00:17:53'), +(191, 2, 'User', 10, 'Invite User', '{\"user_id\":10}', '2025-12-14 16:00:00', '2026-03-14 00:17:53'), +(192, 2, 'User', 10, 'Share with Client', '{\"client_id\":53}', '2025-12-14 16:00:00', '2026-03-14 00:17:53'), +(193, 12, 'User', 10, 'Upload File', '{\"file_name\":\"design_mockups.zip\"}', '2025-12-15 16:00:00', '2026-03-14 00:17:53'), +(194, 26, 'User', 10, 'Create Timesheet', '{\"hours\":6}', '2025-12-15 16:00:00', '2026-03-14 00:17:53'), +(195, 20, 'User', 10, 'Upload File', '{\"file_name\":\"project_charter.pdf\"}', '2025-12-16 16:00:00', '2026-03-14 00:17:53'), +(196, 2, 'User', 10, 'Create Milestone', '{\"title\":\"Integration & API Development\"}', '2025-12-16 16:00:00', '2026-03-14 00:17:53'), +(197, 2, 'User', 10, 'Create Milestone', '{\"title\":\"Security Implementation\"}', '2025-12-18 16:00:00', '2026-03-14 00:17:53'), +(198, 12, 'User', 10, 'Create Task', '{\"title\":\"API Endpoint Creation\"}', '2025-12-18 16:00:00', '2026-03-14 00:17:53'), +(199, 26, 'User', 10, 'Create Task', '{\"title\":\"Data Synchronization\"}', '2025-12-19 16:00:00', '2026-03-14 00:17:53'), +(200, 22, 'User', 10, 'Create Timesheet', '{\"hours\":7}', '2025-12-19 16:00:00', '2026-03-14 00:17:53'), +(201, 2, 'User', 10, 'Create Milestone', '{\"title\":\"Quality Assurance Testing\"}', '2025-12-20 16:00:00', '2026-03-14 00:17:53'), +(202, 24, 'User', 10, 'Move', '{\"title\":\"API Endpoint Creation\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-12-20 16:00:00', '2026-03-14 00:17:53'), +(203, 8, 'User', 10, 'Create Task', '{\"title\":\"Integration Testing\"}', '2025-12-20 16:00:00', '2026-03-14 00:17:53'), +(204, 22, 'User', 10, 'Move', '{\"title\":\"Data Synchronization\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2025-12-21 16:00:00', '2026-03-14 00:17:53'), +(205, 20, 'User', 10, 'Create Timesheet', '{\"hours\":8}', '2025-12-24 16:00:00', '2026-03-14 00:17:53'), +(206, 20, 'User', 10, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2025-12-28 16:00:00', '2026-03-14 00:17:53'), +(207, 16, 'User', 10, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2025-12-31 16:00:00', '2026-03-14 00:17:53'), +(208, 24, 'User', 10, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2026-01-03 16:00:00', '2026-03-14 00:17:53'), +(209, 2, 'User', 11, 'Invite User', '{\"user_id\":8}', '2025-12-23 16:00:00', '2026-03-14 00:17:53'), +(210, 2, 'User', 11, 'Share with Client', '{\"client_id\":46}', '2025-12-24 16:00:00', '2026-03-14 00:17:53'), +(211, 20, 'User', 11, 'Upload File', '{\"file_name\":\"requirements.pdf\"}', '2025-12-25 16:00:00', '2026-03-14 00:17:53'), +(212, 22, 'User', 11, 'Upload File', '{\"file_name\":\"design_mockups.zip\"}', '2025-12-26 16:00:00', '2026-03-14 00:17:53'), +(213, 2, 'User', 11, 'Create Milestone', '{\"title\":\"Project Initiation & Planning\"}', '2025-12-26 16:00:00', '2026-03-14 00:17:53'), +(214, 10, 'User', 11, 'Create Timesheet', '{\"hours\":8}', '2025-12-26 16:00:00', '2026-03-14 00:17:53'), +(215, 2, 'User', 11, 'Create Milestone', '{\"title\":\"System Architecture Design\"}', '2025-12-28 16:00:00', '2026-03-14 00:17:53'), +(216, 16, 'User', 11, 'Create Task', '{\"title\":\"Project Charter Creation\"}', '2025-12-28 16:00:00', '2026-03-14 00:17:53'), +(217, 10, 'User', 11, 'Create Task', '{\"title\":\"Resource Planning\"}', '2025-12-29 16:00:00', '2026-03-14 00:17:53'), +(218, 2, 'User', 11, 'Create Milestone', '{\"title\":\"Frontend Development Phase 1\"}', '2025-12-30 16:00:00', '2026-03-14 00:17:53'), +(219, 16, 'User', 11, 'Create Task', '{\"title\":\"Risk Assessment\"}', '2025-12-30 16:00:00', '2026-03-14 00:17:53'), +(220, 18, 'User', 11, 'Create Timesheet', '{\"hours\":6}', '2025-12-31 16:00:00', '2026-03-14 00:17:53'), +(221, 14, 'User', 11, 'Move', '{\"title\":\"Risk Assessment\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-01 16:00:00', '2026-03-14 00:17:53'), +(222, 20, 'User', 11, 'Create Timesheet', '{\"hours\":6}', '2026-01-04 16:00:00', '2026-03-14 00:17:53'), +(223, 26, 'User', 11, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2026-01-07 16:00:00', '2026-03-14 00:17:53'), +(224, 22, 'User', 11, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2026-01-10 16:00:00', '2026-03-14 00:17:53'), +(225, 22, 'User', 11, 'Create Bug', '{\"title\":\"UI Component Rendering Bug\"}', '2026-01-13 16:00:00', '2026-03-14 00:17:53'), +(226, 2, 'User', 12, 'Invite User', '{\"user_id\":8}', '2026-01-02 16:00:00', '2026-03-14 00:17:53'), +(227, 2, 'User', 12, 'Share with Client', '{\"client_id\":50}', '2026-01-03 16:00:00', '2026-03-14 00:17:53'), +(228, 12, 'User', 12, 'Upload File', '{\"file_name\":\"design_mockups.zip\"}', '2026-01-04 16:00:00', '2026-03-14 00:17:53'), +(229, 2, 'User', 12, 'Create Milestone', '{\"title\":\"Requirements Gathering\"}', '2026-01-05 16:00:00', '2026-03-14 00:17:53'), +(230, 26, 'User', 12, 'Create Timesheet', '{\"hours\":7}', '2026-01-05 16:00:00', '2026-03-14 00:17:53'), +(231, 2, 'User', 12, 'Create Milestone', '{\"title\":\"Frontend Development Phase 1\"}', '2026-01-07 16:00:00', '2026-03-14 00:17:53'), +(232, 10, 'User', 12, 'Create Task', '{\"title\":\"Requirements Validation\"}', '2026-01-07 16:00:00', '2026-03-14 00:17:53'), +(233, 22, 'User', 12, 'Create Task', '{\"title\":\"Requirements Documentation\"}', '2026-01-08 16:00:00', '2026-03-14 00:17:53'), +(234, 2, 'User', 12, 'Create Milestone', '{\"title\":\"Post-Launch Monitoring\"}', '2026-01-09 16:00:00', '2026-03-14 00:17:53'), +(235, 10, 'User', 12, 'Move', '{\"title\":\"Requirements Documentation\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-09 16:00:00', '2026-03-14 00:17:53'), +(236, 8, 'User', 12, 'Create Task', '{\"title\":\"Component Development\"}', '2026-01-09 16:00:00', '2026-03-14 00:17:53'), +(237, 10, 'User', 12, 'Create Timesheet', '{\"hours\":6}', '2026-01-09 16:00:00', '2026-03-14 00:17:53'), +(238, 12, 'User', 12, 'Move', '{\"title\":\"Requirements Validation\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-10 16:00:00', '2026-03-14 00:17:53'), +(239, 24, 'User', 12, 'Create Timesheet', '{\"hours\":7}', '2026-01-13 16:00:00', '2026-03-14 00:17:53'), +(240, 8, 'User', 12, 'Move', '{\"title\":\"Component Development\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-14 16:00:00', '2026-03-14 00:17:53'), +(241, 20, 'User', 12, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2026-01-17 16:00:00', '2026-03-14 00:17:53'), +(242, 22, 'User', 12, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2026-01-20 16:00:00', '2026-03-14 00:17:53'), +(243, 24, 'User', 12, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2026-01-23 16:00:00', '2026-03-14 00:17:53'), +(244, 2, 'User', 13, 'Invite User', '{\"user_id\":8}', '2026-01-07 16:00:00', '2026-03-14 00:17:53'), +(245, 2, 'User', 13, 'Invite User', '{\"user_id\":10}', '2026-01-08 16:00:00', '2026-03-14 00:17:53'), +(246, 2, 'User', 13, 'Share with Client', '{\"client_id\":44}', '2026-01-08 16:00:00', '2026-03-14 00:17:53'), +(247, 26, 'User', 13, 'Upload File', '{\"file_name\":\"project_charter.pdf\"}', '2026-01-09 16:00:00', '2026-03-14 00:17:53'), +(248, 2, 'User', 13, 'Create Milestone', '{\"title\":\"Integration & API Development\"}', '2026-01-10 16:00:00', '2026-03-14 00:17:53'), +(249, 14, 'User', 13, 'Create Timesheet', '{\"hours\":6}', '2026-01-10 16:00:00', '2026-03-14 00:17:53'), +(250, 2, 'User', 13, 'Create Milestone', '{\"title\":\"User Training & Documentation\"}', '2026-01-12 16:00:00', '2026-03-14 00:17:53'), +(251, 16, 'User', 13, 'Create Task', '{\"title\":\"API Endpoint Creation\"}', '2026-01-12 16:00:00', '2026-03-14 00:17:53'), +(252, 26, 'User', 13, 'Create Task', '{\"title\":\"Data Synchronization\"}', '2026-01-13 16:00:00', '2026-03-14 00:17:53'), +(253, 2, 'User', 13, 'Create Milestone', '{\"title\":\"Post-Launch Monitoring\"}', '2026-01-14 16:00:00', '2026-03-14 00:17:53'), +(254, 26, 'User', 13, 'Create Task', '{\"title\":\"Integration Testing\"}', '2026-01-14 16:00:00', '2026-03-14 00:17:53'), +(255, 10, 'User', 13, 'Create Timesheet', '{\"hours\":8}', '2026-01-14 16:00:00', '2026-03-14 00:17:53'), +(256, 20, 'User', 13, 'Move', '{\"title\":\"API Endpoint Creation\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-15 16:00:00', '2026-03-14 00:17:53'), +(257, 18, 'User', 13, 'Move', '{\"title\":\"Data Synchronization\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-15 16:00:00', '2026-03-14 00:17:53'), +(258, 10, 'User', 13, 'Move', '{\"title\":\"Integration Testing\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-15 16:00:00', '2026-03-14 00:17:53'), +(259, 10, 'User', 13, 'Create Timesheet', '{\"hours\":8}', '2026-01-20 16:00:00', '2026-03-14 00:17:53'), +(260, 12, 'User', 13, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2026-01-22 16:00:00', '2026-03-14 00:17:53'), +(261, 8, 'User', 13, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2026-01-25 16:00:00', '2026-03-14 00:17:53'), +(262, 20, 'User', 13, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2026-01-28 16:00:00', '2026-03-14 00:17:53'), +(263, 2, 'User', 14, 'Invite User', '{\"user_id\":8}', '2026-01-17 16:00:00', '2026-03-14 00:17:53'), +(264, 2, 'User', 14, 'Invite User', '{\"user_id\":10}', '2026-01-18 16:00:00', '2026-03-14 00:17:53'), +(265, 2, 'User', 14, 'Share with Client', '{\"client_id\":19}', '2026-01-18 16:00:00', '2026-03-14 00:17:53'), +(266, 12, 'User', 14, 'Create Timesheet', '{\"hours\":8}', '2026-01-18 16:00:00', '2026-03-14 00:17:53'), +(267, 8, 'User', 14, 'Upload File', '{\"file_name\":\"project_charter.pdf\"}', '2026-01-19 16:00:00', '2026-03-14 00:17:53'), +(268, 2, 'User', 14, 'Create Milestone', '{\"title\":\"Project Initiation & Planning\"}', '2026-01-20 16:00:00', '2026-03-14 00:17:53'), +(269, 2, 'User', 14, 'Create Milestone', '{\"title\":\"System Architecture Design\"}', '2026-01-22 16:00:00', '2026-03-14 00:17:53'), +(270, 12, 'User', 14, 'Create Task', '{\"title\":\"Project Charter Creation\"}', '2026-01-22 16:00:00', '2026-03-14 00:17:53'), +(271, 14, 'User', 14, 'Move', '{\"title\":\"Project Charter Creation\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-23 16:00:00', '2026-03-14 00:17:53'), +(272, 10, 'User', 14, 'Create Task', '{\"title\":\"Risk Assessment\"}', '2026-01-23 16:00:00', '2026-03-14 00:17:53'), +(273, 2, 'User', 14, 'Create Milestone', '{\"title\":\"Integration & API Development\"}', '2026-01-24 16:00:00', '2026-03-14 00:17:53'), +(274, 8, 'User', 14, 'Create Task', '{\"title\":\"Technical Architecture Planning\"}', '2026-01-24 16:00:00', '2026-03-14 00:17:53'), +(275, 20, 'User', 14, 'Create Timesheet', '{\"hours\":6}', '2026-01-24 16:00:00', '2026-03-14 00:17:53'), +(276, 22, 'User', 14, 'Move', '{\"title\":\"Technical Architecture Planning\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-25 16:00:00', '2026-03-14 00:17:53'), +(277, 12, 'User', 14, 'Move', '{\"title\":\"Risk Assessment\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-27 16:00:00', '2026-03-14 00:17:53'), +(278, 14, 'User', 14, 'Create Timesheet', '{\"hours\":8}', '2026-01-29 16:00:00', '2026-03-14 00:17:53'), +(279, 8, 'User', 14, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2026-02-01 16:00:00', '2026-03-14 00:17:53'), +(280, 26, 'User', 14, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2026-02-04 16:00:00', '2026-03-14 00:17:53'), +(281, 24, 'User', 14, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2026-02-07 16:00:00', '2026-03-14 00:17:53'), +(282, 2, 'User', 15, 'Invite User', '{\"user_id\":8}', '2026-01-22 16:00:00', '2026-03-14 00:17:53'), +(283, 2, 'User', 15, 'Invite User', '{\"user_id\":10}', '2026-01-23 16:00:00', '2026-03-14 00:17:53'), +(284, 2, 'User', 15, 'Share with Client', '{\"client_id\":46}', '2026-01-23 16:00:00', '2026-03-14 00:17:53'), +(285, 22, 'User', 15, 'Upload File', '{\"file_name\":\"design_mockups.zip\"}', '2026-01-24 16:00:00', '2026-03-14 00:17:53'), +(286, 18, 'User', 15, 'Create Timesheet', '{\"hours\":8}', '2026-01-24 16:00:00', '2026-03-14 00:17:53'), +(287, 2, 'User', 15, 'Create Milestone', '{\"title\":\"System Architecture Design\"}', '2026-01-25 16:00:00', '2026-03-14 00:17:53'), +(288, 2, 'User', 15, 'Create Milestone', '{\"title\":\"Backend Development Phase 1\"}', '2026-01-27 16:00:00', '2026-03-14 00:17:53'), +(289, 14, 'User', 15, 'Create Task', '{\"title\":\"Technical Architecture Planning\"}', '2026-01-27 16:00:00', '2026-03-14 00:17:53'), +(290, 16, 'User', 15, 'Create Task', '{\"title\":\"API Design\"}', '2026-01-28 16:00:00', '2026-03-14 00:17:53'), +(291, 2, 'User', 15, 'Create Milestone', '{\"title\":\"Production Deployment\"}', '2026-01-29 16:00:00', '2026-03-14 00:17:53'), +(292, 8, 'User', 15, 'Create Task', '{\"title\":\"Core API Development\"}', '2026-01-29 16:00:00', '2026-03-14 00:17:53'), +(293, 24, 'User', 15, 'Create Timesheet', '{\"hours\":6}', '2026-01-29 16:00:00', '2026-03-14 00:17:53'), +(294, 12, 'User', 15, 'Move', '{\"title\":\"Technical Architecture Planning\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-31 16:00:00', '2026-03-14 00:17:53'), +(295, 18, 'User', 15, 'Move', '{\"title\":\"API Design\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-31 16:00:00', '2026-03-14 00:17:53'), +(296, 22, 'User', 15, 'Move', '{\"title\":\"Core API Development\",\"old_status\":\"todo\",\"new_status\":\"in progress\"}', '2026-01-31 16:00:00', '2026-03-14 00:17:53'), +(297, 10, 'User', 15, 'Create Timesheet', '{\"hours\":6}', '2026-02-03 16:00:00', '2026-03-14 00:17:53'), +(298, 20, 'User', 15, 'Create Bug', '{\"title\":\"Login Authentication Failure\"}', '2026-02-06 16:00:00', '2026-03-14 00:17:53'), +(299, 16, 'User', 15, 'Create Bug', '{\"title\":\"Data Synchronization Issues\"}', '2026-02-09 16:00:00', '2026-03-14 00:17:53'), +(300, 24, 'User', 15, 'Create Bug', '{\"title\":\"Performance Degradation\"}', '2026-02-12 16:00:00', '2026-03-14 00:17:53'), +(301, 2, 'User', 16, 'Invite User', '{\"user_id\":8}', '2026-02-01 16:00:00', '2026-03-14 00:17:53'), +(302, 2, 'User', 16, 'Share with Client', '{\"client_id\":48}', '2026-02-02 16:00:00', '2026-03-14 00:17:53'), +(303, 26, 'User', 16, 'Upload File', '{\"file_name\":\"technical_specs.docx\"}', '2026-02-03 16:00:00', '2026-03-14 00:17:53'), +(304, 2, 'User', 16, 'Create Milestone', '{\"title\":\"Project Initiation & Planning\"}', '2026-02-04 16:00:00', '2026-03-14 00:17:53'), +(305, 2, 'User', 16, 'Create Milestone', '{\"title\":\"Requirements Gathering\"}', '2026-02-06 16:00:00', '2026-03-14 00:17:53'), +(306, 24, 'User', 16, 'Create Task', '{\"title\":\"Risk Assessment\"}', '2026-02-06 16:00:00', '2026-03-14 00:17:53'), +(307, 12, 'User', 16, 'Create Task', '{\"title\":\"Requirements Validation\"}', '2026-02-07 16:00:00', '2026-03-14 00:17:53'), +(308, 2, 'User', 16, 'Create Milestone', '{\"title\":\"Security Implementation\"}', '2026-02-08 16:00:00', '2026-03-14 00:17:53'), +(309, 10, 'User', 16, 'Create Task', '{\"title\":\"Requirements Documentation\"}', '2026-02-08 16:00:00', '2026-03-14 00:17:53'), +(310, 2, 'User', 17, 'Invite User', '{\"user_id\":8}', '2026-02-11 16:00:00', '2026-03-14 00:17:53'), +(311, 2, 'User', 17, 'Share with Client', '{\"client_id\":55}', '2026-02-12 16:00:00', '2026-03-14 00:17:53'), +(312, 10, 'User', 17, 'Upload File', '{\"file_name\":\"design_mockups.zip\"}', '2026-02-13 16:00:00', '2026-03-14 00:17:53'), +(313, 12, 'User', 17, 'Upload File', '{\"file_name\":\"project_charter.pdf\"}', '2026-02-14 16:00:00', '2026-03-14 00:17:53'), +(314, 2, 'User', 17, 'Create Milestone', '{\"title\":\"Integration & API Development\"}', '2026-02-14 16:00:00', '2026-03-14 00:17:53'), +(315, 2, 'User', 17, 'Create Milestone', '{\"title\":\"User Training & Documentation\"}', '2026-02-16 16:00:00', '2026-03-14 00:17:53'), +(316, 24, 'User', 17, 'Create Task', '{\"title\":\"API Endpoint Creation\"}', '2026-02-16 16:00:00', '2026-03-14 00:17:53'), +(317, 18, 'User', 17, 'Create Task', '{\"title\":\"Data Synchronization\"}', '2026-02-17 16:00:00', '2026-03-14 00:17:53'), +(318, 2, 'User', 17, 'Create Milestone', '{\"title\":\"Production Deployment\"}', '2026-02-18 16:00:00', '2026-03-14 00:17:53'), +(319, 16, 'User', 17, 'Create Task', '{\"title\":\"Integration Testing\"}', '2026-02-18 16:00:00', '2026-03-14 00:17:53'), +(320, 2, 'User', 18, 'Invite User', '{\"user_id\":8}', '2026-02-16 16:00:00', '2026-03-14 00:17:53'), +(321, 2, 'User', 18, 'Share with Client', '{\"client_id\":27}', '2026-02-17 16:00:00', '2026-03-14 00:17:53'), +(322, 26, 'User', 18, 'Upload File', '{\"file_name\":\"requirements.pdf\"}', '2026-02-18 16:00:00', '2026-03-14 00:17:53'), +(323, 2, 'User', 18, 'Create Milestone', '{\"title\":\"Backend Development Phase 1\"}', '2026-02-19 16:00:00', '2026-03-14 00:17:53'), +(324, 2, 'User', 18, 'Create Milestone', '{\"title\":\"Integration & API Development\"}', '2026-02-21 16:00:00', '2026-03-14 00:17:53'), +(325, 14, 'User', 18, 'Create Task', '{\"title\":\"Core API Development\"}', '2026-02-21 16:00:00', '2026-03-14 00:17:53'), +(326, 22, 'User', 18, 'Create Task', '{\"title\":\"Authentication System\"}', '2026-02-22 16:00:00', '2026-03-14 00:17:53'), +(327, 2, 'User', 18, 'Create Milestone', '{\"title\":\"Performance Optimization\"}', '2026-02-23 16:00:00', '2026-03-14 00:17:53'), +(328, 26, 'User', 18, 'Create Task', '{\"title\":\"Data Validation\"}', '2026-02-23 16:00:00', '2026-03-14 00:17:53'), +(329, 2, 'User', 19, 'Invite User', '{\"user_id\":8}', '2026-02-21 16:00:00', '2026-03-14 00:17:53'), +(330, 2, 'User', 19, 'Share with Client', '{\"client_id\":25}', '2026-02-22 16:00:00', '2026-03-14 00:17:53'), +(331, 10, 'User', 19, 'Upload File', '{\"file_name\":\"technical_specs.docx\"}', '2026-02-23 16:00:00', '2026-03-14 00:17:53'), +(332, 2, 'User', 19, 'Create Milestone', '{\"title\":\"Integration & API Development\"}', '2026-02-24 16:00:00', '2026-03-14 00:17:53'), +(333, 2, 'User', 19, 'Create Milestone', '{\"title\":\"Performance Optimization\"}', '2026-02-26 16:00:00', '2026-03-14 00:17:53'), +(334, 16, 'User', 19, 'Create Task', '{\"title\":\"Third-party Integration\"}', '2026-02-26 16:00:00', '2026-03-14 00:17:53'), +(335, 12, 'User', 19, 'Create Task', '{\"title\":\"Data Synchronization\"}', '2026-02-27 16:00:00', '2026-03-14 00:17:53'), +(336, 2, 'User', 19, 'Create Milestone', '{\"title\":\"Production Deployment\"}', '2026-02-28 16:00:00', '2026-03-14 00:17:53'), +(337, 18, 'User', 19, 'Create Task', '{\"title\":\"Caching Implementation\"}', '2026-02-28 16:00:00', '2026-03-14 00:17:53'), +(338, 2, 'User', 20, 'Invite User', '{\"user_id\":8}', '2026-03-03 16:00:00', '2026-03-14 00:17:53'), +(339, 2, 'User', 20, 'Invite User', '{\"user_id\":10}', '2026-03-04 16:00:00', '2026-03-14 00:17:53'), +(340, 2, 'User', 20, 'Share with Client', '{\"client_id\":17}', '2026-03-04 16:00:00', '2026-03-14 00:17:53'), +(341, 14, 'User', 20, 'Upload File', '{\"file_name\":\"requirements.pdf\"}', '2026-03-05 16:00:00', '2026-03-14 00:17:53'), +(342, 14, 'User', 20, 'Upload File', '{\"file_name\":\"design_mockups.zip\"}', '2026-03-06 16:00:00', '2026-03-14 00:17:53'), +(343, 2, 'User', 20, 'Create Milestone', '{\"title\":\"UI\\/UX Design & Prototyping\"}', '2026-03-06 16:00:00', '2026-03-14 00:17:53'), +(344, 2, 'User', 20, 'Create Milestone', '{\"title\":\"Backend Development Phase 1\"}', '2026-03-08 16:00:00', '2026-03-14 00:17:53'), +(345, 22, 'User', 20, 'Create Task', '{\"title\":\"User Interface Mockups\"}', '2026-03-08 16:00:00', '2026-03-14 00:17:53'), +(346, 24, 'User', 20, 'Create Task', '{\"title\":\"Interactive Prototypes\"}', '2026-03-09 16:00:00', '2026-03-14 00:17:53'), +(347, 2, 'User', 20, 'Create Milestone', '{\"title\":\"Security Implementation\"}', '2026-03-10 16:00:00', '2026-03-14 00:17:53'), +(348, 18, 'User', 20, 'Create Task', '{\"title\":\"Design System Creation\"}', '2026-03-10 16:00:00', '2026-03-14 00:17:53'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `project_bugs` +-- + +CREATE TABLE `project_bugs` ( + `id` bigint(20) UNSIGNED NOT NULL, + `project_id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(255) NOT NULL, + `priority` enum('High','Medium','Low') NOT NULL DEFAULT 'Medium', + `assigned_to` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`assigned_to`)), + `stage_id` bigint(20) UNSIGNED DEFAULT NULL, + `description` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `project_bugs` +-- + +INSERT INTO `project_bugs` (`id`, `project_id`, `title`, `priority`, `assigned_to`, `stage_id`, `description`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 'Login Authentication Failure', 'High', '[16,26]', 4, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(2, 1, 'Data Synchronization Issues', 'Medium', '[16]', 4, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(3, 1, 'Performance Degradation', 'Medium', '[26]', 1, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(4, 1, 'UI Component Rendering Bug', 'Low', '[16]', 3, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(5, 2, 'Login Authentication Failure', 'High', '[20]', 3, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(6, 2, 'Performance Degradation', 'Medium', '[20]', 4, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(7, 3, 'Login Authentication Failure', 'High', '[22,24]', 1, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(8, 3, 'Data Synchronization Issues', 'Medium', '[22,24]', 4, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(9, 4, 'Login Authentication Failure', 'High', '[26]', 4, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(10, 4, 'Data Synchronization Issues', 'Medium', '[18,26]', 4, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(11, 4, 'Performance Degradation', 'Medium', '[18]', 4, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(12, 4, 'UI Component Rendering Bug', 'Low', '[18,26]', 4, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(13, 5, 'Login Authentication Failure', 'High', '[18,26]', 4, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(14, 5, 'Data Synchronization Issues', 'Medium', '[26]', 4, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(15, 5, 'Performance Degradation', 'Medium', '[18,26]', 4, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(16, 5, 'UI Component Rendering Bug', 'Low', '[18,26]', 4, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(17, 6, 'Login Authentication Failure', 'High', '[12,26]', 2, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(18, 6, 'Data Synchronization Issues', 'Medium', '[12,26]', 2, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(19, 6, 'Performance Degradation', 'Medium', '[26]', 1, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(20, 6, 'UI Component Rendering Bug', 'Low', '[12,26]', 2, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(21, 7, 'Login Authentication Failure', 'High', '[18,22]', 2, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(22, 7, 'Performance Degradation', 'Medium', '[18,22]', 2, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(23, 7, 'UI Component Rendering Bug', 'Low', '[22]', 2, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(24, 8, 'Login Authentication Failure', 'High', '[10,20]', 2, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(25, 8, 'Data Synchronization Issues', 'Medium', '[20]', 2, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(26, 8, 'Performance Degradation', 'Medium', '[20]', 2, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(27, 8, 'UI Component Rendering Bug', 'Low', '[10]', 5, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(28, 9, 'Login Authentication Failure', 'High', '[22,26]', 5, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(29, 9, 'Data Synchronization Issues', 'Medium', '[14,26]', 2, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(30, 9, 'Performance Degradation', 'Medium', '[22]', 2, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(31, 9, 'UI Component Rendering Bug', 'Low', '[14,26]', 1, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(32, 10, 'Login Authentication Failure', 'High', '[18]', 5, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(33, 10, 'Data Synchronization Issues', 'Medium', '[18]', 5, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(34, 10, 'Performance Degradation', 'Medium', '[18]', 2, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(35, 10, 'UI Component Rendering Bug', 'Low', '[18,22]', 5, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(36, 11, 'Login Authentication Failure', 'High', '[14]', 2, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(37, 11, 'Data Synchronization Issues', 'Medium', '[14,18]', 1, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(38, 11, 'UI Component Rendering Bug', 'Low', '[14]', 2, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(39, 12, 'Login Authentication Failure', 'High', '[22]', 1, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(40, 12, 'Data Synchronization Issues', 'Medium', '[20]', 5, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(41, 12, 'Performance Degradation', 'Medium', '[22]', 1, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(42, 12, 'UI Component Rendering Bug', 'Low', '[20,22]', 1, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(43, 13, 'Login Authentication Failure', 'High', '[16]', 2, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(44, 13, 'Data Synchronization Issues', 'Medium', '[14]', 5, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(45, 13, 'Performance Degradation', 'Medium', '[14,16]', 1, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(46, 13, 'UI Component Rendering Bug', 'Low', '[14]', 5, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(47, 14, 'Login Authentication Failure', 'High', '[8,16]', 1, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(48, 14, 'Data Synchronization Issues', 'Medium', '[8,26]', 2, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(49, 14, 'Performance Degradation', 'Medium', '[16]', 1, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(50, 15, 'Login Authentication Failure', 'High', '[12,26]', 5, 'Users unable to login with correct credentials, authentication system malfunction.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(51, 15, 'Data Synchronization Issues', 'Medium', '[12]', 1, 'Data not synchronizing properly between different system components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(52, 15, 'Performance Degradation', 'Medium', '[16]', 1, 'System performance degrading over time, requiring regular restarts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(53, 15, 'UI Component Rendering Bug', 'Low', '[26]', 5, 'UI components not rendering correctly under certain conditions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `project_clients` +-- + +CREATE TABLE `project_clients` ( + `id` bigint(20) UNSIGNED NOT NULL, + `project_id` bigint(20) UNSIGNED NOT NULL, + `client_id` bigint(20) UNSIGNED NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `project_clients` +-- + +INSERT INTO `project_clients` (`id`, `project_id`, `client_id`) VALUES +(1, 1, 15), +(2, 1, 44), +(3, 2, 13), +(4, 2, 27), +(5, 3, 27), +(6, 3, 49), +(7, 4, 51), +(8, 4, 56), +(9, 5, 15), +(10, 5, 45), +(11, 6, 54), +(12, 7, 54), +(13, 8, 57), +(14, 9, 51), +(15, 9, 54), +(16, 10, 23), +(17, 10, 50), +(18, 11, 9), +(19, 12, 9), +(20, 12, 25), +(21, 13, 44), +(22, 14, 17), +(23, 14, 52), +(24, 15, 25), +(25, 16, 21), +(26, 16, 51), +(27, 17, 23), +(28, 17, 48), +(29, 18, 17), +(30, 18, 49), +(31, 19, 23), +(32, 20, 23), +(33, 20, 50); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `project_files` +-- + +CREATE TABLE `project_files` ( + `id` bigint(20) UNSIGNED NOT NULL, + `project_id` bigint(20) UNSIGNED NOT NULL, + `file_name` varchar(255) NOT NULL, + `file_path` varchar(255) 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 `project_files` +-- + +INSERT INTO `project_files` (`id`, `project_id`, `file_name`, `file_path`, `created_at`, `updated_at`) VALUES +(1, 1, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 1, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 1, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 1, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 2, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 2, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 2, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 2, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 3, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 3, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 3, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 4, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 4, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 4, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 4, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 5, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 5, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 5, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 6, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 6, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 6, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 7, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 7, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 7, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 7, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 8, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 8, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 8, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(29, 8, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(30, 9, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(31, 9, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(32, 9, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(33, 10, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(34, 10, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(35, 10, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(36, 10, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(37, 11, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(38, 11, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(39, 11, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(40, 11, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(41, 12, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(42, 12, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(43, 12, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(44, 13, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(45, 13, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(46, 13, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(47, 13, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(48, 14, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(49, 14, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(50, 14, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(51, 14, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(52, 15, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(53, 15, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(54, 15, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(55, 16, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(56, 16, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(57, 16, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(58, 16, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(59, 17, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(60, 17, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(61, 17, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(62, 18, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(63, 18, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(64, 18, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(65, 19, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(66, 19, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(67, 19, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(68, 20, 'project-requirements.pdf', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(69, 20, 'technical-specifications.docx', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(70, 20, 'design-mockups.zip', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(71, 20, 'database-schema.sql', 'dummy.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `project_milestones` +-- + +CREATE TABLE `project_milestones` ( + `id` bigint(20) UNSIGNED NOT NULL, + `project_id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(255) NOT NULL, + `cost` decimal(10,2) DEFAULT NULL, + `start_date` date DEFAULT NULL, + `end_date` date DEFAULT NULL, + `summary` text DEFAULT NULL, + `status` varchar(255) NOT NULL DEFAULT 'Incomplete', + `progress` 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; + +-- +-- Dumping data for table `project_milestones` +-- + +INSERT INTO `project_milestones` (`id`, `project_id`, `title`, `cost`, `start_date`, `end_date`, `summary`, `status`, `progress`, `created_at`, `updated_at`) VALUES +(1, 1, 'Project Initiation & Planning', 8500.00, '2025-09-25', '2025-09-30', 'Project charter creation, stakeholder identification, and initial planning phase completion.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 1, 'Requirements Gathering', 12000.00, '2025-10-05', '2025-10-10', 'Detailed business requirements analysis, user story creation, and acceptance criteria definition.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 1, 'Integration & API Development', 16000.00, '2025-10-15', '2025-10-21', 'Third-party service integration, API endpoint creation, and data synchronization setup.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 1, 'Production Deployment', 8000.00, '2025-10-25', '2025-11-06', 'Production environment setup, deployment pipeline configuration, and go-live activities.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 2, 'System Architecture Design', 15000.00, '2025-10-05', '2025-10-13', 'Technical architecture planning, database design, and system integration specifications.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 2, 'UI/UX Design & Prototyping', 18000.00, '2025-10-17', '2025-10-29', 'User interface mockups, wireframes, prototypes, and design system creation.', 'Incomplete', 41, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 2, 'Integration & API Development', 16000.00, '2025-10-29', '2025-11-09', 'Third-party service integration, API endpoint creation, and data synchronization setup.', 'Incomplete', 72, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 3, 'Project Initiation & Planning', 8500.00, '2025-10-15', '2025-10-24', 'Project charter creation, stakeholder identification, and initial planning phase completion.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 3, 'Frontend Development Phase 1', 22000.00, '2025-10-23', '2025-11-01', 'User interface implementation, component development, and responsive design integration.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 3, 'User Training & Documentation', 9000.00, '2025-10-31', '2025-11-10', 'User manual creation, training material development, and knowledge transfer sessions.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 3, 'Post-Launch Monitoring', 7500.00, '2025-11-08', '2025-11-20', 'System monitoring setup, performance tracking, and initial bug fixes after launch.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 3, 'Project Closure & Handover', 5000.00, '2025-11-16', '2025-11-26', 'Final deliverables handover, project documentation completion, and stakeholder sign-off.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 4, 'System Architecture Design', 15000.00, '2025-10-20', '2025-10-29', 'Technical architecture planning, database design, and system integration specifications.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 4, 'Frontend Development Phase 1', 22000.00, '2025-11-01', '2025-11-10', 'User interface implementation, component development, and responsive design integration.', 'Incomplete', 84, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 4, 'Performance Optimization', 11000.00, '2025-11-13', '2025-11-25', 'Code optimization, database tuning, caching implementation, and load testing.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 5, 'Project Initiation & Planning', 8500.00, '2025-10-25', '2025-10-31', 'Project charter creation, stakeholder identification, and initial planning phase completion.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 5, 'UI/UX Design & Prototyping', 18000.00, '2025-11-04', '2025-11-13', 'User interface mockups, wireframes, prototypes, and design system creation.', 'Incomplete', 7, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 5, 'Production Deployment', 8000.00, '2025-11-14', '2025-11-21', 'Production environment setup, deployment pipeline configuration, and go-live activities.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 5, 'Post-Launch Monitoring', 7500.00, '2025-11-24', '2025-11-29', 'System monitoring setup, performance tracking, and initial bug fixes after launch.', 'Incomplete', 79, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 6, 'System Architecture Design', 15000.00, '2025-11-04', '2025-11-13', 'Technical architecture planning, database design, and system integration specifications.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 6, 'UI/UX Design & Prototyping', 18000.00, '2025-11-29', '2025-12-08', 'User interface mockups, wireframes, prototypes, and design system creation.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 6, 'Integration & API Development', 16000.00, '2025-12-24', '2025-12-31', 'Third-party service integration, API endpoint creation, and data synchronization setup.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 6, 'User Training & Documentation', 9000.00, '2026-01-18', '2026-01-25', 'User manual creation, training material development, and knowledge transfer sessions.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 6, 'Production Deployment', 8000.00, '2026-02-12', '2026-02-17', 'Production environment setup, deployment pipeline configuration, and go-live activities.', 'Incomplete', 88, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 7, 'Security Implementation', 14000.00, '2025-11-14', '2025-11-21', 'Security audit, vulnerability assessment, encryption implementation, and access control setup.', 'Incomplete', 60, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 7, 'Performance Optimization', 11000.00, '2025-12-21', '2026-01-01', 'Code optimization, database tuning, caching implementation, and load testing.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 7, 'User Training & Documentation', 9000.00, '2026-01-27', '2026-02-02', 'User manual creation, training material development, and knowledge transfer sessions.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 8, 'Project Initiation & Planning', 8500.00, '2025-11-24', '2025-11-30', 'Project charter creation, stakeholder identification, and initial planning phase completion.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(29, 8, 'Backend Development Phase 1', 25000.00, '2025-12-19', '2025-12-29', 'Core API development, database implementation, and authentication system setup.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(30, 8, 'Frontend Development Phase 1', 22000.00, '2026-01-13', '2026-01-22', 'User interface implementation, component development, and responsive design integration.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(31, 8, 'Quality Assurance Testing', 13000.00, '2026-02-07', '2026-02-19', 'Comprehensive testing including unit tests, integration tests, and user acceptance testing.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(32, 8, 'Post-Launch Monitoring', 7500.00, '2026-03-04', '2026-03-10', 'System monitoring setup, performance tracking, and initial bug fixes after launch.', 'Incomplete', 58, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(33, 9, 'Project Initiation & Planning', 8500.00, '2025-12-04', '2025-12-09', 'Project charter creation, stakeholder identification, and initial planning phase completion.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(34, 9, 'Integration & API Development', 16000.00, '2025-12-29', '2026-01-03', 'Third-party service integration, API endpoint creation, and data synchronization setup.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(35, 9, 'User Training & Documentation', 9000.00, '2026-01-23', '2026-01-28', 'User manual creation, training material development, and knowledge transfer sessions.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(36, 9, 'Production Deployment', 8000.00, '2026-02-17', '2026-02-23', 'Production environment setup, deployment pipeline configuration, and go-live activities.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(37, 9, 'Project Closure & Handover', 5000.00, '2026-03-14', '2026-03-24', 'Final deliverables handover, project documentation completion, and stakeholder sign-off.', 'Ongoing', 54, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(38, 10, 'Integration & API Development', 16000.00, '2025-12-14', '2025-12-20', 'Third-party service integration, API endpoint creation, and data synchronization setup.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(39, 10, 'Security Implementation', 14000.00, '2026-01-13', '2026-01-21', 'Security audit, vulnerability assessment, encryption implementation, and access control setup.', 'Incomplete', 93, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(40, 10, 'Quality Assurance Testing', 13000.00, '2026-02-12', '2026-02-18', 'Comprehensive testing including unit tests, integration tests, and user acceptance testing.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(41, 10, 'Production Deployment', 8000.00, '2026-03-14', '2026-03-26', 'Production environment setup, deployment pipeline configuration, and go-live activities.', 'Ongoing', 40, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(42, 11, 'Project Initiation & Planning', 8500.00, '2025-12-24', '2025-12-31', 'Project charter creation, stakeholder identification, and initial planning phase completion.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(43, 11, 'System Architecture Design', 15000.00, '2026-01-18', '2026-01-23', 'Technical architecture planning, database design, and system integration specifications.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(44, 11, 'Frontend Development Phase 1', 22000.00, '2026-02-12', '2026-02-20', 'User interface implementation, component development, and responsive design integration.', 'Incomplete', 93, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(45, 11, 'Production Deployment', 8000.00, '2026-03-09', '2026-03-16', 'Production environment setup, deployment pipeline configuration, and go-live activities.', 'Ongoing', 34, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(46, 12, 'Requirements Gathering', 12000.00, '2026-01-03', '2026-01-09', 'Detailed business requirements analysis, user story creation, and acceptance criteria definition.', 'Incomplete', 31, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(47, 12, 'Frontend Development Phase 1', 22000.00, '2026-01-28', '2026-02-05', 'User interface implementation, component development, and responsive design integration.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(48, 12, 'Post-Launch Monitoring', 7500.00, '2026-02-22', '2026-03-04', 'System monitoring setup, performance tracking, and initial bug fixes after launch.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(49, 12, 'Project Closure & Handover', 5000.00, '2026-03-19', '2026-03-25', 'Final deliverables handover, project documentation completion, and stakeholder sign-off.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(50, 13, 'Integration & API Development', 16000.00, '2026-01-08', '2026-01-20', 'Third-party service integration, API endpoint creation, and data synchronization setup.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(51, 13, 'User Training & Documentation', 9000.00, '2026-02-03', '2026-02-12', 'User manual creation, training material development, and knowledge transfer sessions.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(52, 13, 'Post-Launch Monitoring', 7500.00, '2026-03-01', '2026-03-11', 'System monitoring setup, performance tracking, and initial bug fixes after launch.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(53, 14, 'Project Initiation & Planning', 8500.00, '2026-01-18', '2026-01-25', 'Project charter creation, stakeholder identification, and initial planning phase completion.', 'Incomplete', 1, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(54, 14, 'System Architecture Design', 15000.00, '2026-02-04', '2026-02-09', 'Technical architecture planning, database design, and system integration specifications.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(55, 14, 'Integration & API Development', 16000.00, '2026-02-21', '2026-02-26', 'Third-party service integration, API endpoint creation, and data synchronization setup.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(56, 14, 'Post-Launch Monitoring', 7500.00, '2026-03-10', '2026-03-20', 'System monitoring setup, performance tracking, and initial bug fixes after launch.', 'Ongoing', 54, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(57, 15, 'System Architecture Design', 15000.00, '2026-01-23', '2026-01-30', 'Technical architecture planning, database design, and system integration specifications.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(58, 15, 'Backend Development Phase 1', 25000.00, '2026-02-09', '2026-02-16', 'Core API development, database implementation, and authentication system setup.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(59, 15, 'Production Deployment', 8000.00, '2026-02-26', '2026-03-06', 'Production environment setup, deployment pipeline configuration, and go-live activities.', 'Incomplete', 92, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(60, 15, 'Post-Launch Monitoring', 7500.00, '2026-03-15', '2026-03-27', 'System monitoring setup, performance tracking, and initial bug fixes after launch.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(61, 16, 'Project Initiation & Planning', 8500.00, '2026-02-02', '2026-02-09', 'Project charter creation, stakeholder identification, and initial planning phase completion.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(62, 16, 'Requirements Gathering', 12000.00, '2026-02-22', '2026-03-04', 'Detailed business requirements analysis, user story creation, and acceptance criteria definition.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(63, 16, 'Security Implementation', 14000.00, '2026-03-14', '2026-03-25', 'Security audit, vulnerability assessment, encryption implementation, and access control setup.', 'Ongoing', 45, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(64, 16, 'Post-Launch Monitoring', 7500.00, '2026-04-03', '2026-04-10', 'System monitoring setup, performance tracking, and initial bug fixes after launch.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(65, 16, 'Project Closure & Handover', 5000.00, '2026-04-23', '2026-04-30', 'Final deliverables handover, project documentation completion, and stakeholder sign-off.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(66, 17, 'Integration & API Development', 16000.00, '2026-02-12', '2026-02-17', 'Third-party service integration, API endpoint creation, and data synchronization setup.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(67, 17, 'User Training & Documentation', 9000.00, '2026-03-08', '2026-03-14', 'User manual creation, training material development, and knowledge transfer sessions.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(68, 17, 'Production Deployment', 8000.00, '2026-04-01', '2026-04-09', 'Production environment setup, deployment pipeline configuration, and go-live activities.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(69, 17, 'Project Closure & Handover', 5000.00, '2026-04-25', '2026-05-03', 'Final deliverables handover, project documentation completion, and stakeholder sign-off.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(70, 18, 'Backend Development Phase 1', 25000.00, '2026-02-17', '2026-02-24', 'Core API development, database implementation, and authentication system setup.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(71, 18, 'Integration & API Development', 16000.00, '2026-03-14', '2026-03-24', 'Third-party service integration, API endpoint creation, and data synchronization setup.', 'Ongoing', 54, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(72, 18, 'Performance Optimization', 11000.00, '2026-04-08', '2026-04-18', 'Code optimization, database tuning, caching implementation, and load testing.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(73, 19, 'Integration & API Development', 16000.00, '2026-02-22', '2026-03-01', 'Third-party service integration, API endpoint creation, and data synchronization setup.', 'Incomplete', 89, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(74, 19, 'Performance Optimization', 11000.00, '2026-03-16', '2026-03-25', 'Code optimization, database tuning, caching implementation, and load testing.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(75, 19, 'Production Deployment', 8000.00, '2026-04-07', '2026-04-12', 'Production environment setup, deployment pipeline configuration, and go-live activities.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(76, 20, 'UI/UX Design & Prototyping', 18000.00, '2026-03-04', '2026-03-10', 'User interface mockups, wireframes, prototypes, and design system creation.', 'Complete', 100, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(77, 20, 'Backend Development Phase 1', 25000.00, '2026-03-20', '2026-03-25', 'Core API development, database implementation, and authentication system setup.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(78, 20, 'Security Implementation', 14000.00, '2026-04-05', '2026-04-13', 'Security audit, vulnerability assessment, encryption implementation, and access control setup.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(79, 20, 'Performance Optimization', 11000.00, '2026-04-21', '2026-05-03', 'Code optimization, database tuning, caching implementation, and load testing.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(80, 20, 'Production Deployment', 8000.00, '2026-05-07', '2026-05-13', 'Production environment setup, deployment pipeline configuration, and go-live activities.', 'Incomplete', 0, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `project_tasks` +-- + +CREATE TABLE `project_tasks` ( + `id` bigint(20) UNSIGNED NOT NULL, + `project_id` bigint(20) UNSIGNED NOT NULL, + `milestone_id` bigint(20) UNSIGNED DEFAULT NULL, + `title` varchar(255) NOT NULL, + `priority` enum('High','Medium','Low') NOT NULL DEFAULT 'Medium', + `assigned_to` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`assigned_to`)), + `duration` varchar(255) DEFAULT NULL, + `stage_id` bigint(20) UNSIGNED DEFAULT NULL, + `description` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `project_tasks` +-- + +INSERT INTO `project_tasks` (`id`, `project_id`, `milestone_id`, `title`, `priority`, `assigned_to`, `duration`, `stage_id`, `description`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 1, 'Risk Assessment', 'Medium', '[16,26]', '2025-09-25 - 2025-09-28', 4, 'Identify potential risks and mitigation strategies.', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 1, 2, 'Requirements Documentation', 'Medium', '[16]', '2025-10-05 - 2025-10-08', 4, 'Create comprehensive requirements documentation.', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 1, 3, 'Integration Testing', 'Medium', '[16,26]', '2025-10-15 - 2025-10-18', 4, 'Test all integrations thoroughly.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(4, 1, 4, 'Environment Setup', 'High', '[16]', '2025-10-25 - 2025-10-31', 4, 'Set up production environment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(5, 1, 4, 'Go-live Activities', 'High', '[16,26]', '2025-10-29 - 2025-11-06', 4, 'Execute production deployment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(6, 1, 4, 'Monitoring Setup', 'Medium', '[26]', '2025-11-02 - 2025-11-06', 4, 'Set up system monitoring and alerts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(7, 2, 5, 'Technical Architecture Planning', 'High', '[16,20]', '2025-10-05 - 2025-10-10', 4, 'Design overall system architecture and components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(8, 2, 5, 'API Design', 'Medium', '[16]', '2025-10-09 - 2025-10-13', 4, 'Design RESTful API endpoints and specifications.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(9, 2, 6, 'User Interface Mockups', 'High', '[16,20]', '2025-10-17 - 2025-10-24', 1, 'Create detailed UI mockups and designs.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(10, 2, 6, 'Interactive Prototypes', 'Medium', '[16,20]', '2025-10-21 - 2025-10-29', 1, 'Build clickable prototypes for user testing.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(11, 2, 6, 'Design System Creation', 'Low', '[16,20]', '2025-10-25 - 2025-10-29', 1, 'Establish design system and style guide.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(12, 2, 7, 'Third-party Integration', 'High', '[16]', '2025-10-29 - 2025-11-07', 1, 'Integrate with external services and APIs.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(13, 3, 8, 'Resource Planning', 'Medium', '[22,24]', '2025-10-15 - 2025-10-20', 4, 'Plan human and technical resources needed.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(14, 3, 9, 'User Interface Implementation', 'High', '[24]', '2025-10-23 - 2025-11-01', 4, 'Implement user interfaces based on designs.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(15, 3, 9, 'Responsive Design', 'Medium', '[16,22]', '2025-10-27 - 2025-11-01', 4, 'Ensure responsive design across devices.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(16, 3, 10, 'Training Material Development', 'Medium', '[16,22]', '2025-10-31 - 2025-11-08', 4, 'Develop training materials and guides.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(17, 3, 11, 'System Monitoring', 'High', '[24]', '2025-11-08 - 2025-11-16', 4, 'Monitor system performance and health.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(18, 3, 11, 'Bug Fixes', 'Medium', '[22]', '2025-11-12 - 2025-11-17', 4, 'Address post-launch issues.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(19, 3, 11, 'User Feedback Analysis', 'Low', '[16]', '2025-11-16 - 2025-11-20', 4, 'Analyze user feedback and suggestions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(20, 3, 12, 'Final Deliverables', 'High', '[22]', '2025-11-16 - 2025-11-26', 4, 'Prepare and deliver final project deliverables.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(21, 4, 13, 'Database Design', 'High', '[18,26]', '2025-10-20 - 2025-10-24', 4, 'Design database schema and relationships.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(22, 4, 14, 'User Interface Implementation', 'High', '[18,26]', '2025-11-01 - 2025-11-10', 1, 'Implement user interfaces based on designs.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(23, 4, 14, 'Frontend Routing', 'Medium', '[18,26]', '2025-11-05 - 2025-11-10', 1, 'Implement client-side routing and navigation.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(24, 4, 15, 'Code Optimization', 'Medium', '[26]', '2025-11-13 - 2025-11-20', 4, 'Optimize code for better performance.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(25, 4, 15, 'Caching Implementation', 'Medium', '[18,26]', '2025-11-17 - 2025-11-21', 4, 'Implement caching strategies.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(26, 4, 15, 'Load Testing', 'Medium', '[18,26]', '2025-11-21 - 2025-11-25', 4, 'Conduct performance and load testing.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(27, 5, 16, 'Stakeholder Identification', 'High', '[18,26]', '2025-10-25 - 2025-10-30', 4, 'Identify and analyze all project stakeholders.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(28, 5, 17, 'Design System Creation', 'Low', '[26]', '2025-11-04 - 2025-11-12', 1, 'Establish design system and style guide.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(29, 5, 18, 'Deployment Pipeline', 'High', '[18,26]', '2025-11-14 - 2025-11-18', 4, 'Configure automated deployment pipeline.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(30, 5, 19, 'System Monitoring', 'High', '[18]', '2025-11-24 - 2025-11-27', 1, 'Monitor system performance and health.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(31, 5, 19, 'Performance Tracking', 'Medium', '[18,26]', '2025-11-25 - 2025-11-29', 1, 'Track key performance metrics.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(32, 5, 19, 'Bug Fixes', 'Medium', '[18,26]', '2025-11-27 - 2025-11-29', 1, 'Address post-launch issues.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(33, 6, 20, 'Technical Architecture Planning', 'High', '[26]', '2025-11-04 - 2025-11-13', 4, 'Design overall system architecture and components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(34, 6, 20, 'API Design', 'Medium', '[12]', '2025-11-08 - 2025-11-13', 4, 'Design RESTful API endpoints and specifications.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(35, 6, 21, 'User Interface Mockups', 'High', '[12]', '2025-11-29 - 2025-12-07', 4, 'Create detailed UI mockups and designs.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(36, 6, 21, 'Wireframe Creation', 'Medium', '[12]', '2025-12-02 - 2025-12-08', 4, 'Develop wireframes for all major screens.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(37, 6, 21, 'Design System Creation', 'Low', '[12]', '2025-12-05 - 2025-12-08', 4, 'Establish design system and style guide.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(38, 6, 22, 'Third-party Integration', 'High', '[12,26]', '2025-12-24 - 2025-12-31', 4, 'Integrate with external services and APIs.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(39, 6, 22, 'API Endpoint Creation', 'High', '[12]', '2025-12-26 - 2025-12-31', 4, 'Create additional API endpoints as needed.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(40, 6, 22, 'Data Synchronization', 'Medium', '[12,26]', '2025-12-28 - 2025-12-31', 4, 'Implement data sync between systems.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(41, 6, 23, 'Training Material Development', 'Medium', '[12]', '2026-01-18 - 2026-01-21', 4, 'Develop training materials and guides.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(42, 6, 23, 'Technical Documentation', 'Low', '[12]', '2026-01-21 - 2026-01-25', 4, 'Create technical documentation for maintenance.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(43, 6, 24, 'Environment Setup', 'High', '[26]', '2026-02-12 - 2026-02-16', 1, 'Set up production environment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(44, 6, 24, 'Go-live Activities', 'High', '[12,26]', '2026-02-14 - 2026-02-17', 1, 'Execute production deployment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(45, 7, 25, 'Vulnerability Assessment', 'High', '[18]', '2025-11-14 - 2025-11-21', 1, 'Identify and fix security vulnerabilities.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(46, 7, 25, 'Encryption Implementation', 'Medium', '[18,22]', '2025-11-17 - 2025-11-21', 1, 'Implement data encryption and secure storage.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(47, 7, 26, 'Code Optimization', 'Medium', '[22]', '2025-12-21 - 2025-12-27', 4, 'Optimize code for better performance.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(48, 7, 26, 'Database Tuning', 'High', '[22]', '2025-12-24 - 2025-12-31', 4, 'Optimize database queries and indexes.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(49, 7, 26, 'Load Testing', 'Medium', '[18,22]', '2025-12-28 - 2026-01-01', 4, 'Conduct performance and load testing.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(50, 7, 27, 'Training Material Development', 'Medium', '[22]', '2026-01-27 - 2026-01-30', 4, 'Develop training materials and guides.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(51, 7, 27, 'Knowledge Transfer Sessions', 'Low', '[18]', '2026-01-30 - 2026-02-02', 4, 'Conduct training sessions for users.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(52, 8, 28, 'Resource Planning', 'Medium', '[10,20]', '2025-11-24 - 2025-11-29', 4, 'Plan human and technical resources needed.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(53, 8, 28, 'Risk Assessment', 'Medium', '[20]', '2025-11-27 - 2025-11-30', 4, 'Identify potential risks and mitigation strategies.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(54, 8, 29, 'Core API Development', 'High', '[10]', '2025-12-19 - 2025-12-29', 4, 'Develop core API endpoints and business logic.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(55, 8, 29, 'Data Validation', 'Medium', '[10,20]', '2025-12-24 - 2025-12-29', 4, 'Add input validation and sanitization.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(56, 8, 30, 'Component Development', 'High', '[20]', '2026-01-13 - 2026-01-21', 4, 'Build reusable UI components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(57, 8, 30, 'Responsive Design', 'Medium', '[10,20]', '2026-01-17 - 2026-01-22', 4, 'Ensure responsive design across devices.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(58, 8, 31, 'Bug Fixing', 'Medium', '[10]', '2026-02-07 - 2026-02-17', 4, 'Fix identified bugs and issues.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(59, 8, 32, 'Performance Tracking', 'Medium', '[10,20]', '2026-03-04 - 2026-03-10', 1, 'Track key performance metrics.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(60, 8, 32, 'Bug Fixes', 'Medium', '[20]', '2026-03-06 - 2026-03-10', 1, 'Address post-launch issues.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(61, 8, 32, 'User Feedback Analysis', 'Low', '[20]', '2026-03-08 - 2026-03-10', 1, 'Analyze user feedback and suggestions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(62, 9, 33, 'Resource Planning', 'Medium', '[14]', '2025-12-04 - 2025-12-09', 4, 'Plan human and technical resources needed.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(63, 9, 33, 'Risk Assessment', 'Medium', '[26]', '2025-12-06 - 2025-12-09', 4, 'Identify potential risks and mitigation strategies.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(64, 9, 34, 'Data Synchronization', 'Medium', '[14]', '2025-12-29 - 2026-01-01', 4, 'Implement data sync between systems.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(65, 9, 34, 'Integration Testing', 'Medium', '[26]', '2025-12-31 - 2026-01-03', 4, 'Test all integrations thoroughly.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(66, 9, 35, 'User Manual Creation', 'Medium', '[14]', '2026-01-23 - 2026-01-27', 4, 'Create comprehensive user documentation.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(67, 9, 35, 'Training Material Development', 'Medium', '[14,22]', '2026-01-24 - 2026-01-28', 4, 'Develop training materials and guides.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(68, 9, 35, 'Technical Documentation', 'Low', '[14,26]', '2026-01-26 - 2026-01-28', 4, 'Create technical documentation for maintenance.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(69, 9, 36, 'Deployment Pipeline', 'High', '[14,22]', '2026-02-17 - 2026-02-22', 4, 'Configure automated deployment pipeline.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(70, 9, 37, 'Final Deliverables', 'High', '[26]', '2026-03-14 - 2026-03-22', 2, 'Prepare and deliver final project deliverables.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(71, 9, 37, 'Documentation Completion', 'Medium', '[14,26]', '2026-03-19 - 2026-03-24', 1, 'Complete all project documentation.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(72, 10, 38, 'API Endpoint Creation', 'High', '[18,22]', '2025-12-14 - 2025-12-17', 4, 'Create additional API endpoints as needed.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(73, 10, 38, 'Data Synchronization', 'Medium', '[18,22]', '2025-12-16 - 2025-12-20', 4, 'Implement data sync between systems.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(74, 10, 38, 'Integration Testing', 'Medium', '[18]', '2025-12-18 - 2025-12-20', 4, 'Test all integrations thoroughly.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(75, 10, 39, 'Security Audit', 'High', '[18,22]', '2026-01-13 - 2026-01-21', 1, 'Conduct comprehensive security assessment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(76, 10, 39, 'Encryption Implementation', 'Medium', '[18,22]', '2026-01-15 - 2026-01-21', 1, 'Implement data encryption and secure storage.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(77, 10, 39, 'Access Control Setup', 'Medium', '[18,22]', '2026-01-18 - 2026-01-21', 1, 'Configure role-based access controls.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(78, 10, 40, 'Integration Testing', 'High', '[18,22]', '2026-02-12 - 2026-02-15', 4, 'Test system integration points.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(79, 10, 40, 'User Acceptance Testing', 'High', '[22]', '2026-02-14 - 2026-02-18', 4, 'Conduct UAT with stakeholders.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(80, 10, 40, 'Bug Fixing', 'Medium', '[18,22]', '2026-02-16 - 2026-02-18', 4, 'Fix identified bugs and issues.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(81, 10, 41, 'Deployment Pipeline', 'High', '[18,22]', '2026-03-14 - 2026-03-19', 2, 'Configure automated deployment pipeline.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(82, 10, 41, 'Go-live Activities', 'High', '[18]', '2026-03-18 - 2026-03-21', 1, 'Execute production deployment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(83, 10, 41, 'Monitoring Setup', 'Medium', '[18,22]', '2026-03-22 - 2026-03-26', 1, 'Set up system monitoring and alerts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(84, 11, 42, 'Project Charter Creation', 'High', '[14,18]', '2025-12-24 - 2025-12-31', 4, 'Define project scope, objectives, and success criteria.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(85, 11, 42, 'Resource Planning', 'Medium', '[18]', '2025-12-26 - 2025-12-31', 4, 'Plan human and technical resources needed.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(86, 11, 42, 'Risk Assessment', 'Medium', '[14]', '2025-12-28 - 2025-12-31', 4, 'Identify potential risks and mitigation strategies.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(87, 11, 43, 'Integration Specifications', 'Medium', '[14,18]', '2026-01-18 - 2026-01-22', 4, 'Define third-party integration requirements.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(88, 11, 44, 'Component Development', 'High', '[14]', '2026-02-12 - 2026-02-20', 1, 'Build reusable UI components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(89, 11, 44, 'Responsive Design', 'Medium', '[14,18]', '2026-02-14 - 2026-02-20', 1, 'Ensure responsive design across devices.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(90, 11, 44, 'Frontend Routing', 'Medium', '[14]', '2026-02-17 - 2026-02-20', 1, 'Implement client-side routing and navigation.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(91, 11, 45, 'Environment Setup', 'High', '[14]', '2026-03-09 - 2026-03-16', 4, 'Set up production environment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(92, 11, 45, 'Deployment Pipeline', 'High', '[14]', '2026-03-12 - 2026-03-15', 3, 'Configure automated deployment pipeline.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(93, 12, 46, 'Requirements Validation', 'Medium', '[20,22]', '2026-01-03 - 2026-01-08', 1, 'Validate requirements with stakeholders.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(94, 12, 46, 'Requirements Documentation', 'Medium', '[22]', '2026-01-06 - 2026-01-09', 1, 'Create comprehensive requirements documentation.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(95, 12, 47, 'Component Development', 'High', '[20]', '2026-01-28 - 2026-02-04', 4, 'Build reusable UI components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(96, 12, 47, 'Responsive Design', 'Medium', '[20,22]', '2026-01-30 - 2026-02-04', 4, 'Ensure responsive design across devices.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(97, 12, 47, 'Frontend Routing', 'Medium', '[20,22]', '2026-02-02 - 2026-02-05', 4, 'Implement client-side routing and navigation.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(98, 12, 48, 'Performance Tracking', 'Medium', '[20]', '2026-02-22 - 2026-03-04', 4, 'Track key performance metrics.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(99, 12, 49, 'Final Deliverables', 'High', '[20,22]', '2026-03-19 - 2026-03-23', 1, 'Prepare and deliver final project deliverables.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(100, 12, 49, 'Documentation Completion', 'Medium', '[22]', '2026-03-21 - 2026-03-24', 1, 'Complete all project documentation.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(101, 12, 49, 'Stakeholder Sign-off', 'High', '[20,22]', '2026-03-23 - 2026-03-25', 1, 'Obtain formal project acceptance.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(102, 13, 50, 'API Endpoint Creation', 'High', '[16]', '2026-01-08 - 2026-01-12', 4, 'Create additional API endpoints as needed.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(103, 13, 50, 'Data Synchronization', 'Medium', '[16]', '2026-01-12 - 2026-01-19', 4, 'Implement data sync between systems.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(104, 13, 50, 'Integration Testing', 'Medium', '[14,16]', '2026-01-16 - 2026-01-20', 4, 'Test all integrations thoroughly.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(105, 13, 51, 'Knowledge Transfer Sessions', 'Low', '[14,16]', '2026-02-03 - 2026-02-12', 4, 'Conduct training sessions for users.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(106, 13, 52, 'System Monitoring', 'High', '[14,16]', '2026-03-01 - 2026-03-09', 4, 'Monitor system performance and health.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(107, 13, 52, 'Performance Tracking', 'Medium', '[14]', '2026-03-06 - 2026-03-11', 4, 'Track key performance metrics.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(108, 14, 53, 'Project Charter Creation', 'High', '[26]', '2026-01-18 - 2026-01-22', 1, 'Define project scope, objectives, and success criteria.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(109, 14, 53, 'Risk Assessment', 'Medium', '[16]', '2026-01-21 - 2026-01-25', 1, 'Identify potential risks and mitigation strategies.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(110, 14, 54, 'Technical Architecture Planning', 'High', '[8,16]', '2026-02-04 - 2026-02-07', 4, 'Design overall system architecture and components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(111, 14, 54, 'API Design', 'Medium', '[8]', '2026-02-05 - 2026-02-08', 4, 'Design RESTful API endpoints and specifications.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(112, 14, 54, 'Integration Specifications', 'Medium', '[16]', '2026-02-07 - 2026-02-09', 4, 'Define third-party integration requirements.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(113, 14, 55, 'Third-party Integration', 'High', '[26]', '2026-02-21 - 2026-02-25', 4, 'Integrate with external services and APIs.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(114, 14, 55, 'Data Synchronization', 'Medium', '[8,16]', '2026-02-23 - 2026-02-26', 4, 'Implement data sync between systems.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(115, 14, 56, 'System Monitoring', 'High', '[16,26]', '2026-03-10 - 2026-03-17', 3, 'Monitor system performance and health.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(116, 15, 57, 'Technical Architecture Planning', 'High', '[16,26]', '2026-01-23 - 2026-01-27', 4, 'Design overall system architecture and components.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(117, 15, 57, 'API Design', 'Medium', '[16,26]', '2026-01-26 - 2026-01-29', 4, 'Design RESTful API endpoints and specifications.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(118, 15, 58, 'Core API Development', 'High', '[12]', '2026-02-09 - 2026-02-12', 4, 'Develop core API endpoints and business logic.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(119, 15, 58, 'Database Implementation', 'High', '[12,16]', '2026-02-11 - 2026-02-14', 4, 'Implement database schema and migrations.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(120, 15, 58, 'Authentication System', 'High', '[16,26]', '2026-02-13 - 2026-02-16', 4, 'Implement user authentication and authorization.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(121, 15, 59, 'Go-live Activities', 'High', '[12]', '2026-02-26 - 2026-03-06', 1, 'Execute production deployment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(122, 15, 60, 'System Monitoring', 'High', '[26]', '2026-03-15 - 2026-03-24', 1, 'Monitor system performance and health.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(123, 15, 60, 'Performance Tracking', 'Medium', '[12]', '2026-03-19 - 2026-03-26', 1, 'Track key performance metrics.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(124, 15, 60, 'User Feedback Analysis', 'Low', '[16]', '2026-03-23 - 2026-03-26', 1, 'Analyze user feedback and suggestions.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(125, 16, 61, 'Risk Assessment', 'Medium', '[18]', '2026-02-02 - 2026-02-08', 4, 'Identify potential risks and mitigation strategies.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(126, 16, 62, 'Requirements Validation', 'Medium', '[18]', '2026-02-22 - 2026-03-02', 4, 'Validate requirements with stakeholders.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(127, 16, 62, 'Requirements Documentation', 'Medium', '[10,18]', '2026-02-27 - 2026-03-04', 4, 'Create comprehensive requirements documentation.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(128, 16, 63, 'Security Audit', 'High', '[20]', '2026-03-14 - 2026-03-24', 3, 'Conduct comprehensive security assessment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(129, 16, 63, 'Vulnerability Assessment', 'High', '[10,20]', '2026-03-17 - 2026-03-21', 1, 'Identify and fix security vulnerabilities.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(130, 16, 63, 'Access Control Setup', 'Medium', '[18,20]', '2026-03-21 - 2026-03-25', 1, 'Configure role-based access controls.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(131, 16, 64, 'System Monitoring', 'High', '[20]', '2026-04-03 - 2026-04-08', 1, 'Monitor system performance and health.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(132, 16, 64, 'Performance Tracking', 'Medium', '[20]', '2026-04-05 - 2026-04-09', 1, 'Track key performance metrics.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(133, 16, 64, 'Bug Fixes', 'Medium', '[10]', '2026-04-07 - 2026-04-10', 1, 'Address post-launch issues.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(134, 16, 65, 'Documentation Completion', 'Medium', '[18,20]', '2026-04-23 - 2026-04-28', 1, 'Complete all project documentation.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(135, 16, 65, 'Project Retrospective', 'Low', '[10]', '2026-04-26 - 2026-04-30', 1, 'Conduct project lessons learned session.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(136, 17, 66, 'API Endpoint Creation', 'High', '[8,22]', '2026-02-12 - 2026-02-15', 4, 'Create additional API endpoints as needed.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(137, 17, 66, 'Data Synchronization', 'Medium', '[8,22]', '2026-02-13 - 2026-02-17', 4, 'Implement data sync between systems.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(138, 17, 66, 'Integration Testing', 'Medium', '[8,22]', '2026-02-15 - 2026-02-17', 4, 'Test all integrations thoroughly.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(139, 17, 67, 'Knowledge Transfer Sessions', 'Low', '[8,22]', '2026-03-08 - 2026-03-14', 4, 'Conduct training sessions for users.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(140, 17, 68, 'Environment Setup', 'High', '[8,22]', '2026-04-01 - 2026-04-08', 1, 'Set up production environment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(141, 17, 69, 'Final Deliverables', 'High', '[22]', '2026-04-25 - 2026-05-01', 1, 'Prepare and deliver final project deliverables.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(142, 18, 70, 'Core API Development', 'High', '[14,16]', '2026-02-17 - 2026-02-22', 4, 'Develop core API endpoints and business logic.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(143, 18, 70, 'Authentication System', 'High', '[16]', '2026-02-19 - 2026-02-23', 4, 'Implement user authentication and authorization.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(144, 18, 70, 'Data Validation', 'Medium', '[16]', '2026-02-21 - 2026-02-24', 4, 'Add input validation and sanitization.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(145, 18, 71, 'API Endpoint Creation', 'High', '[16]', '2026-03-14 - 2026-03-17', 3, 'Create additional API endpoints as needed.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(146, 18, 72, 'Database Tuning', 'High', '[14]', '2026-04-08 - 2026-04-17', 1, 'Optimize database queries and indexes.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(147, 19, 73, 'Third-party Integration', 'High', '[10,26]', '2026-02-22 - 2026-02-26', 1, 'Integrate with external services and APIs.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(148, 19, 73, 'Data Synchronization', 'Medium', '[26]', '2026-02-25 - 2026-02-28', 1, 'Implement data sync between systems.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(149, 19, 74, 'Caching Implementation', 'Medium', '[10]', '2026-03-16 - 2026-03-25', 1, 'Implement caching strategies.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(150, 19, 75, 'Go-live Activities', 'High', '[26]', '2026-04-07 - 2026-04-10', 1, 'Execute production deployment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(151, 19, 75, 'Monitoring Setup', 'Medium', '[10]', '2026-04-09 - 2026-04-12', 1, 'Set up system monitoring and alerts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(152, 20, 76, 'User Interface Mockups', 'High', '[22,26]', '2026-03-04 - 2026-03-07', 4, 'Create detailed UI mockups and designs.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(153, 20, 76, 'Interactive Prototypes', 'Medium', '[26]', '2026-03-06 - 2026-03-10', 4, 'Build clickable prototypes for user testing.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(154, 20, 76, 'Design System Creation', 'Low', '[22]', '2026-03-08 - 2026-03-10', 4, 'Establish design system and style guide.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(155, 20, 77, 'Core API Development', 'High', '[22,26]', '2026-03-20 - 2026-03-23', 1, 'Develop core API endpoints and business logic.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(156, 20, 77, 'Database Implementation', 'High', '[22,26]', '2026-03-22 - 2026-03-25', 1, 'Implement database schema and migrations.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(157, 20, 78, 'Security Audit', 'High', '[22]', '2026-04-05 - 2026-04-10', 1, 'Conduct comprehensive security assessment.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(158, 20, 78, 'Encryption Implementation', 'Medium', '[22,26]', '2026-04-07 - 2026-04-10', 1, 'Implement data encryption and secure storage.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(159, 20, 78, 'Access Control Setup', 'Medium', '[22]', '2026-04-10 - 2026-04-13', 1, 'Configure role-based access controls.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(160, 20, 79, 'Code Optimization', 'Medium', '[22]', '2026-04-21 - 2026-04-24', 1, 'Optimize code for better performance.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(161, 20, 79, 'Database Tuning', 'High', '[22,26]', '2026-04-25 - 2026-05-03', 1, 'Optimize database queries and indexes.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(162, 20, 79, 'Caching Implementation', 'Medium', '[26]', '2026-04-29 - 2026-05-03', 1, 'Implement caching strategies.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(163, 20, 80, 'Deployment Pipeline', 'High', '[22]', '2026-05-07 - 2026-05-11', 1, 'Configure automated deployment pipeline.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(164, 20, 80, 'Monitoring Setup', 'Medium', '[26]', '2026-05-10 - 2026-05-13', 1, 'Set up system monitoring and alerts.', 2, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `project_users` +-- + +CREATE TABLE `project_users` ( + `id` bigint(20) UNSIGNED NOT NULL, + `project_id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `project_users` +-- + +INSERT INTO `project_users` (`id`, `project_id`, `user_id`) VALUES +(1, 1, 16), +(2, 1, 26), +(3, 2, 16), +(4, 2, 20), +(5, 3, 16), +(6, 3, 22), +(7, 3, 24), +(8, 4, 18), +(9, 4, 26), +(10, 5, 18), +(11, 5, 26), +(12, 6, 12), +(13, 6, 26), +(14, 7, 18), +(15, 7, 22), +(16, 8, 10), +(17, 8, 20), +(18, 9, 14), +(19, 9, 22), +(20, 9, 26), +(21, 10, 18), +(22, 10, 22), +(23, 11, 14), +(24, 11, 18), +(25, 12, 20), +(26, 12, 22), +(27, 13, 14), +(28, 13, 16), +(29, 14, 8), +(30, 14, 16), +(31, 14, 26), +(32, 15, 12), +(33, 15, 16), +(34, 15, 26), +(35, 16, 10), +(36, 16, 18), +(37, 16, 20), +(38, 17, 8), +(39, 17, 22), +(40, 18, 14), +(41, 18, 16), +(42, 18, 26), +(43, 19, 10), +(44, 19, 26), +(45, 20, 22), +(46, 20, 26); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `promotions` +-- + +CREATE TABLE `promotions` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `previous_branch_id` bigint(20) UNSIGNED DEFAULT NULL, + `previous_department_id` bigint(20) UNSIGNED DEFAULT NULL, + `previous_designation_id` bigint(20) UNSIGNED DEFAULT NULL, + `current_branch_id` bigint(20) UNSIGNED DEFAULT NULL, + `current_department_id` bigint(20) UNSIGNED DEFAULT NULL, + `current_designation_id` bigint(20) UNSIGNED DEFAULT NULL, + `effective_date` varchar(255) DEFAULT NULL, + `reason` varchar(255) DEFAULT NULL, + `document` varchar(255) DEFAULT NULL, + `status` enum('pending','approved','rejected') NOT NULL DEFAULT 'pending', + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `promotions` +-- + +INSERT INTO `promotions` (`id`, `employee_id`, `previous_branch_id`, `previous_department_id`, `previous_designation_id`, `current_branch_id`, `current_department_id`, `current_designation_id`, `effective_date`, `reason`, `document`, `status`, `approved_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 8, 1, 1, 1, 1, 2, 9, '2025-09-20 00:00:00', 'Outstanding performance excellence and exceptional leadership skills demonstrated consistently over the past evaluation period.', NULL, 'approved', 19, 2, 2, '2025-09-23 13:25:48', '2025-09-23 16:44:48'), +(2, 10, 1, 2, 8, 1, 3, 13, '2025-09-25 00:00:00', 'Promotion to senior position based on exceptional project delivery and effective team management capabilities.', 'promotion2.png', 'pending', NULL, 2, 2, '2025-09-28 09:56:48', '2025-09-28 10:33:48'), +(3, 12, 1, 3, 13, 2, 4, 19, '2025-09-30 00:00:00', 'Career advancement opportunity with increased responsibilities and strategic leadership role in department.', NULL, 'approved', 24, 2, 2, '2025-10-03 17:42:48', '2025-10-03 13:31:48'), +(4, 14, 2, 4, 17, 2, 5, 22, '2025-10-05 00:00:00', 'Recognition of technical expertise and significant contribution to company growth and innovation initiatives.', 'promotion4.png', 'approved', 39, 2, 2, '2025-10-08 09:26:48', '2025-10-08 09:25:48'), +(5, 16, 2, 5, 20, 2, 6, 27, '2025-10-10 00:00:00', 'Exceptional customer service performance and ability to handle complex client relationships effectively.', NULL, 'pending', NULL, 2, 2, '2025-10-13 17:55:48', '2025-10-13 09:33:48'), +(6, 18, 2, 6, 28, 3, 7, 31, '2025-10-15 00:00:00', 'Demonstrated strong analytical skills and process improvement initiatives that enhanced operational efficiency.', 'promotion1.png', 'approved', 26, 2, 2, '2025-10-18 18:14:48', '2025-10-18 12:00:48'), +(7, 20, 3, 7, 29, 3, 8, 35, '2025-10-20 00:00:00', 'Leadership potential recognized through successful mentoring of junior staff and cross-functional collaboration.', NULL, 'approved', 47, 2, 2, '2025-10-23 13:46:48', '2025-10-23 10:02:48'), +(8, 22, 3, 8, 36, 3, 9, 38, '2025-10-25 00:00:00', 'Outstanding sales performance exceeding targets and building strong customer relationships consistently.', NULL, 'approved', 18, 2, 2, '2025-10-28 11:44:48', '2025-10-28 16:21:48'), +(9, 24, 3, 9, 41, 4, 10, 46, '2025-10-30 00:00:00', 'Innovation and creativity in problem-solving that resulted in cost savings and improved productivity.', NULL, 'approved', 12, 2, 2, '2025-11-02 08:59:48', '2025-11-02 15:45:48'), +(10, 26, 4, 10, 45, 4, 11, 51, '2025-11-04 00:00:00', 'Excellent communication skills and ability to manage stakeholder relationships at all organizational levels.', 'promotion1.png', 'approved', 31, 2, 2, '2025-11-07 15:24:48', '2025-11-07 08:32:48'), +(11, 8, 4, 11, 49, 4, 12, 54, '2025-11-09 00:00:00', 'Consistent professional development and acquisition of new skills relevant to advanced responsibilities.', 'promotion2.png', 'rejected', NULL, 2, 2, '2025-11-12 15:13:48', '2025-11-12 10:39:48'), +(12, 10, 4, 12, 56, 5, 13, 58, '2025-11-14 00:00:00', 'Strong project management capabilities and successful delivery of critical business initiatives on time.', 'promotion2.png', 'approved', 45, 2, 2, '2025-11-17 17:45:48', '2025-11-17 15:03:48'), +(13, 12, 5, 13, 57, 5, 14, 64, '2025-11-19 00:00:00', 'Exceptional quality assurance performance and commitment to maintaining highest standards of work.', NULL, 'pending', NULL, 2, 2, '2025-11-22 17:06:48', '2025-11-22 10:13:48'), +(14, 14, 5, 14, 61, 5, 15, 65, '2025-11-24 00:00:00', 'Demonstrated ability to adapt to changing business requirements and lead organizational transformation.', NULL, 'approved', 32, 2, 2, '2025-11-27 10:24:48', '2025-11-27 14:33:48'), +(15, 16, 5, 15, 68, 6, 16, 72, '2025-11-29 00:00:00', 'Outstanding training and development contribution through knowledge sharing and skill transfer programs.', NULL, 'approved', 30, 2, 2, '2025-12-02 10:33:48', '2025-12-02 14:55:48'), +(16, 18, 6, 16, 71, 6, 17, 76, '2025-12-04 00:00:00', 'Strategic thinking and planning capabilities that contributed to long-term business success.', NULL, 'approved', 57, 2, 2, '2025-12-07 14:26:48', '2025-12-07 14:28:48'), +(17, 20, 6, 17, 74, 6, 18, 77, '2025-12-09 00:00:00', 'Excellent financial management skills and cost optimization initiatives that improved departmental performance.', NULL, 'approved', 57, 2, 2, '2025-12-12 08:50:48', '2025-12-12 15:03:48'), +(18, 22, 6, 18, 77, 7, 19, 84, '2025-12-14 00:00:00', 'Strong compliance and governance adherence ensuring regulatory requirements are consistently met.', NULL, 'pending', NULL, 2, 2, '2025-12-17 14:10:48', '2025-12-17 13:02:48'), +(19, 24, 7, 19, 84, 7, 20, 87, '2025-12-19 00:00:00', 'Exceptional crisis management skills demonstrated during challenging situations and emergency responses.', 'promotion2.png', 'approved', 24, 2, 2, '2025-12-22 13:36:48', '2025-12-22 09:16:48'), +(20, 26, 7, 20, 87, 7, 21, 93, '2025-12-24 00:00:00', 'Outstanding vendor management and negotiation skills that resulted in favorable business agreements.', NULL, 'approved', 30, 2, 2, '2025-12-27 18:05:48', '2025-12-27 13:33:48'), +(21, 8, 7, 21, 92, 8, 22, 95, '2025-12-29 00:00:00', 'Demonstrated commitment to diversity and inclusion initiatives creating positive workplace culture.', NULL, 'pending', NULL, 2, 2, '2026-01-01 11:16:48', '2026-01-01 16:54:48'), +(22, 10, 8, 22, 95, 8, 23, 99, '2026-01-03 00:00:00', 'Excellent research and development contribution leading to breakthrough innovations and patents.', 'promotion2.png', 'approved', 52, 2, 2, '2026-01-06 11:33:48', '2026-01-06 11:31:48'), +(23, 12, 8, 23, 99, 8, 24, 106, '2026-01-08 00:00:00', 'Strong digital transformation leadership driving technology adoption and modernization initiatives.', 'promotion2.png', 'pending', NULL, 2, 2, '2026-01-11 14:08:48', '2026-01-11 14:09:48'), +(24, 14, 8, 24, 107, 9, 25, 112, '2026-01-13 00:00:00', 'Outstanding environmental sustainability efforts promoting green practices and corporate social responsibility.', 'promotion4.png', 'approved', 15, 2, 2, '2026-01-16 13:46:48', '2026-01-16 12:44:48'), +(25, 16, 9, 25, 111, 9, 26, 114, '2026-01-18 00:00:00', 'Exceptional data analytics skills providing insights that drove informed business decision-making processes.', 'promotion1.png', 'pending', NULL, 2, 2, '2026-01-21 15:26:48', '2026-01-21 12:23:48'), +(26, 18, 9, 26, 114, 9, 27, 120, '2026-01-23 00:00:00', 'Strong change management leadership successfully guiding organizational adaptation and employee engagement.', 'promotion2.png', 'pending', NULL, 2, 2, '2026-01-26 08:45:48', '2026-01-26 13:56:48'), +(27, 20, 9, 27, 120, 10, 28, 125, '2026-01-28 00:00:00', 'Outstanding international business development expanding company presence in global markets.', NULL, 'rejected', NULL, 2, 2, '2026-01-31 08:31:48', '2026-01-31 12:40:48'), +(28, 22, 10, 28, 125, 10, 29, 131, '2026-02-02 00:00:00', 'Excellent supply chain optimization resulting in improved efficiency and reduced operational costs.', 'promotion4.png', 'pending', NULL, 2, 2, '2026-02-05 17:59:48', '2026-02-05 11:35:48'), +(29, 24, 10, 29, 129, 10, 30, 136, '2026-02-07 00:00:00', 'Demonstrated expertise in emerging technologies and successful implementation of innovative solutions.', NULL, 'rejected', NULL, 2, 2, '2026-02-10 16:23:48', '2026-02-10 10:25:48'), +(30, 26, 10, 30, 135, 1, 1, 2, '2026-02-12 00:00:00', 'Outstanding community engagement representing company values and building positive public relations.', 'promotion4.png', 'approved', 32, 2, 2, '2026-02-15 13:10:48', '2026-02-15 11:21:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `purchase_invoices` +-- + +CREATE TABLE `purchase_invoices` ( + `id` bigint(20) UNSIGNED NOT NULL, + `invoice_number` varchar(255) NOT NULL, + `invoice_date` date NOT NULL, + `due_date` date NOT NULL, + `vendor_id` bigint(20) UNSIGNED NOT NULL, + `warehouse_id` bigint(20) UNSIGNED DEFAULT NULL, + `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `paid_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `debit_note_applied` decimal(15,2) NOT NULL DEFAULT 0.00, + `balance_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `status` enum('draft','posted','partial','paid','overdue') NOT NULL DEFAULT 'draft', + `is_received` tinyint(1) NOT NULL DEFAULT 0, + `payment_terms` varchar(255) DEFAULT NULL, + `notes` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `purchase_invoices` +-- + +INSERT INTO `purchase_invoices` (`id`, `invoice_number`, `invoice_date`, `due_date`, `vendor_id`, `warehouse_id`, `subtotal`, `tax_amount`, `discount_amount`, `total_amount`, `paid_amount`, `debit_note_applied`, `balance_amount`, `status`, `is_received`, `payment_terms`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'PI-2025-09-001', '2025-09-25', '2025-10-25', 28, 1, 1152.36, 138.28, 0.00, 1290.64, 1290.64, 0.00, 0.00, 'paid', 0, 'Net 30', 'Initial stock purchase - electronics & peripherals', 2, 2, '2025-09-25 00:17:54', '2026-03-14 00:17:54'), +(2, 'PI-2025-10-002', '2025-10-10', '2025-11-09', 29, 2, 2270.40, 272.45, 0.00, 2542.85, 2542.85, 0.00, 0.00, 'paid', 0, 'Net 30', 'Office supplies and equipment', 2, 2, '2025-10-10 00:17:54', '2026-03-14 00:17:54'), +(3, 'PI-2025-10-003', '2025-10-25', '2025-11-24', 30, 3, 5142.72, 617.13, 0.00, 5759.85, 5759.85, 0.00, 0.00, 'paid', 0, 'Net 30', 'Bulk order - Q3 inventory replenishment', 2, 2, '2025-10-25 00:17:54', '2026-03-14 00:17:54'), +(4, 'PI-2025-11-004', '2025-11-14', '2025-12-14', 28, 4, 2347.80, 281.74, 0.00, 2629.54, 0.00, 0.00, 2629.54, 'posted', 0, 'Net 30', 'Technical equipment for new project', 2, 2, '2025-11-14 00:17:54', '2026-03-14 00:17:54'), +(5, 'PI-2025-12-005', '2025-12-04', '2026-01-03', 31, 5, 5652.16, 678.26, 0.00, 6330.42, 0.00, 0.00, 6330.42, 'posted', 0, 'Net 30', 'Raw materials purchase', 2, 2, '2025-12-04 00:17:54', '2026-03-14 00:17:54'), +(6, 'PI-2025-12-006', '2025-12-24', '2026-01-23', 29, 6, 3903.52, 468.42, 0.00, 4371.94, 2185.97, 0.00, 2185.97, 'partial', 0, 'Net 30', 'Partial payment on software licenses', 2, 2, '2025-12-24 00:17:54', '2026-03-14 00:17:54'), +(7, 'PI-2026-01-007', '2026-01-18', '2026-02-17', 32, 7, 887.68, 106.52, 0.00, 994.20, 0.00, 0.00, 994.20, 'posted', 0, 'Net 30', 'Warehouse restocking order', 2, 2, '2026-01-18 00:17:54', '2026-03-14 00:17:54'), +(8, 'PI-2026-02-008', '2026-02-07', '2026-03-09', 30, 8, 12286.80, 1474.42, 0.00, 13761.22, 6880.61, 0.00, 6880.61, 'partial', 0, 'Net 30', 'Monthly supply order - partial delivery', 2, 2, '2026-02-07 00:17:54', '2026-03-14 00:17:54'), +(9, 'PI-2026-02-009', '2026-02-27', '2026-03-29', 31, 9, 7863.60, 943.63, 0.00, 8807.23, 0.00, 0.00, 8807.23, 'draft', 0, 'Net 30', 'Pending approval - new vendor items', 2, 2, '2026-02-27 00:17:54', '2026-03-14 00:17:54'), +(10, 'PI-2026-03-010', '2026-03-09', '2026-04-08', 28, 10, 7579.90, 909.59, 0.00, 8489.49, 0.00, 0.00, 8489.49, 'draft', 0, 'Net 30', 'Urgent restock request', 2, 2, '2026-03-09 00:17:54', '2026-03-14 00:17:54'), +(11, 'P-TEST-DEAD', '2026-01-26', '2026-02-02', 126, 17, 10000.00, 0.00, 0.00, 10000.00, 0.00, 0.00, 10000.00, 'posted', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(12, 'P-TEST-KAUGJ-0', '2026-04-07', '2026-05-08', 126, 17, 2720.80, 0.00, 0.00, 2720.80, 0.00, 0.00, 2720.80, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(13, 'P-TEST-EQKWK-1', '2026-04-25', '2026-05-08', 125, 16, 2398.20, 0.00, 0.00, 2398.20, 0.00, 0.00, 2398.20, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(14, 'P-TEST-GD2CN-2', '2026-04-27', '2026-05-08', 129, 17, 2204.16, 0.00, 0.00, 2204.16, 0.00, 0.00, 2204.16, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(15, 'P-TEST-WYIVO-3', '2026-04-10', '2026-05-08', 126, 17, 413.28, 0.00, 0.00, 413.28, 0.00, 0.00, 413.28, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(16, 'P-TEST-MZYLI-4', '2026-04-12', '2026-05-08', 126, 17, 1434.84, 0.00, 0.00, 1434.84, 0.00, 0.00, 1434.84, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(17, 'P-TEST-VHCOV-5', '2026-04-17', '2026-05-08', 127, 16, 1136.52, 0.00, 0.00, 1136.52, 0.00, 0.00, 1136.52, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(18, 'P-TEST-R1EHZ-6', '2026-04-03', '2026-05-08', 125, 16, 1145.60, 0.00, 0.00, 1145.60, 0.00, 0.00, 1145.60, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(19, 'P-TEST-O3HYW-7', '2026-04-08', '2026-05-08', 129, 16, 600.48, 0.00, 0.00, 600.48, 0.00, 0.00, 600.48, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(20, 'P-TEST-VLHHX-8', '2026-04-23', '2026-05-08', 125, 17, 245.41, 0.00, 0.00, 245.41, 0.00, 0.00, 245.41, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(21, 'P-TEST-HDPWS-9', '2026-04-25', '2026-05-08', 128, 17, 998.76, 0.00, 0.00, 998.76, 0.00, 0.00, 998.76, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(22, 'P-TEST-IMLRF-10', '2026-04-12', '2026-05-08', 129, 16, 700.56, 0.00, 0.00, 700.56, 0.00, 0.00, 700.56, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(23, 'P-TEST-CMLON-11', '2026-04-23', '2026-05-08', 125, 17, 1582.40, 0.00, 0.00, 1582.40, 0.00, 0.00, 1582.40, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(24, 'P-TEST-9YF47-12', '2026-04-28', '2026-05-08', 129, 17, 326.10, 0.00, 0.00, 326.10, 0.00, 0.00, 326.10, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(25, 'P-TEST-T4EIL-13', '2026-04-25', '2026-05-08', 128, 16, 1859.76, 0.00, 0.00, 1859.76, 0.00, 0.00, 1859.76, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(26, 'P-TEST-LTFLC-14', '2026-04-26', '2026-05-08', 126, 17, 1621.91, 0.00, 0.00, 1621.91, 0.00, 0.00, 1621.91, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(27, 'P-TEST-PTO0I-15', '2026-04-23', '2026-05-08', 127, 16, 685.20, 0.00, 0.00, 685.20, 0.00, 0.00, 685.20, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(28, 'P-TEST-IWR6V-16', '2026-04-26', '2026-05-08', 125, 16, 2175.80, 0.00, 0.00, 2175.80, 0.00, 0.00, 2175.80, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(29, 'P-TEST-48HEE-17', '2026-04-02', '2026-05-08', 126, 16, 2650.52, 0.00, 0.00, 2650.52, 0.00, 0.00, 2650.52, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(30, 'P-TEST-QL0WL-18', '2026-04-15', '2026-05-08', 129, 17, 669.30, 0.00, 0.00, 669.30, 0.00, 0.00, 669.30, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(31, 'P-TEST-C07UK-19', '2026-04-26', '2026-05-08', 125, 17, 1869.64, 0.00, 0.00, 1869.64, 0.00, 0.00, 1869.64, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(32, 'P-TEST-MD0P9-20', '2026-04-18', '2026-05-08', 128, 17, 2008.80, 0.00, 0.00, 2008.80, 0.00, 0.00, 2008.80, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(33, 'P-TEST-R80MC-21', '2026-04-16', '2026-05-08', 128, 16, 3085.68, 0.00, 0.00, 3085.68, 0.00, 0.00, 3085.68, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(34, 'P-TEST-WFG0T-22', '2026-04-14', '2026-05-08', 128, 16, 2007.90, 0.00, 0.00, 2007.90, 0.00, 0.00, 2007.90, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(35, 'P-TEST-OBNMN-23', '2026-04-17', '2026-05-08', 125, 17, 1383.22, 0.00, 0.00, 1383.22, 0.00, 0.00, 1383.22, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(36, 'P-TEST-1Q8IV-24', '2026-04-21', '2026-05-08', 126, 16, 870.09, 0.00, 0.00, 870.09, 0.00, 0.00, 870.09, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(37, 'P-TEST-X5MDB-25', '2026-04-20', '2026-05-08', 125, 16, 1515.36, 0.00, 0.00, 1515.36, 0.00, 0.00, 1515.36, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(38, 'P-TEST-062VQ-26', '2026-04-25', '2026-05-08', 126, 16, 2034.26, 0.00, 0.00, 2034.26, 0.00, 0.00, 2034.26, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(39, 'P-TEST-LCQAB-27', '2026-04-08', '2026-05-08', 126, 16, 1317.44, 0.00, 0.00, 1317.44, 0.00, 0.00, 1317.44, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(40, 'P-TEST-M20G0-28', '2026-04-26', '2026-05-08', 125, 17, 1846.80, 0.00, 0.00, 1846.80, 0.00, 0.00, 1846.80, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(41, 'P-TEST-TFLTM-29', '2026-04-08', '2026-05-08', 126, 16, 2369.65, 0.00, 0.00, 2369.65, 0.00, 0.00, 2369.65, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(42, 'P-TEST-JZBZE-30', '2026-04-04', '2026-05-08', 128, 17, 2201.76, 0.00, 0.00, 2201.76, 0.00, 0.00, 2201.76, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(43, 'P-TEST-XYSCK-31', '2026-04-01', '2026-05-08', 125, 17, 2426.94, 0.00, 0.00, 2426.94, 0.00, 0.00, 2426.94, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(44, 'P-TEST-DJLMZ-32', '2026-04-21', '2026-05-08', 126, 17, 577.29, 0.00, 0.00, 577.29, 0.00, 0.00, 577.29, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(45, 'P-TEST-0KPSS-33', '2026-04-15', '2026-05-08', 126, 16, 3441.72, 0.00, 0.00, 3441.72, 0.00, 0.00, 3441.72, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(46, 'P-TEST-P4UOE-34', '2026-04-03', '2026-05-08', 128, 17, 206.91, 0.00, 0.00, 206.91, 0.00, 0.00, 206.91, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(47, 'P-TEST-OFRVZ-35', '2026-04-22', '2026-05-08', 129, 16, 1198.80, 0.00, 0.00, 1198.80, 0.00, 0.00, 1198.80, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(48, 'P-TEST-LZXZ7-36', '2026-04-20', '2026-05-08', 129, 16, 446.20, 0.00, 0.00, 446.20, 0.00, 0.00, 446.20, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(49, 'P-TEST-COLGK-37', '2026-04-03', '2026-05-08', 128, 17, 357.39, 0.00, 0.00, 357.39, 0.00, 0.00, 357.39, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(50, 'P-TEST-CPFZZ-38', '2026-04-07', '2026-05-08', 128, 17, 1044.62, 0.00, 0.00, 1044.62, 0.00, 0.00, 1044.62, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(51, 'P-TEST-ZIN6L-39', '2026-04-22', '2026-05-08', 129, 16, 2610.96, 0.00, 0.00, 2610.96, 0.00, 0.00, 2610.96, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(52, 'P-TEST-ZTNVA-40', '2026-04-04', '2026-05-08', 127, 16, 770.85, 0.00, 0.00, 770.85, 0.00, 0.00, 770.85, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(53, 'P-TEST-0IHAA-41', '2026-04-10', '2026-05-08', 128, 17, 1401.99, 0.00, 0.00, 1401.99, 0.00, 0.00, 1401.99, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(54, 'P-TEST-DFOEK-42', '2026-04-28', '2026-05-08', 126, 16, 1918.66, 0.00, 0.00, 1918.66, 0.00, 0.00, 1918.66, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(55, 'P-TEST-WANLC-43', '2026-04-07', '2026-05-08', 128, 17, 810.00, 0.00, 0.00, 810.00, 0.00, 0.00, 810.00, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(56, 'P-TEST-MGZTW-44', '2026-04-02', '2026-05-08', 127, 16, 2818.80, 0.00, 0.00, 2818.80, 0.00, 0.00, 2818.80, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(57, 'P-TEST-F5PBT-45', '2026-04-30', '2026-05-08', 126, 16, 3271.80, 0.00, 0.00, 3271.80, 0.00, 0.00, 3271.80, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(58, 'P-TEST-JAPOQ-46', '2026-04-01', '2026-05-08', 129, 17, 1517.08, 0.00, 0.00, 1517.08, 0.00, 0.00, 1517.08, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(59, 'P-TEST-VHFMB-47', '2026-04-23', '2026-05-08', 129, 16, 1369.62, 0.00, 0.00, 1369.62, 0.00, 0.00, 1369.62, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(60, 'P-TEST-F13F1-48', '2026-04-24', '2026-05-08', 125, 16, 2769.35, 0.00, 0.00, 2769.35, 0.00, 0.00, 2769.35, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:40', '2026-05-01 21:49:40'), +(61, 'P-TEST-8A8SK-49', '2026-04-10', '2026-05-08', 127, 17, 2916.00, 0.00, 0.00, 2916.00, 0.00, 0.00, 2916.00, 'draft', 0, NULL, NULL, 2, 2, '2026-05-01 21:49:40', '2026-05-01 21:49:40'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `purchase_invoice_items` +-- + +CREATE TABLE `purchase_invoice_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `invoice_id` bigint(20) UNSIGNED NOT NULL, + `product_id` bigint(20) UNSIGNED NOT NULL, + `quantity` int(11) NOT NULL, + `unit_price` decimal(15,2) NOT NULL, + `discount_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,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 `purchase_invoice_items` +-- + +INSERT INTO `purchase_invoice_items` (`id`, `invoice_id`, `product_id`, `quantity`, `unit_price`, `discount_percentage`, `discount_amount`, `tax_percentage`, `tax_amount`, `total_amount`, `created_at`, `updated_at`) VALUES +(1, 1, 1, 24, 12.00, 2.00, 5.76, 12.00, 33.87, 316.11, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(2, 1, 16, 33, 18.00, 2.00, 11.88, 12.00, 69.85, 651.97, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(3, 1, 18, 16, 18.00, 0.00, 0.00, 12.00, 34.56, 322.56, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(4, 2, 22, 15, 4.00, 2.00, 1.20, 12.00, 7.06, 65.86, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(5, 2, 25, 19, 120.00, 3.00, 68.40, 12.00, 265.39, 2476.99, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(6, 3, 6, 36, 120.00, 0.00, 0.00, 12.00, 518.40, 4838.40, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(7, 3, 7, 17, 2.00, 5.00, 1.70, 12.00, 3.88, 36.18, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(8, 3, 16, 30, 18.00, 5.00, 27.00, 12.00, 61.56, 574.56, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(9, 3, 24, 13, 22.00, 3.00, 8.58, 12.00, 33.29, 310.71, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(10, 4, 2, 36, 45.00, 1.00, 16.20, 12.00, 192.46, 1796.26, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(11, 4, 9, 31, 25.00, 4.00, 31.00, 12.00, 89.28, 833.28, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(12, 5, 13, 20, 250.00, 2.00, 100.00, 12.00, 588.00, 5488.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(13, 5, 19, 47, 12.00, 0.00, 0.00, 12.00, 67.68, 631.68, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(14, 5, 22, 49, 4.00, 4.00, 7.84, 12.00, 22.58, 210.74, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(15, 6, 22, 26, 4.00, 2.00, 2.08, 12.00, 12.23, 114.15, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(16, 6, 25, 32, 120.00, 1.00, 38.40, 12.00, 456.19, 4257.79, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(17, 7, 9, 16, 25.00, 3.00, 12.00, 12.00, 46.56, 434.56, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(18, 7, 18, 6, 18.00, 0.00, 0.00, 12.00, 12.96, 120.96, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(19, 7, 19, 34, 12.00, 4.00, 16.32, 12.00, 47.00, 438.68, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(20, 8, 13, 48, 250.00, 3.00, 360.00, 12.00, 1396.80, 13036.80, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(21, 8, 24, 30, 22.00, 2.00, 13.20, 12.00, 77.62, 724.42, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(22, 9, 8, 14, 450.00, 2.00, 126.00, 12.00, 740.88, 6914.88, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(23, 9, 10, 24, 70.00, 3.00, 50.40, 12.00, 195.55, 1825.15, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(24, 9, 22, 15, 4.00, 0.00, 0.00, 12.00, 7.20, 67.20, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(25, 10, 13, 30, 250.00, 2.00, 150.00, 12.00, 882.00, 8232.00, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(26, 10, 24, 11, 22.00, 5.00, 12.10, 12.00, 27.59, 257.49, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(27, 11, 88, 200, 50.00, 0.00, 0.00, 0.00, 0.00, 10000.00, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(28, 12, 84, 95, 28.64, 0.00, 0.00, 0.00, 0.00, 2720.80, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(29, 13, 85, 84, 28.55, 0.00, 0.00, 0.00, 0.00, 2398.20, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(30, 14, 86, 64, 34.44, 0.00, 0.00, 0.00, 0.00, 2204.16, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(31, 15, 86, 12, 34.44, 0.00, 0.00, 0.00, 0.00, 413.28, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(32, 16, 80, 66, 21.74, 0.00, 0.00, 0.00, 0.00, 1434.84, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(33, 17, 86, 33, 34.44, 0.00, 0.00, 0.00, 0.00, 1136.52, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(34, 18, 84, 40, 28.64, 0.00, 0.00, 0.00, 0.00, 1145.60, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(35, 19, 83, 24, 25.02, 0.00, 0.00, 0.00, 0.00, 600.48, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(36, 20, 87, 11, 22.31, 0.00, 0.00, 0.00, 0.00, 245.41, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(37, 21, 86, 29, 34.44, 0.00, 0.00, 0.00, 0.00, 998.76, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(38, 22, 83, 28, 25.02, 0.00, 0.00, 0.00, 0.00, 700.56, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(39, 23, 81, 40, 39.56, 0.00, 0.00, 0.00, 0.00, 1582.40, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(40, 24, 80, 15, 21.74, 0.00, 0.00, 0.00, 0.00, 326.10, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(41, 25, 86, 54, 34.44, 0.00, 0.00, 0.00, 0.00, 1859.76, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(42, 26, 78, 59, 27.49, 0.00, 0.00, 0.00, 0.00, 1621.91, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(43, 27, 85, 24, 28.55, 0.00, 0.00, 0.00, 0.00, 685.20, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(44, 28, 81, 55, 39.56, 0.00, 0.00, 0.00, 0.00, 2175.80, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(45, 29, 81, 67, 39.56, 0.00, 0.00, 0.00, 0.00, 2650.52, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(46, 30, 87, 30, 22.31, 0.00, 0.00, 0.00, 0.00, 669.30, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(47, 31, 80, 86, 21.74, 0.00, 0.00, 0.00, 0.00, 1869.64, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(48, 32, 79, 62, 32.40, 0.00, 0.00, 0.00, 0.00, 2008.80, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(49, 33, 81, 78, 39.56, 0.00, 0.00, 0.00, 0.00, 3085.68, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(50, 34, 87, 90, 22.31, 0.00, 0.00, 0.00, 0.00, 2007.90, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(51, 35, 87, 62, 22.31, 0.00, 0.00, 0.00, 0.00, 1383.22, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(52, 36, 87, 39, 22.31, 0.00, 0.00, 0.00, 0.00, 870.09, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(53, 37, 86, 44, 34.44, 0.00, 0.00, 0.00, 0.00, 1515.36, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(54, 38, 78, 74, 27.49, 0.00, 0.00, 0.00, 0.00, 2034.26, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(55, 39, 84, 46, 28.64, 0.00, 0.00, 0.00, 0.00, 1317.44, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(56, 40, 79, 57, 32.40, 0.00, 0.00, 0.00, 0.00, 1846.80, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(57, 41, 85, 83, 28.55, 0.00, 0.00, 0.00, 0.00, 2369.65, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(58, 42, 83, 88, 25.02, 0.00, 0.00, 0.00, 0.00, 2201.76, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(59, 43, 83, 97, 25.02, 0.00, 0.00, 0.00, 0.00, 2426.94, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(60, 44, 78, 21, 27.49, 0.00, 0.00, 0.00, 0.00, 577.29, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(61, 45, 81, 87, 39.56, 0.00, 0.00, 0.00, 0.00, 3441.72, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(62, 46, 82, 11, 18.81, 0.00, 0.00, 0.00, 0.00, 206.91, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(63, 47, 79, 37, 32.40, 0.00, 0.00, 0.00, 0.00, 1198.80, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(64, 48, 87, 20, 22.31, 0.00, 0.00, 0.00, 0.00, 446.20, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(65, 49, 82, 19, 18.81, 0.00, 0.00, 0.00, 0.00, 357.39, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(66, 50, 78, 38, 27.49, 0.00, 0.00, 0.00, 0.00, 1044.62, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(67, 51, 81, 66, 39.56, 0.00, 0.00, 0.00, 0.00, 2610.96, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(68, 52, 85, 27, 28.55, 0.00, 0.00, 0.00, 0.00, 770.85, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(69, 53, 78, 51, 27.49, 0.00, 0.00, 0.00, 0.00, 1401.99, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(70, 54, 87, 86, 22.31, 0.00, 0.00, 0.00, 0.00, 1918.66, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(71, 55, 79, 25, 32.40, 0.00, 0.00, 0.00, 0.00, 810.00, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(72, 56, 79, 87, 32.40, 0.00, 0.00, 0.00, 0.00, 2818.80, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(73, 57, 86, 95, 34.44, 0.00, 0.00, 0.00, 0.00, 3271.80, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(74, 58, 87, 68, 22.31, 0.00, 0.00, 0.00, 0.00, 1517.08, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(75, 59, 80, 63, 21.74, 0.00, 0.00, 0.00, 0.00, 1369.62, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(76, 60, 85, 97, 28.55, 0.00, 0.00, 0.00, 0.00, 2769.35, '2026-05-01 21:49:40', '2026-05-01 21:49:40'), +(77, 61, 79, 90, 32.40, 0.00, 0.00, 0.00, 0.00, 2916.00, '2026-05-01 21:49:40', '2026-05-01 21:49:40'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `purchase_invoice_item_taxes` +-- + +CREATE TABLE `purchase_invoice_item_taxes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` bigint(20) UNSIGNED NOT NULL, + `tax_name` varchar(255) NOT NULL, + `tax_rate` decimal(5,2) 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 `purchase_returns` +-- + +CREATE TABLE `purchase_returns` ( + `id` bigint(20) UNSIGNED NOT NULL, + `return_number` varchar(255) NOT NULL, + `return_date` date NOT NULL, + `vendor_id` bigint(20) UNSIGNED NOT NULL, + `warehouse_id` bigint(20) UNSIGNED DEFAULT NULL, + `original_invoice_id` bigint(20) UNSIGNED NOT NULL, + `reason` enum('defective','wrong_item','damaged','excess_quantity','other') NOT NULL DEFAULT 'defective', + `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `status` enum('draft','approved','completed','cancelled') NOT NULL DEFAULT 'draft', + `notes` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED 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 `purchase_return_items` +-- + +CREATE TABLE `purchase_return_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `return_id` bigint(20) UNSIGNED NOT NULL, + `product_id` bigint(20) UNSIGNED NOT NULL, + `original_invoice_item_id` bigint(20) UNSIGNED DEFAULT NULL, + `original_quantity` int(11) NOT NULL, + `return_quantity` int(11) NOT NULL, + `unit_price` decimal(15,2) NOT NULL, + `discount_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `reason` varchar(255) 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 `purchase_return_item_taxes` +-- + +CREATE TABLE `purchase_return_item_taxes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` bigint(20) UNSIGNED NOT NULL, + `tax_name` varchar(255) NOT NULL, + `tax_rate` decimal(5,2) 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 `recurrings` +-- + +CREATE TABLE `recurrings` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `resignations` +-- + +CREATE TABLE `resignations` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED DEFAULT NULL, + `last_working_date` varchar(255) NOT NULL, + `reason` varchar(255) NOT NULL, + `description` varchar(255) DEFAULT NULL, + `status` enum('pending','accepted','rejected') NOT NULL DEFAULT 'pending', + `document` varchar(255) DEFAULT NULL, + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `resignations` +-- + +INSERT INTO `resignations` (`id`, `employee_id`, `last_working_date`, `reason`, `description`, `status`, `document`, `approved_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 8, '2025-10-20 00:00:00', 'Career advancement opportunity with better growth prospects and professional development in new organization.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'pending', 'resignation4.png', NULL, 2, 2, '2025-09-22 11:01:49', '2025-09-22 12:29:49'), +(2, 10, '2025-10-25 00:00:00', 'Personal relocation due to family circumstances requiring immediate move to different geographical location.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'pending', NULL, NULL, 2, 2, '2025-09-27 09:28:49', '2025-09-27 15:35:49'), +(3, 12, '2025-10-30 00:00:00', 'Higher compensation package offered by competitor company with enhanced benefits and work-life balance.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', NULL, 22, 2, 2, '2025-10-02 16:27:49', '2025-10-02 09:50:49'), +(4, 14, '2025-11-04 00:00:00', 'Pursuing advanced education and professional certification requiring full-time commitment and dedicated focus.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'pending', 'resignation1.png', NULL, 2, 2, '2025-10-07 09:28:49', '2025-10-07 10:34:49'), +(5, 16, '2025-11-09 00:00:00', 'Health concerns necessitating reduced work stress and flexible schedule not available in current position.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', 'resignation1.png', 25, 2, 2, '2025-10-12 14:44:49', '2025-10-12 15:33:49'), +(6, 18, '2025-11-14 00:00:00', 'Entrepreneurial venture launch requiring complete dedication and focus on building new business from ground up.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', 'resignation1.png', 32, 2, 2, '2025-10-17 09:49:49', '2025-10-17 10:11:49'), +(7, 20, '2025-11-19 00:00:00', 'Family responsibilities including elderly care and childcare obligations demanding more flexible working arrangements.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', NULL, 55, 2, 2, '2025-10-22 14:28:49', '2025-10-22 16:04:49'), +(8, 22, '2025-11-24 00:00:00', 'Career change to different industry sector aligning with long-term professional goals and personal interests.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', NULL, 37, 2, 2, '2025-10-27 16:19:49', '2025-10-27 10:57:49'), +(9, 24, '2025-11-29 00:00:00', 'Work-life balance improvement seeking position with reduced travel requirements and better schedule flexibility.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', NULL, 16, 2, 2, '2025-11-01 14:02:49', '2025-11-01 12:47:49'), +(10, 26, '2025-12-04 00:00:00', 'Professional growth stagnation prompting search for challenging role with advancement opportunities and skill development.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', 'resignation2.png', 28, 2, 2, '2025-11-06 12:40:49', '2025-11-06 13:46:49'), +(11, 8, '2025-12-09 00:00:00', 'Spouse job transfer requiring family relocation to different city making current position geographically unfeasible.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', NULL, 38, 2, 2, '2025-11-11 14:53:49', '2025-11-11 08:55:49'), +(12, 10, '2025-12-14 00:00:00', 'Better work environment and company culture fit found in new organization with improved team dynamics.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', 'resignation1.png', 11, 2, 2, '2025-11-16 18:15:49', '2025-11-16 12:45:49'), +(13, 12, '2025-12-19 00:00:00', 'Compensation disparity addressed through new position offering competitive salary and comprehensive benefits package.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'pending', NULL, NULL, 2, 2, '2025-11-21 11:16:49', '2025-11-21 10:02:49'), +(14, 14, '2025-12-24 00:00:00', 'Remote work opportunity providing flexibility and eliminating daily commute while maintaining professional growth trajectory.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'pending', 'resignation2.png', NULL, 2, 2, '2025-11-26 08:54:49', '2025-11-26 10:17:49'), +(15, 16, '2025-12-29 00:00:00', 'Industry specialization focus requiring transition to company with specific domain expertise and technical resources.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'rejected', NULL, NULL, 2, 2, '2025-12-01 14:42:49', '2025-12-01 17:55:49'), +(16, 18, '2026-01-03 00:00:00', 'Management style differences creating workplace tension and hindering professional satisfaction and career progression.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', 'resignation1.png', 36, 2, 2, '2025-12-06 09:15:49', '2025-12-06 15:25:49'), +(17, 20, '2026-01-08 00:00:00', 'Educational pursuit including graduate degree program requiring flexible schedule and reduced work commitment.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', 'resignation3.png', 23, 2, 2, '2025-12-11 17:38:49', '2025-12-11 09:49:49'), +(18, 22, '2026-01-13 00:00:00', 'Startup opportunity offering equity participation and innovative work environment with cutting-edge technology projects.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', 'resignation2.png', 43, 2, 2, '2025-12-16 09:25:49', '2025-12-16 10:14:49'), +(19, 24, '2026-01-18 00:00:00', 'Retirement planning transition involving gradual reduction of work responsibilities and preparation for future lifestyle.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'pending', NULL, NULL, 2, 2, '2025-12-21 09:21:49', '2025-12-21 11:39:49'), +(20, 26, '2026-01-23 00:00:00', 'International assignment opportunity providing global exposure and cross-cultural experience in multinational organization.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', NULL, 32, 2, 2, '2025-12-26 09:52:49', '2025-12-26 10:41:49'), +(21, 8, '2026-01-28 00:00:00', 'Creative industry transition pursuing passion project with artistic fulfillment and personal satisfaction priorities.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', 'resignation4.png', 48, 2, 2, '2025-12-31 11:58:49', '2025-12-31 08:45:49'), +(22, 10, '2026-02-02 00:00:00', 'Consulting career launch leveraging accumulated expertise and industry knowledge for independent professional practice.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'pending', NULL, NULL, 2, 2, '2026-01-05 11:10:49', '2026-01-05 13:19:49'), +(23, 12, '2026-02-07 00:00:00', 'Non-profit sector transition aligning with personal values and social impact goals for meaningful contribution.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'rejected', 'resignation2.png', NULL, 2, 2, '2026-01-10 13:59:49', '2026-01-10 09:48:49'), +(24, 14, '2026-02-12 00:00:00', 'Technology industry shift seeking exposure to emerging technologies and digital transformation initiatives.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'rejected', 'resignation3.png', NULL, 2, 2, '2026-01-15 13:04:49', '2026-01-15 10:34:49'), +(25, 16, '2026-02-17 00:00:00', 'Leadership role opportunity offering increased responsibility and strategic decision-making authority in growing company.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', NULL, 14, 2, 2, '2026-01-20 08:54:49', '2026-01-20 16:04:49'), +(26, 18, '2026-02-22 00:00:00', 'Work schedule conflict resolution through position offering better alignment with personal commitments and lifestyle.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'pending', NULL, NULL, 2, 2, '2026-01-25 15:18:49', '2026-01-25 14:37:49'), +(27, 20, '2026-02-27 00:00:00', 'Professional network expansion through role in larger organization with broader industry connections and opportunities.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', NULL, 11, 2, 2, '2026-01-30 11:08:49', '2026-01-30 09:54:49'), +(28, 22, '2026-03-04 00:00:00', 'Skill diversification pursuit requiring exposure to different business functions and cross-functional collaboration experience.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', 'resignation1.png', 44, 2, 2, '2026-02-04 14:52:49', '2026-02-04 14:43:49'), +(29, 24, '2026-03-09 00:00:00', 'Company culture mismatch resolution through transition to organization with better alignment of values and practices.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'pending', NULL, NULL, 2, 2, '2026-02-09 13:29:49', '2026-02-09 16:26:49'), +(30, 26, '2026-03-14 00:00:00', 'Career pivot opportunity leveraging transferable skills in new industry sector with growth potential and innovation.', 'Additional details regarding resignation process and transition planning for smooth handover.', 'accepted', NULL, 54, 2, 2, '2026-02-14 14:41:49', '2026-02-14 16:51:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `revenues` +-- + +CREATE TABLE `revenues` ( + `id` bigint(20) UNSIGNED NOT NULL, + `revenue_number` varchar(255) NOT NULL, + `revenue_date` date NOT NULL, + `category_id` bigint(20) UNSIGNED NOT NULL, + `bank_account_id` bigint(20) UNSIGNED NOT NULL, + `chart_of_account_id` bigint(20) UNSIGNED DEFAULT NULL, + `reference_number` varchar(100) DEFAULT NULL, + `amount` decimal(15,2) NOT NULL, + `status` enum('draft','approved','posted') NOT NULL DEFAULT 'draft', + `description` text DEFAULT NULL, + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `revenues` +-- + +INSERT INTO `revenues` (`id`, `revenue_number`, `revenue_date`, `category_id`, `bank_account_id`, `chart_of_account_id`, `reference_number`, `amount`, `status`, `description`, `approved_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'REV-2026-03-001', '2026-02-12', 3, 2, 30, 'REF-001', 5000.00, 'approved', 'Product sales revenue', 2, 2, 2, '2026-03-14 00:17:48', '2026-04-09 09:55:46'), +(2, 'REV-2026-03-002', '2026-02-17', 4, 2, 34, 'REF-002', 3500.00, 'draft', 'Service revenue', NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'REV-2026-03-003', '2026-02-22', 5, 1, 31, 'REF-003', 7500.00, 'draft', 'Consulting revenue', NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'REV-2026-03-004', '2026-02-27', 2, 2, 35, 'REF-004', 2000.00, 'draft', 'License revenue', NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'REV-2026-03-005', '2026-03-04', 2, 3, 33, 'REF-005', 4200.00, 'draft', 'Subscription revenue', NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `revenue_categories` +-- + +CREATE TABLE `revenue_categories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `category_name` varchar(255) NOT NULL, + `category_code` varchar(255) NOT NULL, + `description` varchar(255) DEFAULT NULL, + `is_active` varchar(255) NOT NULL, + `gl_account_id` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `revenue_categories` +-- + +INSERT INTO `revenue_categories` (`id`, `category_name`, `category_code`, `description`, `is_active`, `gl_account_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Product Sales', 'REV-001', 'Revenue from product sales', '1', 27, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Service Income', 'REV-002', 'Revenue from services provided', '1', 28, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'Consulting Fees', 'REV-003', 'Revenue from consulting services', '1', 29, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Subscription Revenue', 'REV-004', 'Revenue from subscription plans', '1', 30, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'Interest Income', 'REV-005', 'Revenue from interest earnings', '1', 31, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `review_cycles` +-- + +CREATE TABLE `review_cycles` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `start_date` date NOT NULL, + `end_date` date NOT NULL, + `status` enum('draft','active','closed') NOT NULL DEFAULT 'draft', + `created_by` 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 `roles` +-- + +CREATE TABLE `roles` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `label` varchar(255) NOT NULL, + `guard_name` varchar(255) NOT NULL, + `editable` tinyint(1) NOT NULL DEFAULT 1, + `created_by` bigint(20) 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`, `name`, `label`, `guard_name`, `editable`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'superadmin', 'Super Admin', 'web', 0, 1, '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(2, 'company', 'Company', 'web', 0, 1, '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(3, 'staff', 'Staff', 'web', 0, 2, '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(4, 'client', 'Client', 'web', 0, 2, '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(5, 'vendor', 'Vendor', 'web', 0, 2, '2026-03-14 00:17:34', '2026-03-14 00:17:34'), +(6, 'staff', 'Staff', 'web', 0, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(7, 'client', 'Client', 'web', 0, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(8, 'vendor', 'Vendor', 'web', 0, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(9, 'staff', 'Staff', 'web', 0, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(10, 'client', 'Client', 'web', 0, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(11, 'vendor', 'Vendor', 'web', 0, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(12, 'staff', 'Staff', 'web', 0, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(13, 'client', 'Client', 'web', 0, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(14, 'vendor', 'Vendor', 'web', 0, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(15, 'staff', 'Staff', 'web', 0, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(16, 'client', 'Client', 'web', 0, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(17, 'vendor', 'Vendor', 'web', 0, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(18, 'staff', 'Staff', 'web', 0, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(19, 'client', 'Client', 'web', 0, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(20, 'vendor', 'Vendor', 'web', 0, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(21, 'hr', 'Hr', 'web', 0, 2, '2026-03-14 06:02:03', '2026-03-14 06:02:03'), +(22, 'staff', 'Staff', 'web', 0, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(23, 'client', 'Client', 'web', 0, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(24, 'vendor', 'Vendor', 'web', 0, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(25, 'hr', 'Hr', 'web', 0, 58, '2026-03-25 08:46:09', '2026-03-25 08:46:09'), +(26, 'staff', 'Staff', 'web', 0, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(27, 'client', 'Client', 'web', 0, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(28, 'vendor', 'Vendor', 'web', 0, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `role_has_permissions` +-- + +CREATE TABLE `role_has_permissions` ( + `permission_id` bigint(20) UNSIGNED NOT NULL, + `role_id` bigint(20) UNSIGNED NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `role_has_permissions` +-- + +INSERT INTO `role_has_permissions` (`permission_id`, `role_id`) VALUES +(1, 1), +(1, 2), +(1, 3), +(1, 4), +(1, 5), +(1, 6), +(1, 7), +(1, 8), +(1, 9), +(1, 10), +(1, 11), +(1, 12), +(1, 13), +(1, 14), +(1, 15), +(1, 16), +(1, 17), +(1, 18), +(1, 19), +(1, 20), +(1, 22), +(1, 23), +(1, 24), +(1, 26), +(1, 27), +(1, 28), +(2, 1), +(2, 2), +(3, 1), +(3, 2), +(4, 1), +(4, 2), +(5, 1), +(5, 2), +(6, 1), +(6, 2), +(7, 1), +(7, 2), +(8, 1), +(8, 2), +(9, 1), +(9, 2), +(10, 1), +(10, 2), +(11, 1), +(11, 2), +(12, 2), +(13, 2), +(14, 2), +(15, 2), +(16, 2), +(17, 2), +(18, 2), +(19, 2), +(20, 2), +(21, 2), +(22, 2), +(23, 2), +(24, 2), +(25, 2), +(26, 2), +(27, 2), +(28, 1), +(28, 2), +(29, 1), +(29, 2), +(30, 1), +(30, 2), +(31, 1), +(31, 2), +(32, 2), +(33, 2), +(34, 1), +(34, 2), +(35, 1), +(35, 2), +(36, 1), +(36, 2), +(37, 1), +(37, 2), +(38, 1), +(39, 1), +(40, 1), +(41, 1), +(42, 1), +(43, 1), +(44, 1), +(45, 1), +(46, 1), +(46, 2), +(47, 1), +(47, 2), +(48, 1), +(48, 2), +(49, 1), +(50, 1), +(51, 1), +(51, 2), +(52, 1), +(53, 1), +(54, 1), +(54, 2), +(55, 1), +(55, 2), +(56, 1), +(57, 1), +(58, 1), +(58, 2), +(58, 3), +(58, 4), +(58, 5), +(58, 6), +(58, 7), +(58, 8), +(58, 9), +(58, 10), +(58, 11), +(58, 12), +(58, 13), +(58, 14), +(58, 15), +(58, 16), +(58, 17), +(58, 18), +(58, 19), +(58, 20), +(58, 22), +(58, 23), +(58, 24), +(58, 26), +(58, 27), +(58, 28), +(60, 1), +(60, 2), +(60, 3), +(60, 4), +(60, 5), +(60, 6), +(60, 7), +(60, 8), +(60, 9), +(60, 10), +(60, 11), +(60, 12), +(60, 13), +(60, 14), +(60, 15), +(60, 16), +(60, 17), +(60, 18), +(60, 19), +(60, 20), +(60, 22), +(60, 23), +(60, 24), +(60, 26), +(60, 27), +(60, 28), +(61, 1), +(61, 2), +(61, 3), +(61, 4), +(61, 5), +(61, 6), +(61, 7), +(61, 8), +(61, 9), +(61, 10), +(61, 11), +(61, 12), +(61, 13), +(61, 14), +(61, 15), +(61, 16), +(61, 17), +(61, 18), +(61, 19), +(61, 20), +(61, 22), +(61, 23), +(61, 24), +(61, 26), +(61, 27), +(61, 28), +(62, 1), +(62, 2), +(62, 3), +(62, 4), +(62, 5), +(62, 6), +(62, 7), +(62, 8), +(62, 9), +(62, 10), +(62, 11), +(62, 12), +(62, 13), +(62, 14), +(62, 15), +(62, 16), +(62, 17), +(62, 18), +(62, 19), +(62, 20), +(62, 22), +(62, 23), +(62, 24), +(62, 26), +(62, 27), +(62, 28), +(63, 1), +(63, 2), +(63, 3), +(63, 4), +(63, 5), +(63, 6), +(63, 7), +(63, 8), +(63, 9), +(63, 10), +(63, 11), +(63, 12), +(63, 13), +(63, 14), +(63, 15), +(63, 16), +(63, 17), +(63, 18), +(63, 19), +(63, 20), +(63, 22), +(63, 23), +(63, 24), +(63, 26), +(63, 27), +(63, 28), +(64, 1), +(64, 2), +(64, 3), +(64, 4), +(64, 5), +(64, 6), +(64, 7), +(64, 8), +(64, 9), +(64, 10), +(64, 11), +(64, 12), +(64, 13), +(64, 14), +(64, 15), +(64, 16), +(64, 17), +(64, 18), +(64, 19), +(64, 20), +(64, 22), +(64, 23), +(64, 24), +(64, 26), +(64, 27), +(64, 28), +(65, 1), +(66, 1), +(66, 2), +(66, 3), +(66, 4), +(66, 5), +(66, 6), +(66, 7), +(66, 8), +(66, 9), +(66, 10), +(66, 11), +(66, 12), +(66, 13), +(66, 14), +(66, 15), +(66, 16), +(66, 17), +(66, 18), +(66, 19), +(66, 20), +(66, 22), +(66, 23), +(66, 24), +(66, 26), +(66, 27), +(66, 28), +(67, 1), +(67, 2), +(67, 3), +(67, 4), +(67, 5), +(67, 6), +(67, 7), +(67, 8), +(67, 9), +(67, 10), +(67, 11), +(67, 12), +(67, 13), +(67, 14), +(67, 15), +(67, 16), +(67, 17), +(67, 18), +(67, 19), +(67, 20), +(67, 22), +(67, 23), +(67, 24), +(67, 26), +(67, 27), +(67, 28), +(68, 1), +(68, 2), +(68, 3), +(68, 4), +(68, 5), +(68, 6), +(68, 7), +(68, 8), +(68, 9), +(68, 10), +(68, 11), +(68, 12), +(68, 13), +(68, 14), +(68, 15), +(68, 16), +(68, 17), +(68, 18), +(68, 19), +(68, 20), +(68, 22), +(68, 23), +(68, 24), +(68, 26), +(68, 27), +(68, 28), +(69, 1), +(69, 2), +(69, 3), +(69, 4), +(69, 5), +(69, 6), +(69, 7), +(69, 8), +(69, 9), +(69, 10), +(69, 11), +(69, 12), +(69, 13), +(69, 14), +(69, 15), +(69, 16), +(69, 17), +(69, 18), +(69, 19), +(69, 20), +(69, 22), +(69, 23), +(69, 24), +(69, 26), +(69, 27), +(69, 28), +(70, 1), +(71, 1), +(72, 1), +(73, 1), +(74, 1), +(74, 2), +(75, 1), +(76, 2), +(77, 1), +(77, 2), +(78, 1), +(78, 2), +(79, 1), +(79, 2), +(80, 1), +(81, 1), +(81, 2), +(82, 1), +(82, 2), +(83, 1), +(84, 1), +(85, 1), +(86, 1), +(87, 1), +(88, 1), +(88, 2), +(89, 1), +(89, 2), +(90, 1), +(90, 2), +(91, 1), +(91, 2), +(92, 1), +(92, 2), +(93, 1), +(93, 2), +(94, 1), +(94, 2), +(95, 1), +(96, 1), +(97, 1), +(98, 1), +(99, 1), +(100, 1), +(101, 1), +(102, 1), +(102, 2), +(102, 3), +(102, 4), +(102, 5), +(102, 6), +(102, 7), +(102, 8), +(102, 9), +(102, 10), +(102, 11), +(102, 12), +(102, 13), +(102, 14), +(102, 15), +(102, 16), +(102, 17), +(102, 18), +(102, 19), +(102, 20), +(102, 22), +(102, 23), +(102, 24), +(102, 26), +(102, 27), +(102, 28), +(103, 1), +(103, 2), +(103, 3), +(103, 4), +(103, 5), +(103, 6), +(103, 7), +(103, 8), +(103, 9), +(103, 10), +(103, 11), +(103, 12), +(103, 13), +(103, 14), +(103, 15), +(103, 16), +(103, 17), +(103, 18), +(103, 19), +(103, 20), +(103, 22), +(103, 23), +(103, 24), +(103, 26), +(103, 27), +(103, 28), +(104, 1), +(104, 2), +(104, 3), +(104, 4), +(104, 5), +(104, 6), +(104, 7), +(104, 8), +(104, 9), +(104, 10), +(104, 11), +(104, 12), +(104, 13), +(104, 14), +(104, 15), +(104, 16), +(104, 17), +(104, 18), +(104, 19), +(104, 20), +(104, 22), +(104, 23), +(104, 24), +(104, 26), +(104, 27), +(104, 28), +(105, 1), +(106, 1), +(107, 1), +(108, 1), +(109, 1), +(109, 2), +(110, 2), +(110, 3), +(110, 4), +(110, 5), +(110, 6), +(110, 7), +(110, 8), +(110, 9), +(110, 10), +(110, 11), +(110, 12), +(110, 13), +(110, 14), +(110, 15), +(110, 16), +(110, 17), +(110, 18), +(110, 19), +(110, 20), +(110, 22), +(110, 23), +(110, 24), +(110, 26), +(110, 27), +(110, 28), +(111, 2), +(111, 3), +(111, 4), +(111, 5), +(111, 6), +(111, 7), +(111, 8), +(111, 9), +(111, 10), +(111, 11), +(111, 12), +(111, 13), +(111, 14), +(111, 15), +(111, 16), +(111, 17), +(111, 18), +(111, 19), +(111, 20), +(111, 22), +(111, 23), +(111, 24), +(111, 26), +(111, 27), +(111, 28), +(112, 2), +(112, 3), +(112, 4), +(112, 5), +(112, 6), +(112, 7), +(112, 8), +(112, 9), +(112, 10), +(112, 11), +(112, 12), +(112, 13), +(112, 14), +(112, 15), +(112, 16), +(112, 17), +(112, 18), +(112, 19), +(112, 20), +(112, 22), +(112, 23), +(112, 24), +(112, 26), +(112, 27), +(112, 28), +(113, 2), +(114, 2), +(115, 2), +(115, 3), +(115, 4), +(115, 5), +(115, 6), +(115, 7), +(115, 8), +(115, 9), +(115, 10), +(115, 11), +(115, 12), +(115, 13), +(115, 14), +(115, 15), +(115, 16), +(115, 17), +(115, 18), +(115, 19), +(115, 20), +(115, 22), +(115, 23), +(115, 24), +(115, 26), +(115, 27), +(115, 28), +(116, 2), +(116, 3), +(116, 4), +(116, 5), +(116, 6), +(116, 7), +(116, 8), +(116, 9), +(116, 10), +(116, 11), +(116, 12), +(116, 13), +(116, 14), +(116, 15), +(116, 16), +(116, 17), +(116, 18), +(116, 19), +(116, 20), +(116, 22), +(116, 23), +(116, 24), +(116, 26), +(116, 27), +(116, 28), +(117, 2), +(117, 5), +(117, 8), +(117, 11), +(117, 14), +(117, 17), +(117, 20), +(117, 24), +(117, 28), +(118, 2), +(119, 2), +(119, 5), +(119, 8), +(119, 11), +(119, 14), +(119, 17), +(119, 20), +(119, 24), +(119, 28), +(120, 2), +(120, 5), +(120, 8), +(120, 11), +(120, 14), +(120, 17), +(120, 20), +(120, 24), +(120, 28), +(121, 2), +(122, 2), +(123, 2), +(124, 2), +(125, 2), +(125, 5), +(125, 8), +(125, 11), +(125, 14), +(125, 17), +(125, 20), +(125, 24), +(125, 28), +(126, 2), +(126, 5), +(126, 8), +(126, 11), +(126, 14), +(126, 17), +(126, 20), +(126, 24), +(126, 28), +(127, 2), +(128, 2), +(128, 5), +(128, 8), +(128, 11), +(128, 14), +(128, 17), +(128, 20), +(128, 24), +(128, 28), +(129, 2), +(129, 5), +(129, 8), +(129, 11), +(129, 14), +(129, 17), +(129, 20), +(129, 24), +(129, 28), +(130, 2), +(131, 2), +(132, 2), +(133, 2), +(134, 2), +(134, 4), +(134, 7), +(134, 10), +(134, 13), +(134, 16), +(134, 19), +(134, 23), +(134, 27), +(135, 2), +(136, 2), +(136, 4), +(136, 7), +(136, 10), +(136, 13), +(136, 16), +(136, 19), +(136, 23), +(136, 27), +(137, 2), +(137, 4), +(137, 7), +(137, 10), +(137, 13), +(137, 16), +(137, 19), +(137, 23), +(137, 27), +(138, 2), +(139, 2), +(140, 2), +(141, 2), +(142, 2), +(142, 4), +(142, 7), +(142, 10), +(142, 13), +(142, 16), +(142, 19), +(142, 23), +(142, 27), +(143, 2), +(143, 4), +(143, 7), +(143, 10), +(143, 13), +(143, 16), +(143, 19), +(143, 23), +(143, 27), +(144, 2), +(145, 2), +(145, 4), +(145, 7), +(145, 10), +(145, 13), +(145, 16), +(145, 19), +(145, 23), +(145, 27), +(146, 2), +(146, 4), +(146, 7), +(146, 10), +(146, 13), +(146, 16), +(146, 19), +(146, 23), +(146, 27), +(147, 2), +(148, 2), +(149, 2), +(150, 2), +(151, 2), +(151, 4), +(151, 7), +(151, 10), +(151, 13), +(151, 16), +(151, 19), +(151, 23), +(151, 27), +(152, 2), +(153, 2), +(153, 4), +(153, 7), +(153, 10), +(153, 13), +(153, 16), +(153, 19), +(153, 23), +(153, 27), +(154, 2), +(154, 4), +(154, 7), +(154, 10), +(154, 13), +(154, 16), +(154, 19), +(154, 23), +(154, 27), +(155, 2), +(156, 2), +(157, 2), +(158, 2), +(158, 4), +(158, 7), +(158, 10), +(158, 13), +(158, 16), +(158, 19), +(158, 23), +(158, 27), +(159, 2), +(160, 2), +(160, 4), +(160, 7), +(160, 10), +(160, 13), +(160, 16), +(160, 19), +(160, 23), +(160, 27), +(161, 2), +(162, 2), +(162, 4), +(162, 7), +(162, 10), +(162, 13), +(162, 16), +(162, 19), +(162, 23), +(162, 27), +(163, 2), +(163, 3), +(163, 4), +(164, 2), +(164, 3), +(164, 4), +(165, 2), +(166, 2), +(166, 3), +(166, 4), +(167, 2), +(167, 3), +(167, 4), +(168, 2), +(169, 2), +(170, 2), +(171, 2), +(172, 2), +(173, 2), +(174, 2), +(175, 2), +(176, 2), +(177, 2), +(178, 2), +(179, 2), +(180, 2), +(181, 2), +(182, 2), +(182, 3), +(182, 4), +(183, 2), +(184, 2), +(184, 3), +(184, 4), +(185, 2), +(186, 2), +(187, 2), +(188, 2), +(189, 2), +(190, 2), +(191, 2), +(192, 2), +(193, 2), +(194, 2), +(194, 3), +(194, 4), +(195, 2), +(196, 2), +(196, 3), +(196, 4), +(197, 2), +(198, 2), +(199, 2), +(200, 2), +(201, 2), +(202, 2), +(203, 2), +(204, 2), +(205, 2), +(206, 2), +(207, 2), +(208, 2), +(209, 2), +(210, 2), +(211, 2), +(212, 2), +(213, 2), +(214, 2), +(215, 2), +(216, 2), +(216, 4), +(216, 5), +(216, 23), +(216, 24), +(217, 2), +(217, 4), +(217, 5), +(217, 23), +(217, 24), +(218, 2), +(219, 2), +(220, 2), +(221, 2), +(222, 2), +(223, 2), +(224, 2), +(225, 2), +(226, 2), +(227, 2), +(228, 2), +(229, 2), +(230, 2), +(231, 2), +(232, 2), +(233, 2), +(234, 2), +(235, 2), +(236, 2), +(237, 2), +(238, 2), +(239, 2), +(240, 2), +(241, 2), +(242, 2), +(243, 2), +(244, 2), +(245, 2), +(246, 2), +(247, 2), +(248, 2), +(249, 2), +(250, 2), +(251, 2), +(252, 2), +(253, 2), +(253, 5), +(253, 24), +(254, 2), +(255, 2), +(255, 5), +(255, 24), +(256, 2), +(256, 5), +(256, 24), +(257, 2), +(258, 2), +(259, 2), +(260, 2), +(260, 4), +(260, 23), +(261, 2), +(262, 2), +(262, 4), +(262, 23), +(263, 2), +(263, 4), +(263, 23), +(264, 2), +(265, 2), +(266, 2), +(267, 2), +(268, 2), +(269, 2), +(269, 5), +(269, 24), +(270, 2), +(271, 2), +(271, 5), +(271, 24), +(272, 2), +(272, 5), +(272, 24), +(273, 2), +(274, 2), +(275, 2), +(276, 2), +(276, 4), +(276, 23), +(277, 2), +(278, 2), +(278, 4), +(278, 23), +(279, 2), +(279, 4), +(279, 23), +(280, 2), +(281, 2), +(282, 2), +(283, 2), +(284, 2), +(285, 2), +(286, 2), +(287, 2), +(288, 2), +(289, 2), +(290, 2), +(291, 2), +(292, 2), +(293, 2), +(294, 2), +(295, 2), +(296, 2), +(297, 2), +(298, 2), +(299, 2), +(300, 2), +(301, 2), +(302, 2), +(303, 2), +(304, 2), +(305, 2), +(306, 2), +(307, 2), +(308, 2), +(309, 2), +(310, 2), +(311, 2), +(312, 2), +(313, 2), +(314, 2), +(315, 2), +(316, 2), +(317, 2), +(318, 2), +(319, 2), +(320, 2), +(321, 2), +(322, 2), +(323, 2), +(324, 2), +(325, 2), +(326, 2), +(327, 2), +(328, 2), +(329, 2), +(330, 2), +(331, 2), +(332, 2), +(333, 2), +(334, 2), +(335, 2), +(336, 2), +(337, 2), +(338, 2), +(339, 2), +(340, 2), +(341, 2), +(342, 2), +(343, 2), +(344, 2), +(345, 2), +(346, 2), +(347, 2), +(348, 2), +(349, 2), +(349, 3), +(349, 21), +(349, 22), +(349, 25), +(350, 2), +(350, 3), +(350, 21), +(350, 22), +(350, 25), +(351, 2), +(351, 21), +(351, 25), +(352, 2), +(352, 21), +(352, 25), +(353, 2), +(354, 2), +(354, 21), +(354, 25), +(355, 2), +(355, 21), +(355, 25), +(356, 2), +(356, 21), +(356, 25), +(357, 2), +(357, 21), +(357, 25), +(358, 2), +(358, 21), +(358, 25), +(359, 2), +(360, 2), +(360, 21), +(360, 25), +(361, 2), +(361, 21), +(361, 25), +(362, 2), +(362, 21), +(362, 25), +(363, 2), +(363, 21), +(363, 25), +(364, 2), +(364, 21), +(364, 25), +(365, 2), +(366, 2), +(366, 21), +(366, 25), +(367, 2), +(367, 21), +(367, 25), +(368, 2), +(368, 21), +(368, 25), +(369, 2), +(369, 21), +(369, 25), +(370, 2), +(370, 21), +(370, 25), +(371, 2), +(372, 2), +(372, 21), +(372, 25), +(373, 2), +(373, 21), +(373, 25), +(374, 2), +(374, 21), +(374, 25), +(375, 2), +(375, 3), +(375, 21), +(375, 22), +(375, 25), +(376, 2), +(376, 21), +(376, 25), +(377, 2), +(377, 3), +(377, 22), +(378, 2), +(378, 3), +(378, 21), +(378, 22), +(378, 25), +(379, 2), +(379, 21), +(379, 25), +(380, 2), +(380, 21), +(380, 25), +(381, 2), +(381, 21), +(381, 25), +(382, 2), +(382, 21), +(382, 25), +(383, 2), +(383, 21), +(383, 25), +(384, 2), +(385, 2), +(385, 21), +(385, 25), +(386, 2), +(386, 21), +(386, 25), +(387, 2), +(387, 21), +(387, 25), +(388, 2), +(388, 3), +(388, 21), +(388, 22), +(388, 25), +(389, 2), +(389, 21), +(389, 25), +(390, 2), +(390, 3), +(390, 22), +(391, 2), +(391, 21), +(391, 25), +(392, 2), +(393, 2), +(393, 21), +(393, 25), +(394, 2), +(394, 21), +(394, 25), +(395, 2), +(395, 3), +(395, 21), +(395, 22), +(395, 25), +(396, 2), +(396, 21), +(396, 25), +(397, 2), +(397, 3), +(397, 22), +(398, 2), +(398, 21), +(398, 25), +(399, 2), +(399, 3), +(399, 21), +(399, 22), +(399, 25), +(400, 2), +(400, 21), +(400, 25), +(401, 2), +(401, 21), +(401, 25), +(402, 2), +(402, 21), +(402, 25), +(403, 2), +(403, 3), +(403, 21), +(403, 22), +(403, 25), +(404, 2), +(404, 21), +(404, 25), +(405, 2), +(405, 3), +(405, 22), +(406, 2), +(406, 21), +(406, 25), +(407, 2), +(407, 3), +(407, 21), +(407, 22), +(407, 25), +(408, 2), +(408, 3), +(408, 21), +(408, 22), +(408, 25), +(409, 2), +(409, 3), +(409, 21), +(409, 22), +(409, 25), +(410, 2), +(410, 21), +(410, 25), +(411, 2), +(411, 21), +(411, 25), +(412, 2), +(412, 21), +(412, 25), +(413, 2), +(414, 2), +(414, 21), +(414, 25), +(415, 2), +(415, 21), +(415, 25), +(416, 2), +(416, 21), +(416, 25), +(417, 2), +(417, 3), +(417, 21), +(417, 22), +(417, 25), +(418, 2), +(418, 21), +(418, 25), +(419, 2), +(419, 3), +(419, 22), +(420, 2), +(420, 21), +(420, 25), +(421, 2), +(421, 3), +(421, 21), +(421, 22), +(421, 25), +(422, 2), +(422, 21), +(422, 25), +(423, 2), +(423, 21), +(423, 25), +(424, 2), +(424, 21), +(424, 25), +(425, 2), +(425, 21), +(425, 25), +(426, 2), +(426, 21), +(426, 25), +(427, 2), +(428, 2), +(428, 21), +(428, 25), +(429, 2), +(429, 21), +(429, 25), +(430, 2), +(430, 21), +(430, 25), +(431, 2), +(431, 3), +(431, 21), +(431, 22), +(431, 25), +(432, 2), +(432, 21), +(432, 25), +(433, 2), +(433, 3), +(433, 22), +(434, 2), +(434, 3), +(434, 21), +(434, 22), +(434, 25), +(435, 2), +(435, 3), +(435, 21), +(435, 22), +(435, 25), +(436, 2), +(436, 21), +(436, 25), +(437, 2), +(437, 21), +(437, 25), +(438, 2), +(438, 21), +(438, 25), +(439, 2), +(439, 21), +(439, 25), +(440, 2), +(440, 21), +(440, 25), +(441, 2), +(442, 2), +(442, 21), +(442, 25), +(443, 2), +(443, 21), +(443, 25), +(444, 2), +(444, 21), +(444, 25), +(445, 2), +(445, 3), +(445, 21), +(445, 22), +(445, 25), +(446, 2), +(446, 21), +(446, 25), +(447, 2), +(447, 3), +(447, 22), +(448, 2), +(448, 21), +(448, 25), +(449, 2), +(449, 3), +(449, 21), +(449, 22), +(449, 25), +(450, 2), +(450, 3), +(450, 21), +(450, 22), +(450, 25), +(451, 2), +(451, 21), +(451, 25), +(452, 2), +(452, 21), +(452, 25), +(453, 2), +(453, 3), +(453, 21), +(453, 22), +(453, 25), +(454, 2), +(454, 21), +(454, 25), +(455, 2), +(455, 3), +(455, 22), +(456, 2), +(456, 21), +(456, 25), +(457, 2), +(457, 3), +(457, 21), +(457, 22), +(457, 25), +(458, 2), +(458, 21), +(458, 25), +(459, 2), +(459, 21), +(459, 25), +(460, 2), +(460, 21), +(460, 25), +(461, 2), +(461, 21), +(461, 25), +(462, 2), +(462, 21), +(462, 25), +(463, 2), +(464, 2), +(464, 21), +(464, 25), +(465, 2), +(465, 21), +(465, 25), +(466, 2), +(466, 21), +(466, 25), +(467, 2), +(467, 3), +(467, 21), +(467, 22), +(467, 25), +(468, 2), +(468, 3), +(468, 21), +(468, 22), +(468, 25), +(469, 2), +(470, 2), +(470, 3), +(470, 21), +(470, 22), +(470, 25), +(471, 2), +(471, 21), +(471, 25), +(472, 2), +(472, 21), +(472, 25), +(473, 2), +(473, 21), +(473, 25), +(474, 2), +(474, 21), +(474, 25), +(475, 2), +(475, 21), +(475, 25), +(476, 2), +(477, 2), +(477, 21), +(477, 25), +(478, 2), +(478, 21), +(478, 25), +(479, 2), +(479, 21), +(479, 25), +(480, 2), +(480, 3), +(480, 21), +(480, 22), +(480, 25), +(481, 2), +(481, 21), +(481, 25), +(482, 2), +(482, 3), +(482, 22), +(483, 2), +(483, 21), +(483, 25), +(484, 2), +(484, 3), +(484, 21), +(484, 22), +(484, 25), +(485, 2), +(485, 3), +(485, 21), +(485, 22), +(485, 25), +(486, 2), +(486, 21), +(486, 25), +(487, 2), +(487, 21), +(487, 25), +(488, 2), +(488, 21), +(488, 25), +(489, 2), +(489, 3), +(489, 21), +(489, 22), +(489, 25), +(490, 2), +(490, 21), +(490, 25), +(491, 2), +(491, 3), +(491, 22), +(492, 2), +(492, 21), +(492, 25), +(493, 2), +(493, 3), +(493, 21), +(493, 22), +(493, 25), +(494, 2), +(494, 3), +(494, 21), +(494, 22), +(494, 25), +(495, 2), +(495, 21), +(495, 25), +(496, 2), +(496, 21), +(496, 25), +(497, 2), +(497, 21), +(497, 25), +(498, 2), +(498, 21), +(498, 25), +(499, 2), +(499, 21), +(499, 25), +(500, 2), +(501, 2), +(501, 21), +(501, 25), +(502, 2), +(502, 21), +(502, 25), +(503, 2), +(503, 21), +(503, 25), +(504, 2), +(504, 3), +(504, 21), +(504, 22), +(504, 25), +(505, 2), +(505, 3), +(505, 21), +(505, 22), +(505, 25), +(506, 2), +(507, 2), +(507, 21), +(507, 25), +(508, 2), +(508, 3), +(508, 21), +(508, 22), +(508, 25), +(509, 2), +(509, 21), +(509, 25), +(510, 2), +(510, 21), +(510, 25), +(511, 2), +(511, 21), +(511, 25), +(512, 2), +(512, 21), +(512, 25), +(513, 2), +(513, 21), +(513, 25), +(514, 2), +(515, 2), +(515, 21), +(515, 25), +(516, 2), +(516, 21), +(516, 25), +(517, 2), +(517, 21), +(517, 25), +(518, 2), +(518, 3), +(518, 21), +(518, 22), +(518, 25), +(519, 2), +(519, 3), +(519, 21), +(519, 22), +(519, 25), +(520, 2), +(521, 2), +(521, 21), +(521, 25), +(522, 2), +(522, 3), +(522, 21), +(522, 22), +(522, 25), +(523, 2), +(523, 3), +(523, 21), +(523, 22), +(523, 25), +(524, 2), +(524, 21), +(524, 25), +(525, 2), +(525, 21), +(525, 25), +(526, 2), +(526, 21), +(526, 25), +(527, 2), +(527, 21), +(527, 25), +(528, 2), +(528, 21), +(528, 25), +(529, 2), +(530, 2), +(530, 21), +(530, 25), +(531, 2), +(531, 21), +(531, 25), +(532, 2), +(532, 21), +(532, 25), +(533, 2), +(533, 21), +(533, 25), +(534, 2), +(534, 3), +(534, 21), +(534, 22), +(534, 25), +(535, 2), +(535, 21), +(535, 25), +(536, 2), +(536, 3), +(536, 22), +(537, 2), +(537, 21), +(537, 25), +(538, 2), +(538, 3), +(538, 21), +(538, 22), +(538, 25), +(539, 2), +(539, 3), +(539, 21), +(539, 22), +(539, 25), +(540, 2), +(540, 21), +(540, 25), +(541, 2), +(541, 21), +(541, 25), +(542, 2), +(542, 3), +(542, 21), +(542, 22), +(542, 25), +(543, 2), +(543, 21), +(543, 25), +(544, 2), +(544, 3), +(544, 22), +(545, 2), +(545, 21), +(545, 25), +(546, 2), +(546, 21), +(546, 25), +(547, 2), +(548, 2), +(548, 21), +(548, 25), +(549, 2), +(549, 21), +(549, 25), +(550, 2), +(550, 21), +(550, 25), +(551, 2), +(551, 21), +(551, 25), +(552, 2), +(552, 3), +(552, 21), +(552, 22), +(552, 25), +(553, 2), +(553, 21), +(553, 25), +(554, 2), +(554, 3), +(554, 22), +(555, 2), +(555, 3), +(555, 21), +(555, 22), +(555, 25), +(556, 2), +(556, 3), +(556, 21), +(556, 22), +(556, 25), +(557, 2), +(557, 3), +(557, 21), +(557, 22), +(557, 25), +(558, 2), +(558, 21), +(558, 25), +(559, 2), +(559, 3), +(559, 21), +(559, 22), +(559, 25), +(560, 2), +(560, 3), +(560, 21), +(560, 22), +(560, 25), +(561, 2), +(561, 3), +(561, 21), +(561, 22), +(561, 25), +(562, 2), +(562, 21), +(562, 25), +(563, 2), +(563, 3), +(563, 22), +(564, 2), +(564, 21), +(564, 25), +(565, 2), +(565, 3), +(565, 21), +(565, 22), +(565, 25), +(566, 2), +(566, 3), +(566, 21), +(566, 22), +(566, 25), +(567, 2), +(567, 21), +(567, 25), +(568, 2), +(568, 3), +(568, 4), +(568, 21), +(568, 22), +(568, 23), +(568, 25), +(569, 2), +(569, 3), +(569, 4), +(569, 21), +(569, 22), +(569, 23), +(569, 25), +(570, 2), +(570, 3), +(570, 4), +(570, 22), +(570, 23), +(571, 2), +(571, 3), +(571, 4), +(571, 21), +(571, 22), +(571, 23), +(571, 25), +(572, 2), +(572, 21), +(572, 25), +(573, 2), +(573, 3), +(573, 4), +(573, 21), +(573, 22), +(573, 23), +(573, 25), +(574, 2), +(574, 21), +(574, 25), +(575, 2), +(575, 21), +(575, 25), +(576, 2), +(576, 21), +(576, 25), +(577, 2), +(578, 2), +(578, 21), +(578, 25), +(579, 2), +(579, 21), +(579, 25), +(580, 2), +(580, 21), +(580, 25), +(581, 2), +(581, 21), +(581, 25), +(582, 2), +(582, 21), +(582, 25), +(583, 2), +(584, 2), +(584, 21), +(584, 25), +(585, 2), +(585, 21), +(585, 25), +(586, 2), +(586, 21), +(586, 25), +(587, 2), +(587, 21), +(587, 25), +(588, 2), +(588, 21), +(588, 25), +(589, 2), +(590, 2), +(590, 21), +(590, 25), +(591, 2), +(591, 21), +(591, 25), +(592, 2), +(592, 21), +(592, 25), +(593, 2), +(593, 3), +(593, 21), +(593, 22), +(593, 25), +(594, 2), +(594, 21), +(594, 25), +(595, 2), +(595, 3), +(595, 22), +(596, 2), +(596, 21), +(596, 25), +(597, 2), +(597, 21), +(597, 25), +(598, 2), +(598, 21), +(598, 25), +(599, 2), +(599, 3), +(599, 21), +(599, 22), +(599, 25), +(600, 2), +(600, 21), +(600, 25), +(601, 2), +(601, 3), +(601, 22), +(602, 2), +(602, 21), +(602, 25), +(603, 2), +(603, 21), +(603, 25), +(604, 2), +(604, 21), +(604, 25), +(605, 2), +(605, 3), +(605, 21), +(605, 22), +(605, 25), +(606, 2), +(606, 21), +(606, 25), +(607, 2), +(607, 3), +(607, 22), +(608, 2), +(608, 3), +(608, 21), +(608, 22), +(608, 25), +(609, 2), +(609, 21), +(609, 25), +(610, 2), +(610, 21), +(610, 25), +(611, 2), +(611, 21), +(611, 25), +(612, 2), +(612, 3), +(612, 21), +(612, 22), +(612, 25), +(613, 2), +(613, 21), +(613, 25), +(614, 2), +(614, 3), +(614, 22), +(615, 2), +(615, 3), +(615, 21), +(615, 22), +(615, 25), +(616, 2), +(616, 21), +(616, 25), +(617, 2), +(617, 21), +(617, 25), +(618, 2), +(618, 21), +(618, 25), +(619, 2), +(619, 3), +(619, 4), +(619, 21), +(619, 22), +(619, 23), +(619, 25), +(620, 2), +(620, 3), +(620, 21), +(620, 22), +(620, 25), +(621, 2), +(622, 2), +(622, 3), +(622, 21), +(622, 22), +(622, 25), +(623, 2), +(623, 21), +(623, 25), +(624, 2), +(624, 3), +(624, 21), +(624, 22), +(624, 25), +(625, 2), +(625, 21), +(625, 25), +(626, 2), +(626, 21), +(626, 25), +(627, 2), +(627, 21), +(627, 25), +(628, 2), +(628, 21), +(628, 25), +(629, 2), +(629, 21), +(629, 25), +(630, 2), +(630, 21), +(630, 25), +(631, 2), +(632, 2), +(633, 2), +(634, 2), +(635, 2), +(636, 2), +(637, 2), +(637, 3), +(637, 4), +(637, 22), +(637, 23), +(638, 2), +(638, 3), +(638, 4), +(638, 22), +(638, 23), +(639, 2), +(639, 3), +(639, 4), +(639, 22), +(639, 23), +(640, 2), +(640, 3), +(640, 4), +(640, 22), +(640, 23), +(641, 2), +(641, 3), +(641, 4), +(641, 22), +(641, 23), +(642, 2), +(642, 3), +(642, 4), +(642, 22), +(642, 23), +(643, 2), +(643, 3), +(643, 4), +(643, 22), +(643, 23), +(644, 2), +(644, 3), +(644, 4), +(644, 22), +(644, 23), +(645, 2), +(645, 3), +(645, 4), +(645, 22), +(645, 23), +(646, 2), +(646, 3), +(646, 4), +(646, 22), +(646, 23), +(647, 2), +(647, 4), +(648, 2), +(649, 2), +(649, 3), +(649, 4), +(649, 22), +(649, 23), +(650, 2), +(651, 2), +(652, 2), +(653, 2), +(653, 3), +(653, 4), +(653, 22), +(653, 23), +(654, 2), +(655, 2), +(656, 2), +(657, 2), +(657, 3), +(657, 4), +(657, 22), +(657, 23), +(658, 2), +(659, 2), +(660, 2), +(661, 2), +(661, 3), +(661, 4), +(661, 22), +(661, 23), +(662, 2), +(663, 2), +(664, 2), +(665, 2), +(665, 3), +(665, 4), +(665, 22), +(665, 23), +(666, 2), +(667, 2), +(668, 2), +(669, 2), +(669, 3), +(669, 4), +(669, 22), +(669, 23), +(670, 2), +(671, 2), +(672, 2), +(673, 2), +(674, 2), +(675, 2), +(676, 2), +(677, 2), +(678, 2), +(679, 2), +(680, 2), +(681, 2), +(682, 2), +(683, 2), +(684, 2), +(684, 4), +(685, 2), +(686, 2), +(687, 2), +(687, 4), +(688, 2), +(689, 2), +(690, 2), +(691, 2), +(692, 2), +(693, 2), +(694, 2), +(695, 2), +(696, 2), +(697, 2), +(698, 2), +(699, 2), +(700, 2), +(701, 2), +(702, 2), +(703, 2), +(704, 2), +(705, 2), +(705, 4), +(706, 2), +(707, 2), +(708, 2), +(709, 2), +(709, 4), +(710, 2), +(710, 4), +(711, 2), +(712, 2), +(713, 2), +(714, 2), +(715, 2), +(715, 4), +(716, 2), +(717, 2), +(718, 2), +(718, 4), +(719, 2), +(719, 4), +(720, 2), +(720, 4), +(721, 2), +(722, 2), +(722, 4), +(723, 2), +(724, 2), +(724, 3), +(725, 2), +(726, 2), +(726, 3), +(727, 2), +(728, 2), +(728, 3), +(729, 2), +(730, 2), +(730, 3), +(731, 2), +(732, 2), +(733, 2), +(734, 2), +(735, 2), +(736, 2), +(737, 2), +(738, 2), +(739, 2), +(740, 2), +(741, 2), +(742, 2), +(743, 2), +(744, 2), +(745, 2), +(746, 2), +(747, 2), +(748, 2), +(749, 2), +(750, 2), +(751, 2), +(752, 2), +(753, 2), +(754, 2), +(755, 2), +(756, 2), +(757, 2), +(758, 2), +(759, 2), +(760, 2), +(761, 2), +(762, 2), +(763, 2), +(764, 2), +(765, 2), +(766, 2), +(767, 2), +(768, 2), +(769, 2), +(770, 2), +(771, 2), +(772, 2), +(773, 2), +(774, 2), +(775, 2), +(776, 2), +(777, 2), +(778, 2), +(779, 2), +(780, 2), +(781, 2), +(782, 2), +(783, 2), +(784, 2), +(785, 2), +(786, 2), +(787, 2), +(788, 2), +(789, 2), +(790, 2), +(791, 2), +(792, 2), +(793, 2), +(794, 2), +(795, 2), +(796, 2), +(797, 2), +(798, 2), +(799, 2), +(800, 2), +(801, 2), +(802, 2), +(803, 2), +(804, 2), +(805, 2), +(806, 2), +(807, 2), +(808, 2), +(809, 2), +(810, 2), +(811, 2), +(812, 2), +(813, 2), +(814, 2), +(815, 2), +(816, 2), +(817, 2), +(818, 2), +(819, 2), +(820, 2), +(821, 2), +(822, 2), +(823, 2), +(824, 2), +(825, 2), +(826, 2), +(827, 2), +(828, 2), +(829, 2), +(830, 2), +(831, 2), +(832, 2), +(833, 2), +(834, 2), +(835, 2), +(836, 2), +(837, 2), +(838, 2), +(839, 2), +(840, 2), +(841, 2), +(842, 2), +(843, 2), +(844, 2), +(845, 2), +(846, 2), +(847, 2), +(848, 2), +(849, 2), +(850, 2), +(851, 2), +(852, 2), +(853, 2), +(854, 2), +(855, 2), +(856, 2), +(857, 2), +(858, 2), +(859, 2), +(860, 2), +(861, 2), +(862, 2), +(863, 2), +(864, 2), +(865, 2), +(866, 2), +(867, 2), +(868, 2), +(869, 2), +(870, 2), +(871, 2), +(872, 2), +(873, 2), +(874, 2), +(875, 2), +(876, 2), +(877, 2), +(878, 2), +(879, 2), +(880, 2), +(881, 2), +(882, 2), +(883, 2), +(884, 2), +(885, 2), +(886, 2), +(887, 2), +(888, 2); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `salary_components` +-- + +CREATE TABLE `salary_components` ( + `id` bigint(20) UNSIGNED NOT NULL, + `code` varchar(50) NOT NULL, + `name` varchar(255) NOT NULL, + `type` enum('earning','deduction') NOT NULL, + `is_system` tinyint(1) NOT NULL DEFAULT 0, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `computation_method` varchar(255) DEFAULT NULL, + `sort_order` int(11) NOT NULL DEFAULT 0, + `created_by` 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; + +-- +-- Dumping data for table `salary_components` +-- + +INSERT INTO `salary_components` (`id`, `code`, `name`, `type`, `is_system`, `is_active`, `computation_method`, `sort_order`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'BASIC', 'Basic Salary', 'earning', 1, 1, NULL, 1, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(2, 'OT', 'Overtime', 'earning', 1, 1, 'overtime', 2, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(3, 'NIGHT_DIFF', 'Night Differential', 'earning', 1, 1, 'night_differential', 3, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(4, 'SSS_EE', 'SSS (Employee)', 'deduction', 1, 1, 'statutory_sss', 10, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(5, 'PH_EE', 'PhilHealth (Employee)', 'deduction', 1, 1, 'statutory_philhealth', 11, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(6, 'HDMF_EE', 'Pag-IBIG (Employee)', 'deduction', 1, 1, 'statutory_pagibig', 12, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(7, 'TAX', 'Withholding Tax', 'deduction', 1, 1, 'statutory_tax', 13, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(8, 'HOLIDAY_PAY', 'Holiday Pay', 'earning', 1, 1, 'holiday_pay', 4, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(9, 'LATE', 'Late Deduction', 'deduction', 1, 1, 'late', 14, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(10, 'UNDERTIME', 'Undertime Deduction', 'deduction', 1, 1, 'undertime', 15, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(11, 'ABSENCE', 'Absence Deduction', 'deduction', 1, 1, 'absence', 16, 1, '2026-03-14 06:00:07', '2026-03-14 06:00:07'), +(12, 'MEAL', 'meal allwance (IN-BASED)', 'earning', 0, 1, NULL, 1, 2, '2026-04-27 15:12:53', '2026-04-27 15:12:53'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `sales_invoices` +-- + +CREATE TABLE `sales_invoices` ( + `id` bigint(20) UNSIGNED NOT NULL, + `invoice_number` varchar(255) NOT NULL, + `invoice_date` date NOT NULL, + `due_date` date NOT NULL, + `customer_id` bigint(20) UNSIGNED NOT NULL, + `warehouse_id` bigint(20) UNSIGNED DEFAULT NULL, + `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `paid_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `balance_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `status` enum('draft','posted','partial','paid','overdue') NOT NULL DEFAULT 'draft', + `type` enum('product','service') NOT NULL DEFAULT 'product', + `payment_terms` varchar(255) DEFAULT NULL, + `notes` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `sales_invoices` +-- + +INSERT INTO `sales_invoices` (`id`, `invoice_number`, `invoice_date`, `due_date`, `customer_id`, `warehouse_id`, `subtotal`, `tax_amount`, `discount_amount`, `total_amount`, `paid_amount`, `balance_amount`, `status`, `type`, `payment_terms`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'SI-2025-09-001', '2025-09-30', '2025-10-30', 9, 1, 1441.03, 172.93, 0.00, 1613.96, 1613.96, 0.00, 'paid', 'product', 'Net 30', 'IT infrastructure upgrade - accepted proposal', 2, 2, '2025-09-30 00:17:54', '2026-03-14 00:17:54'), +(2, 'SI-2025-10-002', '2025-10-15', '2025-11-14', 11, 2, 802.80, 96.34, 0.00, 899.14, 899.14, 0.00, 'paid', 'service', 'Net 30', 'Software subscription - from proposal', 2, 2, '2025-10-15 00:17:54', '2026-03-14 00:17:54'), +(3, 'SI-2025-10-003', '2025-10-30', '2025-11-29', 13, 3, 408.91, 49.07, 0.00, 457.98, 457.98, 0.00, 'paid', 'product', 'Net 30', 'Office equipment package - converted proposal', 2, 2, '2025-10-30 00:17:54', '2026-03-14 00:17:54'), +(4, 'SI-2025-11-004', '2025-11-19', '2025-12-19', 15, 4, 1869.87, 224.39, 0.00, 2094.26, 2094.26, 0.00, 'paid', 'product', 'Net 30', 'Direct sale - laptop and accessories', 2, 2, '2025-11-19 00:17:54', '2026-03-14 00:17:54'), +(5, 'SI-2025-12-005', '2025-12-09', '2026-01-08', 17, 5, 17127.69, 2055.33, 0.00, 19183.02, 0.00, 19183.02, 'posted', 'product', 'Net 30', 'Hardware refresh order', 2, 2, '2025-12-09 00:17:54', '2026-03-14 00:17:54'), +(6, 'SI-2025-12-006', '2025-12-29', '2026-01-28', 19, 6, 864.15, 103.70, 0.00, 967.85, 0.00, 967.85, 'posted', 'service', 'Net 30', 'Consulting hours billed', 2, 2, '2025-12-29 00:17:54', '2026-03-14 00:17:54'), +(7, 'SI-2026-01-007', '2026-01-23', '2026-02-22', 21, 7, 1749.41, 209.93, 0.00, 1959.34, 0.00, 1959.34, 'posted', 'product', 'Net 30', 'Enterprise licensing deal', 2, 2, '2026-01-23 00:17:54', '2026-03-14 00:17:54'), +(8, 'SI-2026-02-008', '2026-02-12', '2026-03-14', 23, 8, 7920.93, 950.51, 0.00, 8871.44, 4435.72, 4435.72, 'partial', 'product', 'Net 30', '50% advance received', 2, 2, '2026-02-12 00:17:54', '2026-03-14 00:17:54'), +(9, 'SI-2026-03-009', '2026-03-02', '2026-04-01', 25, 9, 3366.69, 404.00, 0.00, 3770.69, 1885.35, 1885.34, 'partial', 'product', 'Net 30', 'Installment payment in progress', 2, 2, '2026-03-02 00:17:54', '2026-03-14 00:17:54'), +(10, 'SI-2026-03-010', '2026-03-12', '2026-04-11', 27, 10, 7217.44, 866.09, 0.00, 8083.53, 0.00, 8083.53, 'draft', 'product', 'Net 30', 'New order pending review', 2, 2, '2026-03-12 00:17:54', '2026-03-14 00:17:54'), +(11, 'S-TEST-URIUJ-0', '2026-04-19', '2026-05-08', 131, 17, 4796.00, 0.00, 0.00, 4796.00, 0.00, 4796.00, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(12, 'S-TEST-S8HGQ-1', '2026-04-19', '2026-05-08', 130, 17, 325.32, 0.00, 0.00, 325.32, 0.00, 325.32, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(13, 'S-TEST-5PUOZ-2', '2026-04-16', '2026-05-08', 131, 16, 678.92, 0.00, 0.00, 678.92, 0.00, 678.92, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(14, 'S-TEST-CHTAX-3', '2026-04-06', '2026-05-08', 132, 17, 650.64, 0.00, 0.00, 650.64, 0.00, 650.64, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(15, 'S-TEST-P4FSK-4', '2026-04-14', '2026-05-08', 131, 17, 350.40, 0.00, 0.00, 350.40, 0.00, 350.40, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(16, 'S-TEST-UKMLN-5', '2026-04-30', '2026-05-08', 130, 16, 4076.60, 0.00, 0.00, 4076.60, 0.00, 4076.60, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(17, 'S-TEST-EJTRJ-6', '2026-04-13', '2026-05-08', 133, 17, 192.07, 0.00, 0.00, 192.07, 0.00, 192.07, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(18, 'S-TEST-Y3C9G-7', '2026-04-27', '2026-05-08', 131, 17, 382.98, 0.00, 0.00, 382.98, 0.00, 382.98, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(19, 'S-TEST-3ZGT1-8', '2026-04-10', '2026-05-08', 130, 17, 768.28, 0.00, 0.00, 768.28, 0.00, 768.28, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(20, 'S-TEST-5NQGD-9', '2026-04-02', '2026-05-08', 133, 16, 395.65, 0.00, 0.00, 395.65, 0.00, 395.65, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(21, 'S-TEST-XC8LX-10', '2026-04-08', '2026-05-08', 131, 17, 2997.50, 0.00, 0.00, 2997.50, 0.00, 2997.50, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(22, 'S-TEST-VLY3Z-11', '2026-04-25', '2026-05-08', 134, 17, 114.73, 0.00, 0.00, 114.73, 0.00, 114.73, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(23, 'S-TEST-IDK9Z-12', '2026-04-25', '2026-05-08', 132, 17, 191.49, 0.00, 0.00, 191.49, 0.00, 191.49, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(24, 'S-TEST-QS2WZ-13', '2026-04-16', '2026-05-08', 130, 17, 169.73, 0.00, 0.00, 169.73, 0.00, 169.73, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(25, 'S-TEST-N5TD2-14', '2026-04-08', '2026-05-08', 133, 17, 5995.00, 0.00, 0.00, 5995.00, 0.00, 5995.00, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(26, 'S-TEST-EFILE-15', '2026-04-09', '2026-05-08', 131, 17, 5035.80, 0.00, 0.00, 5035.80, 0.00, 5035.80, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(27, 'S-TEST-YTUJJ-16', '2026-04-01', '2026-05-08', 133, 16, 316.52, 0.00, 0.00, 316.52, 0.00, 316.52, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(28, 'S-TEST-L1DNU-17', '2026-04-23', '2026-05-08', 131, 17, 192.07, 0.00, 0.00, 192.07, 0.00, 192.07, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(29, 'S-TEST-UD5IU-18', '2026-04-04', '2026-05-08', 132, 17, 5395.50, 0.00, 0.00, 5395.50, 0.00, 5395.50, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(30, 'S-TEST-MAZYJ-19', '2026-04-28', '2026-05-08', 132, 16, 350.40, 0.00, 0.00, 350.40, 0.00, 350.40, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(31, 'S-TEST-RSETD-20', '2026-04-20', '2026-05-08', 131, 17, 2877.60, 0.00, 0.00, 2877.60, 0.00, 2877.60, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(32, 'S-TEST-B0ZBJ-21', '2026-04-06', '2026-05-08', 132, 16, 3836.80, 0.00, 0.00, 3836.80, 0.00, 3836.80, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(33, 'S-TEST-9LB4E-22', '2026-04-01', '2026-05-08', 133, 17, 79.13, 0.00, 0.00, 79.13, 0.00, 79.13, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(34, 'S-TEST-HQMG8-23', '2026-04-20', '2026-05-08', 134, 16, 344.19, 0.00, 0.00, 344.19, 0.00, 344.19, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(35, 'S-TEST-L6BEU-24', '2026-04-15', '2026-05-08', 132, 16, 513.99, 0.00, 0.00, 513.99, 0.00, 513.99, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(36, 'S-TEST-PBHAH-25', '2026-04-20', '2026-05-08', 133, 17, 5995.00, 0.00, 0.00, 5995.00, 0.00, 5995.00, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(37, 'S-TEST-IDZXP-26', '2026-04-05', '2026-05-08', 134, 17, 884.75, 0.00, 0.00, 884.75, 0.00, 884.75, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(38, 'S-TEST-OAMCR-27', '2026-04-06', '2026-05-08', 132, 16, 382.98, 0.00, 0.00, 382.98, 0.00, 382.98, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(39, 'S-TEST-ADDFX-28', '2026-04-18', '2026-05-08', 130, 17, 350.40, 0.00, 0.00, 350.40, 0.00, 350.40, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(40, 'S-TEST-NKNE2-29', '2026-04-23', '2026-05-08', 132, 17, 5635.30, 0.00, 0.00, 5635.30, 0.00, 5635.30, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(41, 'S-TEST-KFLHX-30', '2026-04-15', '2026-05-08', 132, 17, 5755.20, 0.00, 0.00, 5755.20, 0.00, 5755.20, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(42, 'S-TEST-QWYRO-31', '2026-04-13', '2026-05-08', 132, 16, 229.46, 0.00, 0.00, 229.46, 0.00, 229.46, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(43, 'S-TEST-ABQNU-32', '2026-04-05', '2026-05-08', 134, 16, 116.80, 0.00, 0.00, 116.80, 0.00, 116.80, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(44, 'S-TEST-MLDI8-33', '2026-04-01', '2026-05-08', 132, 17, 856.65, 0.00, 0.00, 856.65, 0.00, 856.65, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(45, 'S-TEST-FBAAO-34', '2026-04-14', '2026-05-08', 131, 16, 856.65, 0.00, 0.00, 856.65, 0.00, 856.65, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(46, 'S-TEST-ZCC5I-35', '2026-04-01', '2026-05-08', 130, 17, 2637.80, 0.00, 0.00, 2637.80, 0.00, 2637.80, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(47, 'S-TEST-HOKNG-36', '2026-04-09', '2026-05-08', 134, 16, 650.64, 0.00, 0.00, 650.64, 0.00, 650.64, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(48, 'S-TEST-VAA16-37', '2026-04-30', '2026-05-08', 131, 16, 678.92, 0.00, 0.00, 678.92, 0.00, 678.92, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(49, 'S-TEST-JOQ6L-38', '2026-04-06', '2026-05-08', 132, 17, 5635.30, 0.00, 0.00, 5635.30, 0.00, 5635.30, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(50, 'S-TEST-IGAOR-39', '2026-04-18', '2026-05-08', 131, 16, 342.66, 0.00, 0.00, 342.66, 0.00, 342.66, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(51, 'S-TEST-7D8QC-40', '2026-04-18', '2026-05-08', 132, 16, 2398.00, 0.00, 0.00, 2398.00, 0.00, 2398.00, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(52, 'S-TEST-A23OM-41', '2026-04-18', '2026-05-08', 131, 17, 325.32, 0.00, 0.00, 325.32, 0.00, 325.32, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(53, 'S-TEST-LIDWK-42', '2026-04-21', '2026-05-08', 133, 17, 162.66, 0.00, 0.00, 162.66, 0.00, 162.66, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(54, 'S-TEST-EDUQO-43', '2026-04-21', '2026-05-08', 130, 16, 162.66, 0.00, 0.00, 162.66, 0.00, 162.66, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(55, 'S-TEST-QS1RC-44', '2026-04-20', '2026-05-08', 131, 17, 382.98, 0.00, 0.00, 382.98, 0.00, 382.98, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(56, 'S-TEST-0XUFS-45', '2026-04-28', '2026-05-08', 133, 16, 5515.40, 0.00, 0.00, 5515.40, 0.00, 5515.40, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(57, 'S-TEST-LKCEF-46', '2026-04-07', '2026-05-08', 132, 17, 848.65, 0.00, 0.00, 848.65, 0.00, 848.65, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(58, 'S-TEST-KTGIR-47', '2026-04-24', '2026-05-08', 134, 17, 584.00, 0.00, 0.00, 584.00, 0.00, 584.00, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:40', '2026-05-01 21:49:40'), +(59, 'S-TEST-IQEQ6-48', '2026-04-22', '2026-05-08', 132, 17, 678.92, 0.00, 0.00, 678.92, 0.00, 678.92, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:40', '2026-05-01 21:49:40'), +(60, 'S-TEST-ZOWE9-49', '2026-04-17', '2026-05-08', 133, 16, 957.45, 0.00, 0.00, 957.45, 0.00, 957.45, 'draft', 'product', NULL, NULL, 2, 2, '2026-05-01 21:49:40', '2026-05-01 21:49:40'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `sales_invoice_items` +-- + +CREATE TABLE `sales_invoice_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `invoice_id` bigint(20) UNSIGNED NOT NULL, + `product_id` bigint(20) UNSIGNED NOT NULL, + `quantity` int(11) NOT NULL, + `dispatched_qty` int(11) NOT NULL DEFAULT 0, + `unit_price` decimal(15,2) NOT NULL, + `discount_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,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 `sales_invoice_items` +-- + +INSERT INTO `sales_invoice_items` (`id`, `invoice_id`, `product_id`, `quantity`, `dispatched_qty`, `unit_price`, `discount_percentage`, `discount_amount`, `tax_percentage`, `tax_amount`, `total_amount`, `created_at`, `updated_at`) VALUES +(1, 1, 1, 15, 0, 25.99, 0.00, 0.00, 12.00, 46.78, 436.63, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(2, 1, 10, 8, 0, 120.00, 2.00, 19.20, 12.00, 112.90, 1053.70, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(3, 1, 15, 2, 0, 59.99, 8.00, 9.60, 12.00, 13.25, 123.63, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(4, 2, 14, 2, 0, 45.00, 8.00, 7.20, 12.00, 9.94, 92.74, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(5, 2, 17, 6, 0, 120.00, 0.00, 0.00, 12.00, 86.40, 806.40, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(6, 3, 2, 2, 0, 89.99, 7.00, 12.60, 12.00, 20.09, 187.47, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(7, 3, 5, 2, 0, 18.99, 3.00, 1.14, 12.00, 4.42, 41.26, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(8, 3, 12, 5, 0, 24.99, 6.00, 7.50, 12.00, 14.09, 131.54, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(9, 3, 22, 13, 0, 6.99, 4.00, 3.63, 12.00, 10.47, 97.71, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(10, 4, 5, 6, 0, 18.99, 7.00, 7.98, 12.00, 12.72, 118.68, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(11, 4, 6, 9, 0, 199.99, 2.00, 36.00, 12.00, 211.67, 1975.58, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(12, 5, 8, 10, 0, 699.99, 6.00, 419.99, 12.00, 789.59, 7369.50, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(13, 5, 18, 11, 0, 35.99, 0.00, 0.00, 12.00, 47.51, 443.40, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(14, 5, 21, 12, 0, 899.99, 6.00, 647.99, 12.00, 1218.23, 11370.12, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(15, 6, 3, 7, 0, 75.00, 8.00, 42.00, 12.00, 57.96, 540.96, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(16, 6, 23, 11, 0, 35.00, 1.00, 3.85, 12.00, 45.74, 426.89, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(17, 7, 2, 15, 0, 89.99, 4.00, 53.99, 12.00, 155.50, 1451.36, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(18, 7, 13, 1, 0, 300.00, 4.00, 12.00, 12.00, 34.56, 322.56, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(19, 7, 18, 5, 0, 35.99, 8.00, 14.40, 12.00, 19.87, 185.42, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(20, 8, 1, 6, 0, 25.99, 7.00, 10.92, 12.00, 17.40, 162.42, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(21, 8, 21, 9, 0, 899.99, 4.00, 324.00, 12.00, 933.11, 8709.02, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(22, 9, 2, 4, 0, 89.99, 7.00, 25.20, 12.00, 40.17, 374.93, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(23, 9, 6, 7, 0, 199.99, 3.00, 42.00, 12.00, 162.95, 1520.88, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(24, 9, 10, 15, 0, 120.00, 7.00, 126.00, 12.00, 200.88, 1874.88, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(25, 10, 1, 9, 0, 25.99, 7.00, 16.37, 12.00, 26.10, 243.64, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(26, 10, 8, 10, 0, 699.99, 0.00, 0.00, 12.00, 839.99, 7839.89, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(27, 11, 78, 40, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 4796.00, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(28, 12, 80, 2, 0, 162.66, 0.00, 0.00, 0.00, 0.00, 325.32, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(29, 13, 84, 4, 0, 169.73, 0.00, 0.00, 0.00, 0.00, 678.92, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(30, 14, 80, 4, 0, 162.66, 0.00, 0.00, 0.00, 0.00, 650.64, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(31, 15, 87, 3, 0, 116.80, 0.00, 0.00, 0.00, 0.00, 350.40, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(32, 16, 78, 34, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 4076.60, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(33, 17, 85, 1, 0, 192.07, 0.00, 0.00, 0.00, 0.00, 192.07, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(34, 18, 79, 2, 0, 191.49, 0.00, 0.00, 0.00, 0.00, 382.98, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(35, 19, 85, 4, 0, 192.07, 0.00, 0.00, 0.00, 0.00, 768.28, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(36, 20, 82, 5, 0, 79.13, 0.00, 0.00, 0.00, 0.00, 395.65, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(37, 21, 78, 25, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 2997.50, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(38, 22, 83, 1, 0, 114.73, 0.00, 0.00, 0.00, 0.00, 114.73, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(39, 23, 79, 1, 0, 191.49, 0.00, 0.00, 0.00, 0.00, 191.49, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(40, 24, 84, 1, 0, 169.73, 0.00, 0.00, 0.00, 0.00, 169.73, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(41, 25, 78, 50, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 5995.00, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(42, 26, 78, 42, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 5035.80, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(43, 27, 82, 4, 0, 79.13, 0.00, 0.00, 0.00, 0.00, 316.52, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(44, 28, 85, 1, 0, 192.07, 0.00, 0.00, 0.00, 0.00, 192.07, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(45, 29, 78, 45, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 5395.50, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(46, 30, 87, 3, 0, 116.80, 0.00, 0.00, 0.00, 0.00, 350.40, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(47, 31, 78, 24, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 2877.60, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(48, 32, 78, 32, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 3836.80, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(49, 33, 82, 1, 0, 79.13, 0.00, 0.00, 0.00, 0.00, 79.13, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(50, 34, 83, 3, 0, 114.73, 0.00, 0.00, 0.00, 0.00, 344.19, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(51, 35, 81, 3, 0, 171.33, 0.00, 0.00, 0.00, 0.00, 513.99, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(52, 36, 78, 50, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 5995.00, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(53, 37, 86, 5, 0, 176.95, 0.00, 0.00, 0.00, 0.00, 884.75, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(54, 38, 79, 2, 0, 191.49, 0.00, 0.00, 0.00, 0.00, 382.98, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(55, 39, 87, 3, 0, 116.80, 0.00, 0.00, 0.00, 0.00, 350.40, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(56, 40, 78, 47, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 5635.30, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(57, 41, 78, 48, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 5755.20, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(58, 42, 83, 2, 0, 114.73, 0.00, 0.00, 0.00, 0.00, 229.46, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(59, 43, 87, 1, 0, 116.80, 0.00, 0.00, 0.00, 0.00, 116.80, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(60, 44, 81, 5, 0, 171.33, 0.00, 0.00, 0.00, 0.00, 856.65, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(61, 45, 81, 5, 0, 171.33, 0.00, 0.00, 0.00, 0.00, 856.65, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(62, 46, 78, 22, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 2637.80, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(63, 47, 80, 4, 0, 162.66, 0.00, 0.00, 0.00, 0.00, 650.64, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(64, 48, 84, 4, 0, 169.73, 0.00, 0.00, 0.00, 0.00, 678.92, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(65, 49, 78, 47, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 5635.30, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(66, 50, 81, 2, 0, 171.33, 0.00, 0.00, 0.00, 0.00, 342.66, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(67, 51, 78, 20, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 2398.00, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(68, 52, 80, 2, 0, 162.66, 0.00, 0.00, 0.00, 0.00, 325.32, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(69, 53, 80, 1, 0, 162.66, 0.00, 0.00, 0.00, 0.00, 162.66, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(70, 54, 80, 1, 0, 162.66, 0.00, 0.00, 0.00, 0.00, 162.66, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(71, 55, 79, 2, 0, 191.49, 0.00, 0.00, 0.00, 0.00, 382.98, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(72, 56, 78, 46, 0, 119.90, 0.00, 0.00, 0.00, 0.00, 5515.40, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(73, 57, 84, 5, 0, 169.73, 0.00, 0.00, 0.00, 0.00, 848.65, '2026-05-01 21:49:39', '2026-05-01 21:49:39'), +(74, 58, 87, 5, 0, 116.80, 0.00, 0.00, 0.00, 0.00, 584.00, '2026-05-01 21:49:40', '2026-05-01 21:49:40'), +(75, 59, 84, 4, 0, 169.73, 0.00, 0.00, 0.00, 0.00, 678.92, '2026-05-01 21:49:40', '2026-05-01 21:49:40'), +(76, 60, 79, 5, 0, 191.49, 0.00, 0.00, 0.00, 0.00, 957.45, '2026-05-01 21:49:40', '2026-05-01 21:49:40'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `sales_invoice_item_taxes` +-- + +CREATE TABLE `sales_invoice_item_taxes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` bigint(20) UNSIGNED NOT NULL, + `tax_name` varchar(255) NOT NULL, + `tax_rate` decimal(5,2) 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 `sales_invoice_returns` +-- + +CREATE TABLE `sales_invoice_returns` ( + `id` bigint(20) UNSIGNED NOT NULL, + `return_number` varchar(255) NOT NULL, + `return_date` date NOT NULL, + `customer_id` bigint(20) UNSIGNED NOT NULL, + `warehouse_id` bigint(20) UNSIGNED DEFAULT NULL, + `original_invoice_id` bigint(20) UNSIGNED NOT NULL, + `reason` enum('defective','wrong_item','damaged','excess_quantity','other') NOT NULL DEFAULT 'defective', + `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `status` enum('draft','approved','completed','cancelled') NOT NULL DEFAULT 'draft', + `notes` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `sales_invoice_returns` +-- + +INSERT INTO `sales_invoice_returns` (`id`, `return_number`, `return_date`, `customer_id`, `warehouse_id`, `original_invoice_id`, `reason`, `subtotal`, `tax_amount`, `discount_amount`, `total_amount`, `status`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'SR-2025-10-001', '2025-10-10', 9, 1, 1, 'defective', 129.95, 15.59, 0.00, 145.54, 'approved', 'Auto-generated demo return for SI-2025-09-001', 2, 2, '2025-10-09 16:00:00', '2026-03-14 00:17:54'), +(2, 'SR-2025-10-002', '2025-10-22', 11, 2, 2, 'wrong_item', 802.80, 96.34, 0.00, 899.14, 'approved', 'Auto-generated demo return for SI-2025-10-002', 2, 2, '2025-10-21 16:00:00', '2026-03-14 00:17:54'), +(3, 'SR-2025-11-003', '2025-11-13', 13, 3, 3, 'excess_quantity', 83.69, 10.04, 0.00, 93.73, 'approved', 'Auto-generated demo return for SI-2025-10-003', 2, 2, '2025-11-12 16:00:00', '2026-03-14 00:17:54'), +(4, 'SR-2025-11-004', '2025-11-24', 15, 4, 4, 'damaged', 52.98, 6.36, 0.00, 59.34, 'draft', 'Auto-generated demo return for SI-2025-11-004', 2, 2, '2025-11-23 16:00:00', '2026-03-14 00:17:54'), +(5, 'SR-2025-12-005', '2025-12-12', 17, 5, 5, 'other', 2811.91, 337.43, 0.00, 3149.34, 'completed', 'Auto-generated demo return for SI-2025-12-005', 2, 2, '2025-12-11 16:00:00', '2026-04-09 09:53:38'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `sales_invoice_return_items` +-- + +CREATE TABLE `sales_invoice_return_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `return_id` bigint(20) UNSIGNED NOT NULL, + `product_id` bigint(20) UNSIGNED NOT NULL, + `original_invoice_item_id` bigint(20) UNSIGNED DEFAULT NULL, + `original_quantity` int(11) NOT NULL, + `return_quantity` int(11) NOT NULL, + `unit_price` decimal(15,2) NOT NULL, + `discount_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `reason` varchar(255) 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 `sales_invoice_return_items` +-- + +INSERT INTO `sales_invoice_return_items` (`id`, `return_id`, `product_id`, `original_invoice_item_id`, `original_quantity`, `return_quantity`, `unit_price`, `discount_percentage`, `discount_amount`, `tax_percentage`, `tax_amount`, `total_amount`, `reason`, `created_at`, `updated_at`) VALUES +(1, 1, 1, 1, 15, 5, 25.99, 0.00, 0.00, 12.00, 15.59, 145.54, 'defective', '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(2, 2, 14, 4, 2, 2, 45.00, 8.00, 7.20, 12.00, 9.94, 92.74, 'wrong_item', '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(3, 2, 17, 5, 6, 6, 120.00, 0.00, 0.00, 12.00, 86.40, 806.40, 'wrong_item', '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(4, 3, 2, 6, 2, 1, 89.99, 7.00, 6.30, 12.00, 10.04, 93.73, 'excess_quantity', '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(5, 4, 5, 10, 6, 3, 18.99, 7.00, 3.99, 12.00, 6.36, 59.34, 'damaged', '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(6, 5, 8, 12, 10, 4, 699.99, 6.00, 168.00, 12.00, 315.84, 2947.80, 'other', '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(7, 5, 18, 13, 11, 5, 35.99, 0.00, 0.00, 12.00, 21.59, 201.54, 'other', '2026-03-14 00:17:54', '2026-03-14 00:17:54'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `sales_invoice_return_item_taxes` +-- + +CREATE TABLE `sales_invoice_return_item_taxes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` bigint(20) UNSIGNED NOT NULL, + `tax_name` varchar(255) NOT NULL, + `tax_rate` decimal(5,2) 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 `sales_proposals` +-- + +CREATE TABLE `sales_proposals` ( + `id` bigint(20) UNSIGNED NOT NULL, + `proposal_number` varchar(255) NOT NULL, + `proposal_date` date NOT NULL, + `due_date` date NOT NULL, + `customer_id` bigint(20) UNSIGNED NOT NULL, + `warehouse_id` bigint(20) UNSIGNED DEFAULT NULL, + `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `status` enum('draft','sent','accepted','rejected') NOT NULL DEFAULT 'draft', + `converted_to_invoice` tinyint(1) NOT NULL DEFAULT 0, + `invoice_id` bigint(20) UNSIGNED DEFAULT NULL, + `payment_terms` varchar(255) DEFAULT NULL, + `notes` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `sales_proposals` +-- + +INSERT INTO `sales_proposals` (`id`, `proposal_number`, `proposal_date`, `due_date`, `customer_id`, `warehouse_id`, `subtotal`, `tax_amount`, `discount_amount`, `total_amount`, `status`, `converted_to_invoice`, `invoice_id`, `payment_terms`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'SP-2025-10-001', '2025-10-05', '2025-10-20', 9, 6, 3233.55, 388.03, 0.00, 3621.58, 'accepted', 1, 1, 'Net 15', 'IT infrastructure upgrade proposal', 2, 2, '2025-10-05 00:17:54', '2026-03-14 00:17:54'), +(2, 'SP-2025-10-002', '2025-10-20', '2025-11-04', 11, 10, 426.52, 51.18, 0.00, 477.70, 'accepted', 1, 2, 'Net 15', 'Monthly software subscription', 2, 2, '2025-10-20 00:17:54', '2026-03-14 00:17:54'), +(3, 'SP-2025-11-003', '2025-11-04', '2025-11-19', 13, 2, 3617.51, 434.11, 0.00, 4051.62, 'accepted', 1, 3, 'Net 15', 'Office equipment package deal', 2, 2, '2025-11-04 00:17:54', '2026-03-14 00:17:54'), +(4, 'SP-2025-11-004', '2025-11-24', '2025-12-09', 15, 4, 352.11, 42.25, 0.00, 394.36, 'sent', 0, NULL, 'Net 15', 'Consulting services proposal', 2, 2, '2025-11-24 00:17:54', '2026-03-14 00:17:54'), +(5, 'SP-2025-12-005', '2025-12-19', '2026-01-03', 17, 5, 747.44, 89.69, 0.00, 837.13, 'sent', 0, NULL, 'Net 15', 'Network infrastructure proposal', 2, 2, '2025-12-19 00:17:54', '2026-03-14 00:17:54'), +(6, 'SP-2026-01-006', '2026-01-13', '2026-01-28', 19, 9, 719.38, 86.33, 0.00, 805.71, 'draft', 0, NULL, 'Net 15', 'Cloud migration services', 2, 2, '2026-01-13 00:17:54', '2026-03-14 00:17:54'), +(7, 'SP-2026-02-007', '2026-02-12', '2026-02-27', 9, 10, 2097.52, 251.71, 0.00, 2349.23, 'sent', 0, NULL, 'Net 15', 'Annual maintenance contract renewal', 2, 2, '2026-02-12 00:17:54', '2026-04-09 09:51:11'), +(8, 'SP-2026-03-008', '2026-03-04', '2026-03-19', 11, 1, 6180.89, 741.71, 0.00, 6922.60, 'rejected', 0, NULL, 'Net 15', 'Training program proposal - over budget', 2, 2, '2026-03-04 00:17:54', '2026-03-14 00:17:54'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `sales_proposal_items` +-- + +CREATE TABLE `sales_proposal_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `proposal_id` bigint(20) UNSIGNED NOT NULL, + `product_id` bigint(20) UNSIGNED NOT NULL, + `quantity` int(11) NOT NULL, + `unit_price` decimal(15,2) NOT NULL, + `discount_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `tax_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, + `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, + `total_amount` decimal(15,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 `sales_proposal_items` +-- + +INSERT INTO `sales_proposal_items` (`id`, `proposal_id`, `product_id`, `quantity`, `unit_price`, `discount_percentage`, `discount_amount`, `tax_percentage`, `tax_amount`, `total_amount`, `created_at`, `updated_at`) VALUES +(1, 1, 1, 9, 25.99, 4.00, 9.36, 12.00, 26.95, 251.50, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(2, 1, 10, 5, 120.00, 8.00, 48.00, 12.00, 66.24, 618.24, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(3, 1, 13, 9, 300.00, 9.00, 243.00, 12.00, 294.84, 2751.84, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(4, 2, 15, 7, 59.99, 7.00, 29.40, 12.00, 46.86, 437.39, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(5, 2, 24, 1, 39.99, 10.00, 4.00, 12.00, 4.32, 40.31, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(6, 3, 12, 3, 24.99, 6.00, 4.50, 12.00, 8.46, 78.93, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(7, 3, 16, 3, 34.99, 7.00, 7.35, 12.00, 11.71, 109.33, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(8, 3, 18, 6, 35.99, 3.00, 6.48, 12.00, 25.14, 234.60, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(9, 3, 21, 4, 899.99, 10.00, 360.00, 12.00, 388.80, 3628.76, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(10, 4, 12, 7, 24.99, 5.00, 8.75, 12.00, 19.94, 186.12, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(11, 4, 19, 8, 24.99, 7.00, 13.99, 12.00, 22.31, 208.24, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(12, 5, 18, 6, 35.99, 7.00, 15.12, 12.00, 24.10, 224.92, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(13, 5, 22, 9, 6.99, 10.00, 6.29, 12.00, 6.79, 63.41, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(14, 5, 25, 2, 250.00, 2.00, 10.00, 12.00, 58.80, 548.80, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(15, 6, 2, 2, 89.99, 7.00, 12.60, 12.00, 20.09, 187.47, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(16, 6, 10, 5, 120.00, 8.00, 48.00, 12.00, 66.24, 618.24, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(17, 7, 6, 10, 199.99, 0.00, 0.00, 12.00, 239.99, 2239.89, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(18, 7, 11, 2, 15.99, 7.00, 2.24, 12.00, 3.57, 33.31, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(19, 7, 16, 2, 34.99, 3.00, 2.10, 12.00, 8.15, 76.03, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(20, 8, 16, 4, 34.99, 5.00, 7.00, 12.00, 15.96, 148.92, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(21, 8, 21, 7, 899.99, 4.00, 252.00, 12.00, 725.75, 6773.68, '2026-03-14 00:17:54', '2026-03-14 00:17:54'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `sales_proposal_item_taxes` +-- + +CREATE TABLE `sales_proposal_item_taxes` ( + `id` bigint(20) UNSIGNED NOT NULL, + `item_id` bigint(20) UNSIGNED NOT NULL, + `tax_name` varchar(255) NOT NULL, + `tax_rate` decimal(5,2) 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 `sessions` +-- + +CREATE TABLE `sessions` ( + `id` varchar(255) 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` bigint(20) UNSIGNED NOT NULL, + `key` varchar(255) NOT NULL, + `value` text DEFAULT NULL, + `is_public` tinyint(1) NOT NULL DEFAULT 1, + `created_by` bigint(20) 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 `settings` +-- + +INSERT INTO `settings` (`id`, `key`, `value`, `is_public`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'logo_light', 'mxra1L6HHqXcWr7WyoUBYKEmQ5dtmP1FyyGWbcKI.png', 1, 1, '2026-03-14 00:17:35', '2026-03-14 20:01:18'), +(2, 'logo_dark', '7NBVslQo7kWezjPkwAUH4wXLwXoZEpjCtf8vGRGE.png', 1, 1, '2026-03-14 00:17:35', '2026-03-14 20:01:18'), +(3, 'favicon', 'favicon.png', 1, 1, '2026-03-14 00:17:35', '2026-03-14 20:01:18'), +(4, 'titleText', 'SAP', 1, 1, '2026-03-14 00:17:35', '2026-03-14 20:01:18'), +(5, 'footerText', 'Copyright © SAP', 1, 1, '2026-03-14 00:17:35', '2026-03-14 20:01:18'), +(6, 'sidebarVariant', 'inset', 1, 1, '2026-03-14 00:17:35', '2026-03-14 20:01:18'), +(7, 'sidebarStyle', 'plain', 1, 1, '2026-03-14 00:17:35', '2026-03-14 20:01:18'), +(8, 'layoutDirection', 'ltr', 1, 1, '2026-03-14 00:17:35', '2026-03-14 20:01:18'), +(9, 'themeMode', 'light', 1, 1, '2026-03-14 00:17:35', '2026-03-14 20:01:18'), +(10, 'themeColor', 'green', 1, 1, '2026-03-14 00:17:35', '2026-03-14 20:01:18'), +(11, 'customColor', '#10b981', 1, 1, '2026-03-14 00:17:35', '2026-03-14 20:01:18'), +(12, 'defaultLanguage', 'en', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:24'), +(13, 'dateFormat', 'm-d-Y', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:24'), +(14, 'timeFormat', 'H:i', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:24'), +(15, 'calendarStartDay', '0', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:24'), +(16, 'enableRegistration', 'on', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:24'), +(17, 'enableEmailVerification', 'off', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:24'), +(18, 'landingPageEnabled', 'off', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:24'), +(19, 'termsConditionsUrl', NULL, 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:24'), +(20, 'defaultCurrency', 'PHP', 1, 1, '2026-03-14 00:17:35', '2026-03-23 08:08:02'), +(21, 'currencySymbol', '₱', 1, 1, '2026-03-14 00:17:35', '2026-03-23 08:08:02'), +(22, 'currency_format', '2', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(23, 'decimalFormat', '2', 1, 1, '2026-03-14 00:17:35', '2026-03-23 08:08:02'), +(24, 'decimalSeparator', '.', 1, 1, '2026-03-14 00:17:35', '2026-03-23 08:08:02'), +(25, 'thousandsSeparator', ',', 1, 1, '2026-03-14 00:17:35', '2026-03-23 08:08:02'), +(26, 'floatNumber', '1', 1, 1, '2026-03-14 00:17:35', '2026-03-23 08:08:02'), +(27, 'currencySymbolSpace', '0', 1, 1, '2026-03-14 00:17:35', '2026-03-23 08:08:02'), +(28, 'currencySymbolPosition', 'before', 1, 1, '2026-03-14 00:17:35', '2026-03-23 08:08:02'), +(29, 'metaKeywords', 'workdo, dashboard, admin, panel, management', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(30, 'metaTitle', 'SAP - Dashboard', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(31, 'metaDescription', 'Modern dashboard and management system built with Laravel and React', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(32, 'metaImage', 'meta_image.png', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(33, 'enableCookiePopup', '1', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:38'), +(34, 'enableLogging', '0', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:38'), +(35, 'strictlyNecessaryCookies', '1', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:38'), +(36, 'cookieTitle', 'Cookie Consent', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:38'), +(37, 'strictlyCookieTitle', 'Strictly Necessary Cookies', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:38'), +(38, 'cookieDescription', 'We use cookies to enhance your browsing experience and provide personalized content.', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:38'), +(39, 'strictlyCookieDescription', 'These cookies are essential for the website to function properly.', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:38'), +(40, 'contactUsDescription', 'If you have any questions about our cookie policy, please contact us.', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:38'), +(41, 'contactUsUrl', 'https://example.com/contact', 1, 1, '2026-03-14 00:17:35', '2026-03-14 06:01:38'), +(42, 'storageType', 'local', 0, 1, '2026-03-14 00:17:35', '2026-04-10 16:56:51'), +(43, 'allowedFileTypes', 'jpg,png,webp,gif,jpeg,pdf,php', 0, 1, '2026-03-14 00:17:35', '2026-04-10 16:56:51'), +(44, 'maxUploadSize', '2048', 0, 1, '2026-03-14 00:17:35', '2026-04-10 16:56:51'), +(45, 'logo_light', '4oPIy93J8CrdK59D2DZSAFMrIlJlSUtIkMgIMXIe.png', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:10:41'), +(46, 'logo_dark', '4oPIy93J8CrdK59D2DZSAFMrIlJlSUtIkMgIMXIe.png', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:10:41'), +(47, 'favicon', 'favicon.png', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:10:41'), +(48, 'titleText', 'SAP', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:10:41'), +(49, 'footerText', 'Copyright © SAP', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:10:41'), +(50, 'sidebarVariant', 'inset', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:10:41'), +(51, 'sidebarStyle', 'plain', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:10:41'), +(52, 'layoutDirection', 'ltr', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:10:41'), +(53, 'themeMode', 'light', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:10:41'), +(54, 'themeColor', 'orange', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:10:41'), +(55, 'customColor', '#10b981', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:10:41'), +(56, 'defaultLanguage', 'en', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:11:35'), +(57, 'dateFormat', 'Y-m-d', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:11:35'), +(58, 'timeFormat', 'H:i', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:11:35'), +(59, 'calendarStartDay', '0', 1, 2, '2026-03-14 00:17:35', '2026-04-16 15:11:35'), +(60, 'defaultCurrency', 'PHP', 1, 2, '2026-03-14 00:17:35', '2026-04-16 22:49:22'), +(61, 'currencySymbol', '₱', 1, 2, '2026-03-14 00:17:35', '2026-04-16 22:49:22'), +(62, 'currency_format', '2', 1, 2, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(63, 'decimalFormat', '2', 1, 2, '2026-03-14 00:17:35', '2026-04-16 22:49:22'), +(64, 'decimalSeparator', '.', 1, 2, '2026-03-14 00:17:35', '2026-04-16 22:49:22'), +(65, 'thousandsSeparator', ',', 1, 2, '2026-03-14 00:17:35', '2026-04-16 22:49:22'), +(66, 'floatNumber', '1', 1, 2, '2026-03-14 00:17:35', '2026-04-16 22:49:22'), +(67, 'currencySymbolSpace', '1', 1, 2, '2026-03-14 00:17:35', '2026-04-16 22:49:22'), +(68, 'currencySymbolPosition', 'before', 1, 2, '2026-03-14 00:17:35', '2026-04-16 22:49:22'), +(69, 'logo_light', 'logo_light.png', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(70, 'logo_dark', 'logo_dark.png', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(71, 'favicon', 'favicon.png', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(72, 'titleText', 'SAP', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(73, 'footerText', 'Copyright © SAP', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(74, 'sidebarVariant', 'inset', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(75, 'sidebarStyle', 'plain', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(76, 'layoutDirection', 'ltr', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(77, 'themeMode', 'light', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(78, 'themeColor', 'green', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(79, 'customColor', '#10b981', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(80, 'defaultLanguage', 'en', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(81, 'dateFormat', 'Y-m-d', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(82, 'timeFormat', 'H:i', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(83, 'calendarStartDay', '0', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(84, 'defaultCurrency', 'USD', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(85, 'currencySymbol', '$', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(86, 'currency_format', '2', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(87, 'decimalFormat', '2', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(88, 'decimalSeparator', '.', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(89, 'thousandsSeparator', ',', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(90, 'floatNumber', '1', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(91, 'currencySymbolSpace', '0', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(92, 'currencySymbolPosition', 'left', 1, 3, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(93, 'logo_light', 'logo_light.png', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(94, 'logo_dark', 'logo_dark.png', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(95, 'favicon', 'favicon.png', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(96, 'titleText', 'SAP', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(97, 'footerText', 'Copyright © SAP', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(98, 'sidebarVariant', 'inset', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(99, 'sidebarStyle', 'plain', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(100, 'layoutDirection', 'ltr', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(101, 'themeMode', 'light', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(102, 'themeColor', 'green', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(103, 'customColor', '#10b981', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(104, 'defaultLanguage', 'en', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(105, 'dateFormat', 'Y-m-d', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(106, 'timeFormat', 'H:i', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(107, 'calendarStartDay', '0', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(108, 'defaultCurrency', 'USD', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(109, 'currencySymbol', '$', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(110, 'currency_format', '2', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(111, 'decimalFormat', '2', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(112, 'decimalSeparator', '.', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(113, 'thousandsSeparator', ',', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(114, 'floatNumber', '1', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(115, 'currencySymbolSpace', '0', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(116, 'currencySymbolPosition', 'left', 1, 4, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(117, 'logo_light', 'logo_light.png', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(118, 'logo_dark', 'logo_dark.png', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(119, 'favicon', 'favicon.png', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(120, 'titleText', 'SAP', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(121, 'footerText', 'Copyright © SAP', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(122, 'sidebarVariant', 'inset', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(123, 'sidebarStyle', 'plain', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(124, 'layoutDirection', 'ltr', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(125, 'themeMode', 'light', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(126, 'themeColor', 'green', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(127, 'customColor', '#10b981', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(128, 'defaultLanguage', 'en', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(129, 'dateFormat', 'Y-m-d', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(130, 'timeFormat', 'H:i', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(131, 'calendarStartDay', '0', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(132, 'defaultCurrency', 'USD', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(133, 'currencySymbol', '$', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(134, 'currency_format', '2', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(135, 'decimalFormat', '2', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(136, 'decimalSeparator', '.', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(137, 'thousandsSeparator', ',', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(138, 'floatNumber', '1', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(139, 'currencySymbolSpace', '0', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(140, 'currencySymbolPosition', 'left', 1, 5, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(141, 'logo_light', 'logo_light.png', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(142, 'logo_dark', 'logo_dark.png', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(143, 'favicon', 'favicon.png', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(144, 'titleText', 'SAP', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(145, 'footerText', 'Copyright © SAP', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(146, 'sidebarVariant', 'inset', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(147, 'sidebarStyle', 'plain', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(148, 'layoutDirection', 'ltr', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(149, 'themeMode', 'light', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(150, 'themeColor', 'green', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(151, 'customColor', '#10b981', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(152, 'defaultLanguage', 'en', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(153, 'dateFormat', 'Y-m-d', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(154, 'timeFormat', 'H:i', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(155, 'calendarStartDay', '0', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(156, 'defaultCurrency', 'USD', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(157, 'currencySymbol', '$', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(158, 'currency_format', '2', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(159, 'decimalFormat', '2', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(160, 'decimalSeparator', '.', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(161, 'thousandsSeparator', ',', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(162, 'floatNumber', '1', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(163, 'currencySymbolSpace', '0', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(164, 'currencySymbolPosition', 'left', 1, 6, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(165, 'logo_light', 'logo_light.png', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(166, 'logo_dark', 'logo_dark.png', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(167, 'favicon', 'favicon.png', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(168, 'titleText', 'SAP', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(169, 'footerText', 'Copyright © SAP', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(170, 'sidebarVariant', 'inset', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(171, 'sidebarStyle', 'plain', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(172, 'layoutDirection', 'ltr', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(173, 'themeMode', 'light', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(174, 'themeColor', 'green', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(175, 'customColor', '#10b981', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(176, 'defaultLanguage', 'en', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(177, 'dateFormat', 'Y-m-d', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(178, 'timeFormat', 'H:i', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(179, 'calendarStartDay', '0', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(180, 'defaultCurrency', 'USD', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(181, 'currencySymbol', '$', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(182, 'currency_format', '2', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(183, 'decimalFormat', '2', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(184, 'decimalSeparator', '.', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(185, 'thousandsSeparator', ',', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(186, 'floatNumber', '1', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(187, 'currencySymbolSpace', '0', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(188, 'currencySymbolPosition', 'left', 1, 7, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(189, 'currencyName', 'Philippine Peso', 1, 1, '2026-03-14 06:01:49', '2026-03-23 08:08:02'), +(190, 'working_days', '[1,2,3,4,5]', 1, 2, '2026-03-14 06:02:44', '2026-04-27 14:49:28'), +(191, 'currencyName', 'Philippine Peso', 1, 2, '2026-03-14 20:07:25', '2026-04-16 22:49:22'), +(192, 'logo_light', 'mxra1L6HHqXcWr7WyoUBYKEmQ5dtmP1FyyGWbcKI.png', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(193, 'logo_dark', '7NBVslQo7kWezjPkwAUH4wXLwXoZEpjCtf8vGRGE.png', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(194, 'favicon', 'favicon.png', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(195, 'titleText', 'SAP', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(196, 'footerText', 'Copyright © SAP', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(197, 'sidebarVariant', 'inset', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(198, 'sidebarStyle', 'plain', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(199, 'layoutDirection', 'ltr', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(200, 'themeMode', 'light', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(201, 'themeColor', 'green', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(202, 'customColor', '#10b981', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(203, 'defaultLanguage', 'en', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(204, 'dateFormat', 'm-d-Y', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(205, 'timeFormat', 'H:i', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(206, 'calendarStartDay', '0', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(207, 'defaultCurrency', 'PHP', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(208, 'currencySymbol', '₱', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(209, 'currency_format', '2', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(210, 'decimalFormat', '2', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(211, 'decimalSeparator', '.', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(212, 'thousandsSeparator', ',', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(213, 'floatNumber', '1', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(214, 'currencySymbolSpace', '0', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(215, 'currencySymbolPosition', 'before', 1, 58, '2026-03-25 08:44:43', '2026-03-25 08:44:43'), +(216, 'working_days', '[1,2,3,4,5]', 1, 58, '2026-03-25 08:46:09', '2026-03-25 08:46:09'), +(217, 'enableRegistration', 'off', 1, 2, '2026-04-09 09:15:39', '2026-04-16 15:11:35'), +(218, 'enableEmailVerification', 'off', 1, 2, '2026-04-09 09:15:39', '2026-04-16 15:11:35'), +(219, 'landingPageEnabled', 'off', 1, 2, '2026-04-09 09:15:39', '2026-04-16 15:11:35'), +(220, 'termsConditionsUrl', NULL, 1, 2, '2026-04-09 09:15:39', '2026-04-16 15:11:35'), +(221, 'email_provider', 'smtp', 0, 2, '2026-04-09 09:48:46', '2026-04-09 09:49:03'), +(222, 'email_driver', 'smtp', 0, 2, '2026-04-09 09:48:46', '2026-04-09 09:49:03'), +(223, 'email_host', 'smtp.example.com', 0, 2, '2026-04-09 09:48:46', '2026-04-09 09:49:03'), +(224, 'email_port', '587', 0, 2, '2026-04-09 09:48:46', '2026-04-09 09:49:03'), +(225, 'email_username', 'user@example.com', 0, 2, '2026-04-09 09:48:46', '2026-04-09 09:49:03'), +(226, 'email_password', NULL, 0, 2, '2026-04-09 09:48:46', '2026-04-09 09:49:03'), +(227, 'email_encryption', 'tls', 0, 2, '2026-04-09 09:48:46', '2026-04-09 09:49:03'), +(228, 'email_fromAddress', 'noreply@example.com', 0, 2, '2026-04-09 09:48:46', '2026-04-09 09:49:03'), +(229, 'awsAccessKeyId', NULL, 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(230, 'awsSecretAccessKey', NULL, 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(231, 'awsDefaultRegion', 'us-east-1', 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(232, 'awsBucket', NULL, 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(233, 'awsUrl', NULL, 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(234, 'awsEndpoint', NULL, 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(235, 'wasabiAccessKey', NULL, 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(236, 'wasabiSecretKey', NULL, 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(237, 'wasabiRegion', 'us-east-1', 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(238, 'wasabiBucket', NULL, 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(239, 'wasabiUrl', NULL, 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(240, 'wasabiRoot', NULL, 0, 1, '2026-04-10 16:56:51', '2026-04-10 16:56:51'), +(241, 'logo_light', 'mxra1L6HHqXcWr7WyoUBYKEmQ5dtmP1FyyGWbcKI.png', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(242, 'logo_dark', '7NBVslQo7kWezjPkwAUH4wXLwXoZEpjCtf8vGRGE.png', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(243, 'favicon', 'favicon.png', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(244, 'titleText', 'SAP', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(245, 'footerText', 'Copyright © SAP', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(246, 'sidebarVariant', 'inset', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(247, 'sidebarStyle', 'plain', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(248, 'layoutDirection', 'ltr', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(249, 'themeMode', 'light', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(250, 'themeColor', 'green', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(251, 'customColor', '#10b981', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(252, 'defaultLanguage', 'en', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(253, 'dateFormat', 'm-d-Y', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(254, 'timeFormat', 'H:i', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(255, 'calendarStartDay', '0', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(256, 'defaultCurrency', 'PHP', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(257, 'currencySymbol', '₱', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(258, 'currency_format', '2', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(259, 'decimalFormat', '2', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(260, 'decimalSeparator', '.', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(261, 'thousandsSeparator', ',', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(262, 'floatNumber', '1', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(263, 'currencySymbolSpace', '0', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(264, 'currencySymbolPosition', 'before', 1, 84, '2026-04-20 04:55:10', '2026-04-20 04:55:10'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `shifts` +-- + +CREATE TABLE `shifts` ( + `id` bigint(20) UNSIGNED NOT NULL, + `shift_name` varchar(255) NOT NULL, + `start_time` time DEFAULT NULL, + `end_time` time DEFAULT NULL, + `break_start_time` time DEFAULT NULL, + `break_end_time` time DEFAULT NULL, + `is_night_shift` tinyint(1) NOT NULL DEFAULT 0, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `shifts` +-- + +INSERT INTO `shifts` (`id`, `shift_name`, `start_time`, `end_time`, `break_start_time`, `break_end_time`, `is_night_shift`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Morning Shift', '09:00:00', '17:00:00', '12:00:00', '13:00:00', 0, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'Evening Shift', '14:00:00', '22:00:00', '18:00:00', '19:00:00', 0, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'Night Shift', '22:00:00', '06:00:00', '02:00:00', '03:00:00', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Early Morning Shift', '06:00:00', '14:00:00', '10:00:00', '11:00:00', 0, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'Flexible Shift', '10:00:00', '18:00:00', '13:00:00', '14:00:00', 0, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 'Weekend Shift', '08:00:00', '16:00:00', '12:00:00', '13:00:00', 0, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(55, 'OPS 12:00AM-09:00AM', '00:00:00', '09:00:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(56, 'OPS 12:30AM-09:30AM', '00:30:00', '09:30:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(57, 'OPS 01:00AM-10:00AM', '01:00:00', '10:00:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(58, 'OPS 01:30AM-10:30AM', '01:30:00', '10:30:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(59, 'OPS 02:00AM-11:00AM', '02:00:00', '11:00:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(60, 'OPS 02:30AM-11:30AM', '02:30:00', '11:30:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(61, 'OPS 03:00AM-12:00PM', '03:00:00', '12:00:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(62, 'OPS 03:30AM-12:30PM', '03:30:00', '12:30:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(63, 'OPS 04:00AM-01:00PM', '04:00:00', '13:00:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(64, 'OPS 04:30AM-01:30PM', '04:30:00', '13:30:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(65, 'OPS 05:00AM-02:00PM', '05:00:00', '14:00:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(66, 'OPS 05:30AM-02:30PM', '05:30:00', '14:30:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(67, 'OPS 06:00AM-03:00PM', '06:00:00', '15:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(68, 'OPS 06:30AM-03:30PM', '06:30:00', '15:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(69, 'OPS 07:00AM-04:00PM', '07:00:00', '16:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(70, 'OPS 07:30AM-04:30PM', '07:30:00', '16:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(71, 'OPS 08:00AM-05:00PM', '08:00:00', '17:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(72, 'OPS 08:30AM-05:30PM', '08:30:00', '17:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(73, 'OPS 09:00AM-06:00PM', '09:00:00', '18:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(74, 'OPS 09:30AM-06:30PM', '09:30:00', '18:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(75, 'OPS 10:00AM-07:00PM', '10:00:00', '19:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(76, 'OPS 10:30AM-07:30PM', '10:30:00', '19:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(77, 'OPS 11:00AM-08:00PM', '11:00:00', '20:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(78, 'OPS 11:30AM-08:30PM', '11:30:00', '20:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(79, 'OPS 12:00PM-09:00PM', '12:00:00', '21:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(80, 'OPS 12:30PM-09:30PM', '12:30:00', '21:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(81, 'OPS 01:00PM-10:00PM', '13:00:00', '22:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(82, 'OPS 01:30PM-10:30PM', '13:30:00', '22:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(83, 'OPS 02:00PM-11:00PM', '14:00:00', '23:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(84, 'OPS 02:30PM-11:30PM', '14:30:00', '23:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(85, 'OPS 03:00PM-12:00AM', '15:00:00', '00:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(86, 'OPS 03:30PM-12:30AM', '15:30:00', '00:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(87, 'OPS 04:00PM-01:00AM', '16:00:00', '01:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(88, 'OPS 04:30PM-01:30AM', '16:30:00', '01:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(89, 'OPS 05:00PM-02:00AM', '17:00:00', '02:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(90, 'OPS 05:30PM-02:30AM', '17:30:00', '02:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(91, 'OPS 06:00PM-03:00AM', '18:00:00', '03:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(92, 'OPS 06:30PM-03:30AM', '18:30:00', '03:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(93, 'OPS 07:00PM-04:00AM', '19:00:00', '04:00:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(94, 'OPS 07:30PM-04:30AM', '19:30:00', '04:30:00', NULL, NULL, 0, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(95, 'OPS 08:00PM-05:00AM', '20:00:00', '05:00:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(96, 'OPS 08:30PM-05:30AM', '20:30:00', '05:30:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(97, 'OPS 09:00PM-06:00AM', '21:00:00', '06:00:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(98, 'OPS 09:30PM-06:30AM', '21:30:00', '06:30:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(99, 'OPS 10:00PM-07:00AM', '22:00:00', '07:00:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(100, 'OPS 10:30PM-07:30AM', '22:30:00', '07:30:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(101, 'OPS 11:00PM-08:00AM', '23:00:00', '08:00:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(102, 'OPS 11:30PM-08:30AM', '23:30:00', '08:30:00', NULL, NULL, 1, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(103, 'With Grace Period', '08:10:00', '05:10:00', '12:00:00', '03:00:00', 0, 2, 2, '2026-04-05 22:24:59', '2026-04-05 22:25:37'), +(104, 'Night Differential Shift', '06:00:00', '15:00:00', '10:00:00', '13:00:00', 1, 2, 2, '2026-04-06 03:43:54', '2026-04-06 03:43:54'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `skills` +-- + +CREATE TABLE `skills` ( + `id` bigint(20) UNSIGNED NOT NULL, + `skill_category_id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `description` text DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `training_url` varchar(255) DEFAULT NULL, + `training_notes` text DEFAULT NULL, + `sort_order` int(11) NOT NULL DEFAULT 0, + `created_by` 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 `skill_assessments` +-- + +CREATE TABLE `skill_assessments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `skill_id` bigint(20) UNSIGNED NOT NULL, + `previous_level` tinyint(4) DEFAULT NULL, + `new_level` tinyint(4) NOT NULL, + `assessed_by` bigint(20) UNSIGNED NOT NULL, + `notes` 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 `skill_categories` +-- + +CREATE TABLE `skill_categories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `type` enum('technical','soft','certification','industry') NOT NULL DEFAULT 'technical', + `description` text DEFAULT NULL, + `sort_order` int(11) NOT NULL DEFAULT 0, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `created_by` 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; + +-- +-- Dumping data for table `skill_categories` +-- + +INSERT INTO `skill_categories` (`id`, `name`, `type`, `description`, `sort_order`, `is_active`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Technical', 'technical', NULL, 10, 1, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(2, 'Soft Skills', 'technical', NULL, 20, 1, 2, '2026-03-14 00:17:54', '2026-03-14 00:17:54'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `skill_requirements` +-- + +CREATE TABLE `skill_requirements` ( + `id` bigint(20) UNSIGNED NOT NULL, + `designation_id` bigint(20) UNSIGNED NOT NULL, + `skill_id` bigint(20) UNSIGNED NOT NULL, + `min_proficiency` tinyint(4) NOT NULL DEFAULT 1 COMMENT 'Minimum required level 1-5', + `is_required` tinyint(1) NOT NULL DEFAULT 1, + `created_by` 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 `skill_reviews` +-- + +CREATE TABLE `skill_reviews` ( + `id` bigint(20) UNSIGNED NOT NULL, + `review_cycle_id` bigint(20) UNSIGNED NOT NULL, + `reviewer_id` bigint(20) UNSIGNED NOT NULL, + `reviewee_id` bigint(20) UNSIGNED NOT NULL, + `skill_id` bigint(20) UNSIGNED NOT NULL, + `rating` tinyint(4) DEFAULT NULL, + `comment` text DEFAULT NULL, + `is_anonymous` tinyint(1) NOT NULL DEFAULT 1, + `submitted_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; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `sources` +-- + +CREATE TABLE `sources` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `sources` +-- + +INSERT INTO `sources` (`id`, `name`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Website Contact Form', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 'Social Media Marketing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 'Email Marketing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 'Referral Program', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 'Cold Calling', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 'Google Ads Campaign', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 'Trade Show Events', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 'LinkedIn Outreach', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 'Content Marketing', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 'Partner Referral', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 'Direct Mail Campaign', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 'Webinar Registration', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 'SEO Organic Search', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 'Industry Publication', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 'Networking Events', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `task_comments` +-- + +CREATE TABLE `task_comments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `task_id` bigint(20) UNSIGNED NOT NULL, + `comment` text NOT NULL, + `user_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; + +-- +-- Dumping data for table `task_comments` +-- + +INSERT INTO `task_comments` (`id`, `task_id`, `comment`, `user_id`, `created_at`, `updated_at`) VALUES +(1, 1, 'Making good progress on this task.', 16, '2025-09-27 16:00:00', '2026-03-14 00:17:52'), +(2, 1, 'Need clarification on requirements.', 26, '2025-09-25 16:00:00', '2026-03-14 00:17:52'), +(3, 2, 'Implementation completed, ready for review.', 16, '2025-10-06 16:00:00', '2026-03-14 00:17:53'), +(4, 2, 'Implementation completed, ready for review.', 16, '2025-10-08 16:00:00', '2026-03-14 00:17:53'), +(5, 3, 'Testing completed successfully.', 16, '2025-10-17 16:00:00', '2026-03-14 00:17:53'), +(6, 3, 'Need clarification on requirements.', 26, '2025-10-18 16:00:00', '2026-03-14 00:17:53'), +(7, 4, 'Task assigned and ready to begin.', 16, '2025-10-25 16:00:00', '2026-03-14 00:17:53'), +(8, 5, 'Testing completed successfully.', 16, '2025-11-01 16:00:00', '2026-03-14 00:17:53'), +(9, 6, 'Task completed as per requirements.', 16, '2025-11-06 16:00:00', '2026-03-14 00:17:53'), +(10, 7, 'Need clarification on requirements.', 20, '2025-10-07 16:00:00', '2026-03-14 00:17:53'), +(11, 7, 'Implementation completed, ready for review.', 20, '2025-10-05 16:00:00', '2026-03-14 00:17:53'), +(12, 8, 'Task assigned and ready to begin.', 16, '2025-10-12 16:00:00', '2026-03-14 00:17:53'), +(13, 9, 'Testing completed successfully.', 20, '2025-10-21 16:00:00', '2026-03-14 00:17:53'), +(14, 10, 'Task completed as per requirements.', 16, '2025-10-21 16:00:00', '2026-03-14 00:17:53'), +(15, 11, 'Need clarification on requirements.', 20, '2025-10-28 16:00:00', '2026-03-14 00:17:53'), +(16, 12, 'Making good progress on this task.', 20, '2025-10-31 16:00:00', '2026-03-14 00:17:53'), +(17, 12, 'Making good progress on this task.', 16, '2025-10-29 16:00:00', '2026-03-14 00:17:53'), +(18, 13, 'Task completed as per requirements.', 22, '2025-10-15 16:00:00', '2026-03-14 00:17:53'), +(19, 13, 'Making good progress on this task.', 24, '2025-10-18 16:00:00', '2026-03-14 00:17:53'), +(20, 14, 'Task assigned and ready to begin.', 22, '2025-10-27 16:00:00', '2026-03-14 00:17:53'), +(21, 14, 'Task assigned and ready to begin.', 22, '2025-10-25 16:00:00', '2026-03-14 00:17:53'), +(22, 15, 'Testing completed successfully.', 24, '2025-10-29 04:00:00', '2026-03-14 00:17:53'), +(23, 15, 'Task completed as per requirements.', 24, '2025-10-30 04:00:00', '2026-03-14 00:17:53'), +(24, 16, 'Task completed as per requirements.', 16, '2025-11-01 16:00:00', '2026-03-14 00:17:53'), +(25, 16, 'Testing completed successfully.', 16, '2025-11-02 16:00:00', '2026-03-14 00:17:53'), +(26, 17, 'Task assigned and ready to begin.', 22, '2025-11-08 16:00:00', '2026-03-14 00:17:53'), +(27, 17, 'Task assigned and ready to begin.', 22, '2025-11-10 16:00:00', '2026-03-14 00:17:53'), +(28, 18, 'Testing completed successfully.', 22, '2025-11-16 16:00:00', '2026-03-14 00:17:53'), +(29, 18, 'Task assigned and ready to begin.', 24, '2025-11-14 16:00:00', '2026-03-14 00:17:53'), +(30, 19, 'Implementation completed, ready for review.', 16, '2025-11-16 16:00:00', '2026-03-14 00:17:53'), +(31, 20, 'Making good progress on this task.', 22, '2025-11-20 16:00:00', '2026-03-14 00:17:53'), +(32, 20, 'Task assigned and ready to begin.', 16, '2025-11-17 16:00:00', '2026-03-14 00:17:53'), +(33, 21, 'Implementation completed, ready for review.', 26, '2025-10-21 16:00:00', '2026-03-14 00:17:53'), +(34, 22, 'Task assigned and ready to begin.', 26, '2025-11-01 16:00:00', '2026-03-14 00:17:53'), +(35, 22, 'Implementation completed, ready for review.', 18, '2025-11-03 16:00:00', '2026-03-14 00:17:53'), +(36, 23, 'Need clarification on requirements.', 26, '2025-11-07 04:00:00', '2026-03-14 00:17:53'), +(37, 23, 'Task completed as per requirements.', 18, '2025-11-06 04:00:00', '2026-03-14 00:17:53'), +(38, 24, 'Task completed as per requirements.', 26, '2025-11-14 16:00:00', '2026-03-14 00:17:53'), +(39, 24, 'Implementation completed, ready for review.', 18, '2025-11-14 16:00:00', '2026-03-14 00:17:53'), +(40, 25, 'Task assigned and ready to begin.', 26, '2025-11-21 16:00:00', '2026-03-14 00:17:53'), +(41, 26, 'Testing completed successfully.', 26, '2025-11-23 16:00:00', '2026-03-14 00:17:53'), +(42, 26, 'Testing completed successfully.', 26, '2025-11-23 16:00:00', '2026-03-14 00:17:53'), +(43, 27, 'Task completed as per requirements.', 26, '2025-10-25 16:00:00', '2026-03-14 00:17:53'), +(44, 28, 'Implementation completed, ready for review.', 18, '2025-11-05 16:00:00', '2026-03-14 00:17:53'), +(45, 29, 'Task completed as per requirements.', 18, '2025-11-17 16:00:00', '2026-03-14 00:17:53'), +(46, 30, 'Testing completed successfully.', 18, '2025-11-25 16:00:00', '2026-03-14 00:17:53'), +(47, 30, 'Need clarification on requirements.', 18, '2025-11-24 16:00:00', '2026-03-14 00:17:53'), +(48, 31, 'Making good progress on this task.', 18, '2025-11-30 08:00:00', '2026-03-14 00:17:53'), +(49, 31, 'Implementation completed, ready for review.', 18, '2025-11-30 08:00:00', '2026-03-14 00:17:53'), +(50, 32, 'Testing completed successfully.', 18, '2025-11-30 00:00:00', '2026-03-14 00:17:53'), +(51, 33, 'Task assigned and ready to begin.', 12, '2025-11-05 16:00:00', '2026-03-14 00:17:53'), +(52, 34, 'Need clarification on requirements.', 12, '2025-11-13 04:00:00', '2026-03-14 00:17:53'), +(53, 35, 'Need clarification on requirements.', 12, '2025-11-29 16:00:00', '2026-03-14 00:17:53'), +(54, 36, 'Making good progress on this task.', 12, '2025-12-04 16:00:00', '2026-03-14 00:17:53'), +(55, 37, 'Testing completed successfully.', 12, '2025-12-05 16:00:00', '2026-03-14 00:17:53'), +(56, 38, 'Task completed as per requirements.', 12, '2025-12-25 16:00:00', '2026-03-14 00:17:53'), +(57, 38, 'Task assigned and ready to begin.', 12, '2025-12-24 16:00:00', '2026-03-14 00:17:53'), +(58, 39, 'Testing completed successfully.', 12, '2025-12-28 00:00:00', '2026-03-14 00:17:53'), +(59, 39, 'Task assigned and ready to begin.', 26, '2025-12-30 00:00:00', '2026-03-14 00:17:53'), +(60, 40, 'Task assigned and ready to begin.', 12, '2026-01-02 08:00:00', '2026-03-14 00:17:53'), +(61, 41, 'Need clarification on requirements.', 26, '2026-01-21 16:00:00', '2026-03-14 00:17:53'), +(62, 42, 'Implementation completed, ready for review.', 12, '2026-01-22 04:00:00', '2026-03-14 00:17:53'), +(63, 43, 'Implementation completed, ready for review.', 12, '2026-02-13 16:00:00', '2026-03-14 00:17:53'), +(64, 43, 'Task completed as per requirements.', 26, '2026-02-13 16:00:00', '2026-03-14 00:17:53'), +(65, 44, 'Need clarification on requirements.', 26, '2026-02-17 04:00:00', '2026-03-14 00:17:53'), +(66, 45, 'Task assigned and ready to begin.', 18, '2025-11-15 16:00:00', '2026-03-14 00:17:53'), +(67, 46, 'Making good progress on this task.', 22, '2025-11-20 04:00:00', '2026-03-14 00:17:53'), +(68, 46, 'Implementation completed, ready for review.', 22, '2025-11-18 04:00:00', '2026-03-14 00:17:53'), +(69, 47, 'Implementation completed, ready for review.', 22, '2025-12-21 16:00:00', '2026-03-14 00:17:53'), +(70, 48, 'Testing completed successfully.', 22, '2025-12-25 08:00:00', '2026-03-14 00:17:53'), +(71, 49, 'Task completed as per requirements.', 22, '2026-01-01 00:00:00', '2026-03-14 00:17:53'), +(72, 50, 'Task assigned and ready to begin.', 22, '2026-01-29 16:00:00', '2026-03-14 00:17:53'), +(73, 51, 'Task completed as per requirements.', 22, '2026-02-03 16:00:00', '2026-03-14 00:17:53'), +(74, 51, 'Implementation completed, ready for review.', 18, '2026-02-02 16:00:00', '2026-03-14 00:17:53'), +(75, 52, 'Task completed as per requirements.', 10, '2025-11-28 16:00:00', '2026-03-14 00:17:53'), +(76, 52, 'Making good progress on this task.', 20, '2025-11-24 16:00:00', '2026-03-14 00:17:53'), +(77, 53, 'Task assigned and ready to begin.', 10, '2025-11-29 16:00:00', '2026-03-14 00:17:53'), +(78, 53, 'Task assigned and ready to begin.', 10, '2025-11-29 16:00:00', '2026-03-14 00:17:53'), +(79, 54, 'Need clarification on requirements.', 20, '2025-12-23 16:00:00', '2026-03-14 00:17:53'), +(80, 54, 'Implementation completed, ready for review.', 20, '2025-12-22 16:00:00', '2026-03-14 00:17:53'), +(81, 55, 'Need clarification on requirements.', 20, '2025-12-26 16:00:00', '2026-03-14 00:17:53'), +(82, 55, 'Implementation completed, ready for review.', 20, '2025-12-27 16:00:00', '2026-03-14 00:17:53'), +(83, 56, 'Need clarification on requirements.', 20, '2026-01-13 16:00:00', '2026-03-14 00:17:53'), +(84, 56, 'Need clarification on requirements.', 10, '2026-01-16 16:00:00', '2026-03-14 00:17:53'), +(85, 57, 'Need clarification on requirements.', 10, '2026-01-21 04:00:00', '2026-03-14 00:17:53'), +(86, 58, 'Need clarification on requirements.', 10, '2026-02-10 16:00:00', '2026-03-14 00:17:53'), +(87, 58, 'Implementation completed, ready for review.', 20, '2026-02-09 16:00:00', '2026-03-14 00:17:53'), +(88, 59, 'Task assigned and ready to begin.', 10, '2026-03-07 16:00:00', '2026-03-14 00:17:53'), +(89, 59, 'Making good progress on this task.', 10, '2026-03-07 16:00:00', '2026-03-14 00:17:53'), +(90, 60, 'Need clarification on requirements.', 20, '2026-03-10 16:00:00', '2026-03-14 00:17:53'), +(91, 61, 'Making good progress on this task.', 20, '2026-03-09 16:00:00', '2026-03-14 00:17:53'), +(92, 61, 'Making good progress on this task.', 10, '2026-03-09 16:00:00', '2026-03-14 00:17:53'), +(93, 62, 'Implementation completed, ready for review.', 26, '2025-12-06 16:00:00', '2026-03-14 00:17:53'), +(94, 63, 'Task completed as per requirements.', 26, '2025-12-10 04:00:00', '2026-03-14 00:17:53'), +(95, 64, 'Implementation completed, ready for review.', 26, '2025-12-30 16:00:00', '2026-03-14 00:17:53'), +(96, 64, 'Implementation completed, ready for review.', 22, '2025-12-30 16:00:00', '2026-03-14 00:17:53'), +(97, 65, 'Task completed as per requirements.', 22, '2026-01-03 04:00:00', '2026-03-14 00:17:53'), +(98, 65, 'Need clarification on requirements.', 14, '2026-01-02 04:00:00', '2026-03-14 00:17:53'), +(99, 66, 'Need clarification on requirements.', 22, '2026-01-27 16:00:00', '2026-03-14 00:17:53'), +(100, 67, 'Implementation completed, ready for review.', 22, '2026-01-28 08:00:00', '2026-03-14 00:17:53'), +(101, 67, 'Task completed as per requirements.', 22, '2026-01-27 08:00:00', '2026-03-14 00:17:53'), +(102, 68, 'Need clarification on requirements.', 14, '2026-01-27 00:00:00', '2026-03-14 00:17:53'), +(103, 69, 'Task completed as per requirements.', 14, '2026-02-17 16:00:00', '2026-03-14 00:17:53'), +(104, 69, 'Testing completed successfully.', 26, '2026-02-17 16:00:00', '2026-03-14 00:17:53'), +(105, 70, 'Task completed as per requirements.', 14, '2026-03-17 16:00:00', '2026-03-14 00:17:53'), +(106, 70, 'Testing completed successfully.', 22, '2026-03-17 16:00:00', '2026-03-14 00:17:53'), +(107, 71, 'Implementation completed, ready for review.', 26, '2026-03-19 16:00:00', '2026-03-14 00:17:53'), +(108, 72, 'Need clarification on requirements.', 18, '2025-12-15 16:00:00', '2026-03-14 00:17:53'), +(109, 73, 'Making good progress on this task.', 22, '2025-12-19 16:00:00', '2026-03-14 00:17:53'), +(110, 73, 'Need clarification on requirements.', 18, '2025-12-18 16:00:00', '2026-03-14 00:17:53'), +(111, 74, 'Task completed as per requirements.', 22, '2025-12-19 16:00:00', '2026-03-14 00:17:53'), +(112, 75, 'Task completed as per requirements.', 18, '2026-01-17 16:00:00', '2026-03-14 00:17:53'), +(113, 75, 'Making good progress on this task.', 22, '2026-01-15 16:00:00', '2026-03-14 00:17:53'), +(114, 76, 'Task completed as per requirements.', 18, '2026-01-20 08:00:00', '2026-03-14 00:17:53'), +(115, 76, 'Task completed as per requirements.', 18, '2026-01-19 08:00:00', '2026-03-14 00:17:53'), +(116, 77, 'Testing completed successfully.', 18, '2026-01-19 00:00:00', '2026-03-14 00:17:53'), +(117, 77, 'Task completed as per requirements.', 18, '2026-01-20 00:00:00', '2026-03-14 00:17:53'), +(118, 78, 'Task assigned and ready to begin.', 22, '2026-02-15 16:00:00', '2026-03-14 00:17:53'), +(119, 78, 'Making good progress on this task.', 22, '2026-02-13 16:00:00', '2026-03-14 00:17:53'), +(120, 79, 'Task completed as per requirements.', 18, '2026-02-17 16:00:00', '2026-03-14 00:17:53'), +(121, 80, 'Making good progress on this task.', 22, '2026-02-16 16:00:00', '2026-03-14 00:17:53'), +(122, 81, 'Task assigned and ready to begin.', 22, '2026-03-17 16:00:00', '2026-03-14 00:17:53'), +(123, 82, 'Testing completed successfully.', 18, '2026-03-18 16:00:00', '2026-03-14 00:17:53'), +(124, 83, 'Implementation completed, ready for review.', 18, '2026-03-23 16:00:00', '2026-03-14 00:17:53'), +(125, 83, 'Testing completed successfully.', 22, '2026-03-22 16:00:00', '2026-03-14 00:17:53'), +(126, 84, 'Testing completed successfully.', 18, '2025-12-28 16:00:00', '2026-03-14 00:17:53'), +(127, 84, 'Making good progress on this task.', 18, '2025-12-28 16:00:00', '2026-03-14 00:17:53'), +(128, 85, 'Need clarification on requirements.', 14, '2025-12-31 00:00:00', '2026-03-14 00:17:53'), +(129, 85, 'Task completed as per requirements.', 18, '2025-12-30 00:00:00', '2026-03-14 00:17:53'), +(130, 86, 'Implementation completed, ready for review.', 14, '2025-12-29 08:00:00', '2026-03-14 00:17:53'), +(131, 87, 'Task completed as per requirements.', 18, '2026-01-18 16:00:00', '2026-03-14 00:17:53'), +(132, 88, 'Making good progress on this task.', 14, '2026-02-13 16:00:00', '2026-03-14 00:17:53'), +(133, 88, 'Testing completed successfully.', 18, '2026-02-12 16:00:00', '2026-03-14 00:17:53'), +(134, 89, 'Implementation completed, ready for review.', 18, '2026-02-18 08:00:00', '2026-03-14 00:17:53'), +(135, 89, 'Need clarification on requirements.', 18, '2026-02-15 08:00:00', '2026-03-14 00:17:53'), +(136, 90, 'Implementation completed, ready for review.', 14, '2026-02-18 00:00:00', '2026-03-14 00:17:53'), +(137, 91, 'Making good progress on this task.', 14, '2026-03-12 16:00:00', '2026-03-14 00:17:53'), +(138, 91, 'Task assigned and ready to begin.', 18, '2026-03-09 16:00:00', '2026-03-14 00:17:53'), +(139, 92, 'Task assigned and ready to begin.', 14, '2026-03-13 04:00:00', '2026-03-14 00:17:53'), +(140, 93, 'Need clarification on requirements.', 22, '2026-01-04 16:00:00', '2026-03-14 00:17:53'), +(141, 93, 'Making good progress on this task.', 22, '2026-01-03 16:00:00', '2026-03-14 00:17:53'), +(142, 94, 'Task completed as per requirements.', 20, '2026-01-06 16:00:00', '2026-03-14 00:17:53'), +(143, 95, 'Implementation completed, ready for review.', 22, '2026-01-31 16:00:00', '2026-03-14 00:17:53'), +(144, 96, 'Need clarification on requirements.', 22, '2026-02-02 08:00:00', '2026-03-14 00:17:53'), +(145, 97, 'Task assigned and ready to begin.', 22, '2026-02-05 00:00:00', '2026-03-14 00:17:53'), +(146, 98, 'Need clarification on requirements.', 20, '2026-02-26 16:00:00', '2026-03-14 00:17:53'), +(147, 99, 'Implementation completed, ready for review.', 20, '2026-03-23 16:00:00', '2026-03-14 00:17:53'), +(148, 99, 'Making good progress on this task.', 22, '2026-03-20 16:00:00', '2026-03-14 00:17:53'), +(149, 100, 'Testing completed successfully.', 22, '2026-03-22 16:00:00', '2026-03-14 00:17:53'), +(150, 100, 'Need clarification on requirements.', 20, '2026-03-22 16:00:00', '2026-03-14 00:17:53'), +(151, 101, 'Testing completed successfully.', 22, '2026-03-27 16:00:00', '2026-03-14 00:17:53'), +(152, 101, 'Need clarification on requirements.', 20, '2026-03-23 16:00:00', '2026-03-14 00:17:53'), +(153, 102, 'Task completed as per requirements.', 16, '2026-01-12 16:00:00', '2026-03-14 00:17:53'), +(154, 102, 'Making good progress on this task.', 16, '2026-01-09 16:00:00', '2026-03-14 00:17:53'), +(155, 103, 'Task assigned and ready to begin.', 14, '2026-01-13 16:00:00', '2026-03-14 00:17:53'), +(156, 103, 'Testing completed successfully.', 16, '2026-01-12 16:00:00', '2026-03-14 00:17:53'), +(157, 104, 'Making good progress on this task.', 16, '2026-01-17 16:00:00', '2026-03-14 00:17:53'), +(158, 104, 'Need clarification on requirements.', 16, '2026-01-16 16:00:00', '2026-03-14 00:17:53'), +(159, 105, 'Implementation completed, ready for review.', 16, '2026-02-06 16:00:00', '2026-03-14 00:17:53'), +(160, 105, 'Task completed as per requirements.', 14, '2026-02-07 16:00:00', '2026-03-14 00:17:53'), +(161, 106, 'Implementation completed, ready for review.', 14, '2026-03-04 16:00:00', '2026-03-14 00:17:53'), +(162, 107, 'Testing completed successfully.', 16, '2026-03-09 16:00:00', '2026-03-14 00:17:53'), +(163, 108, 'Implementation completed, ready for review.', 8, '2026-01-19 16:00:00', '2026-03-14 00:17:53'), +(164, 108, 'Implementation completed, ready for review.', 8, '2026-01-18 16:00:00', '2026-03-14 00:17:53'), +(165, 109, 'Testing completed successfully.', 8, '2026-01-22 04:00:00', '2026-03-14 00:17:53'), +(166, 109, 'Task assigned and ready to begin.', 8, '2026-01-24 04:00:00', '2026-03-14 00:17:53'), +(167, 110, 'Need clarification on requirements.', 16, '2026-02-04 16:00:00', '2026-03-14 00:17:53'), +(168, 111, 'Testing completed successfully.', 26, '2026-02-09 08:00:00', '2026-03-14 00:17:53'), +(169, 111, 'Need clarification on requirements.', 26, '2026-02-07 08:00:00', '2026-03-14 00:17:53'), +(170, 112, 'Task completed as per requirements.', 8, '2026-02-10 00:00:00', '2026-03-14 00:17:53'), +(171, 113, 'Need clarification on requirements.', 8, '2026-02-21 16:00:00', '2026-03-14 00:17:53'), +(172, 114, 'Implementation completed, ready for review.', 26, '2026-02-24 04:00:00', '2026-03-14 00:17:53'), +(173, 114, 'Implementation completed, ready for review.', 8, '2026-02-28 04:00:00', '2026-03-14 00:17:53'), +(174, 115, 'Task assigned and ready to begin.', 26, '2026-03-10 16:00:00', '2026-03-14 00:17:53'), +(175, 116, 'Implementation completed, ready for review.', 26, '2026-01-23 16:00:00', '2026-03-14 00:17:53'), +(176, 116, 'Task assigned and ready to begin.', 26, '2026-01-26 16:00:00', '2026-03-14 00:17:53'), +(177, 117, 'Testing completed successfully.', 12, '2026-01-29 04:00:00', '2026-03-14 00:17:53'), +(178, 118, 'Task completed as per requirements.', 26, '2026-02-11 16:00:00', '2026-03-14 00:17:53'), +(179, 118, 'Making good progress on this task.', 26, '2026-02-09 16:00:00', '2026-03-14 00:17:53'), +(180, 119, 'Making good progress on this task.', 12, '2026-02-15 00:00:00', '2026-03-14 00:17:53'), +(181, 120, 'Testing completed successfully.', 16, '2026-02-18 08:00:00', '2026-03-14 00:17:53'), +(182, 121, 'Testing completed successfully.', 16, '2026-02-27 16:00:00', '2026-03-14 00:17:53'), +(183, 122, 'Need clarification on requirements.', 26, '2026-03-18 16:00:00', '2026-03-14 00:17:53'), +(184, 123, 'Testing completed successfully.', 12, '2026-03-21 16:00:00', '2026-03-14 00:17:53'), +(185, 124, 'Task completed as per requirements.', 26, '2026-03-24 16:00:00', '2026-03-14 00:17:53'), +(186, 124, 'Need clarification on requirements.', 16, '2026-03-26 16:00:00', '2026-03-14 00:17:53'), +(187, 125, 'Need clarification on requirements.', 10, '2026-02-02 16:00:00', '2026-03-14 00:17:53'), +(188, 126, 'Testing completed successfully.', 18, '2026-02-26 16:00:00', '2026-03-14 00:17:53'), +(189, 126, 'Task completed as per requirements.', 18, '2026-02-26 16:00:00', '2026-03-14 00:17:53'), +(190, 127, 'Making good progress on this task.', 20, '2026-03-01 16:00:00', '2026-03-14 00:17:53'), +(191, 128, 'Task completed as per requirements.', 18, '2026-03-16 16:00:00', '2026-03-14 00:17:53'), +(192, 128, 'Testing completed successfully.', 10, '2026-03-15 16:00:00', '2026-03-14 00:17:53'), +(193, 129, 'Need clarification on requirements.', 18, '2026-03-20 08:00:00', '2026-03-14 00:17:53'), +(194, 130, 'Testing completed successfully.', 20, '2026-03-25 00:00:00', '2026-03-14 00:17:53'), +(195, 130, 'Implementation completed, ready for review.', 10, '2026-03-25 00:00:00', '2026-03-14 00:17:53'), +(196, 131, 'Implementation completed, ready for review.', 18, '2026-04-07 16:00:00', '2026-03-14 00:17:53'), +(197, 132, 'Task assigned and ready to begin.', 18, '2026-04-07 00:00:00', '2026-03-14 00:17:53'), +(198, 133, 'Implementation completed, ready for review.', 18, '2026-04-08 08:00:00', '2026-03-14 00:17:53'), +(199, 133, 'Testing completed successfully.', 20, '2026-04-12 08:00:00', '2026-03-14 00:17:53'), +(200, 134, 'Implementation completed, ready for review.', 10, '2026-04-24 16:00:00', '2026-03-14 00:17:53'), +(201, 135, 'Making good progress on this task.', 18, '2026-04-30 04:00:00', '2026-03-14 00:17:53'), +(202, 135, 'Testing completed successfully.', 18, '2026-04-29 04:00:00', '2026-03-14 00:17:53'), +(203, 136, 'Task assigned and ready to begin.', 8, '2026-02-12 16:00:00', '2026-03-14 00:17:53'), +(204, 137, 'Need clarification on requirements.', 8, '2026-02-15 08:00:00', '2026-03-14 00:17:53'), +(205, 137, 'Need clarification on requirements.', 22, '2026-02-15 08:00:00', '2026-03-14 00:17:53'), +(206, 138, 'Implementation completed, ready for review.', 22, '2026-02-18 00:00:00', '2026-03-14 00:17:53'), +(207, 138, 'Implementation completed, ready for review.', 8, '2026-02-17 00:00:00', '2026-03-14 00:17:53'), +(208, 139, 'Implementation completed, ready for review.', 8, '2026-03-08 16:00:00', '2026-03-14 00:17:53'), +(209, 139, 'Making good progress on this task.', 22, '2026-03-08 16:00:00', '2026-03-14 00:17:53'), +(210, 140, 'Making good progress on this task.', 8, '2026-04-01 16:00:00', '2026-03-14 00:17:53'), +(211, 140, 'Implementation completed, ready for review.', 8, '2026-04-01 16:00:00', '2026-03-14 00:17:53'), +(212, 141, 'Making good progress on this task.', 22, '2026-04-26 16:00:00', '2026-03-14 00:17:53'), +(213, 142, 'Testing completed successfully.', 14, '2026-02-21 16:00:00', '2026-03-14 00:17:53'), +(214, 143, 'Making good progress on this task.', 16, '2026-02-20 00:00:00', '2026-03-14 00:17:53'), +(215, 144, 'Testing completed successfully.', 16, '2026-02-25 08:00:00', '2026-03-14 00:17:53'), +(216, 145, 'Testing completed successfully.', 14, '2026-03-17 16:00:00', '2026-03-14 00:17:53'), +(217, 145, 'Task assigned and ready to begin.', 26, '2026-03-18 16:00:00', '2026-03-14 00:17:53'), +(218, 146, 'Testing completed successfully.', 16, '2026-04-09 16:00:00', '2026-03-14 00:17:53'), +(219, 147, 'Making good progress on this task.', 26, '2026-02-26 16:00:00', '2026-03-14 00:17:53'), +(220, 147, 'Task completed as per requirements.', 10, '2026-02-25 16:00:00', '2026-03-14 00:17:53'), +(221, 148, 'Making good progress on this task.', 26, '2026-03-01 04:00:00', '2026-03-14 00:17:53'), +(222, 148, 'Task completed as per requirements.', 10, '2026-03-01 04:00:00', '2026-03-14 00:17:53'), +(223, 149, 'Need clarification on requirements.', 26, '2026-03-19 16:00:00', '2026-03-14 00:17:53'), +(224, 150, 'Need clarification on requirements.', 10, '2026-04-11 16:00:00', '2026-03-14 00:17:53'), +(225, 151, 'Need clarification on requirements.', 26, '2026-04-10 04:00:00', '2026-03-14 00:17:53'), +(226, 152, 'Making good progress on this task.', 26, '2026-03-07 16:00:00', '2026-03-14 00:17:53'), +(227, 153, 'Need clarification on requirements.', 22, '2026-03-10 16:00:00', '2026-03-14 00:17:53'), +(228, 154, 'Making good progress on this task.', 26, '2026-03-12 16:00:00', '2026-03-14 00:17:53'), +(229, 155, 'Need clarification on requirements.', 22, '2026-03-22 16:00:00', '2026-03-14 00:17:53'), +(230, 156, 'Need clarification on requirements.', 22, '2026-03-25 04:00:00', '2026-03-14 00:17:53'), +(231, 156, 'Need clarification on requirements.', 22, '2026-03-27 04:00:00', '2026-03-14 00:17:53'), +(232, 157, 'Need clarification on requirements.', 22, '2026-04-08 16:00:00', '2026-03-14 00:17:53'), +(233, 157, 'Need clarification on requirements.', 22, '2026-04-05 16:00:00', '2026-03-14 00:17:53'), +(234, 158, 'Task completed as per requirements.', 26, '2026-04-10 08:00:00', '2026-03-14 00:17:53'), +(235, 158, 'Task completed as per requirements.', 22, '2026-04-11 08:00:00', '2026-03-14 00:17:53'), +(236, 159, 'Task completed as per requirements.', 22, '2026-04-11 00:00:00', '2026-03-14 00:17:53'), +(237, 159, 'Making good progress on this task.', 26, '2026-04-15 00:00:00', '2026-03-14 00:17:53'), +(238, 160, 'Making good progress on this task.', 22, '2026-04-24 16:00:00', '2026-03-14 00:17:53'), +(239, 161, 'Task completed as per requirements.', 22, '2026-04-28 16:00:00', '2026-03-14 00:17:53'), +(240, 161, 'Testing completed successfully.', 26, '2026-04-28 16:00:00', '2026-03-14 00:17:53'), +(241, 162, 'Task completed as per requirements.', 22, '2026-05-03 16:00:00', '2026-03-14 00:17:53'), +(242, 163, 'Task assigned and ready to begin.', 22, '2026-05-09 16:00:00', '2026-03-14 00:17:53'), +(243, 164, 'Testing completed successfully.', 22, '2026-05-11 16:00:00', '2026-03-14 00:17:53'), +(244, 164, 'Testing completed successfully.', 26, '2026-05-14 16:00:00', '2026-03-14 00:17:53'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `task_stages` +-- + +CREATE TABLE `task_stages` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `color` varchar(255) NOT NULL DEFAULT '#051c4b', + `complete` tinyint(1) NOT NULL, + `order` int(11) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `task_stages` +-- + +INSERT INTO `task_stages` (`id`, `name`, `color`, `complete`, `order`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Todo', '#77b6ea', 0, 0, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 'In Progress', '#545454', 0, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 'Review', '#3cb8d9', 0, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 'Done', '#37b37e', 1, 3, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `task_subtasks` +-- + +CREATE TABLE `task_subtasks` ( + `id` bigint(20) UNSIGNED NOT NULL, + `task_id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `due_date` date DEFAULT NULL, + `is_completed` tinyint(1) NOT NULL DEFAULT 0, + `user_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; + +-- +-- Dumping data for table `task_subtasks` +-- + +INSERT INTO `task_subtasks` (`id`, `task_id`, `name`, `due_date`, `is_completed`, `user_id`, `created_at`, `updated_at`) VALUES +(1, 1, 'Requirements analysis', '2025-09-30', 1, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 1, 'Resource allocation', '2025-10-01', 1, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 1, 'Timeline planning', '2025-09-30', 0, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 2, 'Requirements analysis', '2025-10-11', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(5, 2, 'Resource allocation', '2025-10-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(6, 3, 'Code implementation', '2025-10-19', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(7, 3, 'Unit testing', '2025-10-22', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(8, 4, 'Environment setup', '2025-10-29', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(9, 4, 'Deployment execution', '2025-10-31', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(10, 5, 'Environment setup', '2025-11-01', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(11, 5, 'Deployment execution', '2025-11-01', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(12, 5, 'Verification', '2025-10-30', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(13, 6, 'Environment setup', '2025-11-07', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(14, 6, 'Deployment execution', '2025-11-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(15, 6, 'Verification', '2025-11-05', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(16, 7, 'Design mockups', '2025-10-06', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(17, 7, 'Prototype creation', '2025-10-11', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(18, 8, 'Design mockups', '2025-10-14', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(19, 8, 'Prototype creation', '2025-10-16', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(20, 8, 'Design review', '2025-10-14', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(21, 9, 'Design mockups', '2025-10-24', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(22, 9, 'Prototype creation', '2025-10-19', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(23, 9, 'Design review', '2025-10-23', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(24, 10, 'Design mockups', '2025-10-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(25, 10, 'Prototype creation', '2025-10-28', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(26, 11, 'Design mockups', '2025-10-28', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(27, 11, 'Prototype creation', '2025-10-27', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(28, 11, 'Design review', '2025-11-01', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(29, 12, 'Code implementation', '2025-10-30', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(30, 12, 'Unit testing', '2025-11-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(31, 13, 'Requirements analysis', '2025-10-21', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(32, 13, 'Resource allocation', '2025-10-19', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(33, 14, 'Code implementation', '2025-10-27', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(34, 14, 'Unit testing', '2025-10-29', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(35, 15, 'Code implementation', '2025-10-31', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(36, 15, 'Unit testing', '2025-10-28', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(37, 16, 'Requirements analysis', '2025-11-05', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(38, 16, 'Resource allocation', '2025-11-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(39, 17, 'Requirements analysis', '2025-11-10', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(40, 17, 'Resource allocation', '2025-11-10', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(41, 18, 'Requirements analysis', '2025-11-17', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(42, 18, 'Resource allocation', '2025-11-13', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(43, 19, 'Requirements analysis', '2025-11-23', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(44, 19, 'Resource allocation', '2025-11-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(45, 19, 'Timeline planning', '2025-11-22', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(46, 20, 'Requirements analysis', '2025-11-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(47, 20, 'Resource allocation', '2025-11-22', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(48, 21, 'Design mockups', '2025-10-26', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(49, 21, 'Prototype creation', '2025-10-22', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(50, 21, 'Design review', '2025-10-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(51, 22, 'Code implementation', '2025-11-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(52, 22, 'Unit testing', '2025-11-02', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(53, 22, 'Code review', '2025-11-06', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(54, 23, 'Code implementation', '2025-11-08', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(55, 23, 'Unit testing', '2025-11-12', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(56, 23, 'Code review', '2025-11-06', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(57, 24, 'Requirements analysis', '2025-11-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(58, 24, 'Resource allocation', '2025-11-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(59, 24, 'Timeline planning', '2025-11-16', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(60, 25, 'Requirements analysis', '2025-11-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(61, 25, 'Resource allocation', '2025-11-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(62, 26, 'Requirements analysis', '2025-11-23', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(63, 26, 'Resource allocation', '2025-11-23', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(64, 26, 'Timeline planning', '2025-11-27', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(65, 27, 'Requirements analysis', '2025-10-27', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(66, 27, 'Resource allocation', '2025-10-31', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(67, 27, 'Timeline planning', '2025-10-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(68, 28, 'Design mockups', '2025-11-05', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(69, 28, 'Prototype creation', '2025-11-08', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(70, 29, 'Environment setup', '2025-11-21', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(71, 29, 'Deployment execution', '2025-11-15', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(72, 29, 'Verification', '2025-11-18', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(73, 30, 'Requirements analysis', '2025-12-01', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(74, 30, 'Resource allocation', '2025-11-25', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(75, 30, 'Timeline planning', '2025-11-30', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(76, 31, 'Requirements analysis', '2025-11-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(77, 31, 'Resource allocation', '2025-12-01', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(78, 31, 'Timeline planning', '2025-11-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(79, 32, 'Requirements analysis', '2025-12-01', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(80, 32, 'Resource allocation', '2025-11-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(81, 32, 'Timeline planning', '2025-12-03', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(82, 33, 'Design mockups', '2025-11-10', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(83, 33, 'Prototype creation', '2025-11-05', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(84, 33, 'Design review', '2025-11-05', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(85, 34, 'Design mockups', '2025-11-10', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(86, 34, 'Prototype creation', '2025-11-14', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(87, 34, 'Design review', '2025-11-15', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(88, 35, 'Design mockups', '2025-11-30', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(89, 35, 'Prototype creation', '2025-12-04', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(90, 35, 'Design review', '2025-12-04', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(91, 36, 'Design mockups', '2025-12-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(92, 36, 'Prototype creation', '2025-12-05', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(93, 36, 'Design review', '2025-12-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(94, 37, 'Design mockups', '2025-12-11', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(95, 37, 'Prototype creation', '2025-12-11', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(96, 38, 'Code implementation', '2025-12-31', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(97, 38, 'Unit testing', '2025-12-30', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(98, 38, 'Code review', '2025-12-27', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(99, 39, 'Code implementation', '2025-12-31', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(100, 39, 'Unit testing', '2025-12-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(101, 39, 'Code review', '2026-01-02', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(102, 40, 'Code implementation', '2025-12-31', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(103, 40, 'Unit testing', '2026-01-01', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(104, 41, 'Requirements analysis', '2026-01-23', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(105, 41, 'Resource allocation', '2026-01-22', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(106, 41, 'Timeline planning', '2026-01-22', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(107, 42, 'Requirements analysis', '2026-01-23', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(108, 42, 'Resource allocation', '2026-01-28', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(109, 42, 'Timeline planning', '2026-01-23', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(110, 43, 'Environment setup', '2026-02-17', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(111, 43, 'Deployment execution', '2026-02-14', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(112, 44, 'Environment setup', '2026-02-20', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(113, 44, 'Deployment execution', '2026-02-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(114, 45, 'Requirements analysis', '2025-11-16', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(115, 45, 'Resource allocation', '2025-11-17', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(116, 45, 'Timeline planning', '2025-11-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(117, 46, 'Requirements analysis', '2025-11-22', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(118, 46, 'Resource allocation', '2025-11-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(119, 46, 'Timeline planning', '2025-11-24', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(120, 47, 'Requirements analysis', '2025-12-25', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(121, 47, 'Resource allocation', '2025-12-27', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(122, 48, 'Requirements analysis', '2025-12-29', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(123, 48, 'Resource allocation', '2025-12-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(124, 48, 'Timeline planning', '2025-12-27', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(125, 49, 'Requirements analysis', '2026-01-01', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(126, 49, 'Resource allocation', '2026-01-01', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(127, 49, 'Timeline planning', '2026-01-03', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(128, 50, 'Requirements analysis', '2026-01-31', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(129, 50, 'Resource allocation', '2026-01-29', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(130, 50, 'Timeline planning', '2026-01-29', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(131, 51, 'Requirements analysis', '2026-02-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(132, 51, 'Resource allocation', '2026-02-02', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(133, 51, 'Timeline planning', '2026-02-05', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(134, 52, 'Requirements analysis', '2025-11-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(135, 52, 'Resource allocation', '2025-11-25', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(136, 52, 'Timeline planning', '2025-11-27', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(137, 53, 'Requirements analysis', '2025-11-29', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(138, 53, 'Resource allocation', '2025-12-02', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(139, 54, 'Code implementation', '2025-12-22', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(140, 54, 'Unit testing', '2025-12-26', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(141, 55, 'Code implementation', '2025-12-29', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(142, 55, 'Unit testing', '2025-12-25', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(143, 55, 'Code review', '2025-12-31', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(144, 56, 'Code implementation', '2026-01-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(145, 56, 'Unit testing', '2026-01-14', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(146, 56, 'Code review', '2026-01-18', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(147, 57, 'Code implementation', '2026-01-20', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(148, 57, 'Unit testing', '2026-01-18', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(149, 57, 'Code review', '2026-01-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(150, 58, 'Test execution', '2026-02-13', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(151, 58, 'Bug reporting', '2026-02-09', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(152, 58, 'Regression testing', '2026-02-10', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(153, 59, 'Requirements analysis', '2026-03-11', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(154, 59, 'Resource allocation', '2026-03-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(155, 60, 'Requirements analysis', '2026-03-11', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(156, 60, 'Resource allocation', '2026-03-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(157, 60, 'Timeline planning', '2026-03-10', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(158, 61, 'Requirements analysis', '2026-03-09', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(159, 61, 'Resource allocation', '2026-03-11', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(160, 62, 'Requirements analysis', '2025-12-08', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(161, 62, 'Resource allocation', '2025-12-10', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(162, 63, 'Requirements analysis', '2025-12-08', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(163, 63, 'Resource allocation', '2025-12-08', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(164, 63, 'Timeline planning', '2025-12-10', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(165, 64, 'Code implementation', '2026-01-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(166, 64, 'Unit testing', '2026-01-02', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(167, 64, 'Code review', '2025-12-31', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(168, 65, 'Code implementation', '2026-01-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(169, 65, 'Unit testing', '2026-01-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(170, 65, 'Code review', '2026-01-01', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(171, 66, 'Requirements analysis', '2026-01-30', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(172, 66, 'Resource allocation', '2026-01-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(173, 67, 'Requirements analysis', '2026-01-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(174, 67, 'Resource allocation', '2026-01-27', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(175, 67, 'Timeline planning', '2026-01-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(176, 68, 'Requirements analysis', '2026-01-31', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(177, 68, 'Resource allocation', '2026-01-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(178, 68, 'Timeline planning', '2026-01-27', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(179, 69, 'Environment setup', '2026-02-19', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(180, 69, 'Deployment execution', '2026-02-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(181, 69, 'Verification', '2026-02-22', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(182, 70, 'Requirements analysis', '2026-03-15', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(183, 70, 'Resource allocation', '2026-03-18', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(184, 70, 'Timeline planning', '2026-03-17', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(185, 71, 'Requirements analysis', '2026-03-24', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(186, 71, 'Resource allocation', '2026-03-23', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(187, 71, 'Timeline planning', '2026-03-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(188, 72, 'Code implementation', '2025-12-21', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(189, 72, 'Unit testing', '2025-12-17', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(190, 72, 'Code review', '2025-12-16', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(191, 73, 'Code implementation', '2025-12-23', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(192, 73, 'Unit testing', '2025-12-17', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(193, 73, 'Code review', '2025-12-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(194, 74, 'Code implementation', '2025-12-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(195, 74, 'Unit testing', '2025-12-22', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(196, 75, 'Requirements analysis', '2026-01-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(197, 75, 'Resource allocation', '2026-01-16', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(198, 75, 'Timeline planning', '2026-01-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(199, 76, 'Requirements analysis', '2026-01-18', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(200, 76, 'Resource allocation', '2026-01-16', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(201, 77, 'Requirements analysis', '2026-01-21', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(202, 77, 'Resource allocation', '2026-01-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(203, 77, 'Timeline planning', '2026-01-23', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(204, 78, 'Test execution', '2026-02-18', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(205, 78, 'Bug reporting', '2026-02-17', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(206, 78, 'Regression testing', '2026-02-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(207, 79, 'Test execution', '2026-02-20', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(208, 79, 'Bug reporting', '2026-02-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(209, 79, 'Regression testing', '2026-02-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(210, 80, 'Test execution', '2026-02-23', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(211, 80, 'Bug reporting', '2026-02-19', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(212, 81, 'Environment setup', '2026-03-17', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(213, 81, 'Deployment execution', '2026-03-16', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(214, 81, 'Verification', '2026-03-20', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(215, 82, 'Environment setup', '2026-03-22', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(216, 82, 'Deployment execution', '2026-03-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(217, 82, 'Verification', '2026-03-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(218, 83, 'Environment setup', '2026-03-25', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(219, 83, 'Deployment execution', '2026-03-24', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(220, 84, 'Requirements analysis', '2025-12-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(221, 84, 'Resource allocation', '2025-12-27', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(222, 84, 'Timeline planning', '2025-12-30', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(223, 85, 'Requirements analysis', '2025-12-27', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(224, 85, 'Resource allocation', '2026-01-01', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(225, 85, 'Timeline planning', '2026-01-02', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(226, 86, 'Requirements analysis', '2026-01-04', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(227, 86, 'Resource allocation', '2026-01-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(228, 87, 'Design mockups', '2026-01-21', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(229, 87, 'Prototype creation', '2026-01-25', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(230, 87, 'Design review', '2026-01-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(231, 88, 'Code implementation', '2026-02-18', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(232, 88, 'Unit testing', '2026-02-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(233, 89, 'Code implementation', '2026-02-16', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(234, 89, 'Unit testing', '2026-02-21', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(235, 90, 'Code implementation', '2026-02-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(236, 90, 'Unit testing', '2026-02-24', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(237, 91, 'Environment setup', '2026-03-16', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(238, 91, 'Deployment execution', '2026-03-11', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(239, 92, 'Environment setup', '2026-03-13', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(240, 92, 'Deployment execution', '2026-03-18', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(241, 92, 'Verification', '2026-03-13', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(242, 93, 'Requirements analysis', '2026-01-06', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(243, 93, 'Resource allocation', '2026-01-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(244, 94, 'Requirements analysis', '2026-01-12', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(245, 94, 'Resource allocation', '2026-01-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(246, 94, 'Timeline planning', '2026-01-12', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(247, 95, 'Code implementation', '2026-01-29', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(248, 95, 'Unit testing', '2026-01-30', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(249, 96, 'Code implementation', '2026-02-06', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(250, 96, 'Unit testing', '2026-02-03', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(251, 96, 'Code review', '2026-02-06', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(252, 97, 'Code implementation', '2026-02-08', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(253, 97, 'Unit testing', '2026-02-03', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(254, 97, 'Code review', '2026-02-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(255, 98, 'Requirements analysis', '2026-02-24', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(256, 98, 'Resource allocation', '2026-02-28', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(257, 99, 'Requirements analysis', '2026-03-20', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(258, 99, 'Resource allocation', '2026-03-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(259, 100, 'Requirements analysis', '2026-03-27', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(260, 100, 'Resource allocation', '2026-03-23', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(261, 100, 'Timeline planning', '2026-03-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(262, 101, 'Requirements analysis', '2026-03-24', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(263, 101, 'Resource allocation', '2026-03-29', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(264, 102, 'Code implementation', '2026-01-14', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(265, 102, 'Unit testing', '2026-01-12', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(266, 102, 'Code review', '2026-01-12', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(267, 103, 'Code implementation', '2026-01-14', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(268, 103, 'Unit testing', '2026-01-18', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(269, 103, 'Code review', '2026-01-19', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(270, 104, 'Code implementation', '2026-01-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(271, 104, 'Unit testing', '2026-01-20', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(272, 105, 'Requirements analysis', '2026-02-08', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(273, 105, 'Resource allocation', '2026-02-06', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(274, 106, 'Requirements analysis', '2026-03-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(275, 106, 'Resource allocation', '2026-03-03', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(276, 106, 'Timeline planning', '2026-03-05', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(277, 107, 'Requirements analysis', '2026-03-07', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(278, 107, 'Resource allocation', '2026-03-11', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(279, 107, 'Timeline planning', '2026-03-11', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(280, 108, 'Requirements analysis', '2026-01-23', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(281, 108, 'Resource allocation', '2026-01-21', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(282, 109, 'Requirements analysis', '2026-01-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(283, 109, 'Resource allocation', '2026-01-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(284, 109, 'Timeline planning', '2026-01-28', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(285, 110, 'Design mockups', '2026-02-05', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(286, 110, 'Prototype creation', '2026-02-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(287, 110, 'Design review', '2026-02-05', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(288, 111, 'Design mockups', '2026-02-10', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(289, 111, 'Prototype creation', '2026-02-11', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(290, 112, 'Design mockups', '2026-02-11', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(291, 112, 'Prototype creation', '2026-02-10', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(292, 113, 'Code implementation', '2026-02-23', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(293, 113, 'Unit testing', '2026-02-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(294, 113, 'Code review', '2026-02-25', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(295, 114, 'Code implementation', '2026-02-28', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(296, 114, 'Unit testing', '2026-02-28', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(297, 114, 'Code review', '2026-02-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(298, 115, 'Requirements analysis', '2026-03-17', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(299, 115, 'Resource allocation', '2026-03-14', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(300, 115, 'Timeline planning', '2026-03-13', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(301, 116, 'Design mockups', '2026-01-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(302, 116, 'Prototype creation', '2026-01-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(303, 117, 'Design mockups', '2026-01-27', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(304, 117, 'Prototype creation', '2026-02-01', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(305, 118, 'Code implementation', '2026-02-15', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(306, 118, 'Unit testing', '2026-02-15', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(307, 118, 'Code review', '2026-02-11', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(308, 119, 'Code implementation', '2026-02-18', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(309, 119, 'Unit testing', '2026-02-15', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(310, 119, 'Code review', '2026-02-15', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(311, 120, 'Code implementation', '2026-02-20', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(312, 120, 'Unit testing', '2026-02-15', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(313, 121, 'Environment setup', '2026-03-05', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(314, 121, 'Deployment execution', '2026-03-01', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(315, 122, 'Requirements analysis', '2026-03-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(316, 122, 'Resource allocation', '2026-03-18', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(317, 123, 'Requirements analysis', '2026-03-21', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(318, 123, 'Resource allocation', '2026-03-22', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(319, 123, 'Timeline planning', '2026-03-22', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(320, 124, 'Requirements analysis', '2026-03-28', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(321, 124, 'Resource allocation', '2026-03-26', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(322, 124, 'Timeline planning', '2026-03-24', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(323, 125, 'Requirements analysis', '2026-02-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(324, 125, 'Resource allocation', '2026-02-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(325, 125, 'Timeline planning', '2026-02-05', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(326, 126, 'Requirements analysis', '2026-03-01', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(327, 126, 'Resource allocation', '2026-02-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(328, 126, 'Timeline planning', '2026-02-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(329, 127, 'Requirements analysis', '2026-03-01', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(330, 127, 'Resource allocation', '2026-03-03', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(331, 128, 'Requirements analysis', '2026-03-20', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(332, 128, 'Resource allocation', '2026-03-21', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(333, 128, 'Timeline planning', '2026-03-18', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(334, 129, 'Requirements analysis', '2026-03-23', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(335, 129, 'Resource allocation', '2026-03-23', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(336, 130, 'Requirements analysis', '2026-03-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(337, 130, 'Resource allocation', '2026-03-25', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(338, 131, 'Requirements analysis', '2026-04-09', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(339, 131, 'Resource allocation', '2026-04-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(340, 132, 'Requirements analysis', '2026-04-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(341, 132, 'Resource allocation', '2026-04-12', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(342, 132, 'Timeline planning', '2026-04-09', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(343, 133, 'Requirements analysis', '2026-04-14', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(344, 133, 'Resource allocation', '2026-04-08', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(345, 134, 'Requirements analysis', '2026-04-25', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(346, 134, 'Resource allocation', '2026-04-26', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(347, 134, 'Timeline planning', '2026-04-30', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(348, 135, 'Requirements analysis', '2026-05-01', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(349, 135, 'Resource allocation', '2026-04-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(350, 136, 'Code implementation', '2026-02-17', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(351, 136, 'Unit testing', '2026-02-16', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(352, 137, 'Code implementation', '2026-02-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(353, 137, 'Unit testing', '2026-02-14', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(354, 137, 'Code review', '2026-02-19', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(355, 138, 'Code implementation', '2026-02-16', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(356, 138, 'Unit testing', '2026-02-17', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(357, 139, 'Requirements analysis', '2026-03-09', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(358, 139, 'Resource allocation', '2026-03-09', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(359, 139, 'Timeline planning', '2026-03-11', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(360, 140, 'Environment setup', '2026-04-07', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(361, 140, 'Deployment execution', '2026-04-03', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(362, 140, 'Verification', '2026-04-03', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(363, 141, 'Requirements analysis', '2026-04-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(364, 141, 'Resource allocation', '2026-05-02', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(365, 141, 'Timeline planning', '2026-04-29', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(366, 142, 'Code implementation', '2026-02-22', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(367, 142, 'Unit testing', '2026-02-23', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(368, 143, 'Code implementation', '2026-02-22', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(369, 143, 'Unit testing', '2026-02-20', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(370, 144, 'Code implementation', '2026-02-28', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(371, 144, 'Unit testing', '2026-02-22', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(372, 144, 'Code review', '2026-02-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(373, 145, 'Code implementation', '2026-03-16', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(374, 145, 'Unit testing', '2026-03-16', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(375, 146, 'Requirements analysis', '2026-04-09', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(376, 146, 'Resource allocation', '2026-04-10', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(377, 146, 'Timeline planning', '2026-04-11', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(378, 147, 'Code implementation', '2026-02-25', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(379, 147, 'Unit testing', '2026-02-23', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(380, 147, 'Code review', '2026-02-26', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(381, 148, 'Code implementation', '2026-02-27', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(382, 148, 'Unit testing', '2026-02-26', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(383, 148, 'Code review', '2026-03-04', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(384, 149, 'Requirements analysis', '2026-03-17', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(385, 149, 'Resource allocation', '2026-03-23', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(386, 149, 'Timeline planning', '2026-03-22', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(387, 150, 'Environment setup', '2026-04-14', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(388, 150, 'Deployment execution', '2026-04-14', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(389, 150, 'Verification', '2026-04-09', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(390, 151, 'Environment setup', '2026-04-10', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(391, 151, 'Deployment execution', '2026-04-15', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(392, 151, 'Verification', '2026-04-12', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(393, 152, 'Design mockups', '2026-03-09', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(394, 152, 'Prototype creation', '2026-03-06', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(395, 153, 'Design mockups', '2026-03-12', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(396, 153, 'Prototype creation', '2026-03-10', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(397, 153, 'Design review', '2026-03-10', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(398, 154, 'Design mockups', '2026-03-11', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(399, 154, 'Prototype creation', '2026-03-14', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(400, 155, 'Code implementation', '2026-03-21', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(401, 155, 'Unit testing', '2026-03-26', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(402, 155, 'Code review', '2026-03-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(403, 156, 'Code implementation', '2026-03-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(404, 156, 'Unit testing', '2026-03-26', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(405, 156, 'Code review', '2026-03-29', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(406, 157, 'Requirements analysis', '2026-04-06', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(407, 157, 'Resource allocation', '2026-04-09', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(408, 157, 'Timeline planning', '2026-04-06', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(409, 158, 'Requirements analysis', '2026-04-09', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(410, 158, 'Resource allocation', '2026-04-14', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(411, 158, 'Timeline planning', '2026-04-13', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(412, 159, 'Requirements analysis', '2026-04-15', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(413, 159, 'Resource allocation', '2026-04-16', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(414, 160, 'Requirements analysis', '2026-04-28', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(415, 160, 'Resource allocation', '2026-04-26', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(416, 160, 'Timeline planning', '2026-04-27', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(417, 161, 'Requirements analysis', '2026-04-30', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(418, 161, 'Resource allocation', '2026-04-30', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(419, 162, 'Requirements analysis', '2026-05-04', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(420, 162, 'Resource allocation', '2026-05-01', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(421, 162, 'Timeline planning', '2026-05-03', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(422, 163, 'Environment setup', '2026-05-13', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(423, 163, 'Deployment execution', '2026-05-12', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(424, 164, 'Environment setup', '2026-05-13', 0, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(425, 164, 'Deployment execution', '2026-05-14', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'), +(426, 164, 'Verification', '2026-05-17', 1, 2, '2026-03-14 00:17:53', '2026-03-14 00:17:53'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `terminations` +-- + +CREATE TABLE `terminations` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `termination_type_id` bigint(20) UNSIGNED DEFAULT NULL, + `notice_date` date DEFAULT NULL, + `termination_date` date DEFAULT NULL, + `reason` varchar(255) NOT NULL, + `description` longtext DEFAULT NULL, + `document` varchar(255) DEFAULT NULL, + `status` enum('pending','approved','rejected') NOT NULL DEFAULT 'pending', + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `terminations` +-- + +INSERT INTO `terminations` (`id`, `employee_id`, `termination_type_id`, `notice_date`, `termination_date`, `reason`, `description`, `document`, `status`, `approved_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 8, 1, '2025-09-06', '2025-09-20', 'Performance issues and failure to meet established job requirements despite multiple improvement opportunities.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination2.png', 'rejected', NULL, 2, 2, '2025-09-22 15:31:49', '2025-09-22 10:05:49'), +(2, 10, 2, '2025-09-11', '2025-09-25', 'Violation of company policies including code of conduct and workplace safety regulations.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'rejected', NULL, 2, 2, '2025-09-27 17:24:49', '2025-09-27 09:30:49'), +(3, 12, 3, '2025-09-16', '2025-09-30', 'Attendance problems with excessive absenteeism and tardiness affecting team productivity and operations.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination4.png', 'pending', NULL, 2, 2, '2025-10-02 08:18:49', '2025-10-02 09:55:49'), +(4, 14, 4, '2025-09-21', '2025-10-05', 'Misconduct including inappropriate behavior towards colleagues and violation of professional standards.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'approved', 32, 2, 2, '2025-10-07 10:34:49', '2025-10-07 15:28:49'), +(5, 16, 5, '2025-09-26', '2025-10-10', 'Redundancy due to organizational restructuring and elimination of position from company structure.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination3.png', 'approved', 33, 2, 2, '2025-10-12 15:19:49', '2025-10-12 09:30:49'), +(6, 18, 6, '2025-10-01', '2025-10-15', 'Budget constraints requiring workforce reduction and cost optimization measures for business sustainability.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'approved', 39, 2, 2, '2025-10-17 08:52:49', '2025-10-17 11:51:49'), +(7, 20, 7, '2025-10-06', '2025-10-20', 'Insubordination and failure to follow direct supervisor instructions and established chain of command.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination3.png', 'approved', 34, 2, 2, '2025-10-22 14:33:49', '2025-10-22 10:56:49'), +(8, 22, 8, '2025-10-11', '2025-10-25', 'Breach of confidentiality agreement and unauthorized disclosure of sensitive company information.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'approved', 12, 2, 2, '2025-10-27 17:25:49', '2025-10-27 09:01:49'), +(9, 24, 9, '2025-10-16', '2025-10-30', 'Poor work quality consistently below acceptable standards despite training and performance improvement plans.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination4.png', 'pending', NULL, 2, 2, '2025-11-01 14:59:49', '2025-11-01 16:33:49'), +(10, 26, 10, '2025-10-21', '2025-11-04', 'Dishonesty including falsification of records and misrepresentation of work activities and achievements.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'approved', 52, 2, 2, '2025-11-06 11:05:49', '2025-11-06 09:49:49'), +(11, 8, 11, '2025-10-26', '2025-11-09', 'Harassment complaints substantiated through investigation requiring immediate termination for workplace safety.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination2.png', 'pending', NULL, 2, 2, '2025-11-11 13:03:49', '2025-11-11 10:17:49'), +(12, 10, 12, '2025-10-31', '2025-11-14', 'Theft of company property including equipment and supplies resulting in criminal charges.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'approved', 33, 2, 2, '2025-11-16 10:27:49', '2025-11-16 17:53:49'), +(13, 12, 13, '2025-11-05', '2025-11-19', 'Substance abuse affecting work performance and creating safety hazards in workplace environment.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination3.png', 'approved', 46, 2, 2, '2025-11-21 16:10:49', '2025-11-21 11:56:49'), +(14, 14, 14, '2025-11-10', '2025-11-24', 'Conflict of interest violations including unauthorized outside employment with competitor organizations.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'approved', 23, 2, 2, '2025-11-26 09:08:49', '2025-11-26 13:02:49'), +(15, 16, 15, '2025-11-15', '2025-11-29', 'Technology misuse including inappropriate internet usage and violation of computer security policies.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination1.png', 'approved', 9, 2, 2, '2025-12-01 12:10:49', '2025-12-01 15:05:49'), +(16, 18, 16, '2025-11-20', '2025-12-04', 'Customer complaints regarding unprofessional behavior and failure to provide adequate service quality.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'approved', 23, 2, 2, '2025-12-06 13:20:49', '2025-12-06 14:24:49'), +(17, 20, 17, '2025-11-25', '2025-12-09', 'Safety violations creating hazardous conditions and endangering employee welfare and operational integrity.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination4.png', 'pending', NULL, 2, 2, '2025-12-11 10:17:49', '2025-12-11 16:19:49'), +(18, 22, 18, '2025-11-30', '2025-12-14', 'Discrimination complaints substantiated through investigation requiring immediate corrective action and termination.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'approved', 31, 2, 2, '2025-12-16 11:22:49', '2025-12-16 16:33:49'), +(19, 24, 19, '2025-12-05', '2025-12-19', 'Fraud including expense account manipulation and unauthorized financial transactions affecting company resources.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination3.png', 'approved', 35, 2, 2, '2025-12-21 11:33:49', '2025-12-21 10:01:49'), +(20, 26, 20, '2025-12-10', '2025-12-24', 'Abandonment of position without proper notification and failure to report for scheduled work assignments.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'pending', NULL, 2, 2, '2025-12-26 17:24:49', '2025-12-26 11:10:49'), +(21, 8, 1, '2025-12-15', '2025-12-29', 'Incompetence demonstrated through inability to perform essential job functions despite adequate training.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination4.png', 'rejected', NULL, 2, 2, '2025-12-31 12:22:49', '2025-12-31 13:39:49'), +(22, 10, 2, '2025-12-20', '2026-01-03', 'Workplace violence including threats and aggressive behavior creating hostile work environment.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'approved', 15, 2, 2, '2026-01-05 17:00:49', '2026-01-05 13:12:49'), +(23, 12, 3, '2025-12-25', '2026-01-08', 'Embezzlement of company funds through unauthorized access and manipulation of financial accounts.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination4.png', 'pending', NULL, 2, 2, '2026-01-10 14:40:49', '2026-01-10 16:49:49'), +(24, 14, 4, '2025-12-30', '2026-01-13', 'Gross negligence resulting in significant financial loss and damage to company reputation.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'approved', 45, 2, 2, '2026-01-15 16:15:49', '2026-01-15 14:50:49'), +(25, 16, 5, '2026-01-04', '2026-01-18', 'Contract violation including breach of employment agreement terms and conditions.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination1.png', 'approved', 50, 2, 2, '2026-01-20 10:06:49', '2026-01-20 17:11:49'), +(26, 18, 6, '2026-01-09', '2026-01-23', 'Medical incapacity preventing performance of essential job functions with no reasonable accommodation available.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'approved', 39, 2, 2, '2026-01-25 16:45:49', '2026-01-25 08:25:49'), +(27, 20, 7, '2026-01-14', '2026-01-28', 'Layoff due to economic downturn requiring temporary workforce reduction and operational cost management.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination2.png', 'pending', NULL, 2, 2, '2026-01-30 15:45:49', '2026-01-30 11:56:49'), +(28, 22, 8, '2026-01-19', '2026-02-02', 'Restructuring elimination of department requiring position consolidation and organizational efficiency improvement.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'pending', NULL, 2, 2, '2026-02-04 16:17:49', '2026-02-04 11:28:49'), +(29, 24, 9, '2026-01-24', '2026-02-07', 'Merger integration resulting in duplicate positions and need for workforce optimization.', 'Additional details regarding termination process and final settlement procedures for employee separation.', 'termination3.png', 'approved', 31, 2, 2, '2026-02-09 13:36:49', '2026-02-09 09:13:49'), +(30, 26, 10, '2026-01-29', '2026-02-12', 'Automation implementation replacing manual processes and reducing need for human resources.', 'Additional details regarding termination process and final settlement procedures for employee separation.', NULL, 'pending', NULL, 2, 2, '2026-02-14 11:54:49', '2026-02-14 12:20:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `termination_types` +-- + +CREATE TABLE `termination_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `termination_type` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `termination_types` +-- + +INSERT INTO `termination_types` (`id`, `termination_type`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Voluntary Resignation', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(2, 'Retirement', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(3, 'End of Contract', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(4, 'Layoff', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(5, 'Misconduct', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(6, 'Job Abandonment', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(7, 'Performance Issues', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(8, 'Mutual Agreement', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(9, 'Redundancy', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(10, 'Medical Reasons', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(11, 'Company Closure', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(12, 'Policy Violation', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(13, 'Workplace Harassment', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(14, 'Insubordination', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(15, 'Conflict of Interest', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(16, 'Probation Termination', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(17, 'Position Elimination', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(18, 'Relocation', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(19, 'Retrenchment', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(20, 'Unethical Behavior', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `time_entries` +-- + +CREATE TABLE `time_entries` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `engagement_id` bigint(20) UNSIGNED DEFAULT NULL, + `date` date NOT NULL, + `hours` decimal(6,2) NOT NULL, + `type` enum('billable','non_billable','internal','training') NOT NULL DEFAULT 'billable', + `description` text DEFAULT NULL, + `approved_by` bigint(20) UNSIGNED DEFAULT NULL, + `approved_at` timestamp NULL DEFAULT NULL, + `created_by` 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 `transfers` +-- + +CREATE TABLE `transfers` ( + `id` bigint(20) UNSIGNED NOT NULL, + `from_warehouse` bigint(20) UNSIGNED DEFAULT NULL, + `to_warehouse` bigint(20) UNSIGNED DEFAULT NULL, + `product_id` bigint(20) UNSIGNED DEFAULT NULL, + `quantity` decimal(15,2) NOT NULL, + `date` date DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `transfers` +-- + +INSERT INTO `transfers` (`id`, `from_warehouse`, `to_warehouse`, `product_id`, `quantity`, `date`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 1, 2, 1, 25.00, '2024-12-01', 2, 2, '2026-03-17 21:48:05', '2026-03-17 21:48:05'), +(2, 2, 3, 2, 15.00, '2024-12-02', 2, 2, '2026-03-17 21:48:05', '2026-03-17 21:48:05'), +(3, 1, 3, 3, 30.00, '2024-12-03', 2, 2, '2026-03-17 21:48:05', '2026-03-17 21:48:05'), +(4, 3, 1, 1, 10.00, '2024-12-04', 2, 2, '2026-03-17 21:48:05', '2026-03-17 21:48:05'), +(5, 2, 1, 4, 20.00, '2024-12-05', 2, 2, '2026-03-17 21:48:05', '2026-03-17 21:48:05'), +(6, 1, 2, 5, 35.00, '2024-12-06', 2, 2, '2026-03-17 21:48:05', '2026-03-17 21:48:05'), +(7, 3, 2, 2, 12.00, '2024-12-07', 2, 2, '2026-03-17 21:48:05', '2026-03-17 21:48:05'), +(8, 2, 3, 6, 18.00, '2024-12-08', 2, 2, '2026-03-17 21:48:05', '2026-03-17 21:48:05'), +(9, 1, 3, 3, 22.00, '2024-12-09', 2, 2, '2026-03-17 21:48:05', '2026-03-17 21:48:05'), +(10, 2, 1, 7, 28.00, '2024-12-10', 2, 2, '2026-03-17 21:48:05', '2026-03-17 21:48:05'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `users` +-- + +CREATE TABLE `users` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `slug` varchar(255) DEFAULT NULL, + `email` varchar(255) NOT NULL, + `mobile_no` varchar(255) DEFAULT NULL, + `email_verified_at` timestamp NULL DEFAULT NULL, + `password` varchar(255) DEFAULT NULL, + `requires_password_change` tinyint(1) NOT NULL DEFAULT 0, + `remember_token` varchar(100) DEFAULT NULL, + `type` varchar(255) NOT NULL DEFAULT 'company', + `avatar` varchar(255) NOT NULL DEFAULT 'avatar.png', + `lang` varchar(191) NOT NULL DEFAULT 'en', + `active_plan` int(11) DEFAULT NULL, + `plan_expire_date` date DEFAULT NULL, + `trial_expire_date` varchar(255) DEFAULT NULL, + `is_trial_done` varchar(255) NOT NULL DEFAULT '0', + `total_user` int(11) NOT NULL DEFAULT 0, + `storage_limit` float NOT NULL DEFAULT 0, + `is_disable` int(11) NOT NULL DEFAULT 0, + `default_pipeline` varchar(255) DEFAULT NULL, + `is_enable_login` int(11) NOT NULL DEFAULT 1, + `active_status` tinyint(1) NOT NULL DEFAULT 0, + `last_seen_at` timestamp NULL DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `users` +-- + +INSERT INTO `users` (`id`, `name`, `slug`, `email`, `mobile_no`, `email_verified_at`, `password`, `requires_password_change`, `remember_token`, `type`, `avatar`, `lang`, `active_plan`, `plan_expire_date`, `trial_expire_date`, `is_trial_done`, `total_user`, `storage_limit`, `is_disable`, `default_pipeline`, `is_enable_login`, `active_status`, `last_seen_at`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Super Admin', 'super-admin', 'superadmin@example.com', '+133344455566', '2026-03-14 00:17:34', '$2y$12$v0fhSQPMAIrTyaj96htmzOqO3DdixbJ.xoY9u6ELruJwELBtMyLFu', 0, NULL, 'superadmin', 'lO8GdApAbz2Q0KQ8uHJXhQZuBtrhWwrpFVOkWYT3.jpg', 'en', NULL, NULL, NULL, '0', -1, 0, 0, NULL, 1, 1, NULL, NULL, NULL, '2026-03-14 00:17:34', '2026-04-20 19:18:24'), +(2, 'Company', 'company', 'company@example.com', '+122233344455', '2026-03-14 00:17:34', '$2y$12$sOQbRlm7aEVespFv5EymNO13b2XV0saI4YVg9tgQ3LswT5cMSZG5K', 0, 'xPwaRloimiUBNpgRZREt63zRJbXnrbrAX7Vjzps3zv8qfrjopkTgiTQFb2wL', 'company', 'avatar.png', 'en', 2, NULL, NULL, '0', 10, 1048580, 0, '3', 1, 1, NULL, 1, 1, '2026-03-14 00:17:34', '2026-04-27 14:49:28'), +(3, 'Tech Solutions Inc', 'tech-solutions-inc', 'admin@techsolutions.com', '+9867805377995', '2026-03-14 00:17:35', '$2y$12$G8lL9rtfE/66W4vZY.i4OOE/E8E2cMMKlGkwbd5tBR5QjvayuP6SS', 0, NULL, 'company', 'company-image2.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(4, 'Global Marketing Corp', 'global-marketing-corp', 'contact@globalmarketing.com', '+1816898682485', '2026-03-14 00:17:35', '$2y$12$BZPc7xJjlIgGEv6VJhUH3.3gHe.ngKF0Oue/FqXcbct/wj5CSgppG', 0, NULL, 'company', 'company-image3.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(5, 'Digital Innovations LLC', 'digital-innovations-llc', 'info@digitalinnovations.com', '+8205236879045', '2026-03-14 00:17:36', '$2y$12$x1GZt95Y.Kmz9r4lh0iWou2QIYSaTRvHEOvC5zr/zuDVOC5Z9qEwa', 0, NULL, 'company', 'company-image4.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 1, 1, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(6, 'Creative Design Studio', 'creative-design-studio', 'hello@creativedesign.com', '+291997995399', '2026-03-14 00:17:36', '$2y$12$0HiVwzhW0DzO1wbpeY5.U.YDCpiiXY.8LEVi7cADwrLRA7bTWLdCy', 0, NULL, 'company', 'company-image5.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 1, 1, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(7, 'Business Consulting Group', 'business-consulting-group', 'support@businessconsulting.com', '+5113365447273', '2026-03-14 00:17:36', '$2y$12$T1e.5L5Saz7aL38zlo/c0unmEeDgQY9m2QhcJsFQIfpHGOnXC8qBO', 0, NULL, 'company', 'company-image6.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 1, 1, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(8, 'John Smith', 'john-smith', 'john.smith@company.com', '+807031059852', '2026-03-14 00:17:36', '$2y$12$RxhP4lDsayvssVM4E921vuJr5hB9w6Z8s/yBWlDHjpvRTHHGvyagK', 0, NULL, 'staff', 'boys1.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 2, 2, '2026-03-14 00:17:36', '2026-03-14 00:17:36'), +(9, 'Sarah Johnson', 'sarah-johnson', 'sarah.johnson@client.com', '+8855179195825', '2026-03-14 00:17:36', '$2y$12$0hRW18uDQ.09SW1PDMA0ZuguKxOobU6u.T2xqjRbeQVMEIMm9vytu', 0, NULL, 'client', 'girls1.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 2, 2, '2026-03-14 00:17:37', '2026-03-14 00:17:37'), +(10, 'Michael Brown', 'michael-brown', 'michael.brown@company.com', '+6699033201514', '2026-03-14 00:17:37', '$2y$12$bouyFlokKALyXLjp9FVUHe3LciFVUXhVL4Ucshg6KGzoUrsns8Wtq', 0, NULL, 'staff', 'boys2.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 2, 2, '2026-03-14 00:17:37', '2026-03-14 00:17:37'), +(11, 'Emily Davis', 'emily-davis', 'emily.davis@client.com', '+9895946669538', '2026-03-14 00:17:37', '$2y$12$kXQ42xZI4fMGSK9G5Dphsue.D44BrKiI6zzNi3ewTYlJ6.U1XWKT6', 0, NULL, 'client', 'girls2.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 2, 2, '2026-03-14 00:17:37', '2026-03-14 00:17:37'), +(12, 'David Wilson', 'david-wilson', 'david.wilson@company.com', '+7248656648038', '2026-03-14 00:17:37', '$2y$12$wFNkMedQuYVKd79YduiWO.O3DAkP8Ltgw48BOta0Ga7cwXYWRp6Ji', 0, NULL, 'staff', 'boys3.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 2, 2, '2026-03-14 00:17:37', '2026-03-14 00:17:37'), +(13, 'Lisa Anderson', 'lisa-anderson', 'lisa.anderson@client.com', '+308156013508', '2026-03-14 00:17:37', '$2y$12$SGQivan3zscd/CpEVPwxa.QBoTF6Pcx4nog0Ccpe/ySas4eZi866S', 0, NULL, 'client', 'girls3.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 2, 2, '2026-03-14 00:17:38', '2026-03-14 00:17:38'), +(14, 'Robert Taylor', 'robert-taylor', 'robert.taylor@company.com', '+9790986493804', '2026-03-14 00:17:38', '$2y$12$IGKht7ZoPVhio5LJK/t1zekw1BFCtz1MiF9.fQ582RlY0EjzL64yG', 0, NULL, 'staff', 'boys4.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 2, 2, '2026-03-14 00:17:38', '2026-03-14 00:17:38'), +(15, 'Jennifer Martinez', 'jennifer-martinez', 'jennifer.martinez@client.com', '+1201691930508', '2026-03-14 00:17:38', '$2y$12$ZJ7RRcOCrWxPuo3Obcy9D.QOe5BxL0jQ4mtobv5Wd2dxQIiZR87PK', 0, NULL, 'client', 'girls4.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 2, 2, '2026-03-14 00:17:38', '2026-03-14 00:17:38'), +(16, 'James Garcia', 'james-garcia', 'james.garcia@company.com', '+9268351687715', '2026-03-14 00:17:38', '$2y$12$CHn3Qu1euKMRv5ulmBV.duv10UiG7xOCSIpOYT1KJKUjeZkgBCxwe', 0, NULL, 'staff', 'boys5.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 2, 2, '2026-03-14 00:17:38', '2026-03-14 00:17:38'), +(17, 'Maria Rodriguez', 'maria-rodriguez', 'maria.rodriguez@client.com', '+4139259303929', '2026-03-14 00:17:38', '$2y$12$PxfQMa80gy3kNK1kRlSzeO74ONmEhpnl/MzfglqVYjfLPLmrBYvji', 0, NULL, 'client', 'girls5.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:39', '2026-04-16 15:07:55'), +(18, 'Christopher Lee', 'christopher-lee', 'christopher.lee@company.com', '+9532851711505', '2026-03-14 00:17:39', '$2y$12$Hea59Gs0G88LNob9Zn2PX.LgBE3bKNZIr/FFor71PizrF6bSbWUVi', 0, NULL, 'staff', 'boys6.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:39', '2026-04-16 15:07:55'), +(19, 'Amanda White', 'amanda-white', 'amanda.white@client.com', '+531650536228', '2026-03-14 00:17:39', '$2y$12$LJFcL5N4MbUGChTHgN.lveEO4LBDRrVUz2iGES.0c7p3g/.ItThKq', 0, NULL, 'client', 'girls6.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:39', '2026-04-16 15:07:55'), +(20, 'Daniel Thompson', 'daniel-thompson', 'daniel.thompson@company.com', '+266707368359', '2026-03-14 00:17:39', '$2y$12$E023cgYKpgEXwZORtkKTR.u8uNboGI8AONvuhUxJQ56y7iDCACQtu', 0, NULL, 'staff', 'boys7.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:39', '2026-04-16 15:07:55'), +(21, 'Jessica Harris', 'jessica-harris', 'jessica.harris@client.com', '+1257818261694', '2026-03-14 00:17:39', '$2y$12$vpBGbPPONBScejJqU6kTGuNHFL9XJkIv79laRLjjE1BUelSBHuwjO', 0, NULL, 'client', 'girls7.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, 2, 2, '2026-03-14 00:17:39', '2026-03-14 00:17:39'), +(22, 'Matthew Clark', 'matthew-clark', 'matthew.clark@company.com', '+8625259302544', '2026-03-14 00:17:39', '$2y$12$Uq3KRRYwfY2oKPveQemBfukBp1BfP2rTvfiBEATWI5gOtl0Y8F5kq', 0, NULL, 'staff', 'boys8.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:40', '2026-04-16 15:07:55'), +(23, 'Ashley Lewis', 'ashley-lewis', 'ashley.lewis@client.com', '+6701035358397', '2026-03-14 00:17:40', '$2y$12$DTkti3wPO4Fq7vrcD/G7wO/Lr4R9B4htxO7W0btHXrskDB.Up7R2a', 0, NULL, 'client', 'girls8.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:40', '2026-04-16 15:07:55'), +(24, 'Anthony Walker', 'anthony-walker', 'anthony.walker@company.com', '+5785954169070', '2026-03-14 00:17:40', '$2y$12$DCdMrJSKlK9xVmf4saN7PeDsnocYNfmMWDChnYqDXmL1DHAMRvqaW', 0, NULL, 'staff', 'boys9.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:40', '2026-04-16 15:07:55'), +(25, 'Michelle Hall', 'michelle-hall', 'michelle.hall@client.com', '+3438280949403', '2026-03-14 00:17:40', '$2y$12$PySStCllmrCY5ovHBH9CWe15OsB.AgXSU5T4treHQCsrWUQ4rae6G', 0, NULL, 'client', 'girls9.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:40', '2026-04-16 15:07:55'), +(26, 'Mark Allen', 'mark-allen', 'mark.allen@company.com', '+7971627887836', '2026-03-14 00:17:40', '$2y$12$BXf0.g8ymu3Z5lgKe3t0XOeYOaRa6S8rwnu3Y.Qk1ce8bIR17IQjS', 0, NULL, 'staff', 'boys10.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:40', '2026-04-16 15:07:55'), +(27, 'Nicole Young', 'nicole-young', 'nicole.young@client.com', '+3303995866757', '2026-03-14 00:17:40', '$2y$12$QTRRKkU/8QDkMAQlAQ/dzOP4Hs4HkCT5nnVZL/GhFMGLockMirIRu', 0, NULL, 'client', 'girls10.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:41', '2026-04-16 15:07:55'), +(28, 'Alex Vendor', 'alex-vendor', 'alex.vendor@supplier.com', '+2462945297692', '2026-03-14 00:17:41', '$2y$12$pdHX8GxyK/LTMOyy16ZTwuvgl2xKcE8GgW7MwYKuysGgOEFnIzfyG', 0, NULL, 'vendor', 'boys11.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:41', '2026-04-16 15:07:55'), +(29, 'Sam Supplier', 'sam-supplier', 'sam.supplier@vendor.com', '+4026276707351', '2026-03-14 00:17:41', '$2y$12$mbZBK3Gcy1B1t7Jsfo.LROSPOqIkp0UtN/u8hBOwBfGtfL2Ycj9Za', 0, NULL, 'vendor', 'boys12.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:41', '2026-04-16 15:07:55'), +(30, 'Tech Solutions Inc', 'tech-solutions-inc-1', 'contact@techsolutions.com', '+9337392554781', '2026-03-14 00:17:41', '$2y$12$6tWVAoL8N18d2FqEnzVZtOXDRW6SO7Yd/mwyVZFl92SslnsHdzN9e', 0, NULL, 'vendor', 'boys13.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:41', '2026-04-16 15:07:55'), +(31, 'Global Supplies Co', 'global-supplies-co', 'info@globalsupplies.com', '+1536143773062', '2026-03-14 00:17:41', '$2y$12$MAfENxMD6nh2OTtAFAxg3OdCpZnK4gBKDYUpgDy6wWCI57HSW2P9O', 0, NULL, 'vendor', 'boys14.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:42', '2026-04-16 15:07:55'), +(32, 'Prime Materials Ltd', 'prime-materials-ltd', 'sales@primematerials.com', '+4750646947389', '2026-03-14 00:17:42', '$2y$12$48DY2WUtg35v1573EOIJAOsI7l2XkqzBS92YDGUltbgBem8H/lTaK', 0, NULL, 'vendor', 'boys15.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:42', '2026-04-16 15:07:55'), +(33, 'Elite Vendors Group', 'elite-vendors-group', 'orders@elitevendors.com', '+6105330149364', '2026-03-14 00:17:42', '$2y$12$bh8Y7JgyvSUCBsmbbPkJjuEkgx1rBaZD1RI4Fs7d.K2Bfra91rHzO', 0, NULL, 'vendor', 'boys16.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:42', '2026-04-16 15:07:55'), +(34, 'Quality Parts Corp', 'quality-parts-corp', 'support@qualityparts.com', '+6772450084105', '2026-03-14 00:17:42', '$2y$12$bGiBZFHCf9omu/eb2uVZeOGN4blsiYoUdAquF5yX.P20Yyx3S4cvO', 0, NULL, 'vendor', 'boys17.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:42', '2026-04-16 15:07:55'), +(35, 'Swift Logistics', 'swift-logistics', 'dispatch@swiftlogistics.com', '+8446364368702', '2026-03-14 00:17:42', '$2y$12$V101Rihwjb03UxfEFBaMKeamecr0w.CGCaKQ4RJnlOl.yyPRhdsRi', 0, NULL, 'vendor', 'boys18.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:42', '2026-04-16 15:07:55'), +(36, 'Mega Distributors', 'mega-distributors', 'wholesale@megadist.com', '+6718475306375', '2026-03-14 00:17:42', '$2y$12$OvwpCQjDPgi6HRWHtGeGRuETCIErSUqVFzy7vWaKLq9yeoNJX6qfO', 0, NULL, 'vendor', 'boys19.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:43', '2026-04-16 15:07:55'), +(37, 'Pro Equipment Ltd', 'pro-equipment-ltd', 'rentals@proequipment.com', '+3373603581927', '2026-03-14 00:17:43', '$2y$12$RHX.oVL8vQ9lVn72TeAwHOi2L6kpfngPHfT39zTS5n13k29wkJhOa', 0, NULL, 'vendor', 'boys20.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:43', '2026-04-16 15:07:55'), +(38, 'Smart Systems Inc', 'smart-systems-inc', 'tech@smartsystems.com', '+3966404205055', '2026-03-14 00:17:43', '$2y$12$2zTqkgQcTJHel8qrxArvfOgDLv0oHpY3LwEIIvZPnjoaqpG2FaDae', 0, NULL, 'vendor', 'boys21.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:43', '2026-04-16 15:07:55'), +(39, 'Reliable Resources', 'reliable-resources', 'procurement@reliable.com', '+4219541714131', '2026-03-14 00:17:43', '$2y$12$ju3OlwhPwh4EtdX.1mOp1.UpXkA64h7YxKOcve83adJWYOkd0IzRm', 0, NULL, 'vendor', 'boys22.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:43', '2026-04-16 15:07:55'), +(40, 'Advanced Materials', 'advanced-materials', 'orders@advancedmat.com', '+2475432503380', '2026-03-14 00:17:43', '$2y$12$sVOMsll8bIJcaaX5PnHou.VdEg0pT.emNjuolEvqqYDR0kxCJqs3q', 0, NULL, 'vendor', 'boys23.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:44', '2026-04-16 15:07:55'), +(41, 'Express Suppliers', 'express-suppliers', 'express@suppliers.com', '+7822542812576', '2026-03-14 00:17:44', '$2y$12$mmEkNnJjLt/BPTO/lxbEoOD/do/miCKJh9V.hu1e8.U0jHyS3yqtK', 0, NULL, 'vendor', 'boys24.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:44', '2026-04-16 15:07:55'), +(42, 'Industrial Partners', 'industrial-partners', 'partners@industrial.com', '+5452515265822', '2026-03-14 00:17:44', '$2y$12$WWTl.dCObpig/kNq/VRgL.fRZZFyALUj0iLE3ZY7DMSakq6MqfVFW', 0, NULL, 'vendor', 'boys25.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:44', '2026-04-16 15:07:55'), +(43, 'ABC Corporation', 'abc-corporation', 'contact@abccorp.com', '+6971757721816', '2026-03-14 00:17:44', '$2y$12$kAmwZCvDxcJ/O0GgwteLiu.z/mWJ.CfVnuOtcwp5ABWE7CA44GJSi', 0, NULL, 'client', 'girls11.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:44', '2026-04-16 15:07:55'), +(44, 'XYZ Industries', 'xyz-industries', 'info@xyzind.com', '+2689642569524', '2026-03-14 00:17:44', '$2y$12$DlXB85ubwZJGkdoZNLihaePGZUH88VjerMu3SQLdgtpL4xD/jjjum', 0, NULL, 'client', 'girls12.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:45', '2026-04-16 15:07:55'), +(45, 'Global Solutions Ltd', 'global-solutions-ltd', 'sales@globalsol.com', '+2185399044313', '2026-03-14 00:17:45', '$2y$12$LowLlPn628VQl0uVt.CPAuMp/qwwjZtD2aHuX6oa3NdAoVdE/YNzG', 0, NULL, 'client', 'girls13.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:45', '2026-04-16 15:07:55'), +(46, 'Tech Innovations Inc', 'tech-innovations-inc', 'hello@techinno.com', '+6059699230482', '2026-03-14 00:17:45', '$2y$12$yD5.KZFMz2BDx6nRUsT1QOutJ.BjLjJFCUOg2QWAkia5Kh9MG/8.C', 0, NULL, 'client', 'girls14.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:45', '2026-04-16 15:07:55'), +(47, 'Prime Services Co', 'prime-services-co', 'support@primeserv.com', '+9104753281741', '2026-03-14 00:17:45', '$2y$12$I9120s0YuXeOC42Qkc3uKOdTXEvcqb1QheNfqM/9/V.vzOX/s68je', 0, NULL, 'client', 'girls15.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:45', '2026-04-16 15:07:55'), +(48, 'Elite Enterprises', 'elite-enterprises', 'admin@eliteent.com', '+5477925264934', '2026-03-14 00:17:45', '$2y$12$dhJwzWh2m2BHHNi0iiR3PeWClPd4bRBJPIl0xbVKwo8Tw9IkqwSDS', 0, NULL, 'client', 'girls16.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:45', '2026-04-16 15:07:55'), +(49, 'Smart Systems Corp', 'smart-systems-corp', 'contact@smartsys.com', '+3230879640279', '2026-03-14 00:17:45', '$2y$12$61Isy23ADfoyfqpiPtK4guXNOD22kqur0.fAy2dHNZjzuuehXmQqK', 0, NULL, 'client', 'girls17.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:46', '2026-04-16 15:07:55'), +(50, 'Dynamic Solutions', 'dynamic-solutions', 'info@dynsol.com', '+756066496602', '2026-03-14 00:17:46', '$2y$12$0PhfI0soUphUQBo0LFLpe.CXXJgZobvAP5.NNWOcMsXFwLhRmHt/K', 0, NULL, 'client', 'girls18.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:46', '2026-04-16 15:07:55'), +(51, 'Future Tech Ltd', 'future-tech-ltd', 'hello@futuretech.com', '+9309520618053', '2026-03-14 00:17:46', '$2y$12$or0n9YYSJFtyTVzRSxtIou1Maob/d/abzIwF6pRoDj2/m5RWeIKLK', 0, NULL, 'client', 'girls19.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:46', '2026-04-16 15:07:55'), +(52, 'Innovative Corp', 'innovative-corp', 'contact@innovcorp.com', '+1705356144287', '2026-03-14 00:17:46', '$2y$12$4sTzMigpA24vRelyz6GqhO6/GmafWjAHM.SwKH9v.H7xbqeUeYF4m', 0, NULL, 'client', 'girls20.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:46', '2026-04-16 15:07:55'), +(53, 'Advanced Systems', 'advanced-systems', 'support@advsys.com', '+1625092344944', '2026-03-14 00:17:46', '$2y$12$Q9T1ZR0SSYARf86Rbf2ZmensWpu2N4NcMGkJ1XHE8BoyS6chDBv4q', 0, NULL, 'client', 'girls21.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:47', '2026-04-16 15:07:55'), +(54, 'Professional Services', 'professional-services', 'info@proserv.com', '+3570416021019', '2026-03-14 00:17:47', '$2y$12$UMrMZ2qExGV7PZVPpn3hP.EqcO4KMnfPHfDXNzW9zC5Iq1KzEaI/y', 0, NULL, 'client', 'girls22.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:47', '2026-04-16 15:07:55'), +(55, 'Quality Solutions Inc', 'quality-solutions-inc', 'sales@qualsol.com', '+4532701248934', '2026-03-14 00:17:47', '$2y$12$do6QAUdzxtbJ.eEhyBk8pOPnlDWUhyNfRHphRsGNOr.GJtjrsnxx6', 0, NULL, 'client', 'girls23.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:47', '2026-04-16 15:07:55'), +(56, 'Reliable Partners', 'reliable-partners', 'contact@relpart.com', '+5819396484232', '2026-03-14 00:17:47', '$2y$12$7X93r.xdE8.rcgCil1Sxm./gIUv.kYgJy.1a7H5VVFuBsdKwILQF6', 0, NULL, 'client', 'girls24.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:47', '2026-04-16 15:07:55'), +(57, 'Strategic Consulting', 'strategic-consulting', 'hello@stratcon.com', '+7690668900886', '2026-03-14 00:17:47', '$2y$12$x1LJXX0eevGzl.PUwQ/WEuRQBfBB9.TReO90iMS/KIGBS2s5OdRcK', 0, NULL, 'client', 'girls25.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, 2, 2, '2026-03-14 00:17:47', '2026-04-16 15:07:55'), +(58, 'Marlon Domagtoy', 'marlon-domagtoy', 'marlon.domagtoy@sebconnexion.com', NULL, '2026-03-25 08:44:43', '$2y$12$s88eWJ0irxPZsvt/ltS/Iu3YWaJOtqN0S3X.qD/F7U/cG0Ye.3c3C', 0, NULL, 'company', 'avatar.png', 'en', 3, '2026-04-25', NULL, '0', -1, 10485800, 0, NULL, 1, 1, NULL, NULL, 1, '2026-03-25 08:44:43', '2026-03-25 08:46:10'), +(70, 'SEB Admin', 'seb-admin', 'admin@sebconnexion.com', NULL, '2026-03-25 09:54:18', '$2y$12$O00NBOf.TFYRjA.IqWd2OuueA9hMfQ9apjXpMAuHHBYR8PycG0lw.', 0, NULL, 'hr', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), +(71, 'Ana Regina Mariano', 'ana-regina-mariano', 'armariano@yahoo.com', NULL, '2026-03-25 09:54:19', '$2y$12$s3ss0M/738zW8Bf7LwWMNOZanGB6.PVMCV2YFWUcpigZrYO3sjx4.', 0, NULL, 'staff', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(72, 'Rhea Jane Belchez', 'rhea-jane-belchez', 'eyajanepot0610@gmail.com', NULL, '2026-03-25 09:54:19', '$2y$12$s3ss0M/738zW8Bf7LwWMNOZanGB6.PVMCV2YFWUcpigZrYO3sjx4.', 0, NULL, 'staff', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(73, 'Reynah Lyn Guevarra', 'reynah-lyn-guevarra', 'rbmguevarra@gmail.com', NULL, '2026-03-25 09:54:19', '$2y$12$s3ss0M/738zW8Bf7LwWMNOZanGB6.PVMCV2YFWUcpigZrYO3sjx4.', 0, NULL, 'staff', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(74, 'Mart Ace Guano', 'mart-ace-guano', 'g_martace@yahoo.com', NULL, '2026-03-25 09:54:19', '$2y$12$s3ss0M/738zW8Bf7LwWMNOZanGB6.PVMCV2YFWUcpigZrYO3sjx4.', 0, NULL, 'staff', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(75, 'Dinh Chavez', 'dinh-chavez', 'hao.chavez@gmail.com', NULL, '2026-03-25 09:54:19', '$2y$12$s3ss0M/738zW8Bf7LwWMNOZanGB6.PVMCV2YFWUcpigZrYO3sjx4.', 0, NULL, 'staff', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(76, 'Francis Eleazar Londonio', 'francis-eleazar-londonio', 'eleazarfrancis112@gmail.com', NULL, '2026-03-25 09:54:19', '$2y$12$s3ss0M/738zW8Bf7LwWMNOZanGB6.PVMCV2YFWUcpigZrYO3sjx4.', 0, NULL, 'staff', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(77, 'Paul Rei Paas', 'paul-rei-paas', 'paulreichase97@gmail.com', NULL, '2026-03-25 09:54:19', '$2y$12$s3ss0M/738zW8Bf7LwWMNOZanGB6.PVMCV2YFWUcpigZrYO3sjx4.', 0, NULL, 'staff', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(78, 'Princess Rose Acosta', 'princess-rose-acosta', 'ladyrose021992@gmail.com', NULL, '2026-03-25 09:54:19', '$2y$12$s3ss0M/738zW8Bf7LwWMNOZanGB6.PVMCV2YFWUcpigZrYO3sjx4.', 0, NULL, 'staff', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(79, 'Donna Marie Moreno', 'donna-marie-moreno', 'donnamarie.moreno.1975@gmail.com', NULL, '2026-03-25 09:54:19', '$2y$12$s3ss0M/738zW8Bf7LwWMNOZanGB6.PVMCV2YFWUcpigZrYO3sjx4.', 0, NULL, 'staff', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 58, '2026-03-25 09:54:19', '2026-03-25 09:54:19'), +(80, 'Karyll Test', 'karyll-test', 'karylltest@gmail.com', NULL, NULL, '$2y$12$yj//52AI9Oog.flmI1FiuOM5KQ.Zvy9ZAkbU745EglZOxkr3PNwQC', 0, NULL, 'company', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 1, NULL, NULL, 2, '2026-04-05 21:36:31', '2026-04-16 15:07:55'), +(81, 'Jane Smith`', 'jane-smith', 'karyll.anchai@gmail.com', NULL, NULL, '$2y$12$gwBR12mpBMGH7CT/nUDsL.mb8ggdC7eodXn47OK8LCnQSzK/4ZlPS', 0, NULL, 'company', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, NULL, 2, '2026-04-06 01:27:50', '2026-04-16 15:07:55'), +(82, 'Karyll Test 1', 'karyll-test-1', 'sifilo4107@nazisat.com', NULL, NULL, '$2y$12$fL3WewhhtMYBaun2MoUi0eVrUMkNyxp8vOrXU1p7/Xcnh1vCnAlma', 0, NULL, 'company', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, NULL, 2, '2026-04-13 12:56:19', '2026-04-16 15:07:55'), +(83, 'Karyll Test 2', 'karyll-test-2', 'rajeta7671@bpotogo.com', NULL, NULL, '$2y$12$4tUPoAYyS/w7SfWd6SPrA.g.XlCcEYiwfIDx2jMR9lwUvw5bMGc0O', 0, NULL, 'company', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 1, NULL, 0, 0, NULL, NULL, 2, '2026-04-13 13:01:10', '2026-04-16 15:07:55'), +(84, 'dqdqdq', 'dqdqdq', 'giordano.davince321@gmail.com', NULL, '2026-04-20 04:55:10', '$2y$12$h1MH7oJh/i.Alv.fF0UmUOrg/T0X7I1iVz.sG2.xrgQ3QBE0dXB.S', 0, NULL, 'company', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 1, NULL, NULL, 1, '2026-04-20 04:55:10', '2026-04-20 04:55:10'), +(85, 'Amara Wilderman PhD', 'amara-wilderman-phd', 'gregoria.stiedemann@example.org', NULL, NULL, '$2y$12$58lPV0ykwPUafN2x/SzWU.NNYCF8LQUqhLl0a1cI91b6mPAsSvemy', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:40:34', '2026-05-01 21:40:34'), +(86, 'Syble Powlowski', 'syble-powlowski', 'fausto.zemlak@example.org', NULL, NULL, '$2y$12$Fcm7kkJxea9VQUssC8tGyuTq8mV9tDOqtz8ADDL7j51QsxPWS6P4m', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:40:35', '2026-05-01 21:40:35'), +(87, 'Dr. Leilani Bayer DDS', 'dr-leilani-bayer-dds', 'rtowne@example.org', NULL, NULL, '$2y$12$w/PU6R7qNO1fl5br4Y.wn.LJ7UK173K31FI6t1O2odmSn5cUmG7Wa', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:40:35', '2026-05-01 21:40:35'), +(88, 'Dina Bahringer', 'dina-bahringer', 'sbruen@example.org', NULL, NULL, '$2y$12$fdJG2rvPGqwEzstbfAJJy.H8VlmuvwgRkcGlngVmbnMGyXD6aeDA6', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:40:35', '2026-05-01 21:40:35'), +(89, 'Lexus Kub', 'lexus-kub', 'stephon42@example.net', NULL, NULL, '$2y$12$V9KzEflxVECuZznQV5JTD.99drm8G2EPv88qxyz6MN81Ig37l3uYq', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:40:35', '2026-05-01 21:40:35'), +(90, 'Percy Conroy', 'percy-conroy', 'audrey.upton@example.net', NULL, NULL, '$2y$12$vdXCwFnCMpBsdOreaJVxleqVY6wHKvEzL1Ti.4IQhxYAkkoHSochm', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), +(91, 'Felix Simonis', 'felix-simonis', 'teagan.christiansen@example.net', NULL, NULL, '$2y$12$m/QmyHuRevYDBh2xGa81puMtXaNkbW6GJKMZc.o3UJQBDYcLQx7wq', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), +(92, 'Vivianne Eichmann', 'vivianne-eichmann', 'oberbrunner.jaquelin@example.com', NULL, NULL, '$2y$12$MEcewquf7JIM0KrCFWMlm.P8SmSUMlpwsq0wKSvZO9WwSYP3KJAxS', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), +(93, 'Miss Charlene Borer', 'miss-charlene-borer', 'veum.bernita@example.com', NULL, NULL, '$2y$12$M9fdrxHUCvAlai8nCa6VSu0ay15sK6atW4LQCgpZVPNnAJUbuqTwq', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), +(94, 'Prof. Heloise Yundt Sr.', 'prof-heloise-yundt-sr', 'turner.ashleigh@example.org', NULL, NULL, '$2y$12$HXFIUVqs9/ENrbNUhS/tf.fTGPFQVHDnCP7AamhQt6YBZrJxbo.Sa', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), +(95, 'Prof. Hailie Kuhlman Sr.', 'prof-hailie-kuhlman-sr', 'ruecker.karine@example.com', NULL, NULL, '$2y$12$yR2QecFTU9S29zhxNp.lYO/FQAx1sysA/QninjuT6/mXH5rkgeboW', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:45:27', '2026-05-01 21:45:27'), +(96, 'Naomie Jacobs', 'naomie-jacobs', 'sanford.vicenta@example.org', NULL, NULL, '$2y$12$6hr3DHqwOZTDV.rcwjWxM.0ij3HmDOnx40s8awMzRfH9Gcy7UTtca', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:45:27', '2026-05-01 21:45:27'), +(97, 'Kenya Glover PhD', 'kenya-glover-phd', 'boyer.aric@example.org', NULL, NULL, '$2y$12$/7635SHiUeQgvs9H7AepDODWjrrqZ7vlfM.AU0CBoey5pyFcOgaVy', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:45:27', '2026-05-01 21:45:27'), +(98, 'Cordie Schiller', 'cordie-schiller', 'arely91@example.com', NULL, NULL, '$2y$12$DGZW9sKIxvg8hcfWcScrv.zjRswzBNcOSBWkCZOI5aQNJYO4N38By', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:45:27', '2026-05-01 21:45:27'), +(99, 'Prof. Boyd Ortiz', 'prof-boyd-ortiz', 'pstark@example.org', NULL, NULL, '$2y$12$7hsFR4S59fGRR7ReW3yYy..U1r2vwu0u2k8NGvmJi2MA1GmrNW0W6', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), +(100, 'Lacey Dickens', 'lacey-dickens', 'dariana27@example.org', NULL, NULL, '$2y$12$hwGovj5Bt4EgYjT/u6UQA.ES6TUjFwoYObmNUGfIzkOH9FGoTq6TW', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), +(101, 'Sterling Douglas DVM', 'sterling-douglas-dvm', 'gusikowski.stanford@example.net', NULL, NULL, '$2y$12$X45mvlupstjvAHQPlmgY8.tqfQLB8N3sr6UeuM5TUuuISITr16vw2', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), +(102, 'Miss Destany Armstrong', 'miss-destany-armstrong', 'esta50@example.net', NULL, NULL, '$2y$12$/gWUdJMrmeAt4WtzZWZyFuK71ZCUbUk1HIwB7kg9oXO/JiS9gJrjq', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), +(103, 'Dr. Garrick Reichert Jr.', 'dr-garrick-reichert-jr', 'barry.green@example.org', NULL, NULL, '$2y$12$iTkplKHXySWJCeagWDHC2ujTwQQzedJFSAlTioXB8r8E2s9PYaOBK', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), +(104, 'Mr. Norris Wehner Sr.', 'mr-norris-wehner-sr', 'sdouglas@example.net', NULL, NULL, '$2y$12$44DMcrprVmN9wkdr7wL7heoM5UpQjB5GL0z1wSlbk7eWvwrSA2QoW', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:45:29', '2026-05-01 21:45:29'), +(105, 'Glenda Boyer', 'glenda-boyer', 'leon.streich@example.org', NULL, NULL, '$2y$12$Fvtn.FPB9ItgXMa5v4ltDeCt7bTTNA67fJ512w.12Dm72.T6HoaTG', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:47:54', '2026-05-01 21:47:54'), +(106, 'Larissa Kling', 'larissa-kling', 'pgleason@example.com', NULL, NULL, '$2y$12$CAjfmht43D6LbQgMKf3x/OvKjZTMsRQFhxIFS4TAKGop6tLqZopxO', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:47:55', '2026-05-01 21:47:55'), +(107, 'Stephen Jaskolski V', 'stephen-jaskolski-v', 'mandy.kuvalis@example.org', NULL, NULL, '$2y$12$gA93vSDqE2MFq.MG9QpTh.3UJ/nBf.Mlx7COdNLUCSjkJIUPb3qBy', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:47:55', '2026-05-01 21:47:55'), +(108, 'Shawna Walter', 'shawna-walter', 'ruecker.elise@example.com', NULL, NULL, '$2y$12$8CfHaxo2gq3vMpMqGpdOl.ML/fU5qsAkfvWgG13xDO4VSBEGOmp/i', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:47:55', '2026-05-01 21:47:55'), +(109, 'Haylie Greenfelder', 'haylie-greenfelder', 'kyla.leuschke@example.net', NULL, NULL, '$2y$12$C3VpBTzrsKmNoH3u9vrw5ev51mv0OVXkcysohfQhfwh2aLcrpXpEu', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:47:55', '2026-05-01 21:47:55'), +(110, 'Jackie Farrell V', 'jackie-farrell-v', 'lloyd.thiel@example.com', NULL, NULL, '$2y$12$3gB96DOsyczMdtbjfpzEOu746nojBsTOJ4sTnD/UjiN8CftITAdyG', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:47:55', '2026-05-01 21:47:55'), +(111, 'Dr. Odie Gleichner', 'dr-odie-gleichner', 'pouros.vernie@example.com', NULL, NULL, '$2y$12$V4l7NYC79lSD5PPLpK8FceOHdAQa1nz04GuhOiRGv/5TSAMi7XjYW', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), +(112, 'Ms. Mariela Leannon PhD', 'ms-mariela-leannon-phd', 'wisozk.herman@example.net', NULL, NULL, '$2y$12$jaAXrT0zwK19YrqxkKX4CesdoLUqi5Ac7kYnC5ZN24F5gzSKv5/9m', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), +(113, 'Warren Ward', 'warren-ward', 'feil.susana@example.com', NULL, NULL, '$2y$12$9sDOknJ/UzbxOeuJODXPqe2ieXhK/CZfjjXLxCp5mrWD5p5mLumy.', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), +(114, 'Ms. Nichole Gleichner', 'ms-nichole-gleichner', 'francesca37@example.net', NULL, NULL, '$2y$12$0OSX5ggreQNTo28KC8upTe6NeKwkL./HU8BoMWe.GJ1vlZLWmrUde', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), +(115, 'Kennith Kerluke', 'kennith-kerluke', 'gleichner.raina@example.com', NULL, NULL, '$2y$12$5AkY7uUxk/prJGPShoG0/epdDniNnC.1SMBaNob.oL3W4GWrmet1O', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:48:46', '2026-05-01 21:48:46'), +(116, 'Abdul Dickens', 'abdul-dickens', 'wcollins@example.com', NULL, NULL, '$2y$12$Gn/6OPrnc6yjmEvEcy2hWeJM1KGMpTsko3A.Zc8gtLdD4B.7OSba2', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:48:46', '2026-05-01 21:48:46'), +(117, 'Liam Kassulke', 'liam-kassulke', 'bsmith@example.net', NULL, NULL, '$2y$12$KEqLaKMwZn4Rq8MNl.QH4uDRfr5hvKnbkGSWuwo2f8xTnSlPVMyGS', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:48:46', '2026-05-01 21:48:46'), +(118, 'Mr. Jordan Prosacco V', 'mr-jordan-prosacco-v', 'oaufderhar@example.com', NULL, NULL, '$2y$12$grgVxB5uCVBp7rc/WDuGzuhXDvQ7UEq65TYRI2xAVgCZ77ecSxiv6', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:48:46', '2026-05-01 21:48:46'), +(119, 'Brielle Leuschke', 'brielle-leuschke', 'andreane50@example.org', NULL, NULL, '$2y$12$7HK1q0TTyaaYaxuwc6cP5.AS/73jVjOc5b3rLTQSJRjSU0uJnqCtK', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), +(120, 'Ms. Lenna Jakubowski', 'ms-lenna-jakubowski', 'antonia.simonis@example.org', NULL, NULL, '$2y$12$5WKXINKP4xgKCnvUqQZ64.pAsaMjBfeRmW/AdTNpzEh/.evh9lKzK', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), +(121, 'Ms. Aryanna Murazik IV', 'ms-aryanna-murazik-iv', 'kuhlman.margaretta@example.net', NULL, NULL, '$2y$12$lXh06i6ZkQnbc4n4yL9uouiJE2rXIZmS5UKTlY9bsqQmInayqijzm', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), +(122, 'Berneice Collier', 'berneice-collier', 'oswaldo.dickinson@example.org', NULL, NULL, '$2y$12$NXkzwmBjojT0MAQAIa/hreeNf0dKg/qIO7srEMcESIDC2fuaR5iMq', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), +(123, 'Tony Gorczany', 'tony-gorczany', 'sigmund.kuhic@example.org', NULL, NULL, '$2y$12$Vbe0IKhchYdF.ONnVJc9renjhjx9ACDFYXt5DUG9.j5BZjcMUoO..', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), +(124, 'Timothy Brakus', 'timothy-brakus', 'yziemann@example.com', NULL, NULL, '$2y$12$kad6ygY0S31IbXv9b5SRKOcuQzROr4XMcyrhBUUAPuD08qMUsOsle', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:48:48', '2026-05-01 21:48:48'), +(125, 'Mr. Bud Tromp', 'mr-bud-tromp', 'adolphus90@example.com', NULL, NULL, '$2y$12$bbFeN/IQga7DAZ7F9zy3LevRw6lE5JUS7mmQNBksyHvpR.DDeGsTW', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:49:36', '2026-05-01 21:49:36'), +(126, 'Mr. Jack Lowe Sr.', 'mr-jack-lowe-sr', 'bode.jesus@example.net', NULL, NULL, '$2y$12$MNclbC4Ur5AdhgYvn5fNzOhpqCRx2/L4os4sniElvUSR4Zz4wDNp.', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:49:37', '2026-05-01 21:49:37'), +(127, 'Ron Klocko', 'ron-klocko', 'gmayer@example.org', NULL, NULL, '$2y$12$LaunZRStWkfFzKqq3MpxYuh6xL/xhc4R.d11u1asTzCYqUjjOyPte', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:49:37', '2026-05-01 21:49:37'), +(128, 'Stephany Goodwin DVM', 'stephany-goodwin-dvm', 'dayana86@example.com', NULL, NULL, '$2y$12$4xSQvn3R5du/SGO927NBtutQbbjo/MhAmpyagD1/pg7fi9BsIuKGq', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:49:37', '2026-05-01 21:49:37'), +(129, 'Alaina Kshlerin', 'alaina-kshlerin', 'omari.marvin@example.net', NULL, NULL, '$2y$12$NPF7uZjYUqzYT8v86clJNOlPSvcOTBM5o6XvSRupLspf3eGDXnwfS', 0, NULL, 'vendor', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:49:37', '2026-05-01 21:49:37'), +(130, 'Arno Schmitt', 'arno-schmitt', 'luettgen.declan@example.org', NULL, NULL, '$2y$12$LL6GFsDa6uD.rVBpPG6R/.6fgvLmTEwgkW7vL8aEqUTcmvWrHvcCS', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:49:37', '2026-05-01 21:49:37'), +(131, 'Prof. Georgiana Pfeffer II', 'prof-georgiana-pfeffer-ii', 'renner.julian@example.net', NULL, NULL, '$2y$12$QK98Ur1IcP9o8OYSDcYJqu0W.6re9TfP44DP.V4nOjSSA4hbvNsse', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(132, 'Rhiannon Dickinson', 'rhiannon-dickinson', 'wilderman.roxanne@example.com', NULL, NULL, '$2y$12$tIIdT/Hkt3Xa9/RkK.3geeBtKW3mTImG8AeeFF2/.iAHBSjch0FNq', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(133, 'Deon Ratke', 'deon-ratke', 'prince48@example.com', NULL, NULL, '$2y$12$Y/pDin9L8xcFAiVOYa2z2e2vOsaDsWdxHO5ZKf9wGN9wnhXY3uQey', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(134, 'Mr. Ryann Dach', 'mr-ryann-dach', 'okeefe.domenick@example.net', NULL, NULL, '$2y$12$uaJ/8nRg6g86uIOp2f3jFujyWzlVvCYeXMQ0zOtAvLmjRW3bI4P6e', 0, NULL, 'client', 'avatar.png', 'en', NULL, NULL, NULL, '0', 0, 0, 0, NULL, 1, 0, NULL, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `user_active_modules` +-- + +CREATE TABLE `user_active_modules` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED DEFAULT NULL, + `module` varchar(255) 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 `user_active_modules` +-- + +INSERT INTO `user_active_modules` (`id`, `user_id`, `module`, `created_at`, `updated_at`) VALUES +(55, 58, 'Account', '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(56, 58, 'Hrm', '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(57, 58, 'Stripe', '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(58, 58, 'Paypal', '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(59, 58, 'DoubleEntry', '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(60, 58, 'Payroll', '2026-03-25 08:46:08', '2026-03-25 08:46:08'), +(96, 2, 'Taskly', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(97, 2, 'Account', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(98, 2, 'Hrm', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(99, 2, 'Lead', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(100, 2, 'Pos', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(101, 2, 'Stripe', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(102, 2, 'Paypal', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(103, 2, 'DoubleEntry', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(104, 2, 'SkillsMatrix', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(105, 2, 'CertTracker', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(106, 2, 'Engagement', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(107, 2, 'Utilization', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(108, 2, 'Payroll', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(109, 2, 'PropertyManagement', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(110, 2, 'Hospital', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(111, 2, 'AIHub', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(112, 2, 'AIDocument', '2026-04-27 14:49:28', '2026-04-27 14:49:28'), +(113, 2, 'ProductService', '2026-04-27 14:49:28', '2026-04-27 14:49:28'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `user_coupons` +-- + +CREATE TABLE `user_coupons` ( + `id` bigint(20) UNSIGNED NOT NULL, + `coupon_id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `order_id` varchar(255) 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 `user_coupons` +-- + +INSERT INTO `user_coupons` (`id`, `coupon_id`, `user_id`, `order_id`, `created_at`, `updated_at`) VALUES +(1, 2, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(2, 3, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(3, 2, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(4, 3, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(5, 2, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(6, 3, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(7, 2, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(8, 3, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(9, 2, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(10, 1, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(11, 3, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(12, 3, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(13, 1, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(14, 1, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(15, 1, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(16, 2, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(17, 2, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(18, 3, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(19, 3, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(20, 1, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(21, 3, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(22, 2, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(23, 1, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(24, 1, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), +(25, 2, 2, NULL, '2026-03-14 00:17:35', '2026-03-14 00:17:35'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `user_deals` +-- + +CREATE TABLE `user_deals` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `deal_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; + +-- +-- Dumping data for table `user_deals` +-- + +INSERT INTO `user_deals` (`id`, `user_id`, `deal_id`, `created_at`, `updated_at`) VALUES +(1, 38, 1, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 31, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 39, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 37, 3, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 31, 3, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 12, 4, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 32, 5, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 20, 5, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 35, 6, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 36, 11, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 33, 12, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 38, 13, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 22, 13, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 34, 14, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 39, 14, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 34, 15, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 8, 15, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 16, 16, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 36, 7, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 42, 7, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 38, 8, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 33, 8, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 18, 9, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 40, 9, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 35, 10, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 20, 17, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 14, 18, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 33, 18, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(29, 14, 19, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(30, 10, 19, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(31, 18, 20, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(32, 32, 7, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(33, 22, 7, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(34, 37, 8, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(35, 16, 8, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(36, 24, 9, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(37, 28, 9, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(38, 33, 10, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(39, 40, 17, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(40, 8, 18, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(41, 16, 19, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(42, 29, 19, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(43, 39, 20, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(44, 20, 20, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(45, 8, 7, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(46, 12, 8, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(47, 26, 9, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(48, 14, 10, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(49, 12, 17, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(50, 34, 18, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(51, 20, 19, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(52, 31, 20, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(53, 18, 7, '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(54, 36, 8, '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(55, 35, 9, '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(56, 32, 9, '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(57, 40, 10, '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(58, 41, 17, '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(59, 41, 18, '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(60, 36, 19, '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(61, 35, 19, '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(62, 29, 20, '2026-03-14 06:00:19', '2026-03-14 06:00:19'), +(63, 40, 20, '2026-03-14 06:00:19', '2026-03-14 06:00:19'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `user_leads` +-- + +CREATE TABLE `user_leads` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `lead_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; + +-- +-- Dumping data for table `user_leads` +-- + +INSERT INTO `user_leads` (`id`, `user_id`, `lead_id`, `created_at`, `updated_at`) VALUES +(1, 38, 1, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(2, 31, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(3, 39, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(4, 37, 3, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(5, 31, 3, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(6, 12, 4, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(7, 32, 5, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(8, 20, 5, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(9, 35, 6, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(10, 12, 7, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(11, 37, 7, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(12, 40, 8, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(13, 28, 9, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(14, 33, 9, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(15, 22, 10, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(16, 36, 11, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(17, 33, 12, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(18, 38, 13, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(19, 22, 13, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(20, 34, 14, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(21, 39, 14, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(22, 34, 15, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(23, 8, 15, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(24, 16, 16, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(25, 31, 17, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(26, 37, 17, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(27, 35, 18, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(28, 35, 19, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(29, 42, 20, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), +(30, 31, 1, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(31, 29, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(32, 32, 3, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(33, 22, 4, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(34, 26, 5, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(35, 18, 6, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(36, 29, 7, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(37, 42, 8, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(38, 32, 8, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(39, 8, 9, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(40, 42, 10, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(41, 41, 10, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(42, 30, 11, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(43, 14, 12, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(44, 14, 13, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(45, 41, 14, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(46, 37, 14, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(47, 18, 15, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(48, 42, 16, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(49, 38, 17, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(50, 42, 18, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(51, 30, 19, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(52, 34, 20, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), +(53, 16, 1, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(54, 41, 1, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(55, 34, 2, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(56, 12, 3, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(57, 39, 4, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(58, 31, 5, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(59, 22, 6, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(60, 41, 6, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(61, 24, 7, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(62, 33, 7, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(63, 12, 8, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(64, 16, 8, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(65, 40, 9, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(66, 39, 10, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(67, 40, 11, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(68, 26, 12, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(69, 36, 13, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(70, 18, 14, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(71, 22, 14, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(72, 36, 15, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(73, 38, 15, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(74, 30, 16, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(75, 12, 16, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(76, 39, 17, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(77, 40, 19, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(78, 26, 20, '2026-03-14 06:00:09', '2026-03-14 06:00:09'), +(79, 40, 1, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(80, 29, 1, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(81, 29, 3, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(82, 36, 3, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(83, 10, 4, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(84, 24, 4, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(85, 18, 5, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(86, 24, 5, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(87, 30, 7, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(88, 22, 8, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(89, 20, 9, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(90, 34, 10, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(91, 29, 10, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(92, 38, 11, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(93, 41, 12, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(94, 34, 13, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(95, 33, 14, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(96, 33, 15, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(97, 12, 15, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(98, 32, 16, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(99, 10, 16, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(100, 30, 17, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(101, 41, 18, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(102, 32, 19, '2026-03-14 06:00:18', '2026-03-14 06:00:18'), +(103, 18, 20, '2026-03-14 06:00:18', '2026-03-14 06:00:18'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `utilization_alerts` +-- + +CREATE TABLE `utilization_alerts` ( + `id` bigint(20) UNSIGNED NOT NULL, + `rule_id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `message` varchar(255) NOT NULL, + `period` varchar(255) DEFAULT NULL, + `value` decimal(8,2) 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 `utilization_forecasts` +-- + +CREATE TABLE `utilization_forecasts` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED NOT NULL, + `period` varchar(7) NOT NULL, + `avg_utilization_3m` decimal(5,1) NOT NULL DEFAULT 0.0, + `scheduled_hours` decimal(8,2) NOT NULL DEFAULT 0.00, + `forecasted_pct` decimal(5,1) NOT NULL DEFAULT 0.0, + `ai_insight` text DEFAULT NULL, + `created_by` 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 `utilization_rules` +-- + +CREATE TABLE `utilization_rules` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `metric` enum('utilization_pct','billable_pct','total_hours') NOT NULL DEFAULT 'utilization_pct', + `operator` enum('<','>','<=','>=','=') NOT NULL DEFAULT '<', + `threshold` decimal(8,2) NOT NULL, + `action` enum('flag','email','dashboard_alert') NOT NULL DEFAULT 'dashboard_alert', + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `created_by` 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 `utilization_targets` +-- + +CREATE TABLE `utilization_targets` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED DEFAULT NULL, + `department_id` bigint(20) UNSIGNED DEFAULT NULL, + `target_percentage` decimal(5,2) NOT NULL DEFAULT 75.00, + `period_start` date NOT NULL, + `period_end` date NOT NULL, + `created_by` 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 `vehicles` +-- + +CREATE TABLE `vehicles` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `department_id` int(11) NOT NULL, + `vehicle_type` int(11) NOT NULL, + `fuel_type` int(11) NOT NULL, + `registration_date` date NOT NULL, + `register_ex_date` date DEFAULT NULL, + `lincense_plate` int(11) NOT NULL, + `vehical_id_num` int(11) NOT NULL, + `model_year` year(4) NOT NULL, + `driver_name` int(11) NOT NULL, + `seat_capacity` int(11) NOT NULL, + `status` varchar(255) DEFAULT NULL, + `rate` int(11) NOT NULL DEFAULT 0, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `vehicle_invoice` +-- + +CREATE TABLE `vehicle_invoice` ( + `id` bigint(20) UNSIGNED NOT NULL, + `invoice_id` int(11) DEFAULT NULL, + `product_type` varchar(255) DEFAULT NULL, + `item` int(11) DEFAULT NULL, + `start_location` varchar(255) DEFAULT NULL, + `end_location` varchar(255) DEFAULT NULL, + `trip_type` varchar(255) DEFAULT NULL, + `rate` int(11) DEFAULT NULL, + `start_date` date DEFAULT NULL, + `end_date` date DEFAULT NULL, + `description` varchar(255) DEFAULT NULL, + `distance` varchar(255) 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` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `workspace` int(11) DEFAULT NULL, + `created_by` 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 `vendors` +-- + +CREATE TABLE `vendors` ( + `id` bigint(20) UNSIGNED NOT NULL, + `user_id` bigint(20) UNSIGNED DEFAULT NULL, + `vendor_code` varchar(255) NOT NULL, + `company_name` varchar(255) NOT NULL, + `contact_person_name` varchar(255) NOT NULL, + `contact_person_email` varchar(255) DEFAULT NULL, + `contact_person_mobile` varchar(255) DEFAULT NULL, + `tax_number` varchar(255) DEFAULT NULL, + `payment_terms` varchar(255) DEFAULT NULL, + `billing_address` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`billing_address`)), + `shipping_address` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`shipping_address`)), + `same_as_billing` tinyint(1) NOT NULL DEFAULT 0, + `notes` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `vendors` +-- + +INSERT INTO `vendors` (`id`, `user_id`, `vendor_code`, `company_name`, `contact_person_name`, `contact_person_email`, `contact_person_mobile`, `tax_number`, `payment_terms`, `billing_address`, `shipping_address`, `same_as_billing`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 28, 'VEN-0001', 'Langworth LLC', 'Prof. Brendon Hoeger', 'tess.schumm@casper.com', '+5458084722938', 'TAX-90289550', 'Net 30', '{\"name\":\"Prof. Gwendolyn Lesch III\",\"address_line_1\":\"191 Konopelski Road Apt. 502\",\"address_line_2\":\"Suite 949\",\"city\":\"Lake Glendabury\",\"state\":\"North Dakota\",\"country\":\"Norfolk Island\",\"zip_code\":\"92914\"}', '{\"name\":\"Mr. Moriah Trantow\",\"address_line_1\":\"18522 Annabel Drive Suite 075\",\"address_line_2\":null,\"city\":\"Douglasfort\",\"state\":\"Rhode Island\",\"country\":\"South Georgia and the South Sandwich Islands\",\"zip_code\":\"26291\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 29, 'VEN-0002', 'Quitzon, Keeling and Toy', 'Ferne Hermann', 'tpouros@douglas.net', '+7035437136539', 'TAX-12232167', 'Net 30', '{\"name\":\"Elvera Veum DVM\",\"address_line_1\":\"3762 Jevon Mission Suite 130\",\"address_line_2\":null,\"city\":\"East Mertiechester\",\"state\":\"Texas\",\"country\":\"Syrian Arab Republic\",\"zip_code\":\"38646-8531\"}', '{\"name\":\"Dr. Gavin Roberts\",\"address_line_1\":\"22189 Kamille Unions\",\"address_line_2\":\"Apt. 025\",\"city\":\"North Herminio\",\"state\":\"Alaska\",\"country\":\"China\",\"zip_code\":\"79281\"}', 0, 'Eligendi aperiam et rerum similique aut voluptas consequatur impedit.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 30, 'VEN-0003', 'Mills-Lehner', 'Madge Schultz', 'taya77@marks.com', '+3642032697820', 'TAX-87303718', 'Net 15', '{\"name\":\"Herbert Hamill\",\"address_line_1\":\"186 Muller Rapid\",\"address_line_2\":null,\"city\":\"North Leonoraberg\",\"state\":\"District of Columbia\",\"country\":\"Korea\",\"zip_code\":\"41042\"}', '{\"name\":\"Prof. Daphney Runolfsson\",\"address_line_1\":\"260 Leffler Ramp\",\"address_line_2\":\"Suite 534\",\"city\":\"New Jolie\",\"state\":\"Colorado\",\"country\":\"Switzerland\",\"zip_code\":\"08431-7262\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 31, 'VEN-0004', 'Thiel-Satterfield', 'Bethel Willms V', 'thora.gutkowski@marks.net', '+9923137290725', 'TAX-58044013', 'Net 15', '{\"name\":\"Prof. Jakob Donnelly\",\"address_line_1\":\"299 Giuseppe Harbors Suite 372\",\"address_line_2\":\"Suite 823\",\"city\":\"Tillmanport\",\"state\":\"Montana\",\"country\":\"Eritrea\",\"zip_code\":\"24914\"}', '{\"name\":\"Miss Zoila Schneider I\",\"address_line_1\":\"659 Carroll Pines Suite 151\",\"address_line_2\":\"Apt. 237\",\"city\":\"Port Enaborough\",\"state\":\"Michigan\",\"country\":\"Netherlands Antilles\",\"zip_code\":\"25024-7043\"}', 0, 'Dolores sunt maxime voluptas aliquid rerum quis molestiae.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 32, 'VEN-0005', 'Kuhlman, Howell and Koelpin', 'Odell Roberts III', 'lthiel@okon.net', '+5820603812678', 'TAX-13234330', 'Net 15', '{\"name\":\"Celine Prosacco\",\"address_line_1\":\"8612 Goldner Pine\",\"address_line_2\":null,\"city\":\"Tillmanberg\",\"state\":\"Connecticut\",\"country\":\"British Indian Ocean Territory (Chagos Archipelago)\",\"zip_code\":\"14978\"}', '{\"name\":\"Miss Rosina Shields Jr.\",\"address_line_1\":\"1022 Ellsworth Crossroad Apt. 824\",\"address_line_2\":null,\"city\":\"South Kassandra\",\"state\":\"Alabama\",\"country\":\"Sri Lanka\",\"zip_code\":\"71507-1468\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 33, 'VEN-0006', 'Steuber-Gutkowski', 'Isidro Renner', 'weldon.ratke@anderson.com', '+3896556103794', 'TAX-25173576', 'Net 30', '{\"name\":\"Fanny Bartoletti\",\"address_line_1\":\"459 Will Vista Suite 935\",\"address_line_2\":\"Suite 193\",\"city\":\"Bernierstad\",\"state\":\"Virginia\",\"country\":\"Svalbard & Jan Mayen Islands\",\"zip_code\":\"56464\"}', '{\"name\":\"Miss Jaida Eichmann Sr.\",\"address_line_1\":\"70634 Buckridge Plaza Apt. 004\",\"address_line_2\":null,\"city\":\"Connellyside\",\"state\":\"New Jersey\",\"country\":\"Hong Kong\",\"zip_code\":\"87132-1139\"}', 0, 'Corporis error recusandae non.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 34, 'VEN-0007', 'Kris, Lemke and Roob', 'Candace Monahan', 'modesta.gulgowski@hessel.com', '+9280661184745', 'TAX-68578974', 'Net 15', '{\"name\":\"Mrs. Felicita Trantow\",\"address_line_1\":\"24459 Kohler Land\",\"address_line_2\":null,\"city\":\"Ebertfurt\",\"state\":\"Montana\",\"country\":\"Turkey\",\"zip_code\":\"22220-5143\"}', '{\"name\":\"Lucinda Jacobi\",\"address_line_1\":\"236 VonRueden Road Suite 069\",\"address_line_2\":\"Apt. 869\",\"city\":\"New Magdalenashire\",\"state\":\"Minnesota\",\"country\":\"Congo\",\"zip_code\":\"32254-8723\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 35, 'VEN-0008', 'Kohler Group', 'Derek Swaniawski', 'mazie35@hintz.com', '+6454976316100', 'TAX-36972867', 'Net 60', '{\"name\":\"Nat Schowalter MD\",\"address_line_1\":\"77801 Florencio Crossroad\",\"address_line_2\":\"Suite 493\",\"city\":\"Manteside\",\"state\":\"Kentucky\",\"country\":\"Sweden\",\"zip_code\":\"11477\"}', '{\"name\":\"Deshaun Greenholt\",\"address_line_1\":\"52353 Stark Passage Apt. 545\",\"address_line_2\":null,\"city\":\"Valentineport\",\"state\":\"New Mexico\",\"country\":\"Macedonia\",\"zip_code\":\"59353\"}', 1, 'Eos non id reiciendis nobis quis.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 36, 'VEN-0009', 'White, O\'Conner and Becker', 'Audra Smitham', 'jast.ursula@mann.net', '+7956971461006', 'TAX-34297066', 'Net 60', '{\"name\":\"Suzanne Roob\",\"address_line_1\":\"8953 Anita Mountains Suite 877\",\"address_line_2\":null,\"city\":\"Lake Faustinomouth\",\"state\":\"Oregon\",\"country\":\"Pitcairn Islands\",\"zip_code\":\"63261\"}', '{\"name\":\"Miss Ivy O\'Reilly II\",\"address_line_1\":\"1234 Runolfsdottir Meadows Apt. 207\",\"address_line_2\":\"Apt. 482\",\"city\":\"Lake Jaydestad\",\"state\":\"Arkansas\",\"country\":\"Martinique\",\"zip_code\":\"22080\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 37, 'VEN-0010', 'Ziemann Group', 'Gabriella McClure', 'murazik.adah@carroll.org', '+1018625041779', 'TAX-00002063', 'Net 60', '{\"name\":\"Bryana Dare V\",\"address_line_1\":\"42314 Hirthe Ridge Suite 418\",\"address_line_2\":\"Suite 792\",\"city\":\"South Breanne\",\"state\":\"Georgia\",\"country\":\"Ireland\",\"zip_code\":\"05961\"}', '{\"name\":\"Antwon Dickens MD\",\"address_line_1\":\"1404 Adriel Parks Suite 192\",\"address_line_2\":\"Apt. 370\",\"city\":\"Dinoport\",\"state\":\"New York\",\"country\":\"Thailand\",\"zip_code\":\"29496\"}', 1, 'Libero adipisci ut voluptatem quia.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, 38, 'VEN-0011', 'Howe-Hermiston', 'Imogene Ankunding', 'treutel.rigoberto@mclaughlin.com', '+6521266316287', 'TAX-32512586', 'Net 60', '{\"name\":\"Christian Price\",\"address_line_1\":\"2715 Grayce Light\",\"address_line_2\":\"Apt. 705\",\"city\":\"Thompsonland\",\"state\":\"Missouri\",\"country\":\"United Kingdom\",\"zip_code\":\"86263-7625\"}', '{\"name\":\"Otis Langworth\",\"address_line_1\":\"47448 Karen Haven\",\"address_line_2\":\"Suite 747\",\"city\":\"West Leonardo\",\"state\":\"Connecticut\",\"country\":\"Saint Barthelemy\",\"zip_code\":\"98776-6028\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, 39, 'VEN-0012', 'Olson LLC', 'Mrs. Abbey Mante', 'howell36@rempel.com', '+5390168191922', 'TAX-78778910', 'Net 30', '{\"name\":\"Mr. Gussie Lang\",\"address_line_1\":\"659 Farrell River\",\"address_line_2\":null,\"city\":\"Grahamside\",\"state\":\"Georgia\",\"country\":\"New Zealand\",\"zip_code\":\"76101-8500\"}', '{\"name\":\"Prof. Ike Lebsack\",\"address_line_1\":\"92031 Kennith Lake Apt. 646\",\"address_line_2\":\"Apt. 691\",\"city\":\"Lorineville\",\"state\":\"Texas\",\"country\":\"Benin\",\"zip_code\":\"71904\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(13, 40, 'VEN-0013', 'Ruecker PLC', 'Loraine O\'Reilly', 'jillian89@ryan.biz', '+5731340146979', 'TAX-97132400', 'Net 30', '{\"name\":\"Damion Schulist\",\"address_line_1\":\"9956 Hilda Gardens\",\"address_line_2\":null,\"city\":\"Lake Johnsonfurt\",\"state\":\"Montana\",\"country\":\"Somalia\",\"zip_code\":\"74009-7643\"}', '{\"name\":\"Andrew Schowalter\",\"address_line_1\":\"5367 Michel Plains\",\"address_line_2\":\"Apt. 673\",\"city\":\"Judeport\",\"state\":\"New Hampshire\",\"country\":\"Comoros\",\"zip_code\":\"92377-4052\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 41, 'VEN-0014', 'Flatley PLC', 'Maci Herman', 'estel.cartwright@herzog.com', '+3246872971605', 'TAX-68747233', 'Net 60', '{\"name\":\"Dario Altenwerth\",\"address_line_1\":\"9979 D\'angelo Meadows Suite 137\",\"address_line_2\":null,\"city\":\"Tillmanbury\",\"state\":\"Texas\",\"country\":\"Marshall Islands\",\"zip_code\":\"22396\"}', '{\"name\":\"Mr. Amir Tromp\",\"address_line_1\":\"3897 Karlee Plaza\",\"address_line_2\":\"Suite 001\",\"city\":\"South Floyd\",\"state\":\"Nevada\",\"country\":\"Central African Republic\",\"zip_code\":\"75951\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, 42, 'VEN-0015', 'Schaefer, Monahan and Jacobi', 'Elvera Pfannerstill', 'zcole@lehner.com', '+9926833810161', 'TAX-89658401', 'Net 30', '{\"name\":\"Efrain Reichert\",\"address_line_1\":\"424 Hahn Unions Apt. 370\",\"address_line_2\":null,\"city\":\"Pfefferhaven\",\"state\":\"North Carolina\",\"country\":\"Ghana\",\"zip_code\":\"97887\"}', '{\"name\":\"Else Quigley\",\"address_line_1\":\"223 Lang Place Apt. 874\",\"address_line_2\":\"Suite 240\",\"city\":\"Reynoldsberg\",\"state\":\"Arkansas\",\"country\":\"Montserrat\",\"zip_code\":\"98907-3700\"}', 1, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(16, 85, 'V-8BU0O', 'Gottlieb, Cremin and Franecki Pharmacy', 'Amara Wilderman PhD', 'gregoria.stiedemann@example.org', NULL, NULL, NULL, '{\"name\":\"Amara Wilderman PhD\",\"address_line_1\":\"78 Von Crossroad Apt. 724\",\"city\":\"Bi\\u00f1an\",\"state\":\"LA\",\"country\":\"Philippines\",\"zip_code\":\"4894\"}', '{\"name\":\"Amara Wilderman PhD\",\"address_line_1\":\"63\\/99 Feeney Place\",\"city\":\"Taguig\",\"state\":\"OR\",\"country\":\"Philippines\",\"zip_code\":\"8797\"}', 1, NULL, 2, 2, '2026-05-01 21:40:34', '2026-05-01 21:40:34'), +(17, 86, 'V-GURR1', 'Donnelly-Parisian Pharmacy', 'Syble Powlowski', 'fausto.zemlak@example.org', NULL, NULL, NULL, '{\"name\":\"Syble Powlowski\",\"address_line_1\":\"40\\/58 Weissnat Rue Apt. 105\",\"city\":\"Dipolog\",\"state\":\"CA\",\"country\":\"Philippines\",\"zip_code\":\"6615\"}', '{\"name\":\"Syble Powlowski\",\"address_line_1\":\"61A Barrows Crescent Apt. 272\",\"city\":\"Kidapawan\",\"state\":\"MS\",\"country\":\"Philippines\",\"zip_code\":\"3970\"}', 1, NULL, 2, 2, '2026-05-01 21:40:35', '2026-05-01 21:40:35'), +(18, 87, 'V-CD9HZ', 'Wehner-Cole Pharmacy', 'Dr. Leilani Bayer DDS', 'rtowne@example.org', NULL, NULL, NULL, '{\"name\":\"Dr. Leilani Bayer DDS\",\"address_line_1\":\"97A Homenick Meadow\",\"city\":\"Batac\",\"state\":\"WY\",\"country\":\"Philippines\",\"zip_code\":\"7434\"}', '{\"name\":\"Dr. Leilani Bayer DDS\",\"address_line_1\":\"37A\\/70 Veum Estate Apt. 036\",\"city\":\"Antipolo\",\"state\":\"KS\",\"country\":\"Philippines\",\"zip_code\":\"8354\"}', 1, NULL, 2, 2, '2026-05-01 21:40:35', '2026-05-01 21:40:35'), +(19, 88, 'V-B8CCG', 'Christiansen Inc Pharmacy', 'Dina Bahringer', 'sbruen@example.org', NULL, NULL, NULL, '{\"name\":\"Dina Bahringer\",\"address_line_1\":\"49\\/55 Hyatt Keys\",\"city\":\"Bayugan\",\"state\":\"AZ\",\"country\":\"Philippines\",\"zip_code\":\"2332\"}', '{\"name\":\"Dina Bahringer\",\"address_line_1\":\"96 Morissette Stravenue Apt. 707\",\"city\":\"Pagadian\",\"state\":\"RI\",\"country\":\"Philippines\",\"zip_code\":\"8842\"}', 1, NULL, 2, 2, '2026-05-01 21:40:35', '2026-05-01 21:40:35'), +(20, 89, 'V-BPMRT', 'Rice-Macejkovic Pharmacy', 'Lexus Kub', 'stephon42@example.net', NULL, NULL, NULL, '{\"name\":\"Lexus Kub\",\"address_line_1\":\"24\\/91 Hickle Spurs Suite 605\",\"city\":\"Escalante\",\"state\":\"CT\",\"country\":\"Philippines\",\"zip_code\":\"2004\"}', '{\"name\":\"Lexus Kub\",\"address_line_1\":\"91A\\/15 Altenwerth Place\",\"city\":\"Mabalacat\",\"state\":\"KY\",\"country\":\"Philippines\",\"zip_code\":\"8403\"}', 1, NULL, 2, 2, '2026-05-01 21:40:35', '2026-05-01 21:40:35'), +(21, 95, 'V-WEXUE', 'Lemke, Yundt and McClure Pharmacy', 'Prof. Hailie Kuhlman Sr.', 'ruecker.karine@example.com', NULL, NULL, NULL, '{\"name\":\"Prof. Hailie Kuhlman Sr.\",\"address_line_1\":\"48\\/58 Armstrong Overpass Apt. 115\",\"city\":\"Dagupan\",\"state\":\"VA\",\"country\":\"Philippines\",\"zip_code\":\"8446\"}', '{\"name\":\"Prof. Hailie Kuhlman Sr.\",\"address_line_1\":\"63\\/24 Bayer Extension Apt. 369\",\"city\":\"Sorsogon City\",\"state\":\"DC\",\"country\":\"Philippines\",\"zip_code\":\"1932\"}', 1, NULL, 2, 2, '2026-05-01 21:45:27', '2026-05-01 21:45:27'), +(22, 96, 'V-HYZ0P', 'Funk-Prosacco Pharmacy', 'Naomie Jacobs', 'sanford.vicenta@example.org', NULL, NULL, NULL, '{\"name\":\"Naomie Jacobs\",\"address_line_1\":\"03A\\/45 Abshire Court\",\"city\":\"Santa Rosa\",\"state\":\"MS\",\"country\":\"Philippines\",\"zip_code\":\"3517\"}', '{\"name\":\"Naomie Jacobs\",\"address_line_1\":\"50\\/71 McKenzie Springs Suite 824\",\"city\":\"Olongapo\",\"state\":\"ME\",\"country\":\"Philippines\",\"zip_code\":\"9748\"}', 1, NULL, 2, 2, '2026-05-01 21:45:27', '2026-05-01 21:45:27'), +(23, 97, 'V-BWJKR', 'Schoen, Keeling and Gutkowski Pharmacy', 'Kenya Glover PhD', 'boyer.aric@example.org', NULL, NULL, NULL, '{\"name\":\"Kenya Glover PhD\",\"address_line_1\":\"49A Bednar Lane Suite 180\",\"city\":\"Batac\",\"state\":\"MA\",\"country\":\"Philippines\",\"zip_code\":\"2430\"}', '{\"name\":\"Kenya Glover PhD\",\"address_line_1\":\"86A Schuppe Coves Apt. 473\",\"city\":\"San Fernando\",\"state\":\"MT\",\"country\":\"Philippines\",\"zip_code\":\"0411\"}', 1, NULL, 2, 2, '2026-05-01 21:45:27', '2026-05-01 21:45:27'), +(24, 98, 'V-1IXSC', 'Pacocha, Pfannerstill and Hills Pharmacy', 'Cordie Schiller', 'arely91@example.com', NULL, NULL, NULL, '{\"name\":\"Cordie Schiller\",\"address_line_1\":\"92 Wiza Green Apt. 634\",\"city\":\"General Santos\",\"state\":\"ME\",\"country\":\"Philippines\",\"zip_code\":\"5857\"}', '{\"name\":\"Cordie Schiller\",\"address_line_1\":\"72\\/65 Kris Passage Apt. 945\",\"city\":\"Tacurong\",\"state\":\"OK\",\"country\":\"Philippines\",\"zip_code\":\"5869\"}', 1, NULL, 2, 2, '2026-05-01 21:45:27', '2026-05-01 21:45:27'), +(25, 99, 'V-B7W7T', 'Boyle-Weber Pharmacy', 'Prof. Boyd Ortiz', 'pstark@example.org', NULL, NULL, NULL, '{\"name\":\"Prof. Boyd Ortiz\",\"address_line_1\":\"77A\\/41 Heidenreich Ranch Apt. 835\",\"city\":\"Taguig\",\"state\":\"OR\",\"country\":\"Philippines\",\"zip_code\":\"3299\"}', '{\"name\":\"Prof. Boyd Ortiz\",\"address_line_1\":\"92\\/86 Bradtke Court Suite 338\",\"city\":\"Ligao\",\"state\":\"WI\",\"country\":\"Philippines\",\"zip_code\":\"8379\"}', 1, NULL, 2, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), +(26, 105, 'V-7BXSJ', 'Ebert and Sons Pharmacy', 'Glenda Boyer', 'leon.streich@example.org', NULL, NULL, NULL, '{\"name\":\"Glenda Boyer\",\"address_line_1\":\"84\\/74 Hirthe Ville Apt. 561\",\"city\":\"Danao\",\"state\":\"WV\",\"country\":\"Philippines\",\"zip_code\":\"2110\"}', '{\"name\":\"Glenda Boyer\",\"address_line_1\":\"33A White Inlet\",\"city\":\"Digos\",\"state\":\"ID\",\"country\":\"Philippines\",\"zip_code\":\"7220\"}', 1, NULL, 2, 2, '2026-05-01 21:47:54', '2026-05-01 21:47:54'), +(27, 106, 'V-SUBKX', 'Reinger, Kirlin and Howell Pharmacy', 'Larissa Kling', 'pgleason@example.com', NULL, NULL, NULL, '{\"name\":\"Larissa Kling\",\"address_line_1\":\"00A Nicolas Road Apt. 188\",\"city\":\"Borongan\",\"state\":\"ID\",\"country\":\"Philippines\",\"zip_code\":\"9236\"}', '{\"name\":\"Larissa Kling\",\"address_line_1\":\"34A Dickens Fields Apt. 783\",\"city\":\"Quezon City\",\"state\":\"NY\",\"country\":\"Philippines\",\"zip_code\":\"0718\"}', 1, NULL, 2, 2, '2026-05-01 21:47:55', '2026-05-01 21:47:55'), +(28, 107, 'V-OMXAL', 'DuBuque, Brown and Abernathy Pharmacy', 'Stephen Jaskolski V', 'mandy.kuvalis@example.org', NULL, NULL, NULL, '{\"name\":\"Stephen Jaskolski V\",\"address_line_1\":\"72A Harris Avenue\",\"city\":\"Victorias\",\"state\":\"NM\",\"country\":\"Philippines\",\"zip_code\":\"8382\"}', '{\"name\":\"Stephen Jaskolski V\",\"address_line_1\":\"26A Grant Burg Suite 891\",\"city\":\"Tarlac City\",\"state\":\"RI\",\"country\":\"Philippines\",\"zip_code\":\"8591\"}', 1, NULL, 2, 2, '2026-05-01 21:47:55', '2026-05-01 21:47:55'), +(29, 108, 'V-6G2C4', 'Dickens-Swaniawski Pharmacy', 'Shawna Walter', 'ruecker.elise@example.com', NULL, NULL, NULL, '{\"name\":\"Shawna Walter\",\"address_line_1\":\"49\\/97 Boyle River Suite 994\",\"city\":\"Cagayan de Oro\",\"state\":\"IL\",\"country\":\"Philippines\",\"zip_code\":\"6070\"}', '{\"name\":\"Shawna Walter\",\"address_line_1\":\"53A Kertzmann Mill Suite 418\",\"city\":\"Escalante\",\"state\":\"FL\",\"country\":\"Philippines\",\"zip_code\":\"2587\"}', 1, NULL, 2, 2, '2026-05-01 21:47:55', '2026-05-01 21:47:55'), +(30, 109, 'V-Y6JUN', 'Fay, Feeney and Kuhlman Pharmacy', 'Haylie Greenfelder', 'kyla.leuschke@example.net', NULL, NULL, NULL, '{\"name\":\"Haylie Greenfelder\",\"address_line_1\":\"40A\\/43 Swaniawski Plains\",\"city\":\"San Pablo\",\"state\":\"OR\",\"country\":\"Philippines\",\"zip_code\":\"6067\"}', '{\"name\":\"Haylie Greenfelder\",\"address_line_1\":\"94A Deckow Estates\",\"city\":\"Para\\u00f1aque\",\"state\":\"NV\",\"country\":\"Philippines\",\"zip_code\":\"8992\"}', 1, NULL, 2, 2, '2026-05-01 21:47:55', '2026-05-01 21:47:55'), +(31, 115, 'V-TRVH1', 'Feeney, Schinner and Parisian Pharmacy', 'Kennith Kerluke', 'gleichner.raina@example.com', NULL, NULL, NULL, '{\"name\":\"Kennith Kerluke\",\"address_line_1\":\"30 Kunde Isle\",\"city\":\"Antipolo\",\"state\":\"SC\",\"country\":\"Philippines\",\"zip_code\":\"8030\"}', '{\"name\":\"Kennith Kerluke\",\"address_line_1\":\"95\\/89 Prohaska Forges Suite 719\",\"city\":\"Batac\",\"state\":\"VT\",\"country\":\"Philippines\",\"zip_code\":\"3366\"}', 1, NULL, 2, 2, '2026-05-01 21:48:46', '2026-05-01 21:48:46'), +(32, 116, 'V-DPUT2', 'Parisian PLC Pharmacy', 'Abdul Dickens', 'wcollins@example.com', NULL, NULL, NULL, '{\"name\":\"Abdul Dickens\",\"address_line_1\":\"23 Bergstrom Way Suite 785\",\"city\":\"Baybay\",\"state\":\"MA\",\"country\":\"Philippines\",\"zip_code\":\"5576\"}', '{\"name\":\"Abdul Dickens\",\"address_line_1\":\"61A\\/79 Kiehn Ways Suite 067\",\"city\":\"La Carlota\",\"state\":\"CT\",\"country\":\"Philippines\",\"zip_code\":\"8689\"}', 1, NULL, 2, 2, '2026-05-01 21:48:46', '2026-05-01 21:48:46'), +(33, 117, 'V-ZO8C5', 'Littel-Hodkiewicz Pharmacy', 'Liam Kassulke', 'bsmith@example.net', NULL, NULL, NULL, '{\"name\":\"Liam Kassulke\",\"address_line_1\":\"40 Shanahan Ports\",\"city\":\"Santa Rosa\",\"state\":\"DC\",\"country\":\"Philippines\",\"zip_code\":\"1727\"}', '{\"name\":\"Liam Kassulke\",\"address_line_1\":\"06A Corkery Trace\",\"city\":\"Sipalay\",\"state\":\"SC\",\"country\":\"Philippines\",\"zip_code\":\"9782\"}', 1, NULL, 2, 2, '2026-05-01 21:48:46', '2026-05-01 21:48:46'), +(34, 118, 'V-5YOO7', 'Bode-Kemmer Pharmacy', 'Mr. Jordan Prosacco V', 'oaufderhar@example.com', NULL, NULL, NULL, '{\"name\":\"Mr. Jordan Prosacco V\",\"address_line_1\":\"48 Hoppe Mills Apt. 740\",\"city\":\"Vigan\",\"state\":\"AL\",\"country\":\"Philippines\",\"zip_code\":\"4191\"}', '{\"name\":\"Mr. Jordan Prosacco V\",\"address_line_1\":\"41\\/30 Beer Spurs\",\"city\":\"Quezon City\",\"state\":\"AL\",\"country\":\"Philippines\",\"zip_code\":\"9709\"}', 1, NULL, 2, 2, '2026-05-01 21:48:46', '2026-05-01 21:48:46'), +(35, 119, 'V-DERSE', 'Rolfson, Schmitt and Hansen Pharmacy', 'Brielle Leuschke', 'andreane50@example.org', NULL, NULL, NULL, '{\"name\":\"Brielle Leuschke\",\"address_line_1\":\"70 Reilly Cove\",\"city\":\"Pasig\",\"state\":\"DE\",\"country\":\"Philippines\",\"zip_code\":\"3823\"}', '{\"name\":\"Brielle Leuschke\",\"address_line_1\":\"52A\\/75 Cartwright Hill\",\"city\":\"Gapan\",\"state\":\"VA\",\"country\":\"Philippines\",\"zip_code\":\"4451\"}', 1, NULL, 2, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), +(36, 125, 'V-L2JDF', 'Anderson-Botsford Pharmacy', 'Mr. Bud Tromp', 'adolphus90@example.com', NULL, NULL, NULL, '{\"name\":\"Mr. Bud Tromp\",\"address_line_1\":\"59A\\/67 Stokes Ridges Suite 080\",\"city\":\"Iligan\",\"state\":\"CT\",\"country\":\"Philippines\",\"zip_code\":\"4832\"}', '{\"name\":\"Mr. Bud Tromp\",\"address_line_1\":\"23 Huels Mills Suite 521\",\"city\":\"Marawi\",\"state\":\"LA\",\"country\":\"Philippines\",\"zip_code\":\"7096\"}', 1, NULL, 2, 2, '2026-05-01 21:49:36', '2026-05-01 21:49:36'), +(37, 126, 'V-WH8N7', 'Beier LLC Pharmacy', 'Mr. Jack Lowe Sr.', 'bode.jesus@example.net', NULL, NULL, NULL, '{\"name\":\"Mr. Jack Lowe Sr.\",\"address_line_1\":\"65\\/43 Armstrong Prairie Apt. 317\",\"city\":\"Kidapawan\",\"state\":\"OR\",\"country\":\"Philippines\",\"zip_code\":\"4069\"}', '{\"name\":\"Mr. Jack Lowe Sr.\",\"address_line_1\":\"44A Nader Loaf\",\"city\":\"Olongapo\",\"state\":\"NH\",\"country\":\"Philippines\",\"zip_code\":\"4756\"}', 1, NULL, 2, 2, '2026-05-01 21:49:37', '2026-05-01 21:49:37'), +(38, 127, 'V-YQBPU', 'Mertz and Sons Pharmacy', 'Ron Klocko', 'gmayer@example.org', NULL, NULL, NULL, '{\"name\":\"Ron Klocko\",\"address_line_1\":\"95 Block Plaza\",\"city\":\"Santiago\",\"state\":\"LA\",\"country\":\"Philippines\",\"zip_code\":\"6370\"}', '{\"name\":\"Ron Klocko\",\"address_line_1\":\"83A\\/04 Considine Ways\",\"city\":\"Tuguegarao\",\"state\":\"CT\",\"country\":\"Philippines\",\"zip_code\":\"0032\"}', 1, NULL, 2, 2, '2026-05-01 21:49:37', '2026-05-01 21:49:37'), +(39, 128, 'V-C728J', 'Crooks Inc Pharmacy', 'Stephany Goodwin DVM', 'dayana86@example.com', NULL, NULL, NULL, '{\"name\":\"Stephany Goodwin DVM\",\"address_line_1\":\"17A\\/60 Strosin Via\",\"city\":\"Ozamiz\",\"state\":\"CT\",\"country\":\"Philippines\",\"zip_code\":\"8178\"}', '{\"name\":\"Stephany Goodwin DVM\",\"address_line_1\":\"51 Larkin Courts Suite 374\",\"city\":\"Angeles\",\"state\":\"VT\",\"country\":\"Philippines\",\"zip_code\":\"8181\"}', 1, NULL, 2, 2, '2026-05-01 21:49:37', '2026-05-01 21:49:37'), +(40, 129, 'V-DKDXY', 'Kovacek, Stehr and Will Pharmacy', 'Alaina Kshlerin', 'omari.marvin@example.net', NULL, NULL, NULL, '{\"name\":\"Alaina Kshlerin\",\"address_line_1\":\"85A\\/52 Ritchie Turnpike\",\"city\":\"Legazpi\",\"state\":\"IA\",\"country\":\"Philippines\",\"zip_code\":\"4916\"}', '{\"name\":\"Alaina Kshlerin\",\"address_line_1\":\"60\\/94 Kshlerin Flats Apt. 015\",\"city\":\"Mati\",\"state\":\"NV\",\"country\":\"Philippines\",\"zip_code\":\"2557\"}', 1, NULL, 2, 2, '2026-05-01 21:49:37', '2026-05-01 21:49:37'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `vendor_payments` +-- + +CREATE TABLE `vendor_payments` ( + `id` bigint(20) UNSIGNED NOT NULL, + `payment_number` varchar(50) NOT NULL, + `payment_date` date NOT NULL, + `vendor_id` bigint(20) UNSIGNED NOT NULL, + `bank_account_id` bigint(20) UNSIGNED NOT NULL, + `reference_number` varchar(100) DEFAULT NULL, + `payment_amount` decimal(15,2) NOT NULL, + `status` enum('pending','cleared','cancelled') NOT NULL DEFAULT 'pending', + `notes` text DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) UNSIGNED 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 `vendor_payment_allocations` +-- + +CREATE TABLE `vendor_payment_allocations` ( + `id` bigint(20) UNSIGNED NOT NULL, + `payment_id` bigint(20) UNSIGNED NOT NULL, + `invoice_id` bigint(20) UNSIGNED NOT NULL, + `allocated_amount` decimal(15,2) 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 `warehouses` +-- + +CREATE TABLE `warehouses` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `address` text NOT NULL, + `city` varchar(255) NOT NULL, + `zip_code` varchar(255) NOT NULL, + `phone` varchar(255) DEFAULT NULL, + `email` varchar(255) DEFAULT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT 1, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `warehouses` +-- + +INSERT INTO `warehouses` (`id`, `name`, `address`, `city`, `zip_code`, `phone`, `email`, `is_active`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Central Distribution Center', '1250 Industrial Blvd', 'Los Angeles', '90021', '+12135550101', 'central@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(2, 'East Coast Logistics Hub', '875 Commerce Drive', 'Atlanta', '30309', '+14045550102', 'eastcoast@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 'West Coast Storage Facility', '2100 Pacific Avenue', 'Seattle', '98101', '+12065550103', 'westcoast@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(4, 'Midwest Regional Warehouse', '3456 Manufacturing Way', 'Chicago', '60601', '+13125550104', 'midwest@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(5, 'Texas Distribution Point', '789 Freight Lane', 'Dallas', '75201', '+12145550105', 'texas@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(6, 'Florida Fulfillment Center', '1567 Logistics Park', 'Miami', '33101', '+13055550106', 'florida@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(7, 'Northeast Storage Complex', '4321 Supply Chain Blvd', 'Boston', '02101', '+16175550107', 'northeast@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 'Southwest Depot', '987 Distribution Road', 'Phoenix', '85001', '+16025550108', 'southwest@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(9, 'Mountain Region Warehouse', '2468 Cargo Street', 'Denver', '80201', '+13035550109', 'mountain@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 'Pacific Northwest Hub', '1357 Shipping Center', 'Portland', '97201', '+15035550110', 'pacific@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(11, 'Great Lakes Storage', '8642 Warehouse District', 'Detroit', '48201', '+13135550111', 'greatlakes@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, 'Southern Distribution Hub', '5791 Industrial Complex', 'Nashville', '37201', '+16155550112', 'southern@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(13, 'Northern California Facility', '3698 Tech Valley Drive', 'San Francisco', '94101', '+14155550113', 'norcal@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 'Mid-Atlantic Warehouse', '7410 Commerce Plaza', 'Philadelphia', '19101', '+12155550114', 'midatlantic@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(15, 'Gulf Coast Distribution', '9632 Port Authority Way', 'Houston', '77001', '+17135550115', 'gulfcoast@warehouse.com', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(16, 'Dasmariñas Distribution Center', '26 Runolfsdottir Isle', 'Valenzuela', '9644', NULL, NULL, 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), +(17, 'Bago Distribution Center', '01A/74 Barrows Underpass Apt. 272', 'Borongan', '1734', NULL, NULL, 1, NULL, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `warehouse_receipts` +-- + +CREATE TABLE `warehouse_receipts` ( + `id` bigint(20) UNSIGNED NOT NULL, + `receipt_number` varchar(255) NOT NULL, + `purchase_invoice_id` bigint(20) UNSIGNED NOT NULL, + `warehouse_id` bigint(20) UNSIGNED NOT NULL, + `received_date` date NOT NULL, + `status` varchar(255) NOT NULL DEFAULT 'received', + `created_by` int(11) NOT NULL DEFAULT 0, + `workspace` 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 `warehouse_receipt_items` +-- + +CREATE TABLE `warehouse_receipt_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `receipt_id` bigint(20) UNSIGNED NOT NULL, + `product_id` bigint(20) UNSIGNED NOT NULL, + `quantity_received` int(11) NOT NULL, + `batch_number` varchar(255) DEFAULT NULL, + `expiry_date` date 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 `warehouse_stocks` +-- + +CREATE TABLE `warehouse_stocks` ( + `id` bigint(20) UNSIGNED NOT NULL, + `product_id` bigint(20) UNSIGNED NOT NULL, + `warehouse_id` bigint(20) UNSIGNED NOT NULL, + `quantity` decimal(15,2) NOT NULL DEFAULT 0.00, + `batch_number` varchar(255) DEFAULT NULL, + `expiry_date` date 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 `warehouse_stocks` +-- + +INSERT INTO `warehouse_stocks` (`id`, `product_id`, `warehouse_id`, `quantity`, `batch_number`, `expiry_date`, `created_at`, `updated_at`) VALUES +(1, 1, 3, 97.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(2, 1, 9, 68.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(3, 2, 1, 0.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(4, 2, 8, 110.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(5, 4, 8, 71.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(6, 5, 6, 73.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(7, 5, 13, 79.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(8, 6, 5, 72.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(9, 6, 7, 144.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(10, 7, 1, 73.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(11, 7, 12, 87.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(12, 8, 4, 46.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(13, 8, 13, 88.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(14, 9, 11, 105.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(15, 9, 13, 90.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(16, 10, 13, 37.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(17, 11, 15, 106.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(18, 12, 1, 50.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(19, 12, 9, 141.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(20, 12, 11, 72.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(21, 13, 5, 6.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(22, 13, 10, 108.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(23, 13, 11, 79.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(24, 15, 13, 101.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(25, 16, 1, 40.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(26, 16, 12, 94.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(27, 18, 9, 49.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(28, 18, 11, 37.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(29, 19, 1, 47.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(30, 19, 13, 137.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(31, 20, 1, 55.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(32, 20, 3, 145.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:54'), +(33, 20, 12, 58.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(34, 21, 9, 34.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(35, 22, 2, 109.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(36, 22, 12, 48.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(37, 24, 1, 78.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(38, 24, 7, 143.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(39, 24, 13, 12.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(40, 25, 1, 0.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(41, 25, 6, 92.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 06:00:08'), +(42, 25, 15, 78.00, NULL, NULL, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), +(43, 1, 1, 9.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(44, 18, 1, 11.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 06:00:08'), +(45, 25, 2, 17.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 06:00:08'), +(46, 6, 3, 36.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(47, 7, 3, 17.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(48, 16, 3, 30.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(49, 24, 3, 13.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(50, 2, 4, 36.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(51, 9, 4, 27.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 06:00:08'), +(52, 19, 5, 45.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 06:00:08'), +(53, 22, 5, 49.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(54, 22, 6, 26.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(55, 9, 7, 15.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 06:00:08'), +(56, 18, 7, 1.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(57, 19, 7, 34.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(58, 13, 8, 48.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(59, 24, 8, 30.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(60, 8, 9, 14.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(61, 10, 9, 9.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(62, 22, 9, 12.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 06:00:08'), +(63, 24, 10, 11.00, NULL, NULL, '2026-03-14 00:17:54', '2026-03-14 00:17:54'), +(64, 8, 5, 4.00, NULL, NULL, '2026-04-09 09:53:38', '2026-04-09 09:53:38'), +(65, 18, 5, 5.00, NULL, NULL, '2026-04-09 09:53:38', '2026-04-09 09:53:38'), +(66, 28, 3, 46.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(67, 29, 2, 32.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(68, 30, 2, 13.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(69, 31, 10, 99.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(70, 32, 14, 33.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(71, 33, 10, 49.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(72, 34, 1, 66.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(73, 36, 9, 72.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(74, 38, 13, 114.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(75, 39, 2, 21.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(76, 39, 5, 84.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(77, 39, 8, 12.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(78, 40, 6, 76.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(79, 41, 1, 42.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(80, 41, 10, 63.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(81, 42, 10, 105.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(82, 43, 11, 40.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(83, 44, 3, 89.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(84, 44, 12, 106.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(85, 44, 14, 108.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(86, 45, 2, 94.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(87, 45, 3, 96.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(88, 45, 11, 41.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(89, 46, 3, 97.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(90, 46, 11, 66.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(91, 46, 15, 92.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(92, 47, 4, 69.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(93, 47, 6, 135.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(94, 48, 8, 122.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(95, 49, 12, 126.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(96, 50, 8, 27.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(97, 50, 10, 112.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(98, 52, 3, 72.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(99, 52, 4, 87.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(100, 53, 1, 87.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(101, 54, 7, 31.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(102, 54, 8, 107.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(103, 55, 7, 50.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(104, 57, 12, 24.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(105, 58, 2, 94.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(106, 58, 3, 108.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(107, 58, 12, 124.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(108, 59, 10, 51.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(109, 60, 4, 144.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(110, 60, 5, 33.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(111, 62, 3, 141.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(112, 62, 11, 26.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(113, 63, 12, 129.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(114, 64, 12, 20.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(115, 64, 13, 17.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(116, 65, 1, 44.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(117, 65, 13, 24.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(118, 66, 13, 91.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(119, 67, 13, 121.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(120, 68, 12, 39.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(121, 69, 4, 69.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(122, 69, 12, 101.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(123, 69, 15, 33.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(124, 70, 3, 17.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(125, 70, 13, 136.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(126, 71, 2, 97.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(127, 71, 6, 118.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(128, 71, 14, 85.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(129, 73, 4, 26.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(130, 74, 9, 55.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(131, 74, 12, 35.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(132, 75, 1, 114.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(133, 75, 6, 111.00, NULL, NULL, '2026-04-27 14:42:29', '2026-04-27 14:42:29'), +(134, 88, 17, 200.00, NULL, NULL, '2026-05-01 21:49:38', '2026-05-01 21:49:38'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `warehouse_stock_movements` +-- + +CREATE TABLE `warehouse_stock_movements` ( + `id` bigint(20) UNSIGNED NOT NULL, + `product_id` bigint(20) UNSIGNED DEFAULT NULL, + `warehouse_id` bigint(20) UNSIGNED DEFAULT NULL, + `quantity` decimal(10,2) NOT NULL DEFAULT 0.00, + `type` varchar(255) NOT NULL, + `reason` varchar(255) DEFAULT NULL, + `reference_type` varchar(255) DEFAULT NULL, + `reference_id` bigint(20) UNSIGNED DEFAULT NULL, + `description` text DEFAULT NULL, + `created_by` bigint(20) UNSIGNED DEFAULT NULL, + `workspace_id` bigint(20) 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 `warehouse_stock_movements` +-- + +INSERT INTO `warehouse_stock_movements` (`id`, `product_id`, `warehouse_id`, `quantity`, `type`, `reason`, `reference_type`, `reference_id`, `description`, `created_by`, `workspace_id`, `created_at`, `updated_at`) VALUES +(1, 88, 17, 200.00, 'in', 'Purchase Receipt', 'App\\Models\\PurchaseInvoice', 11, 'Received Dead Stock', 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `warehouse_transfers` +-- + +CREATE TABLE `warehouse_transfers` ( + `id` bigint(20) UNSIGNED NOT NULL, + `reference_number` varchar(255) DEFAULT NULL, + `from_warehouse_id` bigint(20) UNSIGNED DEFAULT NULL, + `to_warehouse_id` bigint(20) UNSIGNED DEFAULT NULL, + `transfer_date` date NOT NULL, + `status` varchar(255) NOT NULL DEFAULT 'Pending', + `created_by` bigint(20) UNSIGNED DEFAULT NULL, + `workspace_id` bigint(20) UNSIGNED 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 `warehouse_transfer_items` +-- + +CREATE TABLE `warehouse_transfer_items` ( + `id` bigint(20) UNSIGNED NOT NULL, + `warehouse_transfer_id` bigint(20) UNSIGNED DEFAULT NULL, + `product_id` bigint(20) UNSIGNED DEFAULT NULL, + `quantity` decimal(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 `warnings` +-- + +CREATE TABLE `warnings` ( + `id` bigint(20) UNSIGNED NOT NULL, + `employee_id` bigint(20) UNSIGNED NOT NULL, + `warning_by` bigint(20) UNSIGNED DEFAULT NULL, + `warning_type_id` bigint(20) UNSIGNED DEFAULT NULL, + `subject` varchar(255) NOT NULL, + `severity` varchar(255) NOT NULL, + `warning_date` date DEFAULT NULL, + `description` longtext DEFAULT NULL, + `document` varchar(255) DEFAULT NULL, + `status` enum('pending','approved','rejected') NOT NULL DEFAULT 'pending', + `employee_response` varchar(255) DEFAULT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `warnings` +-- + +INSERT INTO `warnings` (`id`, `employee_id`, `warning_by`, `warning_type_id`, `subject`, `severity`, `warning_date`, `description`, `document`, `status`, `employee_response`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 8, 28, 1, 'Attendance Policy Violation - Excessive Tardiness', 'Minor', '2025-09-20', 'Employee consistently arrives late to work affecting team productivity and client service delivery standards.', 'warning1.png', 'approved', NULL, 2, 2, '2025-09-21 09:00:49', '2025-09-21 13:53:49'), +(2, 10, 11, 2, 'Performance Standards Not Met - Quality Issues', 'Moderate', '2025-09-25', 'Work quality below acceptable standards with frequent errors requiring additional review and correction processes.', NULL, 'approved', NULL, 2, 2, '2025-09-26 13:25:49', '2025-09-26 16:38:49'), +(3, 12, 20, 3, 'Workplace Conduct - Inappropriate Behavior', 'Major', '2025-09-30', 'Inappropriate workplace behavior including unprofessional comments and disruptive actions affecting team morale.', 'warning4.png', 'approved', 'I will take corrective action to address these issues.', 2, 2, '2025-10-01 10:58:49', '2025-10-01 12:37:49'), +(4, 14, 46, 4, 'Safety Protocol Violation - Equipment Misuse', 'Minor', '2025-10-05', 'Safety protocol violations observed during equipment operation creating potential hazards for workplace safety.', NULL, 'approved', 'I will ensure this does not happen again in the future.', 2, 2, '2025-10-06 09:57:49', '2025-10-06 08:48:49'), +(5, 16, 17, 5, 'Dress Code Policy - Professional Appearance', 'Moderate', '2025-10-10', 'Dress code policy violations with inappropriate attire not meeting professional workplace appearance standards.', 'warning4.png', 'pending', NULL, 2, 2, '2025-10-11 08:59:49', '2025-10-11 09:41:49'), +(6, 18, 27, 6, 'Communication Standards - Unprofessional Language', 'Major', '2025-10-15', 'Unprofessional communication including inappropriate language and tone during client and colleague interactions.', NULL, 'approved', 'I will take corrective action to address these issues.', 2, 2, '2025-10-16 14:14:49', '2025-10-16 14:19:49'), +(7, 20, 50, 7, 'Time Management - Deadline Missed', 'Minor', '2025-10-20', 'Consistent failure to meet project deadlines affecting team schedules and client deliverable commitments.', 'warning4.png', 'approved', 'I understand the concerns and commit to following all policies.', 2, 2, '2025-10-21 15:55:49', '2025-10-21 12:49:49'), +(8, 22, 51, 8, 'Customer Service - Complaint Received', 'Moderate', '2025-10-25', 'Customer service complaints received regarding unprofessional behavior and inadequate service quality delivery.', NULL, 'rejected', 'I will take corrective action to address these issues.', 2, 2, '2025-10-26 14:39:49', '2025-10-26 15:58:49'), +(9, 24, 39, 9, 'Technology Usage - Personal Internet Access', 'Major', '2025-10-30', 'Excessive personal internet usage during work hours affecting productivity and violating technology usage policies.', 'warning3.png', 'approved', 'I will ensure this does not happen again in the future.', 2, 2, '2025-10-31 15:20:49', '2025-10-31 10:05:49'), +(10, 26, 34, 10, 'Confidentiality Breach - Information Disclosure', 'Minor', '2025-11-04', 'Confidentiality breach involving unauthorized disclosure of sensitive company information to external parties.', NULL, 'approved', 'I accept responsibility and will work on improvement.', 2, 2, '2025-11-05 17:11:49', '2025-11-05 09:10:49'), +(11, 8, 28, 11, 'Insubordination - Failure to Follow Instructions', 'Moderate', '2025-11-09', 'Insubordination demonstrated through failure to follow direct supervisor instructions and established procedures.', 'warning3.png', 'approved', 'I accept responsibility and will work on improvement.', 2, 2, '2025-11-10 10:30:49', '2025-11-10 18:02:49'), +(12, 10, 22, 12, 'Work Quality - Error Rate Above Acceptable', 'Major', '2025-11-14', 'Work quality issues with error rates exceeding acceptable standards requiring immediate improvement measures.', NULL, 'pending', 'I understand the concerns and commit to following all policies.', 2, 2, '2025-11-15 10:28:49', '2025-11-15 17:39:49'), +(13, 12, 45, 13, 'Team Collaboration - Disruptive Behavior', 'Minor', '2025-11-19', 'Disruptive team behavior affecting collaboration and creating negative work environment for colleagues.', 'warning2.png', 'pending', NULL, 2, 2, '2025-11-20 15:12:49', '2025-11-20 09:29:49'), +(14, 14, 34, 14, 'Policy Compliance - Procedure Not Followed', 'Moderate', '2025-11-24', 'Policy compliance failures including failure to follow established procedures and organizational guidelines.', NULL, 'approved', NULL, 2, 2, '2025-11-25 12:26:49', '2025-11-25 09:42:49'), +(15, 16, 47, 15, 'Professional Development - Training Requirements', 'Major', '2025-11-29', 'Professional development requirements not met including mandatory training and certification renewal deadlines.', 'warning3.png', 'approved', 'I will ensure this does not happen again in the future.', 2, 2, '2025-11-30 15:43:49', '2025-11-30 14:32:49'), +(16, 18, 21, 16, 'Workplace Harassment - Inappropriate Comments', 'Minor', '2025-12-04', 'Workplace harassment complaints involving inappropriate comments and behavior creating hostile work environment.', NULL, 'pending', 'I will take corrective action to address these issues.', 2, 2, '2025-12-05 08:45:49', '2025-12-05 17:00:49'), +(17, 20, 28, 17, 'Documentation Standards - Incomplete Records', 'Moderate', '2025-12-09', 'Documentation standards not maintained with incomplete records affecting audit compliance and operational efficiency.', 'warning1.png', 'pending', 'I will ensure this does not happen again in the future.', 2, 2, '2025-12-10 08:41:49', '2025-12-10 12:02:49'), +(18, 22, 32, 18, 'Resource Management - Wasteful Practices', 'Major', '2025-12-14', 'Resource management issues including wasteful practices and inefficient use of company materials and supplies.', NULL, 'pending', NULL, 2, 2, '2025-12-15 14:20:49', '2025-12-15 15:18:49'), +(19, 24, 52, 19, 'Meeting Attendance - Frequent Absences', 'Minor', '2025-12-19', 'Frequent meeting absences affecting project coordination and team communication regarding important business matters.', 'warning2.png', 'rejected', NULL, 2, 2, '2025-12-20 08:48:49', '2025-12-20 08:57:49'), +(20, 26, 49, 20, 'Project Management - Scope Deviation', 'Moderate', '2025-12-24', 'Project management issues including scope deviation and failure to adhere to established project parameters.', NULL, 'approved', 'I will take corrective action to address these issues.', 2, 2, '2025-12-25 09:18:49', '2025-12-25 11:01:49'), +(21, 8, 34, 1, 'Client Relations - Unprofessional Interaction', 'Major', '2025-12-29', 'Client relations problems involving unprofessional interactions and failure to maintain appropriate business relationships.', 'warning3.png', 'approved', 'I understand the concerns and commit to following all policies.', 2, 2, '2025-12-30 15:18:49', '2025-12-30 16:27:49'), +(22, 10, 22, 2, 'Data Security - Password Policy Violation', 'Minor', '2026-01-03', 'Data security violations including password policy breaches and unauthorized access to confidential information.', NULL, 'approved', NULL, 2, 2, '2026-01-04 10:39:49', '2026-01-04 12:38:49'), +(23, 12, 38, 3, 'Inventory Management - Discrepancy Found', 'Moderate', '2026-01-08', 'Inventory management discrepancies found during audit requiring investigation and corrective action implementation.', 'warning3.png', 'pending', 'I accept responsibility and will work on improvement.', 2, 2, '2026-01-09 17:26:49', '2026-01-09 15:28:49'), +(24, 14, 53, 4, 'Quality Control - Standards Not Maintained', 'Major', '2026-01-13', 'Quality control standards not maintained resulting in defective products and customer satisfaction issues.', NULL, 'approved', NULL, 2, 2, '2026-01-14 16:47:49', '2026-01-14 17:09:49'), +(25, 16, 25, 5, 'Environmental Compliance - Waste Disposal', 'Minor', '2026-01-18', 'Environmental compliance violations including improper waste disposal and failure to follow sustainability protocols.', 'warning1.png', 'rejected', 'I accept responsibility and will work on improvement.', 2, 2, '2026-01-19 11:31:49', '2026-01-19 10:21:49'), +(26, 18, 41, 6, 'Training Compliance - Certification Expired', 'Moderate', '2026-01-23', 'Training compliance issues with expired certifications affecting job performance and regulatory compliance requirements.', NULL, 'approved', NULL, 2, 2, '2026-01-24 16:05:49', '2026-01-24 11:55:49'), +(27, 20, 30, 7, 'Equipment Care - Damage Due to Negligence', 'Major', '2026-01-28', 'Equipment damage due to negligence and failure to follow proper care and maintenance procedures.', 'warning2.png', 'approved', 'I acknowledge the warning and will improve my performance immediately.', 2, 2, '2026-01-29 09:30:49', '2026-01-29 14:04:49'), +(28, 22, 48, 8, 'Reporting Standards - Late Submission', 'Minor', '2026-02-02', 'Reporting standards violations including late submission of required documents and incomplete information provided.', NULL, 'approved', 'I will ensure this does not happen again in the future.', 2, 2, '2026-02-03 12:50:49', '2026-02-03 13:28:49'), +(29, 24, 22, 9, 'Conflict Resolution - Escalation Required', 'Moderate', '2026-02-07', 'Conflict resolution issues requiring escalation due to inability to resolve workplace disputes professionally.', 'warning2.png', 'pending', NULL, 2, 2, '2026-02-08 09:04:49', '2026-02-08 08:23:49'), +(30, 26, 15, 10, 'Performance Improvement - Action Plan Needed', 'Major', '2026-02-12', 'Performance improvement required with formal action plan needed to address ongoing productivity and quality concerns.', NULL, 'pending', 'I understand the concerns and commit to following all policies.', 2, 2, '2026-02-13 14:02:49', '2026-02-13 10:50:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `warning_types` +-- + +CREATE TABLE `warning_types` ( + `id` bigint(20) UNSIGNED NOT NULL, + `warning_type_name` varchar(255) NOT NULL, + `creator_id` bigint(20) UNSIGNED DEFAULT NULL, + `created_by` bigint(20) 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 `warning_types` +-- + +INSERT INTO `warning_types` (`id`, `warning_type_name`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES +(1, 'Late Attendance', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(2, 'Unprofessional Behavior', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(3, 'Missed Deadline', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(4, 'Violation of Company Policy', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(5, 'Unauthorized Absence', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(6, 'Improper Dress Code', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(7, 'Negligence at Work', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(8, 'Disrespect to Supervisor', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(9, 'Use of Offensive Language', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(10, 'Misuse of Company Property', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(11, 'Repeated Errors', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(12, 'Failure to Follow Instructions', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(13, 'Poor Team Collaboration', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(14, 'Insubordination', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(15, 'Data Privacy Violation', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(16, 'Delay in Task Submission', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(17, 'Improper Communication with Client', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(18, 'Unapproved Leave', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(19, 'Workplace Misconduct', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), +(20, 'Non-Compliance with Safety Rules', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `work_spaces` +-- + +CREATE TABLE `work_spaces` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(255) NOT NULL, + `slug` varchar(255) NOT NULL, + `created_by` bigint(20) UNSIGNED DEFAULT NULL, + `is_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; + +-- +-- Indexes for dumped tables +-- + +-- +-- Indexes for table `account_categories` +-- +ALTER TABLE `account_categories` + ADD PRIMARY KEY (`id`), + ADD KEY `account_categories_creator_id_index` (`creator_id`), + ADD KEY `account_categories_created_by_index` (`created_by`); + +-- +-- Indexes for table `account_types` +-- +ALTER TABLE `account_types` + ADD PRIMARY KEY (`id`), + ADD KEY `account_types_category_id_foreign` (`category_id`), + ADD KEY `account_types_creator_id_index` (`creator_id`), + ADD KEY `account_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `acknowledgments` +-- +ALTER TABLE `acknowledgments` + ADD PRIMARY KEY (`id`), + ADD KEY `acknowledgments_employee_id_foreign` (`employee_id`), + ADD KEY `acknowledgments_document_id_foreign` (`document_id`), + ADD KEY `acknowledgments_assigned_by_foreign` (`assigned_by`), + ADD KEY `acknowledgments_creator_id_index` (`creator_id`), + ADD KEY `acknowledgments_created_by_index` (`created_by`); + +-- +-- Indexes for table `activity_log` +-- +ALTER TABLE `activity_log` + ADD PRIMARY KEY (`id`), + ADD KEY `subject` (`subject_type`,`subject_id`), + ADD KEY `causer` (`causer_type`,`causer_id`), + ADD KEY `activity_log_log_name_index` (`log_name`); + +-- +-- Indexes for table `add_ons` +-- +ALTER TABLE `add_ons` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `ai_forecasts` +-- +ALTER TABLE `ai_forecasts` + ADD PRIMARY KEY (`id`), + ADD KEY `ai_forecasts_workspace_module_index` (`workspace`,`module`), + ADD KEY `ai_forecasts_module_index` (`module`); + +-- +-- Indexes for table `ai_forecast_history` +-- +ALTER TABLE `ai_forecast_history` + ADD PRIMARY KEY (`id`), + ADD KEY `ai_forecast_history_forecast_id_foreign` (`forecast_id`); + +-- +-- Indexes for table `ai_prompt_histories` +-- +ALTER TABLE `ai_prompt_histories` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `ai_prompt_responses` +-- +ALTER TABLE `ai_prompt_responses` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `ai_templates` +-- +ALTER TABLE `ai_templates` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `ai_template_categories` +-- +ALTER TABLE `ai_template_categories` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `ai_template_languages` +-- +ALTER TABLE `ai_template_languages` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `ai_template_languages_code_unique` (`code`); + +-- +-- Indexes for table `ai_template_prompts` +-- +ALTER TABLE `ai_template_prompts` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `allowances` +-- +ALTER TABLE `allowances` + ADD PRIMARY KEY (`id`), + ADD KEY `allowances_allowance_type_id_foreign` (`allowance_type_id`), + ADD KEY `allowances_employee_id_foreign` (`employee_id`), + ADD KEY `allowances_creator_id_index` (`creator_id`), + ADD KEY `allowances_created_by_index` (`created_by`); + +-- +-- Indexes for table `allowance_types` +-- +ALTER TABLE `allowance_types` + ADD PRIMARY KEY (`id`), + ADD KEY `allowance_types_creator_id_index` (`creator_id`), + ADD KEY `allowance_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `announcements` +-- +ALTER TABLE `announcements` + ADD PRIMARY KEY (`id`), + ADD KEY `announcements_announcement_category_id_foreign` (`announcement_category_id`), + ADD KEY `announcements_creator_id_index` (`creator_id`), + ADD KEY `announcements_created_by_index` (`created_by`), + ADD KEY `announcements_approved_by_index` (`approved_by`); + +-- +-- Indexes for table `announcement_categories` +-- +ALTER TABLE `announcement_categories` + ADD PRIMARY KEY (`id`), + ADD KEY `announcement_categories_creator_id_index` (`creator_id`), + ADD KEY `announcement_categories_created_by_index` (`created_by`); + +-- +-- Indexes for table `announcement_departments` +-- +ALTER TABLE `announcement_departments` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `announcement_departments_announcement_id_department_id_unique` (`announcement_id`,`department_id`), + ADD KEY `announcement_departments_department_id_foreign` (`department_id`), + ADD KEY `announcement_departments_creator_id_index` (`creator_id`), + ADD KEY `announcement_departments_created_by_index` (`created_by`); + +-- +-- Indexes for table `apikey_setiings` +-- +ALTER TABLE `apikey_setiings` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `assistant_templates` +-- +ALTER TABLE `assistant_templates` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `attendances` +-- +ALTER TABLE `attendances` + ADD PRIMARY KEY (`id`), + ADD KEY `attendances_shift_id_foreign` (`shift_id`), + ADD KEY `attendances_employee_id_foreign` (`employee_id`), + ADD KEY `attendances_creator_id_index` (`creator_id`), + ADD KEY `attendances_created_by_index` (`created_by`); + +-- +-- Indexes for table `attendance_logs` +-- +ALTER TABLE `attendance_logs` + ADD PRIMARY KEY (`id`), + ADD KEY `attendance_logs_shift_id_foreign` (`shift_id`), + ADD KEY `attendance_logs_user_id_date_index` (`user_id`,`date`), + ADD KEY `attendance_logs_attendance_id_type_index` (`attendance_id`,`type`), + ADD KEY `attendance_logs_creator_id_index` (`creator_id`), + ADD KEY `attendance_logs_created_by_index` (`created_by`); + +-- +-- Indexes for table `awards` +-- +ALTER TABLE `awards` + ADD PRIMARY KEY (`id`), + ADD KEY `awards_employee_id_foreign` (`employee_id`), + ADD KEY `awards_award_type_id_foreign` (`award_type_id`), + ADD KEY `awards_creator_id_index` (`creator_id`), + ADD KEY `awards_created_by_index` (`created_by`); + +-- +-- Indexes for table `award_types` +-- +ALTER TABLE `award_types` + ADD PRIMARY KEY (`id`), + ADD KEY `award_types_creator_id_index` (`creator_id`), + ADD KEY `award_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `bank_accounts` +-- +ALTER TABLE `bank_accounts` + ADD PRIMARY KEY (`id`), + ADD KEY `bank_accounts_gl_account_id_foreign` (`gl_account_id`), + ADD KEY `bank_accounts_creator_id_index` (`creator_id`), + ADD KEY `bank_accounts_created_by_index` (`created_by`); + +-- +-- Indexes for table `bank_transactions` +-- +ALTER TABLE `bank_transactions` + ADD PRIMARY KEY (`id`), + ADD KEY `bank_transactions_bank_account_id_foreign` (`bank_account_id`), + ADD KEY `bank_transactions_created_by_index` (`created_by`); + +-- +-- Indexes for table `bank_transfers` +-- +ALTER TABLE `bank_transfers` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `bank_transfers_transfer_number_unique` (`transfer_number`), + ADD KEY `bank_transfers_journal_entry_id_foreign` (`journal_entry_id`), + ADD KEY `bank_transfers_status_index` (`status`), + ADD KEY `bank_transfers_transfer_date_index` (`transfer_date`), + ADD KEY `bank_transfers_from_account_id_index` (`from_account_id`), + ADD KEY `bank_transfers_to_account_id_index` (`to_account_id`), + ADD KEY `bank_transfers_creator_id_index` (`creator_id`), + ADD KEY `bank_transfers_created_by_index` (`created_by`); + +-- +-- Indexes for table `bank_transfer_payments` +-- +ALTER TABLE `bank_transfer_payments` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `bank_transfer_payments_order_id_unique` (`order_id`), + ADD KEY `bank_transfer_payments_user_id_foreign` (`user_id`), + ADD KEY `bank_transfer_payments_created_by_index` (`created_by`); + +-- +-- Indexes for table `bookings` +-- +ALTER TABLE `bookings` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `bookings_appointments` +-- +ALTER TABLE `bookings_appointments` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `bookings_business_hours` +-- +ALTER TABLE `bookings_business_hours` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `bookings_customers` +-- +ALTER TABLE `bookings_customers` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `bookings_duration` +-- +ALTER TABLE `bookings_duration` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `bookings_extra_services` +-- +ALTER TABLE `bookings_extra_services` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `bookings_packages` +-- +ALTER TABLE `bookings_packages` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `bookings_staff` +-- +ALTER TABLE `bookings_staff` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `branches` +-- +ALTER TABLE `branches` + ADD PRIMARY KEY (`id`), + ADD KEY `branches_creator_id_index` (`creator_id`), + ADD KEY `branches_created_by_index` (`created_by`); + +-- +-- Indexes for table `bug_comments` +-- +ALTER TABLE `bug_comments` + ADD PRIMARY KEY (`id`), + ADD KEY `bug_comments_bug_id_foreign` (`bug_id`), + ADD KEY `bug_comments_user_id_foreign` (`user_id`); + +-- +-- Indexes for table `bug_stages` +-- +ALTER TABLE `bug_stages` + ADD PRIMARY KEY (`id`), + ADD KEY `bug_stages_creator_id_index` (`creator_id`), + ADD KEY `bug_stages_created_by_index` (`created_by`); + +-- +-- Indexes for table `cache` +-- +ALTER TABLE `cache` + ADD PRIMARY KEY (`key`); + +-- +-- Indexes for table `cache_locks` +-- +ALTER TABLE `cache_locks` + ADD PRIMARY KEY (`key`); + +-- +-- Indexes for table `certifications` +-- +ALTER TABLE `certifications` + ADD PRIMARY KEY (`id`), + ADD KEY `certifications_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `certification_renewals` +-- +ALTER TABLE `certification_renewals` + ADD PRIMARY KEY (`id`), + ADD KEY `certification_renewals_employee_certification_id_foreign` (`employee_certification_id`), + ADD KEY `certification_renewals_renewed_by_foreign` (`renewed_by`); + +-- +-- Indexes for table `chart_of_accounts` +-- +ALTER TABLE `chart_of_accounts` + ADD PRIMARY KEY (`id`), + ADD KEY `chart_of_accounts_account_type_id_foreign` (`account_type_id`), + ADD KEY `chart_of_accounts_parent_account_id_foreign` (`parent_account_id`), + ADD KEY `chart_of_accounts_creator_id_foreign` (`creator_id`), + ADD KEY `chart_of_accounts_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `ch_favorites` +-- +ALTER TABLE `ch_favorites` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `ch_messages` +-- +ALTER TABLE `ch_messages` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `ch_pinned` +-- +ALTER TABLE `ch_pinned` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `ch_pinned_user_id_pinned_id_unique` (`user_id`,`pinned_id`), + ADD KEY `ch_pinned_pinned_id_foreign` (`pinned_id`); + +-- +-- Indexes for table `client_deals` +-- +ALTER TABLE `client_deals` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `client_deals_client_id_deal_id_unique` (`client_id`,`deal_id`), + ADD KEY `client_deals_client_id_index` (`client_id`), + ADD KEY `client_deals_deal_id_index` (`deal_id`); + +-- +-- Indexes for table `client_permissions` +-- +ALTER TABLE `client_permissions` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `client_permissions_client_id_deal_id_unique` (`client_id`,`deal_id`), + ADD KEY `client_permissions_client_id_index` (`client_id`), + ADD KEY `client_permissions_deal_id_index` (`deal_id`); + +-- +-- Indexes for table `complaints` +-- +ALTER TABLE `complaints` + ADD PRIMARY KEY (`id`), + ADD KEY `complaints_employee_id_foreign` (`employee_id`), + ADD KEY `complaints_against_employee_id_foreign` (`against_employee_id`), + ADD KEY `complaints_complaint_type_id_foreign` (`complaint_type_id`), + ADD KEY `complaints_resolved_by_foreign` (`resolved_by`), + ADD KEY `complaints_creator_id_foreign` (`creator_id`), + ADD KEY `complaints_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `complaint_types` +-- +ALTER TABLE `complaint_types` + ADD PRIMARY KEY (`id`), + ADD KEY `complaint_types_creator_id_index` (`creator_id`), + ADD KEY `complaint_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `cost_rates` +-- +ALTER TABLE `cost_rates` + ADD PRIMARY KEY (`id`), + ADD KEY `cost_rates_created_by_foreign` (`created_by`), + ADD KEY `cost_rates_user_id_effective_date_index` (`user_id`,`effective_date`); + +-- +-- Indexes for table `coupons` +-- +ALTER TABLE `coupons` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `coupons_code_unique` (`code`), + ADD KEY `coupons_status_expiry_date_index` (`status`,`expiry_date`), + ADD KEY `coupons_code_index` (`code`), + ADD KEY `coupons_created_by_index` (`created_by`); + +-- +-- Indexes for table `credit_notes` +-- +ALTER TABLE `credit_notes` + ADD PRIMARY KEY (`id`), + ADD KEY `credit_notes_invoice_id_foreign` (`invoice_id`), + ADD KEY `credit_notes_return_id_foreign` (`return_id`), + ADD KEY `credit_notes_status_credit_note_date_index` (`status`,`credit_note_date`), + ADD KEY `credit_notes_customer_id_index` (`customer_id`), + ADD KEY `credit_notes_approved_by_index` (`approved_by`), + ADD KEY `credit_notes_creator_id_index` (`creator_id`), + ADD KEY `credit_notes_created_by_index` (`created_by`); + +-- +-- Indexes for table `credit_note_applications` +-- +ALTER TABLE `credit_note_applications` + ADD PRIMARY KEY (`id`), + ADD KEY `credit_note_applications_credit_note_id_foreign` (`credit_note_id`), + ADD KEY `credit_note_applications_payment_id_foreign` (`payment_id`), + ADD KEY `credit_note_applications_creator_id_index` (`creator_id`), + ADD KEY `credit_note_applications_created_by_index` (`created_by`); + +-- +-- Indexes for table `credit_note_items` +-- +ALTER TABLE `credit_note_items` + ADD PRIMARY KEY (`id`), + ADD KEY `credit_note_items_credit_note_id_foreign` (`credit_note_id`); + +-- +-- Indexes for table `credit_note_item_taxes` +-- +ALTER TABLE `credit_note_item_taxes` + ADD PRIMARY KEY (`id`), + ADD KEY `credit_note_item_taxes_item_id_foreign` (`item_id`); + +-- +-- Indexes for table `customers` +-- +ALTER TABLE `customers` + ADD PRIMARY KEY (`id`), + ADD KEY `customers_user_id_index` (`user_id`), + ADD KEY `customers_creator_id_index` (`creator_id`), + ADD KEY `customers_created_by_index` (`created_by`); + +-- +-- Indexes for table `customer_payments` +-- +ALTER TABLE `customer_payments` + ADD PRIMARY KEY (`id`), + ADD KEY `customer_payments_customer_id_foreign` (`customer_id`), + ADD KEY `customer_payments_bank_account_id_foreign` (`bank_account_id`), + ADD KEY `customer_payments_creator_id_index` (`creator_id`), + ADD KEY `customer_payments_created_by_index` (`created_by`); + +-- +-- Indexes for table `customer_payment_allocations` +-- +ALTER TABLE `customer_payment_allocations` + ADD PRIMARY KEY (`id`), + ADD KEY `customer_payment_allocations_payment_id_foreign` (`payment_id`), + ADD KEY `customer_payment_allocations_invoice_id_foreign` (`invoice_id`), + ADD KEY `customer_payment_allocations_creator_id_index` (`creator_id`), + ADD KEY `customer_payment_allocations_created_by_index` (`created_by`); + +-- +-- Indexes for table `custom_fields` +-- +ALTER TABLE `custom_fields` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `custom_fields_module_list` +-- +ALTER TABLE `custom_fields_module_list` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `custom_field_values` +-- +ALTER TABLE `custom_field_values` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `custom_field_values_record_id_field_id_unique` (`record_id`,`field_id`); + +-- +-- Indexes for table `custom_pages` +-- +ALTER TABLE `custom_pages` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `custom_pages_slug_unique` (`slug`); + +-- +-- Indexes for table `deals` +-- +ALTER TABLE `deals` + ADD PRIMARY KEY (`id`), + ADD KEY `deals_pipeline_id_index` (`pipeline_id`), + ADD KEY `deals_stage_id_index` (`stage_id`), + ADD KEY `deals_creator_id_index` (`creator_id`), + ADD KEY `deals_created_by_index` (`created_by`); + +-- +-- Indexes for table `deal_activity_logs` +-- +ALTER TABLE `deal_activity_logs` + ADD PRIMARY KEY (`id`), + ADD KEY `deal_activity_logs_user_id_index` (`user_id`), + ADD KEY `deal_activity_logs_deal_id_index` (`deal_id`); + +-- +-- Indexes for table `deal_calls` +-- +ALTER TABLE `deal_calls` + ADD PRIMARY KEY (`id`), + ADD KEY `deal_calls_deal_id_index` (`deal_id`), + ADD KEY `deal_calls_user_id_index` (`user_id`); + +-- +-- Indexes for table `deal_discussions` +-- +ALTER TABLE `deal_discussions` + ADD PRIMARY KEY (`id`), + ADD KEY `deal_discussions_deal_id_index` (`deal_id`), + ADD KEY `deal_discussions_creator_id_index` (`creator_id`), + ADD KEY `deal_discussions_created_by_index` (`created_by`); + +-- +-- Indexes for table `deal_emails` +-- +ALTER TABLE `deal_emails` + ADD PRIMARY KEY (`id`), + ADD KEY `deal_emails_deal_id_index` (`deal_id`); + +-- +-- Indexes for table `deal_files` +-- +ALTER TABLE `deal_files` + ADD PRIMARY KEY (`id`), + ADD KEY `deal_files_deal_id_index` (`deal_id`); + +-- +-- Indexes for table `deal_stages` +-- +ALTER TABLE `deal_stages` + ADD PRIMARY KEY (`id`), + ADD KEY `deal_stages_pipeline_id_foreign` (`pipeline_id`), + ADD KEY `deal_stages_creator_id_index` (`creator_id`), + ADD KEY `deal_stages_created_by_index` (`created_by`); + +-- +-- Indexes for table `deal_tasks` +-- +ALTER TABLE `deal_tasks` + ADD PRIMARY KEY (`id`), + ADD KEY `deal_tasks_deal_id_index` (`deal_id`), + ADD KEY `deal_tasks_created_by_index` (`created_by`), + ADD KEY `deal_tasks_creator_id_index` (`creator_id`); + +-- +-- Indexes for table `debit_notes` +-- +ALTER TABLE `debit_notes` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `debit_notes_debit_note_number_unique` (`debit_note_number`), + ADD KEY `debit_notes_vendor_id_foreign` (`vendor_id`), + ADD KEY `debit_notes_invoice_id_foreign` (`invoice_id`), + ADD KEY `debit_notes_return_id_foreign` (`return_id`), + ADD KEY `debit_notes_approved_by_foreign` (`approved_by`), + ADD KEY `debit_notes_creator_id_index` (`creator_id`), + ADD KEY `debit_notes_created_by_index` (`created_by`); + +-- +-- Indexes for table `debit_note_applications` +-- +ALTER TABLE `debit_note_applications` + ADD PRIMARY KEY (`id`), + ADD KEY `debit_note_applications_debit_note_id_foreign` (`debit_note_id`), + ADD KEY `debit_note_applications_payment_id_foreign` (`payment_id`), + ADD KEY `debit_note_applications_creator_id_index` (`creator_id`), + ADD KEY `debit_note_applications_created_by_index` (`created_by`); + +-- +-- Indexes for table `debit_note_items` +-- +ALTER TABLE `debit_note_items` + ADD PRIMARY KEY (`id`), + ADD KEY `debit_note_items_debit_note_id_foreign` (`debit_note_id`), + ADD KEY `debit_note_items_creator_id_index` (`creator_id`), + ADD KEY `debit_note_items_created_by_index` (`created_by`); + +-- +-- Indexes for table `debit_note_item_taxes` +-- +ALTER TABLE `debit_note_item_taxes` + ADD PRIMARY KEY (`id`), + ADD KEY `debit_note_item_taxes_item_id_foreign` (`item_id`); + +-- +-- Indexes for table `deductions` +-- +ALTER TABLE `deductions` + ADD PRIMARY KEY (`id`), + ADD KEY `deductions_deduction_type_id_foreign` (`deduction_type_id`), + ADD KEY `deductions_employee_id_foreign` (`employee_id`), + ADD KEY `deductions_creator_id_index` (`creator_id`), + ADD KEY `deductions_created_by_index` (`created_by`); + +-- +-- Indexes for table `deduction_types` +-- +ALTER TABLE `deduction_types` + ADD PRIMARY KEY (`id`), + ADD KEY `deduction_types_creator_id_index` (`creator_id`), + ADD KEY `deduction_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `departments` +-- +ALTER TABLE `departments` + ADD PRIMARY KEY (`id`), + ADD KEY `departments_branch_id_foreign` (`branch_id`), + ADD KEY `departments_creator_id_index` (`creator_id`), + ADD KEY `departments_created_by_index` (`created_by`); + +-- +-- Indexes for table `designations` +-- +ALTER TABLE `designations` + ADD PRIMARY KEY (`id`), + ADD KEY `designations_branch_id_foreign` (`branch_id`), + ADD KEY `designations_department_id_foreign` (`department_id`), + ADD KEY `designations_creator_id_index` (`creator_id`), + ADD KEY `designations_created_by_index` (`created_by`); + +-- +-- Indexes for table `document` +-- +ALTER TABLE `document` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `documents_types` +-- +ALTER TABLE `documents_types` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `document_attechments` +-- +ALTER TABLE `document_attechments` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `document_categories` +-- +ALTER TABLE `document_categories` + ADD PRIMARY KEY (`id`), + ADD KEY `document_categories_creator_id_index` (`creator_id`), + ADD KEY `document_categories_created_by_index` (`created_by`); + +-- +-- Indexes for table `document_comments` +-- +ALTER TABLE `document_comments` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `document_notes` +-- +ALTER TABLE `document_notes` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `drivers` +-- +ALTER TABLE `drivers` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `driver_attechments` +-- +ALTER TABLE `driver_attechments` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `email_templates` +-- +ALTER TABLE `email_templates` + ADD PRIMARY KEY (`id`), + ADD KEY `email_templates_creator_id_index` (`creator_id`), + ADD KEY `email_templates_created_by_index` (`created_by`); + +-- +-- Indexes for table `email_template_langs` +-- +ALTER TABLE `email_template_langs` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `employees` +-- +ALTER TABLE `employees` + ADD PRIMARY KEY (`id`), + ADD KEY `employees_shift_foreign` (`shift`), + ADD KEY `employees_user_id_foreign` (`user_id`), + ADD KEY `employees_branch_id_foreign` (`branch_id`), + ADD KEY `employees_department_id_foreign` (`department_id`), + ADD KEY `employees_designation_id_foreign` (`designation_id`), + ADD KEY `employees_creator_id_index` (`creator_id`), + ADD KEY `employees_created_by_index` (`created_by`); + +-- +-- Indexes for table `employee_certifications` +-- +ALTER TABLE `employee_certifications` + ADD PRIMARY KEY (`id`), + ADD KEY `employee_certifications_certification_id_foreign` (`certification_id`), + ADD KEY `employee_certifications_verified_by_foreign` (`verified_by`), + ADD KEY `employee_certifications_created_by_foreign` (`created_by`), + ADD KEY `employee_certifications_user_id_status_index` (`user_id`,`status`), + ADD KEY `employee_certifications_expiry_date_status_index` (`expiry_date`,`status`); + +-- +-- Indexes for table `employee_documents` +-- +ALTER TABLE `employee_documents` + ADD PRIMARY KEY (`id`), + ADD KEY `employee_documents_user_id_foreign` (`user_id`), + ADD KEY `employee_documents_creator_id_foreign` (`creator_id`), + ADD KEY `employee_documents_created_by_foreign` (`created_by`), + ADD KEY `employee_documents_document_type_id_foreign` (`document_type_id`); + +-- +-- Indexes for table `employee_document_types` +-- +ALTER TABLE `employee_document_types` + ADD PRIMARY KEY (`id`), + ADD KEY `employee_document_types_creator_id_index` (`creator_id`), + ADD KEY `employee_document_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `employee_salary_items` +-- +ALTER TABLE `employee_salary_items` + ADD PRIMARY KEY (`id`), + ADD KEY `employee_salary_items_salary_structure_id_foreign` (`salary_structure_id`), + ADD KEY `employee_salary_items_salary_component_id_foreign` (`salary_component_id`); + +-- +-- Indexes for table `employee_salary_structures` +-- +ALTER TABLE `employee_salary_structures` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `employee_salary_structures_user_id_status_unique` (`user_id`,`status`), + ADD KEY `employee_salary_structures_pay_group_id_foreign` (`pay_group_id`), + ADD KEY `employee_salary_structures_created_by_index` (`created_by`); + +-- +-- Indexes for table `employee_skills` +-- +ALTER TABLE `employee_skills` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `employee_skills_user_id_skill_id_unique` (`user_id`,`skill_id`), + ADD KEY `employee_skills_skill_id_foreign` (`skill_id`), + ADD KEY `employee_skills_created_by_index` (`created_by`), + ADD KEY `employee_skills_proficiency_level_index` (`proficiency_level`); + +-- +-- Indexes for table `employee_transfers` +-- +ALTER TABLE `employee_transfers` + ADD PRIMARY KEY (`id`), + ADD KEY `employee_transfers_employee_id_foreign` (`employee_id`), + ADD KEY `employee_transfers_from_branch_id_foreign` (`from_branch_id`), + ADD KEY `employee_transfers_from_department_id_foreign` (`from_department_id`), + ADD KEY `employee_transfers_from_designation_id_foreign` (`from_designation_id`), + ADD KEY `employee_transfers_to_branch_id_foreign` (`to_branch_id`), + ADD KEY `employee_transfers_to_department_id_foreign` (`to_department_id`), + ADD KEY `employee_transfers_to_designation_id_foreign` (`to_designation_id`), + ADD KEY `employee_transfers_approved_by_foreign` (`approved_by`), + ADD KEY `employee_transfers_creator_id_foreign` (`creator_id`), + ADD KEY `employee_transfers_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `engagements` +-- +ALTER TABLE `engagements` + ADD PRIMARY KEY (`id`), + ADD KEY `engagements_project_id_foreign` (`project_id`), + ADD KEY `engagements_partner_id_foreign` (`partner_id`), + ADD KEY `engagements_manager_id_foreign` (`manager_id`), + ADD KEY `engagements_created_by_foreign` (`created_by`), + ADD KEY `engagements_status_created_by_index` (`status`,`created_by`), + ADD KEY `engagements_branch_id_foreign` (`branch_id`); + +-- +-- Indexes for table `engagement_assignments` +-- +ALTER TABLE `engagement_assignments` + ADD PRIMARY KEY (`id`), + ADD KEY `engagement_assignments_engagement_role_id_foreign` (`engagement_role_id`), + ADD KEY `engagement_assignments_assigned_by_foreign` (`assigned_by`), + ADD KEY `engagement_assignments_user_id_status_index` (`user_id`,`status`); + +-- +-- Indexes for table `engagement_forecasts` +-- +ALTER TABLE `engagement_forecasts` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `engagement_forecasts_engagement_id_period_unique` (`engagement_id`,`period`); + +-- +-- Indexes for table `engagement_roles` +-- +ALTER TABLE `engagement_roles` + ADD PRIMARY KEY (`id`), + ADD KEY `engagement_roles_engagement_id_foreign` (`engagement_id`), + ADD KEY `engagement_roles_designation_id_foreign` (`designation_id`); + +-- +-- Indexes for table `engagement_schedules` +-- +ALTER TABLE `engagement_schedules` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `engagement_schedules_engagement_id_user_id_date_unique` (`engagement_id`,`user_id`,`date`), + ADD KEY `engagement_schedules_created_by_foreign` (`created_by`), + ADD KEY `engagement_schedules_user_id_date_index` (`user_id`,`date`), + ADD KEY `engagement_schedules_engagement_id_date_index` (`engagement_id`,`date`); + +-- +-- Indexes for table `engagement_templates` +-- +ALTER TABLE `engagement_templates` + ADD PRIMARY KEY (`id`), + ADD KEY `engagement_templates_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `events` +-- +ALTER TABLE `events` + ADD PRIMARY KEY (`id`), + ADD KEY `events_event_type_id_foreign` (`event_type_id`), + ADD KEY `events_approved_by_foreign` (`approved_by`), + ADD KEY `events_creator_id_index` (`creator_id`), + ADD KEY `events_created_by_index` (`created_by`); + +-- +-- Indexes for table `event_departments` +-- +ALTER TABLE `event_departments` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `event_departments_event_id_department_id_unique` (`event_id`,`department_id`), + ADD KEY `event_departments_department_id_foreign` (`department_id`), + ADD KEY `event_departments_creator_id_index` (`creator_id`), + ADD KEY `event_departments_created_by_index` (`created_by`); + +-- +-- Indexes for table `event_types` +-- +ALTER TABLE `event_types` + ADD PRIMARY KEY (`id`), + ADD KEY `event_types_creator_id_index` (`creator_id`), + ADD KEY `event_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `expenses` +-- +ALTER TABLE `expenses` + ADD PRIMARY KEY (`id`), + ADD KEY `expenses_category_id_foreign` (`category_id`), + ADD KEY `expenses_bank_account_id_foreign` (`bank_account_id`), + ADD KEY `expenses_chart_of_account_id_foreign` (`chart_of_account_id`), + ADD KEY `expenses_approved_by_index` (`approved_by`), + ADD KEY `expenses_creator_id_index` (`creator_id`), + ADD KEY `expenses_created_by_index` (`created_by`); + +-- +-- Indexes for table `expense_categories` +-- +ALTER TABLE `expense_categories` + ADD PRIMARY KEY (`id`), + ADD KEY `expense_categories_gl_account_id_foreign` (`gl_account_id`), + ADD KEY `expense_categories_creator_id_index` (`creator_id`), + ADD KEY `expense_categories_created_by_index` (`created_by`); + +-- +-- Indexes for table `failed_jobs` +-- +ALTER TABLE `failed_jobs` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); + +-- +-- Indexes for table `fleet_customers` +-- +ALTER TABLE `fleet_customers` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `fleet_logbooks` +-- +ALTER TABLE `fleet_logbooks` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `fleet_payments` +-- +ALTER TABLE `fleet_payments` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `fuels` +-- +ALTER TABLE `fuels` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `fuel_types` +-- +ALTER TABLE `fuel_types` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `helpdesk_categories` +-- +ALTER TABLE `helpdesk_categories` + ADD PRIMARY KEY (`id`), + ADD KEY `helpdesk_categories_creator_id_index` (`creator_id`), + ADD KEY `helpdesk_categories_created_by_index` (`created_by`); + +-- +-- Indexes for table `helpdesk_replies` +-- +ALTER TABLE `helpdesk_replies` + ADD PRIMARY KEY (`id`), + ADD KEY `helpdesk_replies_ticket_id_index` (`ticket_id`), + ADD KEY `helpdesk_replies_created_by_index` (`created_by`); + +-- +-- Indexes for table `helpdesk_tickets` +-- +ALTER TABLE `helpdesk_tickets` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `helpdesk_tickets_ticket_id_unique` (`ticket_id`), + ADD KEY `helpdesk_tickets_category_id_index` (`category_id`), + ADD KEY `helpdesk_tickets_created_by_index` (`created_by`); + +-- +-- Indexes for table `holidays` +-- +ALTER TABLE `holidays` + ADD PRIMARY KEY (`id`), + ADD KEY `holidays_holiday_type_id_foreign` (`holiday_type_id`), + ADD KEY `holidays_creator_id_foreign` (`creator_id`), + ADD KEY `holidays_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `holiday_types` +-- +ALTER TABLE `holiday_types` + ADD PRIMARY KEY (`id`), + ADD KEY `holiday_types_creator_id_index` (`creator_id`), + ADD KEY `holiday_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `hospital_ambulances` +-- +ALTER TABLE `hospital_ambulances` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `hospital_ambulance_calls` +-- +ALTER TABLE `hospital_ambulance_calls` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `hospital_appointments` +-- +ALTER TABLE `hospital_appointments` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `hospital_beds` +-- +ALTER TABLE `hospital_beds` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `hospital_doctors` +-- +ALTER TABLE `hospital_doctors` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `hospital_doctors_email_unique` (`email`); + +-- +-- Indexes for table `hospital_lab_tests` +-- +ALTER TABLE `hospital_lab_tests` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `hospital_medical_records` +-- +ALTER TABLE `hospital_medical_records` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `hospital_medicines` +-- +ALTER TABLE `hospital_medicines` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `hospital_patients` +-- +ALTER TABLE `hospital_patients` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `hospital_patients_email_unique` (`email`); + +-- +-- Indexes for table `hospital_surgeries` +-- +ALTER TABLE `hospital_surgeries` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `hospital_visitors` +-- +ALTER TABLE `hospital_visitors` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `hospital_wards` +-- +ALTER TABLE `hospital_wards` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `hrm_documents` +-- +ALTER TABLE `hrm_documents` + ADD PRIMARY KEY (`id`), + ADD KEY `hrm_documents_document_category_id_foreign` (`document_category_id`), + ADD KEY `hrm_documents_uploaded_by_foreign` (`uploaded_by`), + ADD KEY `hrm_documents_approved_by_foreign` (`approved_by`), + ADD KEY `hrm_documents_creator_id_index` (`creator_id`), + ADD KEY `hrm_documents_created_by_index` (`created_by`); + +-- +-- Indexes for table `insurances` +-- +ALTER TABLE `insurances` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `insurance_booking` +-- +ALTER TABLE `insurance_booking` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `ip_restricts` +-- +ALTER TABLE `ip_restricts` + ADD PRIMARY KEY (`id`), + ADD KEY `ip_restricts_creator_id_index` (`creator_id`), + ADD KEY `ip_restricts_created_by_index` (`created_by`); + +-- +-- Indexes for table `jobs` +-- +ALTER TABLE `jobs` + ADD PRIMARY KEY (`id`), + ADD KEY `jobs_queue_index` (`queue`); + +-- +-- Indexes for table `job_batches` +-- +ALTER TABLE `job_batches` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `journal_entries` +-- +ALTER TABLE `journal_entries` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `journal_entry_items` +-- +ALTER TABLE `journal_entry_items` + ADD PRIMARY KEY (`id`), + ADD KEY `journal_entry_items_journal_entry_id_index` (`journal_entry_id`), + ADD KEY `journal_entry_items_account_id_index` (`account_id`), + ADD KEY `journal_entry_items_creator_id_index` (`creator_id`), + ADD KEY `journal_entry_items_created_by_index` (`created_by`); + +-- +-- Indexes for table `journal_items` +-- +ALTER TABLE `journal_items` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `labels` +-- +ALTER TABLE `labels` + ADD PRIMARY KEY (`id`), + ADD KEY `labels_pipeline_id_foreign` (`pipeline_id`), + ADD KEY `labels_creator_id_index` (`creator_id`), + ADD KEY `labels_created_by_index` (`created_by`); + +-- +-- Indexes for table `landing_page_settings` +-- +ALTER TABLE `landing_page_settings` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `leads` +-- +ALTER TABLE `leads` + ADD PRIMARY KEY (`id`), + ADD KEY `leads_user_id_index` (`user_id`), + ADD KEY `leads_pipeline_id_index` (`pipeline_id`), + ADD KEY `leads_stage_id_index` (`stage_id`), + ADD KEY `leads_creator_id_index` (`creator_id`), + ADD KEY `leads_created_by_index` (`created_by`); + +-- +-- Indexes for table `lead_activity_logs` +-- +ALTER TABLE `lead_activity_logs` + ADD PRIMARY KEY (`id`), + ADD KEY `lead_activity_logs_user_id_index` (`user_id`), + ADD KEY `lead_activity_logs_lead_id_index` (`lead_id`); + +-- +-- Indexes for table `lead_calls` +-- +ALTER TABLE `lead_calls` + ADD PRIMARY KEY (`id`), + ADD KEY `lead_calls_lead_id_index` (`lead_id`), + ADD KEY `lead_calls_user_id_index` (`user_id`); + +-- +-- Indexes for table `lead_discussions` +-- +ALTER TABLE `lead_discussions` + ADD PRIMARY KEY (`id`), + ADD KEY `lead_discussions_lead_id_index` (`lead_id`), + ADD KEY `lead_discussions_creator_id_index` (`creator_id`), + ADD KEY `lead_discussions_created_by_index` (`created_by`); + +-- +-- Indexes for table `lead_emails` +-- +ALTER TABLE `lead_emails` + ADD PRIMARY KEY (`id`), + ADD KEY `lead_emails_lead_id_index` (`lead_id`); + +-- +-- Indexes for table `lead_files` +-- +ALTER TABLE `lead_files` + ADD PRIMARY KEY (`id`), + ADD KEY `lead_files_lead_id_index` (`lead_id`); + +-- +-- Indexes for table `lead_stages` +-- +ALTER TABLE `lead_stages` + ADD PRIMARY KEY (`id`), + ADD KEY `lead_stages_pipeline_id_foreign` (`pipeline_id`), + ADD KEY `lead_stages_creator_id_index` (`creator_id`), + ADD KEY `lead_stages_created_by_index` (`created_by`); + +-- +-- Indexes for table `lead_tasks` +-- +ALTER TABLE `lead_tasks` + ADD PRIMARY KEY (`id`), + ADD KEY `lead_tasks_lead_id_index` (`lead_id`), + ADD KEY `lead_tasks_created_by_index` (`created_by`), + ADD KEY `lead_tasks_creator_id_index` (`creator_id`); + +-- +-- Indexes for table `leave_applications` +-- +ALTER TABLE `leave_applications` + ADD PRIMARY KEY (`id`), + ADD KEY `leave_applications_employee_id_foreign` (`employee_id`), + ADD KEY `leave_applications_leave_type_id_foreign` (`leave_type_id`), + ADD KEY `leave_applications_approved_by_foreign` (`approved_by`), + ADD KEY `leave_applications_creator_id_index` (`creator_id`), + ADD KEY `leave_applications_created_by_index` (`created_by`); + +-- +-- Indexes for table `leave_types` +-- +ALTER TABLE `leave_types` + ADD PRIMARY KEY (`id`), + ADD KEY `leave_types_creator_id_index` (`creator_id`), + ADD KEY `leave_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `licenses` +-- +ALTER TABLE `licenses` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `loans` +-- +ALTER TABLE `loans` + ADD PRIMARY KEY (`id`), + ADD KEY `loans_loan_type_id_foreign` (`loan_type_id`), + ADD KEY `loans_employee_id_foreign` (`employee_id`), + ADD KEY `loans_creator_id_index` (`creator_id`), + ADD KEY `loans_created_by_index` (`created_by`); + +-- +-- Indexes for table `loan_types` +-- +ALTER TABLE `loan_types` + ADD PRIMARY KEY (`id`), + ADD KEY `loan_types_creator_id_index` (`creator_id`), + ADD KEY `loan_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `login_histories` +-- +ALTER TABLE `login_histories` + ADD PRIMARY KEY (`id`), + ADD KEY `login_histories_user_id_index` (`user_id`), + ADD KEY `login_histories_created_by_index` (`created_by`); + +-- +-- Indexes for table `maintenances` +-- +ALTER TABLE `maintenances` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `maintenance_types` +-- +ALTER TABLE `maintenance_types` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `marketplace_settings` +-- +ALTER TABLE `marketplace_settings` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `media` +-- +ALTER TABLE `media` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `media_uuid_unique` (`uuid`), + ADD KEY `media_model_type_model_id_index` (`model_type`,`model_id`), + ADD KEY `media_directory_id_foreign` (`directory_id`), + ADD KEY `media_order_column_index` (`order_column`), + ADD KEY `media_creator_id_index` (`creator_id`), + ADD KEY `media_created_by_index` (`created_by`); + +-- +-- Indexes for table `media_directories` +-- +ALTER TABLE `media_directories` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `media_directories_slug_unique` (`slug`), + ADD KEY `media_directories_parent_id_foreign` (`parent_id`), + ADD KEY `media_directories_creator_id_foreign` (`creator_id`), + ADD KEY `media_directories_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `mfg_accounting_maps` +-- +ALTER TABLE `mfg_accounting_maps` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `mfg_accounting_maps_account_type_workspace_unique` (`account_type`,`workspace`); + +-- +-- Indexes for table `mfg_coils` +-- +ALTER TABLE `mfg_coils` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `mfg_coils_coil_number_unique` (`coil_number`), + ADD KEY `mfg_coils_item_id_foreign` (`item_id`), + ADD KEY `mfg_coils_parent_coil_id_foreign` (`parent_coil_id`), + ADD KEY `mfg_coils_workspace_status_index` (`workspace`,`status`), + ADD KEY `mfg_coils_coil_number_index` (`coil_number`); + +-- +-- Indexes for table `mfg_finished_goods` +-- +ALTER TABLE `mfg_finished_goods` + ADD PRIMARY KEY (`id`), + ADD KEY `mfg_finished_goods_item_id_foreign` (`item_id`), + ADD KEY `mfg_finished_goods_profile_id_foreign` (`profile_id`), + ADD KEY `mfg_finished_goods_workspace_profile_id_index` (`workspace`,`profile_id`); + +-- +-- Indexes for table `mfg_items` +-- +ALTER TABLE `mfg_items` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `mfg_items_sku_unique` (`sku`), + ADD KEY `mfg_items_workspace_type_index` (`workspace`,`type`); + +-- +-- Indexes for table `mfg_job_orders` +-- +ALTER TABLE `mfg_job_orders` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `mfg_job_orders_job_number_unique` (`job_number`), + ADD KEY `mfg_job_orders_sales_order_id_foreign` (`sales_order_id`), + ADD KEY `mfg_job_orders_profile_id_foreign` (`profile_id`), + ADD KEY `mfg_job_orders_workspace_status_index` (`workspace`,`status`); + +-- +-- Indexes for table `mfg_machines` +-- +ALTER TABLE `mfg_machines` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `mfg_production_outputs` +-- +ALTER TABLE `mfg_production_outputs` + ADD PRIMARY KEY (`id`), + ADD KEY `mfg_production_outputs_production_run_id_foreign` (`production_run_id`), + ADD KEY `mfg_production_outputs_finished_good_id_foreign` (`finished_good_id`), + ADD KEY `mfg_production_outputs_profile_id_foreign` (`profile_id`); + +-- +-- Indexes for table `mfg_production_runs` +-- +ALTER TABLE `mfg_production_runs` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `mfg_production_runs_run_number_unique` (`run_number`), + ADD KEY `mfg_production_runs_job_order_id_foreign` (`job_order_id`), + ADD KEY `mfg_production_runs_coil_id_foreign` (`coil_id`), + ADD KEY `mfg_production_runs_machine_id_foreign` (`machine_id`), + ADD KEY `mfg_production_runs_workspace_status_index` (`workspace`,`status`); + +-- +-- Indexes for table `mfg_profiles` +-- +ALTER TABLE `mfg_profiles` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `mfg_remnants` +-- +ALTER TABLE `mfg_remnants` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `mfg_remnants_remnant_tag_unique` (`remnant_tag`), + ADD KEY `mfg_remnants_item_id_foreign` (`item_id`), + ADD KEY `mfg_remnants_source_coil_id_foreign` (`source_coil_id`), + ADD KEY `mfg_remnants_workspace_status_index` (`workspace`,`status`); + +-- +-- Indexes for table `mfg_sales_orders` +-- +ALTER TABLE `mfg_sales_orders` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `mfg_sales_orders_order_number_unique` (`order_number`), + ADD KEY `mfg_sales_orders_workspace_status_index` (`workspace`,`status`); + +-- +-- Indexes for table `mfg_sales_order_items` +-- +ALTER TABLE `mfg_sales_order_items` + ADD PRIMARY KEY (`id`), + ADD KEY `mfg_sales_order_items_sales_order_id_foreign` (`sales_order_id`), + ADD KEY `mfg_sales_order_items_profile_id_foreign` (`profile_id`), + ADD KEY `mfg_sales_order_items_source_coil_id_foreign` (`source_coil_id`); + +-- +-- Indexes for table `mfg_stock_movements` +-- +ALTER TABLE `mfg_stock_movements` + ADD PRIMARY KEY (`id`), + ADD KEY `mfg_stock_movements_item_id_foreign` (`item_id`), + ADD KEY `mfg_stock_movements_workspace_item_id_index` (`workspace`,`item_id`), + ADD KEY `mfg_stock_movements_reference_type_reference_id_index` (`reference_type`,`reference_id`); + +-- +-- Indexes for table `migrations` +-- +ALTER TABLE `migrations` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `model_has_permissions` +-- +ALTER TABLE `model_has_permissions` + ADD PRIMARY KEY (`permission_id`,`model_id`,`model_type`), + ADD KEY `model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`); + +-- +-- Indexes for table `model_has_roles` +-- +ALTER TABLE `model_has_roles` + ADD PRIMARY KEY (`role_id`,`model_id`,`model_type`), + ADD KEY `model_has_roles_model_id_model_type_index` (`model_id`,`model_type`); + +-- +-- Indexes for table `newsletter_subscribers` +-- +ALTER TABLE `newsletter_subscribers` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `newsletter_subscribers_email_unique` (`email`), + ADD KEY `newsletter_subscribers_subscribed_at_index` (`subscribed_at`); + +-- +-- Indexes for table `notifications` +-- +ALTER TABLE `notifications` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `notification_template_langs` +-- +ALTER TABLE `notification_template_langs` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `opening_balances` +-- +ALTER TABLE `opening_balances` + ADD PRIMARY KEY (`id`), + ADD KEY `opening_balances_account_id_foreign` (`account_id`), + ADD KEY `opening_balances_creator_id_foreign` (`creator_id`), + ADD KEY `opening_balances_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `orders` +-- +ALTER TABLE `orders` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `orders_order_id_unique` (`order_id`), + ADD KEY `orders_plan_id_foreign` (`plan_id`), + ADD KEY `orders_created_by_index` (`created_by`); + +-- +-- Indexes for table `overtimes` +-- +ALTER TABLE `overtimes` + ADD PRIMARY KEY (`id`), + ADD KEY `overtimes_employee_id_foreign` (`employee_id`), + ADD KEY `overtimes_creator_id_index` (`creator_id`), + ADD KEY `overtimes_created_by_index` (`created_by`); + +-- +-- Indexes for table `password_reset_tokens` +-- +ALTER TABLE `password_reset_tokens` + ADD PRIMARY KEY (`email`); + +-- +-- Indexes for table `payrolls` +-- +ALTER TABLE `payrolls` + ADD PRIMARY KEY (`id`), + ADD KEY `payrolls_bank_account_id_foreign` (`bank_account_id`), + ADD KEY `payrolls_creator_id_index` (`creator_id`), + ADD KEY `payrolls_created_by_index` (`created_by`); + +-- +-- Indexes for table `payroll_entries` +-- +ALTER TABLE `payroll_entries` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `payroll_entries_payroll_id_employee_id_unique` (`payroll_id`,`employee_id`), + ADD KEY `payroll_entries_employee_id_foreign` (`employee_id`), + ADD KEY `payroll_entries_creator_id_index` (`creator_id`), + ADD KEY `payroll_entries_created_by_index` (`created_by`); + +-- +-- Indexes for table `payroll_entry_adjustments` +-- +ALTER TABLE `payroll_entry_adjustments` + ADD PRIMARY KEY (`id`), + ADD KEY `payroll_entry_adjustments_payroll_entry_id_foreign` (`payroll_entry_id`), + ADD KEY `payroll_entry_adjustments_added_by_foreign` (`added_by`); + +-- +-- Indexes for table `payroll_settings` +-- +ALTER TABLE `payroll_settings` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `payroll_settings_key_created_by_unique` (`key`,`created_by`), + ADD KEY `payroll_settings_created_by_index` (`created_by`); + +-- +-- Indexes for table `pay_groups` +-- +ALTER TABLE `pay_groups` + ADD PRIMARY KEY (`id`), + ADD KEY `pay_groups_created_by_index` (`created_by`); + +-- +-- Indexes for table `permissions` +-- +ALTER TABLE `permissions` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `permissions_name_guard_name_unique` (`name`,`guard_name`); + +-- +-- 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`), + ADD KEY `personal_access_tokens_expires_at_index` (`expires_at`); + +-- +-- Indexes for table `pipelines` +-- +ALTER TABLE `pipelines` + ADD PRIMARY KEY (`id`), + ADD KEY `pipelines_creator_id_index` (`creator_id`), + ADD KEY `pipelines_created_by_index` (`created_by`); + +-- +-- Indexes for table `plans` +-- +ALTER TABLE `plans` + ADD PRIMARY KEY (`id`), + ADD KEY `plans_created_by_index` (`created_by`); + +-- +-- Indexes for table `pm_amenities` +-- +ALTER TABLE `pm_amenities` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_amenities_amenity_type_id_foreign` (`amenity_type_id`); + +-- +-- Indexes for table `pm_amenity_types` +-- +ALTER TABLE `pm_amenity_types` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `pm_area_types` +-- +ALTER TABLE `pm_area_types` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `pm_energy_efficiency_types` +-- +ALTER TABLE `pm_energy_efficiency_types` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `pm_expense_links` +-- +ALTER TABLE `pm_expense_links` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_expense_links_property_id_index` (`property_id`), + ADD KEY `pm_expense_links_expense_id_index` (`expense_id`); + +-- +-- Indexes for table `pm_invoice_links` +-- +ALTER TABLE `pm_invoice_links` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_invoice_links_property_id_index` (`property_id`), + ADD KEY `pm_invoice_links_lease_id_index` (`lease_id`), + ADD KEY `pm_invoice_links_invoice_id_index` (`invoice_id`); + +-- +-- Indexes for table `pm_leases` +-- +ALTER TABLE `pm_leases` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_leases_property_id_index` (`property_id`), + ADD KEY `pm_leases_lease_status_index` (`lease_status`), + ADD KEY `pm_leases_created_by_index` (`created_by`); + +-- +-- Indexes for table `pm_maintenance_files` +-- +ALTER TABLE `pm_maintenance_files` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_maintenance_files_maintenance_request_id_foreign` (`maintenance_request_id`); + +-- +-- Indexes for table `pm_maintenance_requests` +-- +ALTER TABLE `pm_maintenance_requests` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_maintenance_requests_lease_id_foreign` (`lease_id`), + ADD KEY `pm_maintenance_requests_property_id_index` (`property_id`), + ADD KEY `pm_maintenance_requests_status_index` (`status`), + ADD KEY `pm_maintenance_requests_priority_index` (`priority`), + ADD KEY `pm_maintenance_requests_created_by_index` (`created_by`); + +-- +-- Indexes for table `pm_messages` +-- +ALTER TABLE `pm_messages` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_messages_property_id_lease_id_index` (`property_id`,`lease_id`), + ADD KEY `pm_messages_sender_id_index` (`sender_id`); + +-- +-- Indexes for table `pm_ownership_types` +-- +ALTER TABLE `pm_ownership_types` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `pm_properties` +-- +ALTER TABLE `pm_properties` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_properties_ownership_type_id_foreign` (`ownership_type_id`), + ADD KEY `pm_properties_area_type_id_foreign` (`area_type_id`), + ADD KEY `pm_properties_energy_efficiency_type_id_foreign` (`energy_efficiency_type_id`), + ADD KEY `pm_properties_created_by_index` (`created_by`), + ADD KEY `pm_properties_status_index` (`status`), + ADD KEY `pm_properties_category_id_index` (`category_id`); + +-- +-- Indexes for table `pm_property_amenities` +-- +ALTER TABLE `pm_property_amenities` + ADD PRIMARY KEY (`property_id`,`amenity_id`), + ADD KEY `pm_property_amenities_amenity_id_foreign` (`amenity_id`); + +-- +-- Indexes for table `pm_property_assignments` +-- +ALTER TABLE `pm_property_assignments` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `pm_property_assignments_property_id_user_id_role_unique` (`property_id`,`user_id`,`role`); + +-- +-- Indexes for table `pm_property_attachments` +-- +ALTER TABLE `pm_property_attachments` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_property_attachments_property_id_index` (`property_id`); + +-- +-- Indexes for table `pm_property_audits` +-- +ALTER TABLE `pm_property_audits` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `pm_property_categories` +-- +ALTER TABLE `pm_property_categories` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `pm_property_events` +-- +ALTER TABLE `pm_property_events` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_property_events_property_id_foreign` (`property_id`); + +-- +-- Indexes for table `pm_property_history` +-- +ALTER TABLE `pm_property_history` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_property_history_property_id_index` (`property_id`); + +-- +-- Indexes for table `pm_property_images` +-- +ALTER TABLE `pm_property_images` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_property_images_property_id_foreign` (`property_id`); + +-- +-- Indexes for table `pm_property_leads` +-- +ALTER TABLE `pm_property_leads` + ADD PRIMARY KEY (`property_id`,`lead_id`); + +-- +-- Indexes for table `pm_property_notes` +-- +ALTER TABLE `pm_property_notes` + ADD PRIMARY KEY (`id`), + ADD KEY `pm_property_notes_property_id_index` (`property_id`); + +-- +-- Indexes for table `pos` +-- +ALTER TABLE `pos` + ADD PRIMARY KEY (`id`), + ADD KEY `pos_bank_account_id_foreign` (`bank_account_id`), + ADD KEY `pos_customer_id_index` (`customer_id`), + ADD KEY `pos_warehouse_id_index` (`warehouse_id`), + ADD KEY `pos_creator_id_index` (`creator_id`), + ADD KEY `pos_created_by_index` (`created_by`); + +-- +-- Indexes for table `pos_items` +-- +ALTER TABLE `pos_items` + ADD PRIMARY KEY (`id`), + ADD KEY `pos_items_pos_id_index` (`pos_id`), + ADD KEY `pos_items_product_id_index` (`product_id`), + ADD KEY `pos_items_creator_id_index` (`creator_id`), + ADD KEY `pos_items_created_by_index` (`created_by`); + +-- +-- Indexes for table `pos_payments` +-- +ALTER TABLE `pos_payments` + ADD PRIMARY KEY (`id`), + ADD KEY `pos_payments_pos_id_index` (`pos_id`), + ADD KEY `pos_payments_creator_id_index` (`creator_id`), + ADD KEY `pos_payments_created_by_index` (`created_by`); + +-- +-- Indexes for table `product_service_categories` +-- +ALTER TABLE `product_service_categories` + ADD PRIMARY KEY (`id`), + ADD KEY `product_service_categories_creator_id_index` (`creator_id`), + ADD KEY `product_service_categories_created_by_index` (`created_by`); + +-- +-- Indexes for table `product_service_items` +-- +ALTER TABLE `product_service_items` + ADD PRIMARY KEY (`id`), + ADD KEY `product_service_items_category_id_index` (`category_id`), + ADD KEY `product_service_items_creator_id_index` (`creator_id`), + ADD KEY `product_service_items_created_by_index` (`created_by`); + +-- +-- Indexes for table `product_service_taxes` +-- +ALTER TABLE `product_service_taxes` + ADD PRIMARY KEY (`id`), + ADD KEY `product_service_taxes_creator_id_index` (`creator_id`), + ADD KEY `product_service_taxes_created_by_index` (`created_by`); + +-- +-- Indexes for table `product_service_units` +-- +ALTER TABLE `product_service_units` + ADD PRIMARY KEY (`id`), + ADD KEY `product_service_units_creator_id_index` (`creator_id`), + ADD KEY `product_service_units_created_by_index` (`created_by`); + +-- +-- Indexes for table `projects` +-- +ALTER TABLE `projects` + ADD PRIMARY KEY (`id`), + ADD KEY `projects_creator_id_index` (`creator_id`), + ADD KEY `projects_created_by_index` (`created_by`); + +-- +-- Indexes for table `project_activity_logs` +-- +ALTER TABLE `project_activity_logs` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `project_bugs` +-- +ALTER TABLE `project_bugs` + ADD PRIMARY KEY (`id`), + ADD KEY `project_bugs_project_id_index` (`project_id`), + ADD KEY `project_bugs_stage_id_index` (`stage_id`), + ADD KEY `project_bugs_creator_id_index` (`creator_id`), + ADD KEY `project_bugs_created_by_index` (`created_by`); + +-- +-- Indexes for table `project_clients` +-- +ALTER TABLE `project_clients` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `project_clients_project_id_client_id_unique` (`project_id`,`client_id`), + ADD KEY `project_clients_client_id_foreign` (`client_id`); + +-- +-- Indexes for table `project_files` +-- +ALTER TABLE `project_files` + ADD PRIMARY KEY (`id`), + ADD KEY `project_files_project_id_foreign` (`project_id`); + +-- +-- Indexes for table `project_milestones` +-- +ALTER TABLE `project_milestones` + ADD PRIMARY KEY (`id`), + ADD KEY `project_milestones_project_id_foreign` (`project_id`); + +-- +-- Indexes for table `project_tasks` +-- +ALTER TABLE `project_tasks` + ADD PRIMARY KEY (`id`), + ADD KEY `project_tasks_project_id_index` (`project_id`), + ADD KEY `project_tasks_milestone_id_index` (`milestone_id`), + ADD KEY `project_tasks_stage_id_index` (`stage_id`), + ADD KEY `project_tasks_creator_id_index` (`creator_id`), + ADD KEY `project_tasks_created_by_index` (`created_by`); + +-- +-- Indexes for table `project_users` +-- +ALTER TABLE `project_users` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `project_users_project_id_user_id_unique` (`project_id`,`user_id`), + ADD KEY `project_users_user_id_foreign` (`user_id`); + +-- +-- Indexes for table `promotions` +-- +ALTER TABLE `promotions` + ADD PRIMARY KEY (`id`), + ADD KEY `promotions_previous_branch_id_foreign` (`previous_branch_id`), + ADD KEY `promotions_previous_department_id_foreign` (`previous_department_id`), + ADD KEY `promotions_previous_designation_id_foreign` (`previous_designation_id`), + ADD KEY `promotions_current_branch_id_foreign` (`current_branch_id`), + ADD KEY `promotions_current_department_id_foreign` (`current_department_id`), + ADD KEY `promotions_current_designation_id_foreign` (`current_designation_id`), + ADD KEY `promotions_employee_id_foreign` (`employee_id`), + ADD KEY `promotions_approved_by_foreign` (`approved_by`), + ADD KEY `promotions_creator_id_index` (`creator_id`), + ADD KEY `promotions_created_by_index` (`created_by`); + +-- +-- Indexes for table `purchase_invoices` +-- +ALTER TABLE `purchase_invoices` + ADD PRIMARY KEY (`id`), + ADD KEY `purchase_invoices_status_invoice_date_index` (`status`,`invoice_date`), + ADD KEY `purchase_invoices_vendor_id_index` (`vendor_id`), + ADD KEY `purchase_invoices_creator_id_index` (`creator_id`), + ADD KEY `purchase_invoices_created_by_index` (`created_by`); + +-- +-- Indexes for table `purchase_invoice_items` +-- +ALTER TABLE `purchase_invoice_items` + ADD PRIMARY KEY (`id`), + ADD KEY `purchase_invoice_items_invoice_id_index` (`invoice_id`), + ADD KEY `purchase_invoice_items_product_id_index` (`product_id`); + +-- +-- Indexes for table `purchase_invoice_item_taxes` +-- +ALTER TABLE `purchase_invoice_item_taxes` + ADD PRIMARY KEY (`id`), + ADD KEY `purchase_invoice_item_taxes_item_id_index` (`item_id`); + +-- +-- Indexes for table `purchase_returns` +-- +ALTER TABLE `purchase_returns` + ADD PRIMARY KEY (`id`), + ADD KEY `purchase_returns_original_invoice_id_foreign` (`original_invoice_id`), + ADD KEY `purchase_returns_status_return_date_index` (`status`,`return_date`), + ADD KEY `purchase_returns_vendor_id_index` (`vendor_id`), + ADD KEY `purchase_returns_creator_id_index` (`creator_id`), + ADD KEY `purchase_returns_created_by_index` (`created_by`); + +-- +-- Indexes for table `purchase_return_items` +-- +ALTER TABLE `purchase_return_items` + ADD PRIMARY KEY (`id`), + ADD KEY `purchase_return_items_return_id_foreign` (`return_id`); + +-- +-- Indexes for table `purchase_return_item_taxes` +-- +ALTER TABLE `purchase_return_item_taxes` + ADD PRIMARY KEY (`id`), + ADD KEY `purchase_return_item_taxes_item_id_foreign` (`item_id`); + +-- +-- Indexes for table `recurrings` +-- +ALTER TABLE `recurrings` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `resignations` +-- +ALTER TABLE `resignations` + ADD PRIMARY KEY (`id`), + ADD KEY `resignations_employee_id_foreign` (`employee_id`), + ADD KEY `resignations_approved_by_foreign` (`approved_by`), + ADD KEY `resignations_creator_id_index` (`creator_id`), + ADD KEY `resignations_created_by_index` (`created_by`); + +-- +-- Indexes for table `revenues` +-- +ALTER TABLE `revenues` + ADD PRIMARY KEY (`id`), + ADD KEY `revenues_category_id_foreign` (`category_id`), + ADD KEY `revenues_bank_account_id_foreign` (`bank_account_id`), + ADD KEY `revenues_chart_of_account_id_foreign` (`chart_of_account_id`), + ADD KEY `revenues_approved_by_index` (`approved_by`), + ADD KEY `revenues_creator_id_index` (`creator_id`), + ADD KEY `revenues_created_by_index` (`created_by`); + +-- +-- Indexes for table `revenue_categories` +-- +ALTER TABLE `revenue_categories` + ADD PRIMARY KEY (`id`), + ADD KEY `revenue_categories_gl_account_id_foreign` (`gl_account_id`), + ADD KEY `revenue_categories_creator_id_index` (`creator_id`), + ADD KEY `revenue_categories_created_by_index` (`created_by`); + +-- +-- Indexes for table `review_cycles` +-- +ALTER TABLE `review_cycles` + ADD PRIMARY KEY (`id`), + ADD KEY `review_cycles_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `roles` +-- +ALTER TABLE `roles` + ADD PRIMARY KEY (`id`), + ADD KEY `roles_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `role_has_permissions` +-- +ALTER TABLE `role_has_permissions` + ADD PRIMARY KEY (`permission_id`,`role_id`), + ADD KEY `role_has_permissions_role_id_foreign` (`role_id`); + +-- +-- Indexes for table `salary_components` +-- +ALTER TABLE `salary_components` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `salary_components_code_unique` (`code`), + ADD KEY `salary_components_created_by_index` (`created_by`), + ADD KEY `salary_components_type_index` (`type`); + +-- +-- Indexes for table `sales_invoices` +-- +ALTER TABLE `sales_invoices` + ADD PRIMARY KEY (`id`), + ADD KEY `sales_invoices_status_invoice_date_index` (`status`,`invoice_date`), + ADD KEY `sales_invoices_customer_id_index` (`customer_id`), + ADD KEY `sales_invoices_creator_id_index` (`creator_id`), + ADD KEY `sales_invoices_created_by_index` (`created_by`); + +-- +-- Indexes for table `sales_invoice_items` +-- +ALTER TABLE `sales_invoice_items` + ADD PRIMARY KEY (`id`), + ADD KEY `sales_invoice_items_invoice_id_index` (`invoice_id`), + ADD KEY `sales_invoice_items_product_id_index` (`product_id`); + +-- +-- Indexes for table `sales_invoice_item_taxes` +-- +ALTER TABLE `sales_invoice_item_taxes` + ADD PRIMARY KEY (`id`), + ADD KEY `sales_invoice_item_taxes_item_id_index` (`item_id`); + +-- +-- Indexes for table `sales_invoice_returns` +-- +ALTER TABLE `sales_invoice_returns` + ADD PRIMARY KEY (`id`), + ADD KEY `sales_invoice_returns_original_invoice_id_foreign` (`original_invoice_id`), + ADD KEY `sales_invoice_returns_status_return_date_index` (`status`,`return_date`), + ADD KEY `sales_invoice_returns_customer_id_index` (`customer_id`), + ADD KEY `sales_invoice_returns_creator_id_index` (`creator_id`), + ADD KEY `sales_invoice_returns_created_by_index` (`created_by`); + +-- +-- Indexes for table `sales_invoice_return_items` +-- +ALTER TABLE `sales_invoice_return_items` + ADD PRIMARY KEY (`id`), + ADD KEY `sales_invoice_return_items_return_id_foreign` (`return_id`); + +-- +-- Indexes for table `sales_invoice_return_item_taxes` +-- +ALTER TABLE `sales_invoice_return_item_taxes` + ADD PRIMARY KEY (`id`), + ADD KEY `sales_invoice_return_item_taxes_item_id_foreign` (`item_id`); + +-- +-- Indexes for table `sales_proposals` +-- +ALTER TABLE `sales_proposals` + ADD PRIMARY KEY (`id`), + ADD KEY `sales_proposals_invoice_id_foreign` (`invoice_id`), + ADD KEY `sales_proposals_status_proposal_date_index` (`status`,`proposal_date`), + ADD KEY `sales_proposals_customer_id_index` (`customer_id`), + ADD KEY `sales_proposals_creator_id_index` (`creator_id`), + ADD KEY `sales_proposals_created_by_index` (`created_by`); + +-- +-- Indexes for table `sales_proposal_items` +-- +ALTER TABLE `sales_proposal_items` + ADD PRIMARY KEY (`id`), + ADD KEY `sales_proposal_items_proposal_id_index` (`proposal_id`), + ADD KEY `sales_proposal_items_product_id_index` (`product_id`); + +-- +-- Indexes for table `sales_proposal_item_taxes` +-- +ALTER TABLE `sales_proposal_item_taxes` + ADD PRIMARY KEY (`id`), + ADD KEY `sales_proposal_item_taxes_item_id_index` (`item_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`), + ADD KEY `settings_created_by_index` (`created_by`); + +-- +-- Indexes for table `shifts` +-- +ALTER TABLE `shifts` + ADD PRIMARY KEY (`id`), + ADD KEY `shifts_creator_id_index` (`creator_id`), + ADD KEY `shifts_created_by_index` (`created_by`); + +-- +-- Indexes for table `skills` +-- +ALTER TABLE `skills` + ADD PRIMARY KEY (`id`), + ADD KEY `skills_skill_category_id_foreign` (`skill_category_id`), + ADD KEY `skills_created_by_index` (`created_by`); + +-- +-- Indexes for table `skill_assessments` +-- +ALTER TABLE `skill_assessments` + ADD PRIMARY KEY (`id`), + ADD KEY `skill_assessments_skill_id_foreign` (`skill_id`), + ADD KEY `skill_assessments_assessed_by_foreign` (`assessed_by`), + ADD KEY `skill_assessments_user_id_skill_id_created_at_index` (`user_id`,`skill_id`,`created_at`); + +-- +-- Indexes for table `skill_categories` +-- +ALTER TABLE `skill_categories` + ADD PRIMARY KEY (`id`), + ADD KEY `skill_categories_created_by_index` (`created_by`), + ADD KEY `skill_categories_type_index` (`type`); + +-- +-- Indexes for table `skill_requirements` +-- +ALTER TABLE `skill_requirements` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `skill_requirements_designation_id_skill_id_unique` (`designation_id`,`skill_id`), + ADD KEY `skill_requirements_skill_id_foreign` (`skill_id`), + ADD KEY `skill_requirements_created_by_index` (`created_by`); + +-- +-- Indexes for table `skill_reviews` +-- +ALTER TABLE `skill_reviews` + ADD PRIMARY KEY (`id`), + ADD KEY `skill_reviews_reviewee_id_foreign` (`reviewee_id`), + ADD KEY `skill_reviews_skill_id_foreign` (`skill_id`), + ADD KEY `skill_reviews_review_cycle_id_reviewee_id_index` (`review_cycle_id`,`reviewee_id`), + ADD KEY `skill_reviews_reviewer_id_review_cycle_id_index` (`reviewer_id`,`review_cycle_id`); + +-- +-- Indexes for table `sources` +-- +ALTER TABLE `sources` + ADD PRIMARY KEY (`id`), + ADD KEY `sources_creator_id_index` (`creator_id`), + ADD KEY `sources_created_by_index` (`created_by`); + +-- +-- Indexes for table `task_comments` +-- +ALTER TABLE `task_comments` + ADD PRIMARY KEY (`id`), + ADD KEY `task_comments_task_id_foreign` (`task_id`), + ADD KEY `task_comments_user_id_foreign` (`user_id`); + +-- +-- Indexes for table `task_stages` +-- +ALTER TABLE `task_stages` + ADD PRIMARY KEY (`id`), + ADD KEY `task_stages_creator_id_index` (`creator_id`), + ADD KEY `task_stages_created_by_index` (`created_by`); + +-- +-- Indexes for table `task_subtasks` +-- +ALTER TABLE `task_subtasks` + ADD PRIMARY KEY (`id`), + ADD KEY `task_subtasks_task_id_foreign` (`task_id`), + ADD KEY `task_subtasks_user_id_foreign` (`user_id`); + +-- +-- Indexes for table `terminations` +-- +ALTER TABLE `terminations` + ADD PRIMARY KEY (`id`), + ADD KEY `terminations_employee_id_foreign` (`employee_id`), + ADD KEY `terminations_termination_type_id_foreign` (`termination_type_id`), + ADD KEY `terminations_approved_by_foreign` (`approved_by`), + ADD KEY `terminations_creator_id_index` (`creator_id`), + ADD KEY `terminations_created_by_index` (`created_by`); + +-- +-- Indexes for table `termination_types` +-- +ALTER TABLE `termination_types` + ADD PRIMARY KEY (`id`), + ADD KEY `termination_types_creator_id_index` (`creator_id`), + ADD KEY `termination_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `time_entries` +-- +ALTER TABLE `time_entries` + ADD PRIMARY KEY (`id`), + ADD KEY `time_entries_approved_by_foreign` (`approved_by`), + ADD KEY `time_entries_created_by_foreign` (`created_by`), + ADD KEY `time_entries_user_id_date_index` (`user_id`,`date`), + ADD KEY `time_entries_engagement_id_date_index` (`engagement_id`,`date`); + +-- +-- Indexes for table `transfers` +-- +ALTER TABLE `transfers` + ADD PRIMARY KEY (`id`), + ADD KEY `transfers_from_warehouse_index` (`from_warehouse`), + ADD KEY `transfers_to_warehouse_index` (`to_warehouse`), + ADD KEY `transfers_product_id_index` (`product_id`), + ADD KEY `transfers_creator_id_index` (`creator_id`), + ADD KEY `transfers_created_by_index` (`created_by`); + +-- +-- Indexes for table `users` +-- +ALTER TABLE `users` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `users_slug_unique` (`slug`), + ADD KEY `users_creator_id_index` (`creator_id`), + ADD KEY `users_created_by_index` (`created_by`); + +-- +-- Indexes for table `user_active_modules` +-- +ALTER TABLE `user_active_modules` + ADD PRIMARY KEY (`id`), + ADD KEY `user_active_modules_user_id_index` (`user_id`); + +-- +-- Indexes for table `user_coupons` +-- +ALTER TABLE `user_coupons` + ADD PRIMARY KEY (`id`), + ADD KEY `user_coupons_user_id_foreign` (`user_id`), + ADD KEY `user_coupons_coupon_id_user_id_index` (`coupon_id`,`user_id`); + +-- +-- Indexes for table `user_deals` +-- +ALTER TABLE `user_deals` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `user_deals_user_id_deal_id_unique` (`user_id`,`deal_id`), + ADD KEY `user_deals_user_id_index` (`user_id`), + ADD KEY `user_deals_deal_id_index` (`deal_id`); + +-- +-- Indexes for table `user_leads` +-- +ALTER TABLE `user_leads` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `user_leads_user_id_lead_id_unique` (`user_id`,`lead_id`), + ADD KEY `user_leads_user_id_index` (`user_id`), + ADD KEY `user_leads_lead_id_index` (`lead_id`); + +-- +-- Indexes for table `utilization_alerts` +-- +ALTER TABLE `utilization_alerts` + ADD PRIMARY KEY (`id`), + ADD KEY `utilization_alerts_rule_id_foreign` (`rule_id`), + ADD KEY `utilization_alerts_user_id_is_read_index` (`user_id`,`is_read`); + +-- +-- Indexes for table `utilization_forecasts` +-- +ALTER TABLE `utilization_forecasts` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `utilization_forecasts_user_id_period_unique` (`user_id`,`period`); + +-- +-- Indexes for table `utilization_rules` +-- +ALTER TABLE `utilization_rules` + ADD PRIMARY KEY (`id`), + ADD KEY `utilization_rules_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `utilization_targets` +-- +ALTER TABLE `utilization_targets` + ADD PRIMARY KEY (`id`), + ADD KEY `utilization_targets_user_id_foreign` (`user_id`), + ADD KEY `utilization_targets_department_id_foreign` (`department_id`), + ADD KEY `utilization_targets_created_by_foreign` (`created_by`); + +-- +-- Indexes for table `vehicles` +-- +ALTER TABLE `vehicles` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `vehicle_invoice` +-- +ALTER TABLE `vehicle_invoice` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `vehicle_types` +-- +ALTER TABLE `vehicle_types` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `vendors` +-- +ALTER TABLE `vendors` + ADD PRIMARY KEY (`id`), + ADD KEY `vendors_user_id_index` (`user_id`), + ADD KEY `vendors_creator_id_index` (`creator_id`), + ADD KEY `vendors_created_by_index` (`created_by`); + +-- +-- Indexes for table `vendor_payments` +-- +ALTER TABLE `vendor_payments` + ADD PRIMARY KEY (`id`), + ADD KEY `vendor_payments_vendor_id_foreign` (`vendor_id`), + ADD KEY `vendor_payments_bank_account_id_foreign` (`bank_account_id`), + ADD KEY `vendor_payments_creator_id_index` (`creator_id`), + ADD KEY `vendor_payments_created_by_index` (`created_by`); + +-- +-- Indexes for table `vendor_payment_allocations` +-- +ALTER TABLE `vendor_payment_allocations` + ADD PRIMARY KEY (`id`), + ADD KEY `vendor_payment_allocations_payment_id_foreign` (`payment_id`), + ADD KEY `vendor_payment_allocations_invoice_id_foreign` (`invoice_id`); + +-- +-- Indexes for table `warehouses` +-- +ALTER TABLE `warehouses` + ADD PRIMARY KEY (`id`), + ADD KEY `warehouses_creator_id_index` (`creator_id`), + ADD KEY `warehouses_created_by_index` (`created_by`); + +-- +-- Indexes for table `warehouse_receipts` +-- +ALTER TABLE `warehouse_receipts` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `warehouse_receipt_items` +-- +ALTER TABLE `warehouse_receipt_items` + ADD PRIMARY KEY (`id`), + ADD KEY `warehouse_receipt_items_receipt_id_foreign` (`receipt_id`); + +-- +-- Indexes for table `warehouse_stocks` +-- +ALTER TABLE `warehouse_stocks` + ADD PRIMARY KEY (`id`), + ADD KEY `warehouse_stocks_product_id_foreign` (`product_id`), + ADD KEY `warehouse_stocks_warehouse_id_foreign` (`warehouse_id`); + +-- +-- Indexes for table `warehouse_stock_movements` +-- +ALTER TABLE `warehouse_stock_movements` + ADD PRIMARY KEY (`id`), + ADD KEY `warehouse_stock_movements_reference_type_reference_id_index` (`reference_type`,`reference_id`); + +-- +-- Indexes for table `warehouse_transfers` +-- +ALTER TABLE `warehouse_transfers` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `warehouse_transfer_items` +-- +ALTER TABLE `warehouse_transfer_items` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `warnings` +-- +ALTER TABLE `warnings` + ADD PRIMARY KEY (`id`), + ADD KEY `warnings_warning_type_id_foreign` (`warning_type_id`), + ADD KEY `warnings_employee_id_foreign` (`employee_id`), + ADD KEY `warnings_warning_by_foreign` (`warning_by`), + ADD KEY `warnings_creator_id_index` (`creator_id`), + ADD KEY `warnings_created_by_index` (`created_by`); + +-- +-- Indexes for table `warning_types` +-- +ALTER TABLE `warning_types` + ADD PRIMARY KEY (`id`), + ADD KEY `warning_types_creator_id_index` (`creator_id`), + ADD KEY `warning_types_created_by_index` (`created_by`); + +-- +-- Indexes for table `work_spaces` +-- +ALTER TABLE `work_spaces` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `work_spaces_slug_unique` (`slug`); + +-- +-- AUTO_INCREMENT for dumped tables +-- + +-- +-- AUTO_INCREMENT for table `account_categories` +-- +ALTER TABLE `account_categories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `account_types` +-- +ALTER TABLE `account_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `acknowledgments` +-- +ALTER TABLE `acknowledgments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `activity_log` +-- +ALTER TABLE `activity_log` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=114; + +-- +-- AUTO_INCREMENT for table `add_ons` +-- +ALTER TABLE `add_ons` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; + +-- +-- AUTO_INCREMENT for table `ai_forecasts` +-- +ALTER TABLE `ai_forecasts` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `ai_forecast_history` +-- +ALTER TABLE `ai_forecast_history` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `ai_prompt_histories` +-- +ALTER TABLE `ai_prompt_histories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `ai_prompt_responses` +-- +ALTER TABLE `ai_prompt_responses` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `ai_templates` +-- +ALTER TABLE `ai_templates` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=100; + +-- +-- AUTO_INCREMENT for table `ai_template_categories` +-- +ALTER TABLE `ai_template_categories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; + +-- +-- AUTO_INCREMENT for table `ai_template_languages` +-- +ALTER TABLE `ai_template_languages` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; + +-- +-- AUTO_INCREMENT for table `ai_template_prompts` +-- +ALTER TABLE `ai_template_prompts` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3781; + +-- +-- AUTO_INCREMENT for table `allowances` +-- +ALTER TABLE `allowances` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; + +-- +-- AUTO_INCREMENT for table `allowance_types` +-- +ALTER TABLE `allowance_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `announcements` +-- +ALTER TABLE `announcements` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `announcement_categories` +-- +ALTER TABLE `announcement_categories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `announcement_departments` +-- +ALTER TABLE `announcement_departments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=66; + +-- +-- AUTO_INCREMENT for table `apikey_setiings` +-- +ALTER TABLE `apikey_setiings` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `assistant_templates` +-- +ALTER TABLE `assistant_templates` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `attendances` +-- +ALTER TABLE `attendances` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=852; + +-- +-- AUTO_INCREMENT for table `attendance_logs` +-- +ALTER TABLE `attendance_logs` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=188; + +-- +-- AUTO_INCREMENT for table `awards` +-- +ALTER TABLE `awards` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `award_types` +-- +ALTER TABLE `award_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; + +-- +-- AUTO_INCREMENT for table `bank_accounts` +-- +ALTER TABLE `bank_accounts` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `bank_transactions` +-- +ALTER TABLE `bank_transactions` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `bank_transfers` +-- +ALTER TABLE `bank_transfers` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `bank_transfer_payments` +-- +ALTER TABLE `bank_transfer_payments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; + +-- +-- AUTO_INCREMENT for table `bookings` +-- +ALTER TABLE `bookings` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `bookings_appointments` +-- +ALTER TABLE `bookings_appointments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `bookings_business_hours` +-- +ALTER TABLE `bookings_business_hours` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `bookings_customers` +-- +ALTER TABLE `bookings_customers` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `bookings_duration` +-- +ALTER TABLE `bookings_duration` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `bookings_extra_services` +-- +ALTER TABLE `bookings_extra_services` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `bookings_packages` +-- +ALTER TABLE `bookings_packages` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `bookings_staff` +-- +ALTER TABLE `bookings_staff` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `branches` +-- +ALTER TABLE `branches` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `bug_comments` +-- +ALTER TABLE `bug_comments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=81; + +-- +-- AUTO_INCREMENT for table `bug_stages` +-- +ALTER TABLE `bug_stages` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `certifications` +-- +ALTER TABLE `certifications` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `certification_renewals` +-- +ALTER TABLE `certification_renewals` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `chart_of_accounts` +-- +ALTER TABLE `chart_of_accounts` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=113; + +-- +-- AUTO_INCREMENT for table `ch_favorites` +-- +ALTER TABLE `ch_favorites` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; + +-- +-- AUTO_INCREMENT for table `ch_messages` +-- +ALTER TABLE `ch_messages` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=81; + +-- +-- AUTO_INCREMENT for table `ch_pinned` +-- +ALTER TABLE `ch_pinned` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `client_deals` +-- +ALTER TABLE `client_deals` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; + +-- +-- AUTO_INCREMENT for table `client_permissions` +-- +ALTER TABLE `client_permissions` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `complaints` +-- +ALTER TABLE `complaints` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `complaint_types` +-- +ALTER TABLE `complaint_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `cost_rates` +-- +ALTER TABLE `cost_rates` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `coupons` +-- +ALTER TABLE `coupons` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; + +-- +-- AUTO_INCREMENT for table `credit_notes` +-- +ALTER TABLE `credit_notes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; + +-- +-- AUTO_INCREMENT for table `credit_note_applications` +-- +ALTER TABLE `credit_note_applications` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `credit_note_items` +-- +ALTER TABLE `credit_note_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; + +-- +-- AUTO_INCREMENT for table `credit_note_item_taxes` +-- +ALTER TABLE `credit_note_item_taxes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `customers` +-- +ALTER TABLE `customers` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; + +-- +-- AUTO_INCREMENT for table `customer_payments` +-- +ALTER TABLE `customer_payments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `customer_payment_allocations` +-- +ALTER TABLE `customer_payment_allocations` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `custom_fields` +-- +ALTER TABLE `custom_fields` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `custom_fields_module_list` +-- +ALTER TABLE `custom_fields_module_list` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `custom_field_values` +-- +ALTER TABLE `custom_field_values` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `custom_pages` +-- +ALTER TABLE `custom_pages` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `deals` +-- +ALTER TABLE `deals` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; + +-- +-- AUTO_INCREMENT for table `deal_activity_logs` +-- +ALTER TABLE `deal_activity_logs` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=214; + +-- +-- AUTO_INCREMENT for table `deal_calls` +-- +ALTER TABLE `deal_calls` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; + +-- +-- AUTO_INCREMENT for table `deal_discussions` +-- +ALTER TABLE `deal_discussions` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=141; + +-- +-- AUTO_INCREMENT for table `deal_emails` +-- +ALTER TABLE `deal_emails` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=137; + +-- +-- AUTO_INCREMENT for table `deal_files` +-- +ALTER TABLE `deal_files` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=113; + +-- +-- AUTO_INCREMENT for table `deal_stages` +-- +ALTER TABLE `deal_stages` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; + +-- +-- AUTO_INCREMENT for table `deal_tasks` +-- +ALTER TABLE `deal_tasks` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28; + +-- +-- AUTO_INCREMENT for table `debit_notes` +-- +ALTER TABLE `debit_notes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `debit_note_applications` +-- +ALTER TABLE `debit_note_applications` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `debit_note_items` +-- +ALTER TABLE `debit_note_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `debit_note_item_taxes` +-- +ALTER TABLE `debit_note_item_taxes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `deductions` +-- +ALTER TABLE `deductions` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; + +-- +-- AUTO_INCREMENT for table `deduction_types` +-- +ALTER TABLE `deduction_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `departments` +-- +ALTER TABLE `departments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35; + +-- +-- AUTO_INCREMENT for table `designations` +-- +ALTER TABLE `designations` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=153; + +-- +-- AUTO_INCREMENT for table `document` +-- +ALTER TABLE `document` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `documents_types` +-- +ALTER TABLE `documents_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `document_attechments` +-- +ALTER TABLE `document_attechments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `document_categories` +-- +ALTER TABLE `document_categories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; + +-- +-- AUTO_INCREMENT for table `document_comments` +-- +ALTER TABLE `document_comments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `document_notes` +-- +ALTER TABLE `document_notes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `drivers` +-- +ALTER TABLE `drivers` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `driver_attechments` +-- +ALTER TABLE `driver_attechments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `email_templates` +-- +ALTER TABLE `email_templates` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; + +-- +-- AUTO_INCREMENT for table `email_template_langs` +-- +ALTER TABLE `email_template_langs` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=229; + +-- +-- AUTO_INCREMENT for table `employees` +-- +ALTER TABLE `employees` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35; + +-- +-- AUTO_INCREMENT for table `employee_certifications` +-- +ALTER TABLE `employee_certifications` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `employee_documents` +-- +ALTER TABLE `employee_documents` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; + +-- +-- AUTO_INCREMENT for table `employee_document_types` +-- +ALTER TABLE `employee_document_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `employee_salary_items` +-- +ALTER TABLE `employee_salary_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=71; + +-- +-- AUTO_INCREMENT for table `employee_salary_structures` +-- +ALTER TABLE `employee_salary_structures` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; + +-- +-- AUTO_INCREMENT for table `employee_skills` +-- +ALTER TABLE `employee_skills` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `employee_transfers` +-- +ALTER TABLE `employee_transfers` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `engagements` +-- +ALTER TABLE `engagements` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `engagement_assignments` +-- +ALTER TABLE `engagement_assignments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `engagement_forecasts` +-- +ALTER TABLE `engagement_forecasts` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `engagement_roles` +-- +ALTER TABLE `engagement_roles` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `engagement_schedules` +-- +ALTER TABLE `engagement_schedules` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `engagement_templates` +-- +ALTER TABLE `engagement_templates` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `events` +-- +ALTER TABLE `events` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37; + +-- +-- AUTO_INCREMENT for table `event_departments` +-- +ALTER TABLE `event_departments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=81; + +-- +-- AUTO_INCREMENT for table `event_types` +-- +ALTER TABLE `event_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26; + +-- +-- AUTO_INCREMENT for table `expenses` +-- +ALTER TABLE `expenses` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `expense_categories` +-- +ALTER TABLE `expense_categories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `failed_jobs` +-- +ALTER TABLE `failed_jobs` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `fleet_customers` +-- +ALTER TABLE `fleet_customers` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `fleet_logbooks` +-- +ALTER TABLE `fleet_logbooks` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `fleet_payments` +-- +ALTER TABLE `fleet_payments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `fuels` +-- +ALTER TABLE `fuels` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `fuel_types` +-- +ALTER TABLE `fuel_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `helpdesk_categories` +-- +ALTER TABLE `helpdesk_categories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `helpdesk_replies` +-- +ALTER TABLE `helpdesk_replies` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=76; + +-- +-- AUTO_INCREMENT for table `helpdesk_tickets` +-- +ALTER TABLE `helpdesk_tickets` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; + +-- +-- AUTO_INCREMENT for table `holidays` +-- +ALTER TABLE `holidays` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `holiday_types` +-- +ALTER TABLE `holiday_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; + +-- +-- AUTO_INCREMENT for table `hospital_ambulances` +-- +ALTER TABLE `hospital_ambulances` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; + +-- +-- AUTO_INCREMENT for table `hospital_ambulance_calls` +-- +ALTER TABLE `hospital_ambulance_calls` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `hospital_appointments` +-- +ALTER TABLE `hospital_appointments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; + +-- +-- AUTO_INCREMENT for table `hospital_beds` +-- +ALTER TABLE `hospital_beds` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; + +-- +-- AUTO_INCREMENT for table `hospital_doctors` +-- +ALTER TABLE `hospital_doctors` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; + +-- +-- AUTO_INCREMENT for table `hospital_lab_tests` +-- +ALTER TABLE `hospital_lab_tests` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; + +-- +-- AUTO_INCREMENT for table `hospital_medical_records` +-- +ALTER TABLE `hospital_medical_records` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `hospital_medicines` +-- +ALTER TABLE `hospital_medicines` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `hospital_patients` +-- +ALTER TABLE `hospital_patients` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `hospital_surgeries` +-- +ALTER TABLE `hospital_surgeries` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; + +-- +-- AUTO_INCREMENT for table `hospital_visitors` +-- +ALTER TABLE `hospital_visitors` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `hospital_wards` +-- +ALTER TABLE `hospital_wards` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; + +-- +-- AUTO_INCREMENT for table `hrm_documents` +-- +ALTER TABLE `hrm_documents` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `insurances` +-- +ALTER TABLE `insurances` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `insurance_booking` +-- +ALTER TABLE `insurance_booking` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `ip_restricts` +-- +ALTER TABLE `ip_restricts` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; + +-- +-- AUTO_INCREMENT for table `jobs` +-- +ALTER TABLE `jobs` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `journal_entries` +-- +ALTER TABLE `journal_entries` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; + +-- +-- AUTO_INCREMENT for table `journal_entry_items` +-- +ALTER TABLE `journal_entry_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `journal_items` +-- +ALTER TABLE `journal_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; + +-- +-- AUTO_INCREMENT for table `labels` +-- +ALTER TABLE `labels` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `landing_page_settings` +-- +ALTER TABLE `landing_page_settings` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `leads` +-- +ALTER TABLE `leads` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; + +-- +-- AUTO_INCREMENT for table `lead_activity_logs` +-- +ALTER TABLE `lead_activity_logs` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=253; + +-- +-- AUTO_INCREMENT for table `lead_calls` +-- +ALTER TABLE `lead_calls` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; + +-- +-- AUTO_INCREMENT for table `lead_discussions` +-- +ALTER TABLE `lead_discussions` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=115; + +-- +-- AUTO_INCREMENT for table `lead_emails` +-- +ALTER TABLE `lead_emails` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=117; + +-- +-- AUTO_INCREMENT for table `lead_files` +-- +ALTER TABLE `lead_files` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=106; + +-- +-- AUTO_INCREMENT for table `lead_stages` +-- +ALTER TABLE `lead_stages` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; + +-- +-- AUTO_INCREMENT for table `lead_tasks` +-- +ALTER TABLE `lead_tasks` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44; + +-- +-- AUTO_INCREMENT for table `leave_applications` +-- +ALTER TABLE `leave_applications` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=202; + +-- +-- AUTO_INCREMENT for table `leave_types` +-- +ALTER TABLE `leave_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; + +-- +-- AUTO_INCREMENT for table `licenses` +-- +ALTER TABLE `licenses` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `loans` +-- +ALTER TABLE `loans` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; + +-- +-- AUTO_INCREMENT for table `loan_types` +-- +ALTER TABLE `loan_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `login_histories` +-- +ALTER TABLE `login_histories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; + +-- +-- AUTO_INCREMENT for table `maintenances` +-- +ALTER TABLE `maintenances` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `maintenance_types` +-- +ALTER TABLE `maintenance_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `marketplace_settings` +-- +ALTER TABLE `marketplace_settings` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; + +-- +-- AUTO_INCREMENT for table `media` +-- +ALTER TABLE `media` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; + +-- +-- AUTO_INCREMENT for table `media_directories` +-- +ALTER TABLE `media_directories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; + +-- +-- AUTO_INCREMENT for table `mfg_accounting_maps` +-- +ALTER TABLE `mfg_accounting_maps` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_coils` +-- +ALTER TABLE `mfg_coils` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_finished_goods` +-- +ALTER TABLE `mfg_finished_goods` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_items` +-- +ALTER TABLE `mfg_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_job_orders` +-- +ALTER TABLE `mfg_job_orders` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_machines` +-- +ALTER TABLE `mfg_machines` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_production_outputs` +-- +ALTER TABLE `mfg_production_outputs` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_production_runs` +-- +ALTER TABLE `mfg_production_runs` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_profiles` +-- +ALTER TABLE `mfg_profiles` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_remnants` +-- +ALTER TABLE `mfg_remnants` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_sales_orders` +-- +ALTER TABLE `mfg_sales_orders` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_sales_order_items` +-- +ALTER TABLE `mfg_sales_order_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `mfg_stock_movements` +-- +ALTER TABLE `mfg_stock_movements` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `migrations` +-- +ALTER TABLE `migrations` + MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=298; + +-- +-- AUTO_INCREMENT for table `newsletter_subscribers` +-- +ALTER TABLE `newsletter_subscribers` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `notifications` +-- +ALTER TABLE `notifications` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; + +-- +-- AUTO_INCREMENT for table `notification_template_langs` +-- +ALTER TABLE `notification_template_langs` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `opening_balances` +-- +ALTER TABLE `opening_balances` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `orders` +-- +ALTER TABLE `orders` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=140; + +-- +-- AUTO_INCREMENT for table `overtimes` +-- +ALTER TABLE `overtimes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `payrolls` +-- +ALTER TABLE `payrolls` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; + +-- +-- AUTO_INCREMENT for table `payroll_entries` +-- +ALTER TABLE `payroll_entries` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `payroll_entry_adjustments` +-- +ALTER TABLE `payroll_entry_adjustments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `payroll_settings` +-- +ALTER TABLE `payroll_settings` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; + +-- +-- AUTO_INCREMENT for table `pay_groups` +-- +ALTER TABLE `pay_groups` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; + +-- +-- AUTO_INCREMENT for table `permissions` +-- +ALTER TABLE `permissions` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=889; + +-- +-- AUTO_INCREMENT for table `personal_access_tokens` +-- +ALTER TABLE `personal_access_tokens` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `pipelines` +-- +ALTER TABLE `pipelines` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; + +-- +-- AUTO_INCREMENT for table `plans` +-- +ALTER TABLE `plans` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; + +-- +-- AUTO_INCREMENT for table `pm_amenities` +-- +ALTER TABLE `pm_amenities` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37; + +-- +-- AUTO_INCREMENT for table `pm_amenity_types` +-- +ALTER TABLE `pm_amenity_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=85; + +-- +-- AUTO_INCREMENT for table `pm_area_types` +-- +ALTER TABLE `pm_area_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; + +-- +-- AUTO_INCREMENT for table `pm_energy_efficiency_types` +-- +ALTER TABLE `pm_energy_efficiency_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; + +-- +-- AUTO_INCREMENT for table `pm_expense_links` +-- +ALTER TABLE `pm_expense_links` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `pm_invoice_links` +-- +ALTER TABLE `pm_invoice_links` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `pm_leases` +-- +ALTER TABLE `pm_leases` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; + +-- +-- AUTO_INCREMENT for table `pm_maintenance_files` +-- +ALTER TABLE `pm_maintenance_files` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; + +-- +-- AUTO_INCREMENT for table `pm_maintenance_requests` +-- +ALTER TABLE `pm_maintenance_requests` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; + +-- +-- AUTO_INCREMENT for table `pm_messages` +-- +ALTER TABLE `pm_messages` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; + +-- +-- AUTO_INCREMENT for table `pm_ownership_types` +-- +ALTER TABLE `pm_ownership_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36; + +-- +-- AUTO_INCREMENT for table `pm_properties` +-- +ALTER TABLE `pm_properties` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51; + +-- +-- AUTO_INCREMENT for table `pm_property_assignments` +-- +ALTER TABLE `pm_property_assignments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `pm_property_attachments` +-- +ALTER TABLE `pm_property_attachments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `pm_property_audits` +-- +ALTER TABLE `pm_property_audits` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `pm_property_categories` +-- +ALTER TABLE `pm_property_categories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43; + +-- +-- AUTO_INCREMENT for table `pm_property_events` +-- +ALTER TABLE `pm_property_events` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `pm_property_history` +-- +ALTER TABLE `pm_property_history` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `pm_property_images` +-- +ALTER TABLE `pm_property_images` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `pm_property_notes` +-- +ALTER TABLE `pm_property_notes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `pos` +-- +ALTER TABLE `pos` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=91; + +-- +-- AUTO_INCREMENT for table `pos_items` +-- +ALTER TABLE `pos_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=234; + +-- +-- AUTO_INCREMENT for table `pos_payments` +-- +ALTER TABLE `pos_payments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=91; + +-- +-- AUTO_INCREMENT for table `product_service_categories` +-- +ALTER TABLE `product_service_categories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `product_service_items` +-- +ALTER TABLE `product_service_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=89; + +-- +-- AUTO_INCREMENT for table `product_service_taxes` +-- +ALTER TABLE `product_service_taxes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; + +-- +-- AUTO_INCREMENT for table `product_service_units` +-- +ALTER TABLE `product_service_units` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=145; + +-- +-- AUTO_INCREMENT for table `projects` +-- +ALTER TABLE `projects` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; + +-- +-- AUTO_INCREMENT for table `project_activity_logs` +-- +ALTER TABLE `project_activity_logs` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=349; + +-- +-- AUTO_INCREMENT for table `project_bugs` +-- +ALTER TABLE `project_bugs` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54; + +-- +-- AUTO_INCREMENT for table `project_clients` +-- +ALTER TABLE `project_clients` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; + +-- +-- AUTO_INCREMENT for table `project_files` +-- +ALTER TABLE `project_files` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=72; + +-- +-- AUTO_INCREMENT for table `project_milestones` +-- +ALTER TABLE `project_milestones` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=81; + +-- +-- AUTO_INCREMENT for table `project_tasks` +-- +ALTER TABLE `project_tasks` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=165; + +-- +-- AUTO_INCREMENT for table `project_users` +-- +ALTER TABLE `project_users` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47; + +-- +-- AUTO_INCREMENT for table `promotions` +-- +ALTER TABLE `promotions` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `purchase_invoices` +-- +ALTER TABLE `purchase_invoices` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62; + +-- +-- AUTO_INCREMENT for table `purchase_invoice_items` +-- +ALTER TABLE `purchase_invoice_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=78; + +-- +-- AUTO_INCREMENT for table `purchase_invoice_item_taxes` +-- +ALTER TABLE `purchase_invoice_item_taxes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `purchase_returns` +-- +ALTER TABLE `purchase_returns` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `purchase_return_items` +-- +ALTER TABLE `purchase_return_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `purchase_return_item_taxes` +-- +ALTER TABLE `purchase_return_item_taxes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `recurrings` +-- +ALTER TABLE `recurrings` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `resignations` +-- +ALTER TABLE `resignations` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `revenues` +-- +ALTER TABLE `revenues` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `revenue_categories` +-- +ALTER TABLE `revenue_categories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `review_cycles` +-- +ALTER TABLE `review_cycles` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `roles` +-- +ALTER TABLE `roles` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; + +-- +-- AUTO_INCREMENT for table `salary_components` +-- +ALTER TABLE `salary_components` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; + +-- +-- AUTO_INCREMENT for table `sales_invoices` +-- +ALTER TABLE `sales_invoices` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=61; + +-- +-- AUTO_INCREMENT for table `sales_invoice_items` +-- +ALTER TABLE `sales_invoice_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=77; + +-- +-- AUTO_INCREMENT for table `sales_invoice_item_taxes` +-- +ALTER TABLE `sales_invoice_item_taxes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `sales_invoice_returns` +-- +ALTER TABLE `sales_invoice_returns` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- AUTO_INCREMENT for table `sales_invoice_return_items` +-- +ALTER TABLE `sales_invoice_return_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; + +-- +-- AUTO_INCREMENT for table `sales_invoice_return_item_taxes` +-- +ALTER TABLE `sales_invoice_return_item_taxes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `sales_proposals` +-- +ALTER TABLE `sales_proposals` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; + +-- +-- AUTO_INCREMENT for table `sales_proposal_items` +-- +ALTER TABLE `sales_proposal_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; + +-- +-- AUTO_INCREMENT for table `sales_proposal_item_taxes` +-- +ALTER TABLE `sales_proposal_item_taxes` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `settings` +-- +ALTER TABLE `settings` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=265; + +-- +-- AUTO_INCREMENT for table `shifts` +-- +ALTER TABLE `shifts` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=105; + +-- +-- AUTO_INCREMENT for table `skills` +-- +ALTER TABLE `skills` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `skill_assessments` +-- +ALTER TABLE `skill_assessments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `skill_categories` +-- +ALTER TABLE `skill_categories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; + +-- +-- AUTO_INCREMENT for table `skill_requirements` +-- +ALTER TABLE `skill_requirements` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `skill_reviews` +-- +ALTER TABLE `skill_reviews` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `sources` +-- +ALTER TABLE `sources` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; + +-- +-- AUTO_INCREMENT for table `task_comments` +-- +ALTER TABLE `task_comments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=245; + +-- +-- AUTO_INCREMENT for table `task_stages` +-- +ALTER TABLE `task_stages` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; + +-- +-- AUTO_INCREMENT for table `task_subtasks` +-- +ALTER TABLE `task_subtasks` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=427; + +-- +-- AUTO_INCREMENT for table `terminations` +-- +ALTER TABLE `terminations` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `termination_types` +-- +ALTER TABLE `termination_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; + +-- +-- AUTO_INCREMENT for table `time_entries` +-- +ALTER TABLE `time_entries` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `transfers` +-- +ALTER TABLE `transfers` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `users` +-- +ALTER TABLE `users` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=135; + +-- +-- AUTO_INCREMENT for table `user_active_modules` +-- +ALTER TABLE `user_active_modules` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=114; + +-- +-- AUTO_INCREMENT for table `user_coupons` +-- +ALTER TABLE `user_coupons` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26; + +-- +-- AUTO_INCREMENT for table `user_deals` +-- +ALTER TABLE `user_deals` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64; + +-- +-- AUTO_INCREMENT for table `user_leads` +-- +ALTER TABLE `user_leads` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=104; + +-- +-- AUTO_INCREMENT for table `utilization_alerts` +-- +ALTER TABLE `utilization_alerts` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `utilization_forecasts` +-- +ALTER TABLE `utilization_forecasts` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `utilization_rules` +-- +ALTER TABLE `utilization_rules` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `utilization_targets` +-- +ALTER TABLE `utilization_targets` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `vehicles` +-- +ALTER TABLE `vehicles` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `vehicle_invoice` +-- +ALTER TABLE `vehicle_invoice` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `vehicle_types` +-- +ALTER TABLE `vehicle_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `vendors` +-- +ALTER TABLE `vendors` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; + +-- +-- AUTO_INCREMENT for table `vendor_payments` +-- +ALTER TABLE `vendor_payments` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `vendor_payment_allocations` +-- +ALTER TABLE `vendor_payment_allocations` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `warehouses` +-- +ALTER TABLE `warehouses` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; + +-- +-- AUTO_INCREMENT for table `warehouse_receipts` +-- +ALTER TABLE `warehouse_receipts` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `warehouse_receipt_items` +-- +ALTER TABLE `warehouse_receipt_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `warehouse_stocks` +-- +ALTER TABLE `warehouse_stocks` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=135; + +-- +-- AUTO_INCREMENT for table `warehouse_stock_movements` +-- +ALTER TABLE `warehouse_stock_movements` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; + +-- +-- AUTO_INCREMENT for table `warehouse_transfers` +-- +ALTER TABLE `warehouse_transfers` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `warehouse_transfer_items` +-- +ALTER TABLE `warehouse_transfer_items` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `warnings` +-- +ALTER TABLE `warnings` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; + +-- +-- AUTO_INCREMENT for table `warning_types` +-- +ALTER TABLE `warning_types` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; + +-- +-- AUTO_INCREMENT for table `work_spaces` +-- +ALTER TABLE `work_spaces` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- Constraints for dumped tables +-- + +-- +-- Constraints for table `account_categories` +-- +ALTER TABLE `account_categories` + ADD CONSTRAINT `account_categories_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `account_categories_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `account_types` +-- +ALTER TABLE `account_types` + ADD CONSTRAINT `account_types_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `account_categories` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `account_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `account_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `acknowledgments` +-- +ALTER TABLE `acknowledgments` + ADD CONSTRAINT `acknowledgments_assigned_by_foreign` FOREIGN KEY (`assigned_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `acknowledgments_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `acknowledgments_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `acknowledgments_document_id_foreign` FOREIGN KEY (`document_id`) REFERENCES `hrm_documents` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `acknowledgments_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `ai_forecast_history` +-- +ALTER TABLE `ai_forecast_history` + ADD CONSTRAINT `ai_forecast_history_forecast_id_foreign` FOREIGN KEY (`forecast_id`) REFERENCES `ai_forecasts` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `allowances` +-- +ALTER TABLE `allowances` + ADD CONSTRAINT `allowances_allowance_type_id_foreign` FOREIGN KEY (`allowance_type_id`) REFERENCES `allowance_types` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `allowances_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `allowances_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `allowances_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `allowance_types` +-- +ALTER TABLE `allowance_types` + ADD CONSTRAINT `allowance_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `allowance_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `announcements` +-- +ALTER TABLE `announcements` + ADD CONSTRAINT `announcements_announcement_category_id_foreign` FOREIGN KEY (`announcement_category_id`) REFERENCES `announcement_categories` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `announcements_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `announcements_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `announcements_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `announcement_categories` +-- +ALTER TABLE `announcement_categories` + ADD CONSTRAINT `announcement_categories_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `announcement_categories_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `announcement_departments` +-- +ALTER TABLE `announcement_departments` + ADD CONSTRAINT `announcement_departments_announcement_id_foreign` FOREIGN KEY (`announcement_id`) REFERENCES `announcements` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `announcement_departments_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `announcement_departments_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `announcement_departments_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `attendances` +-- +ALTER TABLE `attendances` + ADD CONSTRAINT `attendances_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `attendances_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `attendances_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `attendances_shift_id_foreign` FOREIGN KEY (`shift_id`) REFERENCES `shifts` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `attendance_logs` +-- +ALTER TABLE `attendance_logs` + ADD CONSTRAINT `attendance_logs_attendance_id_foreign` FOREIGN KEY (`attendance_id`) REFERENCES `attendances` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `attendance_logs_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `attendance_logs_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `attendance_logs_shift_id_foreign` FOREIGN KEY (`shift_id`) REFERENCES `shifts` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `attendance_logs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `awards` +-- +ALTER TABLE `awards` + ADD CONSTRAINT `awards_award_type_id_foreign` FOREIGN KEY (`award_type_id`) REFERENCES `award_types` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `awards_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `awards_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `awards_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `award_types` +-- +ALTER TABLE `award_types` + ADD CONSTRAINT `award_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `award_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `bank_accounts` +-- +ALTER TABLE `bank_accounts` + ADD CONSTRAINT `bank_accounts_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `bank_accounts_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `bank_accounts_gl_account_id_foreign` FOREIGN KEY (`gl_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `bank_transactions` +-- +ALTER TABLE `bank_transactions` + ADD CONSTRAINT `bank_transactions_bank_account_id_foreign` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `bank_transactions_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `bank_transfers` +-- +ALTER TABLE `bank_transfers` + ADD CONSTRAINT `bank_transfers_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `bank_transfers_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `bank_transfers_from_account_id_foreign` FOREIGN KEY (`from_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `bank_transfers_journal_entry_id_foreign` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `bank_transfers_to_account_id_foreign` FOREIGN KEY (`to_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `bank_transfer_payments` +-- +ALTER TABLE `bank_transfer_payments` + ADD CONSTRAINT `bank_transfer_payments_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `bank_transfer_payments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `branches` +-- +ALTER TABLE `branches` + ADD CONSTRAINT `branches_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `branches_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `bug_comments` +-- +ALTER TABLE `bug_comments` + ADD CONSTRAINT `bug_comments_bug_id_foreign` FOREIGN KEY (`bug_id`) REFERENCES `project_bugs` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `bug_comments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `bug_stages` +-- +ALTER TABLE `bug_stages` + ADD CONSTRAINT `bug_stages_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `bug_stages_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `certifications` +-- +ALTER TABLE `certifications` + ADD CONSTRAINT `certifications_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `certification_renewals` +-- +ALTER TABLE `certification_renewals` + ADD CONSTRAINT `certification_renewals_employee_certification_id_foreign` FOREIGN KEY (`employee_certification_id`) REFERENCES `employee_certifications` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `certification_renewals_renewed_by_foreign` FOREIGN KEY (`renewed_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `chart_of_accounts` +-- +ALTER TABLE `chart_of_accounts` + ADD CONSTRAINT `chart_of_accounts_account_type_id_foreign` FOREIGN KEY (`account_type_id`) REFERENCES `account_types` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `chart_of_accounts_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `chart_of_accounts_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `chart_of_accounts_parent_account_id_foreign` FOREIGN KEY (`parent_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `ch_pinned` +-- +ALTER TABLE `ch_pinned` + ADD CONSTRAINT `ch_pinned_pinned_id_foreign` FOREIGN KEY (`pinned_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `ch_pinned_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `client_deals` +-- +ALTER TABLE `client_deals` + ADD CONSTRAINT `client_deals_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `client_deals_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `client_permissions` +-- +ALTER TABLE `client_permissions` + ADD CONSTRAINT `client_permissions_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `client_permissions_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `complaints` +-- +ALTER TABLE `complaints` + ADD CONSTRAINT `complaints_against_employee_id_foreign` FOREIGN KEY (`against_employee_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `complaints_complaint_type_id_foreign` FOREIGN KEY (`complaint_type_id`) REFERENCES `complaint_types` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `complaints_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `complaints_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `complaints_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `complaints_resolved_by_foreign` FOREIGN KEY (`resolved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `complaint_types` +-- +ALTER TABLE `complaint_types` + ADD CONSTRAINT `complaint_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `complaint_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `cost_rates` +-- +ALTER TABLE `cost_rates` + ADD CONSTRAINT `cost_rates_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `cost_rates_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `coupons` +-- +ALTER TABLE `coupons` + ADD CONSTRAINT `coupons_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `credit_notes` +-- +ALTER TABLE `credit_notes` + ADD CONSTRAINT `credit_notes_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `credit_notes_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `credit_notes_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `credit_notes_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `credit_notes_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `sales_invoices` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `credit_notes_return_id_foreign` FOREIGN KEY (`return_id`) REFERENCES `sales_invoice_returns` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `credit_note_applications` +-- +ALTER TABLE `credit_note_applications` + ADD CONSTRAINT `credit_note_applications_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `credit_note_applications_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `credit_note_applications_credit_note_id_foreign` FOREIGN KEY (`credit_note_id`) REFERENCES `credit_notes` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `credit_note_applications_payment_id_foreign` FOREIGN KEY (`payment_id`) REFERENCES `customer_payments` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `credit_note_items` +-- +ALTER TABLE `credit_note_items` + ADD CONSTRAINT `credit_note_items_credit_note_id_foreign` FOREIGN KEY (`credit_note_id`) REFERENCES `credit_notes` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `credit_note_item_taxes` +-- +ALTER TABLE `credit_note_item_taxes` + ADD CONSTRAINT `credit_note_item_taxes_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `credit_note_items` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `customers` +-- +ALTER TABLE `customers` + ADD CONSTRAINT `customers_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `customers_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `customers_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `customer_payments` +-- +ALTER TABLE `customer_payments` + ADD CONSTRAINT `customer_payments_bank_account_id_foreign` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `customer_payments_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `customer_payments_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `customer_payments_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `customer_payment_allocations` +-- +ALTER TABLE `customer_payment_allocations` + ADD CONSTRAINT `customer_payment_allocations_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `customer_payment_allocations_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `customer_payment_allocations_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `sales_invoices` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `customer_payment_allocations_payment_id_foreign` FOREIGN KEY (`payment_id`) REFERENCES `customer_payments` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `deals` +-- +ALTER TABLE `deals` + ADD CONSTRAINT `deals_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `deals_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `deals_pipeline_id_foreign` FOREIGN KEY (`pipeline_id`) REFERENCES `pipelines` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `deals_stage_id_foreign` FOREIGN KEY (`stage_id`) REFERENCES `deal_stages` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `deal_activity_logs` +-- +ALTER TABLE `deal_activity_logs` + ADD CONSTRAINT `deal_activity_logs_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `deal_activity_logs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `deal_calls` +-- +ALTER TABLE `deal_calls` + ADD CONSTRAINT `deal_calls_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `deal_calls_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `deal_discussions` +-- +ALTER TABLE `deal_discussions` + ADD CONSTRAINT `deal_discussions_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `deal_discussions_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `deal_discussions_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `deal_emails` +-- +ALTER TABLE `deal_emails` + ADD CONSTRAINT `deal_emails_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `deal_files` +-- +ALTER TABLE `deal_files` + ADD CONSTRAINT `deal_files_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `deal_stages` +-- +ALTER TABLE `deal_stages` + ADD CONSTRAINT `deal_stages_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `deal_stages_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `deal_stages_pipeline_id_foreign` FOREIGN KEY (`pipeline_id`) REFERENCES `pipelines` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `deal_tasks` +-- +ALTER TABLE `deal_tasks` + ADD CONSTRAINT `deal_tasks_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `deal_tasks_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`), + ADD CONSTRAINT `deal_tasks_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `debit_notes` +-- +ALTER TABLE `debit_notes` + ADD CONSTRAINT `debit_notes_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `debit_notes_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `debit_notes_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `debit_notes_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `purchase_invoices` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `debit_notes_return_id_foreign` FOREIGN KEY (`return_id`) REFERENCES `purchase_returns` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `debit_notes_vendor_id_foreign` FOREIGN KEY (`vendor_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `debit_note_applications` +-- +ALTER TABLE `debit_note_applications` + ADD CONSTRAINT `debit_note_applications_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `debit_note_applications_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `debit_note_applications_debit_note_id_foreign` FOREIGN KEY (`debit_note_id`) REFERENCES `debit_notes` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `debit_note_applications_payment_id_foreign` FOREIGN KEY (`payment_id`) REFERENCES `vendor_payments` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `debit_note_items` +-- +ALTER TABLE `debit_note_items` + ADD CONSTRAINT `debit_note_items_debit_note_id_foreign` FOREIGN KEY (`debit_note_id`) REFERENCES `debit_notes` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `debit_note_item_taxes` +-- +ALTER TABLE `debit_note_item_taxes` + ADD CONSTRAINT `debit_note_item_taxes_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `debit_note_items` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `deductions` +-- +ALTER TABLE `deductions` + ADD CONSTRAINT `deductions_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `deductions_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `deductions_deduction_type_id_foreign` FOREIGN KEY (`deduction_type_id`) REFERENCES `deduction_types` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `deductions_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `deduction_types` +-- +ALTER TABLE `deduction_types` + ADD CONSTRAINT `deduction_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `deduction_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `departments` +-- +ALTER TABLE `departments` + ADD CONSTRAINT `departments_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `departments_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `departments_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `designations` +-- +ALTER TABLE `designations` + ADD CONSTRAINT `designations_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `designations_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `designations_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `designations_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `document_categories` +-- +ALTER TABLE `document_categories` + ADD CONSTRAINT `document_categories_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `document_categories_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `email_templates` +-- +ALTER TABLE `email_templates` + ADD CONSTRAINT `email_templates_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `email_templates_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `employees` +-- +ALTER TABLE `employees` + ADD CONSTRAINT `employees_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employees_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `employees_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employees_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employees_designation_id_foreign` FOREIGN KEY (`designation_id`) REFERENCES `designations` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employees_shift_foreign` FOREIGN KEY (`shift`) REFERENCES `shifts` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employees_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `employee_certifications` +-- +ALTER TABLE `employee_certifications` + ADD CONSTRAINT `employee_certifications_certification_id_foreign` FOREIGN KEY (`certification_id`) REFERENCES `certifications` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `employee_certifications_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `employee_certifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `employee_certifications_verified_by_foreign` FOREIGN KEY (`verified_by`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `employee_documents` +-- +ALTER TABLE `employee_documents` + ADD CONSTRAINT `employee_documents_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `employee_documents_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employee_documents_document_type_id_foreign` FOREIGN KEY (`document_type_id`) REFERENCES `employee_document_types` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `employee_documents_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `employee_document_types` +-- +ALTER TABLE `employee_document_types` + ADD CONSTRAINT `employee_document_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `employee_document_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `employee_salary_items` +-- +ALTER TABLE `employee_salary_items` + ADD CONSTRAINT `employee_salary_items_salary_component_id_foreign` FOREIGN KEY (`salary_component_id`) REFERENCES `salary_components` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `employee_salary_items_salary_structure_id_foreign` FOREIGN KEY (`salary_structure_id`) REFERENCES `employee_salary_structures` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `employee_salary_structures` +-- +ALTER TABLE `employee_salary_structures` + ADD CONSTRAINT `employee_salary_structures_pay_group_id_foreign` FOREIGN KEY (`pay_group_id`) REFERENCES `pay_groups` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employee_salary_structures_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `employee_skills` +-- +ALTER TABLE `employee_skills` + ADD CONSTRAINT `employee_skills_skill_id_foreign` FOREIGN KEY (`skill_id`) REFERENCES `skills` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `employee_skills_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `employee_transfers` +-- +ALTER TABLE `employee_transfers` + ADD CONSTRAINT `employee_transfers_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employee_transfers_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `employee_transfers_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employee_transfers_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `employee_transfers_from_branch_id_foreign` FOREIGN KEY (`from_branch_id`) REFERENCES `branches` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employee_transfers_from_department_id_foreign` FOREIGN KEY (`from_department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employee_transfers_from_designation_id_foreign` FOREIGN KEY (`from_designation_id`) REFERENCES `designations` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employee_transfers_to_branch_id_foreign` FOREIGN KEY (`to_branch_id`) REFERENCES `branches` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employee_transfers_to_department_id_foreign` FOREIGN KEY (`to_department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `employee_transfers_to_designation_id_foreign` FOREIGN KEY (`to_designation_id`) REFERENCES `designations` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `engagements` +-- +ALTER TABLE `engagements` + ADD CONSTRAINT `engagements_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `engagements_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `engagements_manager_id_foreign` FOREIGN KEY (`manager_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `engagements_partner_id_foreign` FOREIGN KEY (`partner_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `engagements_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `engagement_assignments` +-- +ALTER TABLE `engagement_assignments` + ADD CONSTRAINT `engagement_assignments_assigned_by_foreign` FOREIGN KEY (`assigned_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `engagement_assignments_engagement_role_id_foreign` FOREIGN KEY (`engagement_role_id`) REFERENCES `engagement_roles` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `engagement_assignments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `engagement_forecasts` +-- +ALTER TABLE `engagement_forecasts` + ADD CONSTRAINT `engagement_forecasts_engagement_id_foreign` FOREIGN KEY (`engagement_id`) REFERENCES `engagements` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `engagement_roles` +-- +ALTER TABLE `engagement_roles` + ADD CONSTRAINT `engagement_roles_designation_id_foreign` FOREIGN KEY (`designation_id`) REFERENCES `designations` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `engagement_roles_engagement_id_foreign` FOREIGN KEY (`engagement_id`) REFERENCES `engagements` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `engagement_schedules` +-- +ALTER TABLE `engagement_schedules` + ADD CONSTRAINT `engagement_schedules_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `engagement_schedules_engagement_id_foreign` FOREIGN KEY (`engagement_id`) REFERENCES `engagements` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `engagement_schedules_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `engagement_templates` +-- +ALTER TABLE `engagement_templates` + ADD CONSTRAINT `engagement_templates_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `events` +-- +ALTER TABLE `events` + ADD CONSTRAINT `events_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `events_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `events_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `events_event_type_id_foreign` FOREIGN KEY (`event_type_id`) REFERENCES `event_types` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `event_departments` +-- +ALTER TABLE `event_departments` + ADD CONSTRAINT `event_departments_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `event_departments_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `event_departments_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `event_departments_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `event_types` +-- +ALTER TABLE `event_types` + ADD CONSTRAINT `event_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `event_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `expenses` +-- +ALTER TABLE `expenses` + ADD CONSTRAINT `expenses_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `expenses_bank_account_id_foreign` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `expenses_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `expense_categories` (`id`), + ADD CONSTRAINT `expenses_chart_of_account_id_foreign` FOREIGN KEY (`chart_of_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `expenses_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `expenses_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `expense_categories` +-- +ALTER TABLE `expense_categories` + ADD CONSTRAINT `expense_categories_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `expense_categories_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `expense_categories_gl_account_id_foreign` FOREIGN KEY (`gl_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `helpdesk_categories` +-- +ALTER TABLE `helpdesk_categories` + ADD CONSTRAINT `helpdesk_categories_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `helpdesk_categories_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `helpdesk_replies` +-- +ALTER TABLE `helpdesk_replies` + ADD CONSTRAINT `helpdesk_replies_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `helpdesk_replies_ticket_id_foreign` FOREIGN KEY (`ticket_id`) REFERENCES `helpdesk_tickets` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `helpdesk_tickets` +-- +ALTER TABLE `helpdesk_tickets` + ADD CONSTRAINT `helpdesk_tickets_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `helpdesk_categories` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `helpdesk_tickets_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `holidays` +-- +ALTER TABLE `holidays` + ADD CONSTRAINT `holidays_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `holidays_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `holidays_holiday_type_id_foreign` FOREIGN KEY (`holiday_type_id`) REFERENCES `holiday_types` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `holiday_types` +-- +ALTER TABLE `holiday_types` + ADD CONSTRAINT `holiday_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `holiday_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `hrm_documents` +-- +ALTER TABLE `hrm_documents` + ADD CONSTRAINT `hrm_documents_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `hrm_documents_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `hrm_documents_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `hrm_documents_document_category_id_foreign` FOREIGN KEY (`document_category_id`) REFERENCES `document_categories` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `hrm_documents_uploaded_by_foreign` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `ip_restricts` +-- +ALTER TABLE `ip_restricts` + ADD CONSTRAINT `ip_restricts_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `ip_restricts_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `journal_entry_items` +-- +ALTER TABLE `journal_entry_items` + ADD CONSTRAINT `journal_entry_items_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `journal_entry_items_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `journal_entry_items_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `journal_entry_items_journal_entry_id_foreign` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `labels` +-- +ALTER TABLE `labels` + ADD CONSTRAINT `labels_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `labels_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `labels_pipeline_id_foreign` FOREIGN KEY (`pipeline_id`) REFERENCES `pipelines` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `leads` +-- +ALTER TABLE `leads` + ADD CONSTRAINT `leads_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `leads_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `leads_pipeline_id_foreign` FOREIGN KEY (`pipeline_id`) REFERENCES `pipelines` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `leads_stage_id_foreign` FOREIGN KEY (`stage_id`) REFERENCES `lead_stages` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `leads_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `lead_activity_logs` +-- +ALTER TABLE `lead_activity_logs` + ADD CONSTRAINT `lead_activity_logs_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `lead_activity_logs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `lead_calls` +-- +ALTER TABLE `lead_calls` + ADD CONSTRAINT `lead_calls_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `lead_calls_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `lead_discussions` +-- +ALTER TABLE `lead_discussions` + ADD CONSTRAINT `lead_discussions_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `lead_discussions_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `lead_discussions_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `lead_emails` +-- +ALTER TABLE `lead_emails` + ADD CONSTRAINT `lead_emails_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `lead_files` +-- +ALTER TABLE `lead_files` + ADD CONSTRAINT `lead_files_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `lead_stages` +-- +ALTER TABLE `lead_stages` + ADD CONSTRAINT `lead_stages_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `lead_stages_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `lead_stages_pipeline_id_foreign` FOREIGN KEY (`pipeline_id`) REFERENCES `pipelines` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `lead_tasks` +-- +ALTER TABLE `lead_tasks` + ADD CONSTRAINT `lead_tasks_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `lead_tasks_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`), + ADD CONSTRAINT `lead_tasks_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `leave_applications` +-- +ALTER TABLE `leave_applications` + ADD CONSTRAINT `leave_applications_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `leave_applications_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `leave_applications_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `leave_applications_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `leave_applications_leave_type_id_foreign` FOREIGN KEY (`leave_type_id`) REFERENCES `leave_types` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `leave_types` +-- +ALTER TABLE `leave_types` + ADD CONSTRAINT `leave_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `leave_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `loans` +-- +ALTER TABLE `loans` + ADD CONSTRAINT `loans_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `loans_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `loans_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `loans_loan_type_id_foreign` FOREIGN KEY (`loan_type_id`) REFERENCES `loan_types` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `loan_types` +-- +ALTER TABLE `loan_types` + ADD CONSTRAINT `loan_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `loan_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `login_histories` +-- +ALTER TABLE `login_histories` + ADD CONSTRAINT `login_histories_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `login_histories_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `media` +-- +ALTER TABLE `media` + ADD CONSTRAINT `media_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `media_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `media_directory_id_foreign` FOREIGN KEY (`directory_id`) REFERENCES `media_directories` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `media_directories` +-- +ALTER TABLE `media_directories` + ADD CONSTRAINT `media_directories_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `media_directories_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `media_directories_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `media_directories` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `mfg_coils` +-- +ALTER TABLE `mfg_coils` + ADD CONSTRAINT `mfg_coils_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `mfg_items` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `mfg_coils_parent_coil_id_foreign` FOREIGN KEY (`parent_coil_id`) REFERENCES `mfg_coils` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `mfg_finished_goods` +-- +ALTER TABLE `mfg_finished_goods` + ADD CONSTRAINT `mfg_finished_goods_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `mfg_items` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `mfg_finished_goods_profile_id_foreign` FOREIGN KEY (`profile_id`) REFERENCES `mfg_profiles` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `mfg_job_orders` +-- +ALTER TABLE `mfg_job_orders` + ADD CONSTRAINT `mfg_job_orders_profile_id_foreign` FOREIGN KEY (`profile_id`) REFERENCES `mfg_profiles` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `mfg_job_orders_sales_order_id_foreign` FOREIGN KEY (`sales_order_id`) REFERENCES `mfg_sales_orders` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `mfg_production_outputs` +-- +ALTER TABLE `mfg_production_outputs` + ADD CONSTRAINT `mfg_production_outputs_finished_good_id_foreign` FOREIGN KEY (`finished_good_id`) REFERENCES `mfg_finished_goods` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `mfg_production_outputs_production_run_id_foreign` FOREIGN KEY (`production_run_id`) REFERENCES `mfg_production_runs` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `mfg_production_outputs_profile_id_foreign` FOREIGN KEY (`profile_id`) REFERENCES `mfg_profiles` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `mfg_production_runs` +-- +ALTER TABLE `mfg_production_runs` + ADD CONSTRAINT `mfg_production_runs_coil_id_foreign` FOREIGN KEY (`coil_id`) REFERENCES `mfg_coils` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `mfg_production_runs_job_order_id_foreign` FOREIGN KEY (`job_order_id`) REFERENCES `mfg_job_orders` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `mfg_production_runs_machine_id_foreign` FOREIGN KEY (`machine_id`) REFERENCES `mfg_machines` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `mfg_remnants` +-- +ALTER TABLE `mfg_remnants` + ADD CONSTRAINT `mfg_remnants_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `mfg_items` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `mfg_remnants_source_coil_id_foreign` FOREIGN KEY (`source_coil_id`) REFERENCES `mfg_coils` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `mfg_sales_order_items` +-- +ALTER TABLE `mfg_sales_order_items` + ADD CONSTRAINT `mfg_sales_order_items_profile_id_foreign` FOREIGN KEY (`profile_id`) REFERENCES `mfg_profiles` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `mfg_sales_order_items_sales_order_id_foreign` FOREIGN KEY (`sales_order_id`) REFERENCES `mfg_sales_orders` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `mfg_sales_order_items_source_coil_id_foreign` FOREIGN KEY (`source_coil_id`) REFERENCES `mfg_coils` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `mfg_stock_movements` +-- +ALTER TABLE `mfg_stock_movements` + ADD CONSTRAINT `mfg_stock_movements_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `mfg_items` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `model_has_permissions` +-- +ALTER TABLE `model_has_permissions` + ADD CONSTRAINT `model_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `model_has_roles` +-- +ALTER TABLE `model_has_roles` + ADD CONSTRAINT `model_has_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `opening_balances` +-- +ALTER TABLE `opening_balances` + ADD CONSTRAINT `opening_balances_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `opening_balances_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `opening_balances_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `orders` +-- +ALTER TABLE `orders` + ADD CONSTRAINT `orders_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `orders_plan_id_foreign` FOREIGN KEY (`plan_id`) REFERENCES `plans` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `overtimes` +-- +ALTER TABLE `overtimes` + ADD CONSTRAINT `overtimes_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `overtimes_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `overtimes_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `payrolls` +-- +ALTER TABLE `payrolls` + ADD CONSTRAINT `payrolls_bank_account_id_foreign` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `payrolls_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `payrolls_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `payroll_entries` +-- +ALTER TABLE `payroll_entries` + ADD CONSTRAINT `payroll_entries_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `payroll_entries_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `payroll_entries_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `payroll_entries_payroll_id_foreign` FOREIGN KEY (`payroll_id`) REFERENCES `payrolls` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `payroll_entry_adjustments` +-- +ALTER TABLE `payroll_entry_adjustments` + ADD CONSTRAINT `payroll_entry_adjustments_added_by_foreign` FOREIGN KEY (`added_by`) REFERENCES `users` (`id`), + ADD CONSTRAINT `payroll_entry_adjustments_payroll_entry_id_foreign` FOREIGN KEY (`payroll_entry_id`) REFERENCES `payroll_entries` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pipelines` +-- +ALTER TABLE `pipelines` + ADD CONSTRAINT `pipelines_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `pipelines_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `plans` +-- +ALTER TABLE `plans` + ADD CONSTRAINT `plans_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pm_amenities` +-- +ALTER TABLE `pm_amenities` + ADD CONSTRAINT `pm_amenities_amenity_type_id_foreign` FOREIGN KEY (`amenity_type_id`) REFERENCES `pm_amenity_types` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pm_leases` +-- +ALTER TABLE `pm_leases` + ADD CONSTRAINT `pm_leases_property_id_foreign` FOREIGN KEY (`property_id`) REFERENCES `pm_properties` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pm_maintenance_files` +-- +ALTER TABLE `pm_maintenance_files` + ADD CONSTRAINT `pm_maintenance_files_maintenance_request_id_foreign` FOREIGN KEY (`maintenance_request_id`) REFERENCES `pm_maintenance_requests` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pm_maintenance_requests` +-- +ALTER TABLE `pm_maintenance_requests` + ADD CONSTRAINT `pm_maintenance_requests_lease_id_foreign` FOREIGN KEY (`lease_id`) REFERENCES `pm_leases` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `pm_maintenance_requests_property_id_foreign` FOREIGN KEY (`property_id`) REFERENCES `pm_properties` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pm_properties` +-- +ALTER TABLE `pm_properties` + ADD CONSTRAINT `pm_properties_area_type_id_foreign` FOREIGN KEY (`area_type_id`) REFERENCES `pm_area_types` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `pm_properties_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `pm_property_categories` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `pm_properties_energy_efficiency_type_id_foreign` FOREIGN KEY (`energy_efficiency_type_id`) REFERENCES `pm_energy_efficiency_types` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `pm_properties_ownership_type_id_foreign` FOREIGN KEY (`ownership_type_id`) REFERENCES `pm_ownership_types` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `pm_property_amenities` +-- +ALTER TABLE `pm_property_amenities` + ADD CONSTRAINT `pm_property_amenities_amenity_id_foreign` FOREIGN KEY (`amenity_id`) REFERENCES `pm_amenities` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `pm_property_amenities_property_id_foreign` FOREIGN KEY (`property_id`) REFERENCES `pm_properties` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pm_property_assignments` +-- +ALTER TABLE `pm_property_assignments` + ADD CONSTRAINT `pm_property_assignments_property_id_foreign` FOREIGN KEY (`property_id`) REFERENCES `pm_properties` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pm_property_events` +-- +ALTER TABLE `pm_property_events` + ADD CONSTRAINT `pm_property_events_property_id_foreign` FOREIGN KEY (`property_id`) REFERENCES `pm_properties` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pm_property_history` +-- +ALTER TABLE `pm_property_history` + ADD CONSTRAINT `pm_property_history_property_id_foreign` FOREIGN KEY (`property_id`) REFERENCES `pm_properties` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pm_property_images` +-- +ALTER TABLE `pm_property_images` + ADD CONSTRAINT `pm_property_images_property_id_foreign` FOREIGN KEY (`property_id`) REFERENCES `pm_properties` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pm_property_leads` +-- +ALTER TABLE `pm_property_leads` + ADD CONSTRAINT `pm_property_leads_property_id_foreign` FOREIGN KEY (`property_id`) REFERENCES `pm_properties` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pos` +-- +ALTER TABLE `pos` + ADD CONSTRAINT `pos_bank_account_id_foreign` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `pos_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `pos_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `pos_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `pos_warehouse_id_foreign` FOREIGN KEY (`warehouse_id`) REFERENCES `warehouses` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pos_items` +-- +ALTER TABLE `pos_items` + ADD CONSTRAINT `pos_items_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `pos_items_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `pos_items_pos_id_foreign` FOREIGN KEY (`pos_id`) REFERENCES `pos` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `pos_items_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `product_service_items` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `pos_payments` +-- +ALTER TABLE `pos_payments` + ADD CONSTRAINT `pos_payments_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `pos_payments_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `pos_payments_pos_id_foreign` FOREIGN KEY (`pos_id`) REFERENCES `pos` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `product_service_categories` +-- +ALTER TABLE `product_service_categories` + ADD CONSTRAINT `product_service_categories_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `product_service_categories_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`); + +-- +-- Constraints for table `product_service_items` +-- +ALTER TABLE `product_service_items` + ADD CONSTRAINT `product_service_items_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `product_service_categories` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `product_service_items_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `product_service_items_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`); + +-- +-- Constraints for table `product_service_taxes` +-- +ALTER TABLE `product_service_taxes` + ADD CONSTRAINT `product_service_taxes_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `product_service_taxes_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`); + +-- +-- Constraints for table `product_service_units` +-- +ALTER TABLE `product_service_units` + ADD CONSTRAINT `product_service_units_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `product_service_units_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`); + +-- +-- Constraints for table `projects` +-- +ALTER TABLE `projects` + ADD CONSTRAINT `projects_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `projects_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `project_bugs` +-- +ALTER TABLE `project_bugs` + ADD CONSTRAINT `project_bugs_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `project_bugs_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `project_bugs_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `project_bugs_stage_id_foreign` FOREIGN KEY (`stage_id`) REFERENCES `bug_stages` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `project_clients` +-- +ALTER TABLE `project_clients` + ADD CONSTRAINT `project_clients_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `project_clients_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `project_files` +-- +ALTER TABLE `project_files` + ADD CONSTRAINT `project_files_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `project_milestones` +-- +ALTER TABLE `project_milestones` + ADD CONSTRAINT `project_milestones_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `project_tasks` +-- +ALTER TABLE `project_tasks` + ADD CONSTRAINT `project_tasks_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `project_tasks_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `project_tasks_milestone_id_foreign` FOREIGN KEY (`milestone_id`) REFERENCES `project_milestones` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `project_tasks_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `project_tasks_stage_id_foreign` FOREIGN KEY (`stage_id`) REFERENCES `task_stages` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `project_users` +-- +ALTER TABLE `project_users` + ADD CONSTRAINT `project_users_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `project_users_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `promotions` +-- +ALTER TABLE `promotions` + ADD CONSTRAINT `promotions_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `promotions_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `promotions_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `promotions_current_branch_id_foreign` FOREIGN KEY (`current_branch_id`) REFERENCES `branches` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `promotions_current_department_id_foreign` FOREIGN KEY (`current_department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `promotions_current_designation_id_foreign` FOREIGN KEY (`current_designation_id`) REFERENCES `designations` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `promotions_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `promotions_previous_branch_id_foreign` FOREIGN KEY (`previous_branch_id`) REFERENCES `branches` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `promotions_previous_department_id_foreign` FOREIGN KEY (`previous_department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `promotions_previous_designation_id_foreign` FOREIGN KEY (`previous_designation_id`) REFERENCES `designations` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `purchase_invoices` +-- +ALTER TABLE `purchase_invoices` + ADD CONSTRAINT `purchase_invoices_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `purchase_invoices_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `purchase_invoices_vendor_id_foreign` FOREIGN KEY (`vendor_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `purchase_invoice_items` +-- +ALTER TABLE `purchase_invoice_items` + ADD CONSTRAINT `purchase_invoice_items_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `purchase_invoices` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `purchase_invoice_item_taxes` +-- +ALTER TABLE `purchase_invoice_item_taxes` + ADD CONSTRAINT `purchase_invoice_item_taxes_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `purchase_invoice_items` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `purchase_returns` +-- +ALTER TABLE `purchase_returns` + ADD CONSTRAINT `purchase_returns_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `purchase_returns_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `purchase_returns_original_invoice_id_foreign` FOREIGN KEY (`original_invoice_id`) REFERENCES `purchase_invoices` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `purchase_returns_vendor_id_foreign` FOREIGN KEY (`vendor_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `purchase_return_items` +-- +ALTER TABLE `purchase_return_items` + ADD CONSTRAINT `purchase_return_items_return_id_foreign` FOREIGN KEY (`return_id`) REFERENCES `purchase_returns` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `purchase_return_item_taxes` +-- +ALTER TABLE `purchase_return_item_taxes` + ADD CONSTRAINT `purchase_return_item_taxes_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `purchase_return_items` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `resignations` +-- +ALTER TABLE `resignations` + ADD CONSTRAINT `resignations_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `resignations_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `resignations_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `resignations_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `revenues` +-- +ALTER TABLE `revenues` + ADD CONSTRAINT `revenues_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `revenues_bank_account_id_foreign` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `revenues_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `revenue_categories` (`id`), + ADD CONSTRAINT `revenues_chart_of_account_id_foreign` FOREIGN KEY (`chart_of_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `revenues_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `revenues_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `revenue_categories` +-- +ALTER TABLE `revenue_categories` + ADD CONSTRAINT `revenue_categories_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `revenue_categories_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `revenue_categories_gl_account_id_foreign` FOREIGN KEY (`gl_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `review_cycles` +-- +ALTER TABLE `review_cycles` + ADD CONSTRAINT `review_cycles_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `roles` +-- +ALTER TABLE `roles` + ADD CONSTRAINT `roles_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `role_has_permissions` +-- +ALTER TABLE `role_has_permissions` + ADD CONSTRAINT `role_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `role_has_permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `sales_invoices` +-- +ALTER TABLE `sales_invoices` + ADD CONSTRAINT `sales_invoices_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `sales_invoices_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `sales_invoices_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `sales_invoice_items` +-- +ALTER TABLE `sales_invoice_items` + ADD CONSTRAINT `sales_invoice_items_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `sales_invoices` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `sales_invoice_item_taxes` +-- +ALTER TABLE `sales_invoice_item_taxes` + ADD CONSTRAINT `sales_invoice_item_taxes_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `sales_invoice_items` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `sales_invoice_returns` +-- +ALTER TABLE `sales_invoice_returns` + ADD CONSTRAINT `sales_invoice_returns_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `sales_invoice_returns_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `sales_invoice_returns_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `sales_invoice_returns_original_invoice_id_foreign` FOREIGN KEY (`original_invoice_id`) REFERENCES `sales_invoices` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `sales_invoice_return_items` +-- +ALTER TABLE `sales_invoice_return_items` + ADD CONSTRAINT `sales_invoice_return_items_return_id_foreign` FOREIGN KEY (`return_id`) REFERENCES `sales_invoice_returns` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `sales_invoice_return_item_taxes` +-- +ALTER TABLE `sales_invoice_return_item_taxes` + ADD CONSTRAINT `sales_invoice_return_item_taxes_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `sales_invoice_return_items` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `sales_proposals` +-- +ALTER TABLE `sales_proposals` + ADD CONSTRAINT `sales_proposals_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `sales_proposals_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `sales_proposals_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `sales_proposals_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `sales_invoices` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `sales_proposal_items` +-- +ALTER TABLE `sales_proposal_items` + ADD CONSTRAINT `sales_proposal_items_proposal_id_foreign` FOREIGN KEY (`proposal_id`) REFERENCES `sales_proposals` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `sales_proposal_item_taxes` +-- +ALTER TABLE `sales_proposal_item_taxes` + ADD CONSTRAINT `sales_proposal_item_taxes_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `sales_proposal_items` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `settings` +-- +ALTER TABLE `settings` + ADD CONSTRAINT `settings_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `shifts` +-- +ALTER TABLE `shifts` + ADD CONSTRAINT `shifts_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `shifts_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `skills` +-- +ALTER TABLE `skills` + ADD CONSTRAINT `skills_skill_category_id_foreign` FOREIGN KEY (`skill_category_id`) REFERENCES `skill_categories` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `skill_assessments` +-- +ALTER TABLE `skill_assessments` + ADD CONSTRAINT `skill_assessments_assessed_by_foreign` FOREIGN KEY (`assessed_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `skill_assessments_skill_id_foreign` FOREIGN KEY (`skill_id`) REFERENCES `skills` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `skill_assessments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `skill_requirements` +-- +ALTER TABLE `skill_requirements` + ADD CONSTRAINT `skill_requirements_skill_id_foreign` FOREIGN KEY (`skill_id`) REFERENCES `skills` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `skill_reviews` +-- +ALTER TABLE `skill_reviews` + ADD CONSTRAINT `skill_reviews_review_cycle_id_foreign` FOREIGN KEY (`review_cycle_id`) REFERENCES `review_cycles` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `skill_reviews_reviewee_id_foreign` FOREIGN KEY (`reviewee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `skill_reviews_reviewer_id_foreign` FOREIGN KEY (`reviewer_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `skill_reviews_skill_id_foreign` FOREIGN KEY (`skill_id`) REFERENCES `skills` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `sources` +-- +ALTER TABLE `sources` + ADD CONSTRAINT `sources_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `sources_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `task_comments` +-- +ALTER TABLE `task_comments` + ADD CONSTRAINT `task_comments_task_id_foreign` FOREIGN KEY (`task_id`) REFERENCES `project_tasks` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `task_comments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `task_stages` +-- +ALTER TABLE `task_stages` + ADD CONSTRAINT `task_stages_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `task_stages_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `task_subtasks` +-- +ALTER TABLE `task_subtasks` + ADD CONSTRAINT `task_subtasks_task_id_foreign` FOREIGN KEY (`task_id`) REFERENCES `project_tasks` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `task_subtasks_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `terminations` +-- +ALTER TABLE `terminations` + ADD CONSTRAINT `terminations_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `terminations_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `terminations_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `terminations_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `terminations_termination_type_id_foreign` FOREIGN KEY (`termination_type_id`) REFERENCES `termination_types` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `termination_types` +-- +ALTER TABLE `termination_types` + ADD CONSTRAINT `termination_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `termination_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `time_entries` +-- +ALTER TABLE `time_entries` + ADD CONSTRAINT `time_entries_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `time_entries_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `time_entries_engagement_id_foreign` FOREIGN KEY (`engagement_id`) REFERENCES `engagements` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `time_entries_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `transfers` +-- +ALTER TABLE `transfers` + ADD CONSTRAINT `transfers_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `transfers_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `transfers_from_warehouse_foreign` FOREIGN KEY (`from_warehouse`) REFERENCES `warehouses` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `transfers_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `product_service_items` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `transfers_to_warehouse_foreign` FOREIGN KEY (`to_warehouse`) REFERENCES `warehouses` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `users` +-- +ALTER TABLE `users` + ADD CONSTRAINT `users_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `users_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `user_active_modules` +-- +ALTER TABLE `user_active_modules` + ADD CONSTRAINT `users_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `user_coupons` +-- +ALTER TABLE `user_coupons` + ADD CONSTRAINT `user_coupons_coupon_id_foreign` FOREIGN KEY (`coupon_id`) REFERENCES `coupons` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `user_coupons_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `user_deals` +-- +ALTER TABLE `user_deals` + ADD CONSTRAINT `user_deals_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `user_deals_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `user_leads` +-- +ALTER TABLE `user_leads` + ADD CONSTRAINT `user_leads_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `user_leads_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `utilization_alerts` +-- +ALTER TABLE `utilization_alerts` + ADD CONSTRAINT `utilization_alerts_rule_id_foreign` FOREIGN KEY (`rule_id`) REFERENCES `utilization_rules` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `utilization_alerts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `utilization_forecasts` +-- +ALTER TABLE `utilization_forecasts` + ADD CONSTRAINT `utilization_forecasts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `utilization_rules` +-- +ALTER TABLE `utilization_rules` + ADD CONSTRAINT `utilization_rules_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `utilization_targets` +-- +ALTER TABLE `utilization_targets` + ADD CONSTRAINT `utilization_targets_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `utilization_targets_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `utilization_targets_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `vendors` +-- +ALTER TABLE `vendors` + ADD CONSTRAINT `vendors_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `vendors_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `vendors_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `vendor_payments` +-- +ALTER TABLE `vendor_payments` + ADD CONSTRAINT `vendor_payments_bank_account_id_foreign` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `vendor_payments_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `vendor_payments_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `vendor_payments_vendor_id_foreign` FOREIGN KEY (`vendor_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `vendor_payment_allocations` +-- +ALTER TABLE `vendor_payment_allocations` + ADD CONSTRAINT `vendor_payment_allocations_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `purchase_invoices` (`id`), + ADD CONSTRAINT `vendor_payment_allocations_payment_id_foreign` FOREIGN KEY (`payment_id`) REFERENCES `vendor_payments` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `warehouses` +-- +ALTER TABLE `warehouses` + ADD CONSTRAINT `warehouses_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `warehouses_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `warehouse_receipt_items` +-- +ALTER TABLE `warehouse_receipt_items` + ADD CONSTRAINT `warehouse_receipt_items_receipt_id_foreign` FOREIGN KEY (`receipt_id`) REFERENCES `warehouse_receipts` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `warehouse_stocks` +-- +ALTER TABLE `warehouse_stocks` + ADD CONSTRAINT `warehouse_stocks_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `product_service_items` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `warehouse_stocks_warehouse_id_foreign` FOREIGN KEY (`warehouse_id`) REFERENCES `warehouses` (`id`) ON DELETE CASCADE; + +-- +-- Constraints for table `warnings` +-- +ALTER TABLE `warnings` + ADD CONSTRAINT `warnings_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `warnings_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `warnings_employee_id_foreign` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `warnings_warning_by_foreign` FOREIGN KEY (`warning_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, + ADD CONSTRAINT `warnings_warning_type_id_foreign` FOREIGN KEY (`warning_type_id`) REFERENCES `warning_types` (`id`) ON DELETE SET NULL; + +-- +-- Constraints for table `warning_types` +-- +ALTER TABLE `warning_types` + ADD CONSTRAINT `warning_types_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE, + ADD CONSTRAINT `warning_types_creator_id_foreign` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; +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 */; diff --git a/packages/workdo/AIDocument/AIDocument.zip b/packages/workdo/AIDocument/AIDocument.zip deleted file mode 100755 index 1bf582f..0000000 Binary files a/packages/workdo/AIDocument/AIDocument.zip and /dev/null differ diff --git a/packages/workdo/AIDocument/composer.json b/packages/workdo/AIDocument/composer.json deleted file mode 100755 index b4bafcc..0000000 --- a/packages/workdo/AIDocument/composer.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "workdo/aidocument", - "description": "Description for aidocument package", - "type": "library", - "license": "MIT", - "require": { - "orhanerday/open-ai": "4.8" - }, - "autoload": { - "psr-4": { - "Workdo\\AIDocument\\": "src/" - } - }, - "authors": [ - { - "name": "WorkDo", - "email": "support@workdo.io" - } - ], - "extra": { - "laravel": { - "providers": [ - "Workdo\\AIDocument\\Providers\\AIDocumentServiceProvider" - ] - } - } -} diff --git a/packages/workdo/AIDocument/favicon.png b/packages/workdo/AIDocument/favicon.png deleted file mode 100755 index fd6f116..0000000 Binary files a/packages/workdo/AIDocument/favicon.png and /dev/null differ diff --git a/packages/workdo/AIDocument/module.json b/packages/workdo/AIDocument/module.json deleted file mode 100755 index ced3dc0..0000000 --- a/packages/workdo/AIDocument/module.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "AIDocument", - "alias": "AI Document", - "description": "", - "priority": 410, - "version": 3.5, - "monthly_price": 0, - "yearly_price": 0, - "package_name": "aidocument" -} diff --git a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_043700_create_ai_templates_table.php b/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_043700_create_ai_templates_table.php deleted file mode 100755 index 50aabc0..0000000 --- a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_043700_create_ai_templates_table.php +++ /dev/null @@ -1,45 +0,0 @@ -bigIncrements('id'); - $table->string('name'); - $table->string('icon')->nullable(); - $table->longText('description')->nullable(); - $table->string('template_code'); - $table->boolean('status')->default(true)->comment('1=>active,0=>deactive'); - $table->boolean('professional')->default(false)->comment('1=>yes,0=>no'); - $table->string('slug'); - $table->string('category_id'); - $table->string('type')->default('1')->comment('1=>original,0=>custom'); - $table->string('form_fields',5000)->nullable(); - $table->boolean('is_tone')->default(true)->comment('1=>active,0=>deactive'); - $table->timestamps(); - }); - } - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('ai_templates'); - } -}; diff --git a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_050110_create_ai_template_categories_table.php b/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_050110_create_ai_template_categories_table.php deleted file mode 100755 index f71fbe4..0000000 --- a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_050110_create_ai_template_categories_table.php +++ /dev/null @@ -1,37 +0,0 @@ -bigIncrements('id'); - $table->string('name'); - $table->boolean('status')->default(true)->comment('1=>active,0=>deactive'); - $table->string('created_by')->default(0); - $table->timestamps(); - }); - } - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('ai_template_categories'); - } -}; diff --git a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_051036_create_ai_template_languages_table.php b/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_051036_create_ai_template_languages_table.php deleted file mode 100755 index b999861..0000000 --- a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_051036_create_ai_template_languages_table.php +++ /dev/null @@ -1,38 +0,0 @@ -bigIncrements('id'); - $table->string('language'); - $table->string('code')->unique(); - $table->string('flag')->nullable(); - $table->boolean('status')->default(true); - $table->timestamps(); - }); - } - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('ai_template_languages'); - } -}; diff --git a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_052024_create_ai_template_prompts_table.php b/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_052024_create_ai_template_prompts_table.php deleted file mode 100755 index 7f7f138..0000000 --- a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_052024_create_ai_template_prompts_table.php +++ /dev/null @@ -1,38 +0,0 @@ -bigIncrements('id'); - $table->string('template_id')->nullable(); - $table->string('key')->nullable(); - $table->longText('value')->nullable(); - $table->string('created_by')->default(0); - $table->timestamps(); - }); - } - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('ai_template_prompts'); - } -}; diff --git a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_071056_create_ai_prompt_histories_table.php b/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_071056_create_ai_prompt_histories_table.php deleted file mode 100755 index 0a484b8..0000000 --- a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_071056_create_ai_prompt_histories_table.php +++ /dev/null @@ -1,45 +0,0 @@ -bigIncrements('id'); - $table->string('template_id')->nullable(); - $table->string('doc_name')->nullable(); - $table->string('model')->nullable(); - $table->string('creativity')->nullable(); - $table->string('max_tokens')->nullable(); - $table->string('max_results')->nullable(); - $table->longText('prompt')->nullable(); - $table->string('language')->nullable(); - $table->text('prompt_fields')->nullable(); - $table->integer('workspace')->nullable(); - $table->string('created_by')->default(0); - $table->timestamps(); - }); - } - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('ai_prompt_histories'); - } -}; diff --git a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_101058_create_ai_prompt_responses_table.php b/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_101058_create_ai_prompt_responses_table.php deleted file mode 100755 index afd4420..0000000 --- a/packages/workdo/AIDocument/src/Database/Migrations/2023_06_10_101058_create_ai_prompt_responses_table.php +++ /dev/null @@ -1,40 +0,0 @@ -bigIncrements('id'); - $table->string('template_id')->nullable(); - $table->string('history_prompt_id')->nullable(); - $table->string('used_words')->nullable(); - $table->longText('content')->nullable(); - $table->string('created_by')->default(0); - $table->timestamps(); - }); - } - - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('ai_prompt_responses'); - } -}; diff --git a/packages/workdo/AIDocument/src/Database/Seeders/AIDocumentDatabaseSeeder.php b/packages/workdo/AIDocument/src/Database/Seeders/AIDocumentDatabaseSeeder.php deleted file mode 100755 index 502de83..0000000 --- a/packages/workdo/AIDocument/src/Database/Seeders/AIDocumentDatabaseSeeder.php +++ /dev/null @@ -1,32 +0,0 @@ -call(PermissionTableSeeder::class); - $this->call(AiTemplateTableSeeder::class); - $this->call(AiTemplateCategoryTableSeeder::class); - $this->call(AiTemplateLanguageTableSeeder::class); - $this->call(AiTemplatePropmtTableSeeder::class); - - - if(module_is_active('LandingPage')) - { - $this->call(MarketPlaceSeederTableSeeder::class); - } - - // $this->call("OthersTableSeeder"); - } -} diff --git a/packages/workdo/AIDocument/src/Database/Seeders/AiTemplateCategoryTableSeeder.php b/packages/workdo/AIDocument/src/Database/Seeders/AiTemplateCategoryTableSeeder.php deleted file mode 100755 index a4b4414..0000000 --- a/packages/workdo/AIDocument/src/Database/Seeders/AiTemplateCategoryTableSeeder.php +++ /dev/null @@ -1,35 +0,0 @@ - 1, 'name' => 'content','status'=>true], - ['id' => 2, 'name' => 'blog','status'=>true], - ['id' => 3, 'name' => 'Website','status'=>true], - ['id' => 4, 'name' => 'Social Media','status'=>true], - ['id' => 5, 'name' => 'Video','status'=>true], - ['id' => 6, 'name' => 'email','status'=>true], - ['id' => 7, 'name' => 'other','status'=>true], - - - ]; - - foreach ($templates as $template) { - AiTemplateCategory::updateOrCreate(['id' => $template['id']], $template); - } - // $this->call("OthersTableSeeder"); - } -} diff --git a/packages/workdo/AIDocument/src/Database/Seeders/AiTemplateLanguageTableSeeder.php b/packages/workdo/AIDocument/src/Database/Seeders/AiTemplateLanguageTableSeeder.php deleted file mode 100755 index cf95a60..0000000 --- a/packages/workdo/AIDocument/src/Database/Seeders/AiTemplateLanguageTableSeeder.php +++ /dev/null @@ -1,61 +0,0 @@ - 1, 'language' => 'Arabic', 'code' => 'ar-AE', 'flag' => 'ae.svg', 'status' => 1], - ['id' => 2, 'language' => 'Chinese (Mandarin)', 'code' => 'cmn-CN', 'flag' => 'cn.svg', 'status' => 1], - ['id' => 3, 'language' => 'Croatian (Croatia)', 'code' => 'hr-HR', 'flag' => 'hr.svg', 'status' => 1], - ['id' => 4, 'language' => 'Czech (Czech Republic)', 'code' => 'cs-CZ', 'flag' => 'cz.svg', 'status' => 1], - ['id' => 5, 'language' => 'Danish (Denmark)', 'code' => 'da-DK', 'flag' => 'dk.svg', 'status' => 1], - ['id' => 6, 'language' => 'Dutch (Netherlands)', 'code' => 'nl-NL', 'flag' => 'nl.svg', 'status' => 1], - ['id' => 7, 'language' => 'English (USA)', 'code' => 'en-US', 'flag' => 'us.svg', 'status' => 1], - ['id' => 8, 'language' => 'Estonian (Estonia)', 'code' => 'et-EE', 'flag' => 'ee.svg', 'status' => 1], - ['id' => 9, 'language' => 'Finnish (Finland)', 'code' => 'fi-FI', 'flag' => 'fi.svg', 'status' => 1], - ['id' => 10, 'language' => 'French (France)', 'code' => 'fr-FR', 'flag' => 'fr.svg', 'status' => 1], - ['id' => 11, 'language' => 'German (Germany)', 'code' => 'de-DE', 'flag' => 'de.svg', 'status' => 1], - ['id' => 12, 'language' => 'Greek (Greece)', 'code' => 'el-GR', 'flag' => 'gr.svg', 'status' => 1], - ['id' => 13, 'language' => 'Hebrew (Israel)', 'code' => 'he-IL', 'flag' => 'il.svg', 'status' => 1], - ['id' => 14, 'language' => 'Hindi (India)', 'code' => 'hi-IN', 'flag' => 'in.svg', 'status' => 1], - ['id' => 15, 'language' => 'Hungarian (Hungary)', 'code' => 'hu-HU', 'flag' => 'hu.svg', 'status' => 1], - ['id' => 16, 'language' => 'Icelandic (Iceland)', 'code' => 'is-IS', 'flag' => 'is.svg', 'status' => 1], - ['id' => 17, 'language' => 'Indonesian (Indonesia)', 'code' => 'id-ID', 'flag' => 'id.svg', 'status' => 1], - ['id' => 18, 'language' => 'Italian (Italy)', 'code' => 'it-IT', 'flag' => 'it.svg', 'status' => 1], - ['id' => 19, 'language' => 'Japanese (Japan)', 'code' => 'ja-JP', 'flag' => 'jp.svg', 'status' => 1], - ['id' => 20, 'language' => 'Korean (South Korea)', 'code' => 'ko-KR', 'flag' => 'kr.svg', 'status' => 1], - ['id' => 21, 'language' => 'Malay (Malaysia)', 'code' => 'ms-MY', 'flag' => 'my.svg', 'status' => 1], - ['id' => 22, 'language' => 'Norwegian (Norway)', 'code' => 'nb-NO', 'flag' => 'no.svg', 'status' => 1], - ['id' => 23, 'language' => 'Polish (Poland)', 'code' => 'pl-PL', 'flag' => 'pl.svg', 'status' => 1], - ['id' => 24, 'language' => 'Portuguese (Portugal)', 'code' => 'pt-PT', 'flag' => 'pt.svg', 'status' => 1], - ['id' => 25, 'language' => 'Russian (Russia)', 'code' => 'ru-RU', 'flag' => 'ru.svg', 'status' => 1], - ['id' => 26, 'language' => 'Spanish (Spain)', 'code' => 'es-ES', 'flag' => 'es.svg', 'status' => 1], - ['id' => 27, 'language' => 'Swedish (Sweden)', 'code' => 'sv-SE', 'flag' => 'se.svg', 'status' => 1], - ['id' => 28, 'language' => 'Turkish (Turkey)', 'code' => 'tr-TR', 'flag' => 'tr.svg', 'status' => 1], - ['id' => 29, 'language' => 'Portuguese (Brazil)', 'code' => 'pt-BR', 'flag' => 'br.svg', 'status' => 1], - ['id' => 30, 'language' => 'Romanian (Romania)', 'code' => 'ro-RO', 'flag' => 'ro.svg', 'status' => 1], - ['id' => 31, 'language' => 'Vietnamese (Vietnam)', 'code' => 'vi-VN', 'flag' => 'vn.svg', 'status' => 1], - ['id' => 32, 'language' => 'Swahili (Kenya)', 'code' => 'sw-KE', 'flag' => 'ke.svg', 'status' => 1], - ['id' => 33, 'language' => 'Slovenian (Slovenia)', 'code' => 'sl-SI', 'flag' => 'si.svg', 'status' => 1], - ]; - - - foreach ($languages as $language) { - AiTemplateLanguage::updateOrCreate(['id' => $language['id']], $language); - } - // $this->call("OthersTableSeeder"); - } -} diff --git a/packages/workdo/AIDocument/src/Database/Seeders/AiTemplatePropmtTableSeeder.php b/packages/workdo/AIDocument/src/Database/Seeders/AiTemplatePropmtTableSeeder.php deleted file mode 100755 index 12ef958..0000000 --- a/packages/workdo/AIDocument/src/Database/Seeders/AiTemplatePropmtTableSeeder.php +++ /dev/null @@ -1,7334 +0,0 @@ - 1, 'template_id' => 1, 'key' => "en-US", 'value' => "Write a complete article on this topic:\n\n ##title## \n\nUse following keywords in the article:\n ##keywords## \n\nTone of voice of the article must be:\n ##tone_language## \n\n"], - - ['id' => 2, 'template_id' => 1, 'key' => "ar-AE", 'value' => 'اكتب مقالة حول هذا الموضوع:\n\n"##title## "\n\nاستخدم الكلمات الأساسية التالية في المقالة:\n"##keywords## "\n\nيجب أن تكون نغمة صوت المقالة:\n"##tone_language## "\n\n'], - - ['id' => 3, 'template_id' => 1, 'key' => "cmn-CN", 'value' => '写一篇关于这个主题的文章:\n\n" ##title## "\n\n在文章中使用以下关键字:\n" ##keywords## "\n\n文章的语气必须是:\n" ##tone_language## "\n\n'], - - ['id' => 4, 'template_id' => 1, 'key' => "hr-HR", 'value' => 'Napišite članak na ovu temu:\n\n" ##title## "\n\nKoristite sljedeće ključne riječi u članku:\n" ##keywords## "\n\nTon glasa u članku mora biti:\n" ##tone_language## "\n\n'], - - ['id' => 5, 'template_id' => 1, 'key' => "cs-CZ", 'value' => 'Napište článek na toto téma:\n\n" ##title## "\n\nV článku použijte následující klíčová slova:\n" ##keywords## "\n\nTón hlasu článku musí být:\n" ##tone_language## "\n\n'], - - ['id' => 6, 'template_id' => 1, 'key' => "da-DK", 'value' => 'Skriv en artikel om dette emne:\n\n" ##title## "\n\nBrug følgende søgeord i artiklen:\n" ##keywords## "\n\nTone i artiklen skal være:\n" ##tone_language## "\n\n'], - - ['id' => 7, 'template_id' => 1, 'key' => "nl-NL", 'value' => 'Schrijf een artikel over dit onderwerp:\n\n" ##title## "\n\nGebruik de volgende trefwoorden in het artikel:\n" ##keywords## "\n\nDe toon van het artikel moet zijn:\n" ##tone_language## "\n\n'], - - ['id' => 8, 'template_id' => 1, 'key' => "et-EE", 'value' => 'Kirjutage sellel teemal artikkel:\n\n" ##title## "\n\nKasutage artiklis järgmisi märksõnu:\n" ##keywords## "\n\nArtikli hääletoon peab olema:\n" ##tone_language## "\n\n'], - - ['id' => 9, 'template_id' => 1, 'key' => "fi-FI", 'value' => 'Kirjoita artikkeli tästä aiheesta:\n\n" ##title## "\n\nKäytä artikkelissa seuraavia avainsanoja:\n" ##keywords## "\n\nArtikkelin äänensävyn on oltava:\n" ##tone_language## "\n\n'], - - ['id' => 10, 'template_id' => 1, 'key' => "fr-FR", 'value' => 'Ecrire un article sur ce sujet :\n\n" ##title## "\n\nUtilisez les mots clés suivants dans l article :\n" ##keywords## "\n\nLe ton de la voix de l article doit être :\n" ##tone_language## "\n\n'], - - ['id' => 11, 'template_id' => 1, 'key' => "de-DE", 'value' => 'Schreiben Sie einen Artikel zu diesem Thema:\n\n" ##title## "\n\nVerwenden Sie folgende Schlüsselwörter im Artikel:\n" ##keywords## "\n\nTonfall des Artikels muss sein:\n" ##tone_language## "\n\n'], - - ['id' => 12, 'template_id' => 1, 'key' => "el-GR", 'value' => 'Γράψτε ένα άρθρο για αυτό το θέμα:\n\n" ##title## "\n\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στο άρθρο:\n" ##keywords## "\n\nΟ τόνος της φωνής του άρθρου πρέπει να είναι:\n" ##tone_language## "\n\n'], - - ['id' => 13, 'template_id' => 1, 'key' => "he-IL", 'value' => 'כתוב מאמר בנושא זה:\n\n" ##title## "\n\nהשתמש במילות המפתח הבאות במאמר:\n" ##keywords## "\n\nטון הדיבור של המאמר חייב להיות:\n" ##tone_language## "\n\n'], - - ['id' => 14, 'template_id' => 1, 'key' => "hi-IN", 'value' => 'इस विषय पर एक लेख लिखें:\n\n" ##title## "\n\nलेख में निम्नलिखित कीवर्ड का प्रयोग करें:\n" ##keywords## "\n\nलेख का स्वर इस प्रकार होना चाहिए:\n" ##tone_language##"\n\n'], - - ['id' => 15, 'template_id' => 1, 'key' => "hu-HU", 'value' => 'Írjon cikket erről a témáról:\n\n" ##title## "\n\nHasználja a következő kulcsszavakat a cikkben:\n" ##keywords## "\n\nA cikk hangnemének a következőnek kell lennie:\n" ##tone_language## "\n\n'], - - ['id' => 16, 'template_id' => 1, 'key' => "is-IS", 'value' => 'Skrifaðu grein um þetta efni:\n\n" ##title## "\n\nNotaðu eftirfarandi leitarorð í greininni:\n" ##keywords## "\n\nTónn í greininni verður að vera:\n" ##tone_language## "\n\n'], - - ['id' => 17, 'template_id' => 1, 'key' => "id-ID", 'value' => 'Tulis artikel tentang topik ini:\n\n" ##title## "\n\nGunakan kata kunci berikut dalam artikel:\n" ##keywords## "\n\nNada suara artikel harus:\n" ##tone_language## "\n\n'], - - ['id' => 18, 'template_id' => 1, 'key' => "it-IT", 'value' => 'Scrivi un articolo su questo argomento:\n\n" ##title## "\n\nUsa le seguenti parole chiave nell articolo:\n" ##keywords## "\n\nIl tono di voce dell articolo deve essere:\n" ##tone_language## "\n\n'], - - ['id' => 19, 'template_id' => 1, 'key' => "ja-JP", 'value' => 'このトピックに関する記事を書いてください:\n\n" ##title## "\n\n記事では次のキーワードを使用してください:\n" ##keywords## "\n\n記事の口調は次のようにする必要があります:\n" ##tone_language## "\n\n'], - - ['id' => 20, 'template_id' => 1, 'key' => "ko-KR", 'value' => '이 주제에 대한 기사 쓰기:\n\n" ##title## "\n\n문서에서 다음 키워드를 사용하십시오:\n" ##keywords## "\n\n기사의 어조는 다음과 같아야 합니다:\n" ##tone_language## "\n\n'], - - ['id' => 21, 'template_id' => 1, 'key' => "ms-MY", 'value' => 'Tulis artikel tentang topik ini:\n\n" ##title## "\n\nGunakan kata kunci berikut dalam artikel:\n" ##keywords## "\n\nNada suara artikel mestilah:\n" ##tone_language## "\n\n'], - - ['id' => 22, 'template_id' => 1, 'key' => "nb-NO", 'value' => 'Skriv en artikkel om dette emnet:\n\n" ##title## "\n\nBruk følgende nøkkelord i artikkelen:\n" ##keywords## "\n\nTone i artikkelen må være:\n" ##tone_language## "\n\n'], - - ['id' => 23, 'template_id' => 1, 'key' => "pl-PL", 'value' => 'Napisz artykuł na ten temat:\n\n" ##title## "\n\nUżyj w artykule następujących słów kluczowych:\n" ##keywords## "\n\nTon wypowiedzi artykułu musi być:\n" ##tone_language## "\n\n'], - - ['id' => 24, 'template_id' => 1, 'key' => "pt-PT", 'value' => 'Escreva um artigo sobre este tópico:\n\n" ##title## "\n\nUse as seguintes palavras-chave no artigo:\n" ##keywords## "\n\nTom de voz do artigo deve ser:\n" ##tone_language## "\n\n'], - - ['id' => 25, 'template_id' => 1, 'key' => "ru-RU", 'value' => 'Напишите статью на эту тему:\n\n" ##title## "\n\nИспользуйте в статье следующие ключевые слова:\n" ##keywords## "\n\nТон озвучивания статьи должен быть:\n" ##tone_language## "\n\n'], - - ['id' => 26, 'template_id' => 1, 'key' => "es-ES", 'value' => 'Escribe un artículo sobre este tema:\n\n" ##title## "\n\nUtilice las siguientes palabras clave en el artículo:\n" ##keywords## "\n\nEl tono de voz del artículo debe ser:\n" ##tone_language## "\n\n'], - - ['id' => 27, 'template_id' => 1, 'key' => "sv-SE", 'value' => 'Skriv en artikel om detta ämne:\n\n" ##title## "\n\nAnvänd följande nyckelord i artikeln:\n" ##keywords## "\n\nTonfallet för artikeln måste vara:\n" ##tone_language## "\n\n" ##tone_language## "\n\n'], - - ['id' => 28, 'template_id' => 1, 'key' => "tr-TR", 'value' => 'Bu konuda bir makale yaz:\n\n" ##title## "\n\nMakalede şu anahtar kelimeleri kullanın:\n" ##keywords## "\n\nYazının ses tonu şöyle olmalıdır:\n" ##tone_language## "\n\n'], - - ['id' => 29, 'template_id' => 1, 'key' => "pt-BR", 'value' => 'Escreva um artigo sobre este tópico:\n\n" ##title## "\n\nUse as seguintes palavras-chave no artigo:\n" ##keywords## "\n\nTom de voz do artigo deve ser:\n" ##tone_language## "\n\n'], - - ['id' => 30, 'template_id' => 1, 'key' => "ro-RO", 'value' => 'Scrieți un articol complet pe acest subiect:\n\n" ##title## "\n\nFolosiți următoarele cuvinte cheie în articol:\n" ##keywords## "\n\nTonul vocii al articolului trebuie să fie:\n" ##tone_language## "\n\n'], - - ['id' => 31, 'template_id' => 1, 'key' => "vi-VN", 'value' => 'Viết một bài hoàn chỉnh về chủ đề này:\n\n" ##title## "\n\nSử dụng các từ khóa sau trong bài viết:\n" ##keywords## "\n\nGiọng điệu của bài viết phải là:\n" ##tone_language## "\n\n'], - - ['id' => 32, 'template_id' => 1, 'key' => "sw-KE", 'value' => 'Andika makala kamili kuhusu mada hii:\n\n" ##title## "\n\nTumia manenomsingi yafuatayo katika makala:\n" ##keywords## "\n\nToni ya sauti ya makala lazima iwe:\n" ##tone_language## "\n\n'], - - ['id' => 33, 'template_id' => 1, 'key' => "sl-SI", 'value' => 'Napišite celoten članek o tej temi:\n\n" ##title## "\n\n članku uporabite naslednje ključne besede:\n" ##keywords## "\n\nTon glasu članka mora biti:\n" ##tone_language## "\n\n'], - - ['id' => 34, 'template_id' => 2, 'key' => "en-US", 'value' => 'Improve and rewrite the text in a creative and smart way:\n\n" ##title## "\n\n Tone of voice of the result must be:\n" ##tone_language## "\n\n'], - - ['id' => 35, 'template_id' => 2, 'key' => "ar-AE", 'value' => 'اتحسين وإعادة كتابة النص بطريقة إبداعية وذكية:\n\n"##title## "\n\nيجب أن تكون نبرة صوت النتيجة:\n"##tone_language## "\n\n'], - - ['id' => 36, 'template_id' => 2, 'key' => "cmn-CN", 'value' => '以创造性和聪明的方式改进和重写文本:\n\n"##title## "\n\n 结果的语气必须是:\n" ##tone_language## "\n\n'], - - ['id' => 37, 'template_id' => 2, 'key' => "hr-HR", 'value' => 'Poboljšajte i prepišite tekst na kreativan i pametan način:\n\n" ##title## "\n\n Ton glasa rezultata mora biti:\n" ##tone_language## "\n\n'], - - ['id' => 38, 'template_id' => 2, 'key' => "cs-CZ", 'value' => 'Vylepšete a přepište text kreativním a chytrým způsobem:\n\n" ##title## "\n\n Tón hlasu výsledku musí být:\n" ##tone_language## "\n\n'], - - ['id' => 39, 'template_id' => 2, 'key' => "da-DK", 'value' => 'Forbedre og omskriv teksten på en kreativ og smart måde:\n\n" ##title## "\n\n Tonen i resultatet skal være:\n" ##tone_language## "\n\n'], - - ['id' => 40, 'template_id' => 2, 'key' => "nl-NL", 'value' => 'Verbeter en herschrijf de tekst op een creatieve en slimme manier:\n\n" ##title## "\n\n Tone of voice van het resultaat moet zijn:\n" ##tone_language## "\n\n'], - - ['id' => 41, 'template_id' => 2, 'key' => "et-EE", 'value' => 'Täiustage ja kirjutage teksti loominguliselt ja nutikalt ümber:\n\n" ##title## "\n\n Tulemuse hääletoon peab olema:\n" ##tone_language## "\n\n'], - - ['id' => 42, 'template_id' => 2, 'key' => "fi-FI", 'value' => 'Paranna ja kirjoita tekstiä uudelleen luovalla ja älykkäällä tavalla:\n\n" ##title## "\n\n Tuloksen äänensävyn on oltava:\n" ##tone_language## "\n\n'], - - ['id' => 43, 'template_id' => 2, 'key' => "fr-FR", 'value' => 'Améliorez et réécrivez le texte de manière créative et intelligente :\n\n" ##title## "\n\n Le ton de la voix du résultat doit être :\n" ##tone_language## "\n\n'], - - ['id' => 44, 'template_id' => 2, 'key' => "de-DE", 'value' => 'Verbessern und überarbeiten Sie den Text auf kreative und intelligente Weise:\n\n" ##title## "\n\n Tonfall des Ergebnisses muss sein:\n" ##tone_language## "\n\n'], - - ['id' => 45, 'template_id' => 2, 'key' => "el-GR", 'value' => 'Βελτιώστε και ξαναγράψτε το κείμενο με δημιουργικό και έξυπνο τρόπο:\n\n" ##title## "\n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n" ##tone_language## "\n\n'], - - ['id' => 46, 'template_id' => 2, 'key' => "he-IL", 'value' => 'שפר ושכתב את הטקסט בצורה יצירתית וחכמה:\n\n" ##title## "\n\n גוון הקול של התוצאה חייב להיות:\n" ##tone_language## "\n\n'], - - ['id' => 47, 'template_id' => 2, 'key' => "hi-IN", 'value' => 'रचनात्मक और स्मार्ट तरीके से टेक्स्ट को सुधारें और फिर से लिखें:\n\n" ##title## "\n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n" ##tone_language## "\n\n'], - - ['id' => 48, 'template_id' => 2, 'key' => "hu-HU", 'value' => 'Javítsa és írja át a szöveget kreatív és okos módon:\n\n" ##title## "\n\n Az eredmény hangszínének a következőnek kell lennie:\n" ##tone_language## "\n\n'], - - ['id' => 49, 'template_id' => 2, 'key' => "is-IS", 'value' => 'Bættu og endurskrifaðu textann á skapandi og snjallan hátt:\n\n" ##title## "\n\n Röddtónn niðurstöðunnar verður að vera:\n" ##tone_language## "\n\n'], - - ['id' => 50, 'template_id' => 2, 'key' => "id-ID", 'value' => 'Tingkatkan dan tulis ulang teks dengan cara yang kreatif dan cerdas:\n\n" ##title## "\n\n Nada suara hasil harus:\n" ##tone_language## "\n\n'], - - ['id' => 51, 'template_id' => 2, 'key' => "it-IT", 'value' => 'Migliora e riscrivi il testo in modo creativo e intelligente:\n\n" ##title## "\n\n Il tono di voce del risultato deve essere:\n" ##tone_language## "\n\n'], - - ['id' => 52, 'template_id' => 2, 'key' => "ja-JP", 'value' => '創造的かつスマートな方法でテキストを改善および書き直します:\n\n" ##title## "\n\n 結果の声の調子:\n" ##tone_language## "\n\n'], - - ['id' => 53, 'template_id' => 2, 'key' => "ko-KR", 'value' => '창의적이고 스마트한 방식으로 텍스트를 개선하고 다시 작성:\n\n" ##title## "\n\n 결과의 음성 톤은 다음과 같아야 합니다.\n" ##tone_language## "\n\n'], - - ['id' => 54, 'template_id' => 2, 'key' => "ms-MY", 'value' => 'Tingkatkan dan tulis semula teks dengan cara yang kreatif dan pintar:\n\n" ##title## "\n\n Nada suara hasil carian mestilah:\n" ##tone_language## "\n\n'], - - ['id' => 55, 'template_id' => 2, 'key' => "nb-NO", 'value' => 'Forbedre og omskriv teksten på en kreativ og smart måte:\n\n" ##title## "\n\n Tonen til resultatet må være:\n" ##tone_language## "\n\n'], - - ['id' => 56, 'template_id' => 2, 'key' => "pl-PL", 'value' => 'Popraw i przepisz tekst w kreatywny i inteligentny sposób:\n\n" ##title## "\n\n Ton głosu wyniku musi być:\n" ##tone_language## "\n\n'], - - ['id' => 57, 'template_id' => 2, 'key' => "pt-PT", 'value' => 'Melhorar e reescrever o texto de forma criativa e inteligente:\n\n" ##title## "\n\n Tom de voz do resultado deve ser:\n" ##tone_language## "\n\n'], - - ['id' => 58, 'template_id' => 2, 'key' => "ru-RU", 'value' => 'Улучшите и перепишите текст творчески и по-умному:\n\n" ##title## "\n\n Тон голоса результата должен быть:\n" ##tone_language## "\n\n'], - - ['id' => 59, 'template_id' => 2, 'key' => "es-ES", 'value' => 'Mejora y reescribe el texto de forma creativa e inteligente:\n\n" ##title## "\n\n El tono de voz del resultado debe ser:\n" ##tone_language## "\n\n'], - - ['id' => 60, 'template_id' => 2, 'key' => "sv-SE", 'value' => 'Förbättra och skriv om texten på ett kreativt och smart sätt:\n\n" ##title## "\n\n Tonen i resultatet måste vara:\n" ##tone_language## "\n\n'], - - ['id' => 61, 'template_id' => 2, 'key' => "tr-TR", 'value' => 'Metni yaratıcı ve akıllı bir şekilde iyileştirin ve yeniden yazın:\n\n" ##title## "\n\n Sonucun ses tonu şöyle olmalıdır:\n" ##tone_language## "\n\n'], - - ['id' => 62, 'template_id' => 2, 'key' => "pt-BR", 'value' => 'Melhorar e reescrever o texto de forma criativa e inteligente:\n\n" ##title## "\n\n Tom de voz do resultado deve ser:\n" ##tone_language## "\n\n'], - - ['id' => 63, 'template_id' => 2, 'key' => "ro-RO", 'value' => 'Îmbunătățiți și rescrieți textul într-un mod creativ și inteligent:\n\n" ##title## "\n\n Tonul vocii rezultatului trebuie să fie:\n" ##tone_language## "\n\n'], - - ['id' => 64, 'template_id' => 2, 'key' => "vi-VN", 'value' => 'Cải thiện và viết lại văn bản một cách sáng tạo và thông minh:\n\n" ##title## "\n\n Giọng điệu của kết quả phải là:\n" ##tone_language## "\n\n'], - - ['id' => 65, 'template_id' => 2, 'key' => "sw-KE", 'value' => 'Boresha na uandike upya maandishi kwa njia ya kibunifu na ya busara:\n\n" ##title## "\n\n Toni ya sauti ya matokeo lazima iwe:\n" ##tone_language## "\n\n'], - - ['id' => 66, 'template_id' => 2, 'key' => "sl-SI", 'value' => 'Izboljšajte in prepišite besedilo na kreativen in pameten način:\n\n" ##title## "\n\n Ton glasu rezultata mora biti:\n" ##tone_language## "\n\n'], - - ['id' => 67, 'template_id' => 3, 'key' => "en-US", 'value' => 'Write a large and meaningful paragraph on this topic:\n\n ##title## \n\nUse following keywords in the paragraph:\n ##keywords## \n\nTone of voice of the paragraph must be:\n ##tone_language## \n\n'], - - ['id' => 68, 'template_id' => 3, 'key' => "ar-AE", 'value' => 'اكتب فقرة كبيرة وذات مغزى حول هذا الموضوع:\n\n ##title##\n\nاستخدم الكلمات الأساسية التالية في الفقرة:\n ##keywords## \n\nيجب أن تكون نغمة الصوت في الفقرة:\n ##tone_language## \n\n'], - - ['id' => 69, 'template_id' => 3, 'key' => "cmn-CN", 'value' => '就此主题写一段有意义的长篇大论:\n\n ##title## \n\n在段落中使用以下关键字:\n ##keywords## \n\n段落的语气必须是:\n ##tone_language## \n\n'], - - ['id' => 70, 'template_id' => 3, 'key' => "hr-HR", 'value' => 'Napišite veliki i smisleni odlomak o ovoj temi:\n\n ##title## \n\nKoristite sljedeće ključne riječi u odlomku:\n ##keywords## \n\nTon glasa odlomka mora biti:\n ##tone_language## \n\n'], - - ['id' => 71, 'template_id' => 3, 'key' => "cs-CZ", 'value' => 'Napište velký a smysluplný odstavec na toto téma:\n\n ##title## \n\nV odstavci použijte následující klíčová slova:\n ##keywords## \n\nTón hlasu odstavce musí být:\n ##tone_language## \n\n'], - - ['id' => 72, 'template_id' => 3, 'key' => "da-DK", 'value' => 'Skriv et stort og meningsfuldt afsnit om dette emne:\n\n ##title## \n\nBrug følgende nøgleord i afsnittet:\n ##keywords## \n\nTone i afsnittet skal være:\n ##tone_language## \n\n'], - - ['id' => 73, 'template_id' => 3, 'key' => "nl-NL", 'value' => 'Schrijf een grote en zinvolle paragraaf over dit onderwerp:\n\n ##title## \n\nGebruik de volgende trefwoorden in de alinea:\n ##keywords## \n\nDe toon van de alinea moet zijn:\n ##tone_language## \n\n'], - - ['id' => 74, 'template_id' => 3, 'key' => "et-EE", 'value' => 'Kirjutage sellel teemal suur ja sisukas lõik:\n\n ##title## \n\nKasutage lõigus järgmisi märksõnu:\n ##keywords## \n\nLõigu hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 75, 'template_id' => 3, 'key' => "fi-FI", 'value' => 'Kirjoita tästä aiheesta suuri ja merkityksellinen kappale:\n\n ##title## \n\nKäytä kappaleessa seuraavia avainsanoja:\n ##keywords## \n\nKappaleen äänensävyn on oltava:\n ##tone_language## \n\n'], - - ['id' => 76, 'template_id' => 3, 'key' => "fr-FR", 'value' => 'Écrivez un paragraphe long et significatif sur ce sujet :\n\n ##title## \n\nUtilisez les mots clés suivants dans le paragraphe :\n ##keywords## \n\nLe ton de la voix du paragraphe doit être :\n ##tone_language## \n\n'], - - ['id' => 77, 'template_id' => 3, 'key' => "de-DE", 'value' => 'Schreiben Sie einen großen und aussagekräftigen Absatz zu diesem Thema:\n\n ##title## \n\nVerwenden Sie folgende Schlüsselwörter im Absatz:\n ##keywords## \n\nTonlage des Absatzes muss sein:\n ##tone_language## \n\n'], - - ['id' => 78, 'template_id' => 3, 'key' => "el-GR", 'value' => 'Γράψτε μια μεγάλη και ουσιαστική παράγραφο για αυτό το θέμα:\n\n ##title## \n\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στην παράγραφο:\n ##keywords## \n\nΟ τόνος της φωνής της παραγράφου πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 79, 'template_id' => 3, 'key' => "he-IL", 'value' => 'כתוב פסקה גדולה ומשמעותית בנושא זה:\n\n ##title## \n\nהשתמש במילות המפתח הבאות בפסקה:\n ##keywords## \n\nטון הדיבור של הפסקה חייב להיות:\n ##tone_language##\n\n'], - - ['id' => 80, 'template_id' => 3, 'key' => "hi-IN", 'value' => 'इस विषय पर एक बड़ा और सार्थक पैराग्राफ लिखें:\n\n ##title## \n\nपैराग्राफ में निम्नलिखित कीवर्ड का प्रयोग करें:\n ##keywords## \n\nपैराग्राफ की आवाज़ का स्वर होना चाहिए:\n ##tone_language##\n\n'], - - ['id' => 81, 'template_id' => 3, 'key' => "hu-HU", 'value' => 'Írj egy nagy és értelmes bekezdést erről a témáról:\n\n ##title## \n\nHasználja a következő kulcsszavakat a bekezdésben:\n ##keywords## \n\nA bekezdés hangszínének a következőnek kell lennie:\n ##tone_language## \n\n'], - - ['id' => 82, 'template_id' => 3, 'key' => "is-IS", 'value' => 'Skrifaðu stóra og þýðingarmikla málsgrein um þetta efni:\n\n ##title## \n\nNotaðu eftirfarandi leitarorð í málsgreininni:\n ##keywords## \n\nTónn málsgreinarinnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 83, 'template_id' => 3, 'key' => "id-ID", 'value' => 'Tulis paragraf yang besar dan bermakna tentang topik ini:\n\n ##title## \n\nGunakan kata kunci berikut dalam paragraf:\n ##keywords## \n\nNada suara paragraf harus:\n ##tone_language## \n\n'], - - ['id' => 84, 'template_id' => 3, 'key' => "it-IT", 'value' => 'Scrivi un paragrafo ampio e significativo su questo argomento:\n\n ##title## \n\nUsare le seguenti parole chiave nel paragrafo:\n ##keywords## \n\nIl tono di voce del paragrafo deve essere:\n ##tone_language## \n\n'], - - ['id' => 85, 'template_id' => 3, 'key' => "ja-JP", 'value' => 'このトピックについて大きくて意味のある段落を書いてください:\n\n ##title## \n\n段落内で次のキーワードを使用してください:\n ##keywords## \n\n段落の口調は次のようにする必要があります:\n ##tone_language## \n\n'], - - ['id' => 86, 'template_id' => 3, 'key' => "ko-KR", 'value' => '이 주제에 대해 크고 의미 있는 단락 작성:\n\n ##title## \n\n단락에서 다음 키워드를 사용하십시오:\n ##keywords## \n\n문단의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n'], - - ['id' => 87, 'template_id' => 3, 'key' => "ms-MY", 'value' => 'Tulis perenggan yang besar dan bermakna tentang topik ini:\n\n ##title## \n\nGunakan kata kunci berikut dalam perenggan:\n ##keywords## \n\nNada suara perenggan mestilah:\n ##tone_language## \n\n'], - - ['id' => 88, 'template_id' => 3, 'key' => "nb-NO", 'value' => 'Skriv et stort og meningsfullt avsnitt om dette emnet:\n\n ##title## \n\nBruk følgende nøkkelord i avsnittet:\n ##keywords## \n\nTone i avsnittet må være:\n ##tone_language## \n\n'], - - ['id' => 89, 'template_id' => 3 , 'key' => "pl-PL", 'value' => 'Napisz duży i znaczący akapit na ten temat:\n\n ##title## \n\nUżyj następujących słów kluczowych w akapicie:\n ##keywords## \n\nTon głosu akapitu musi być:\n ##tone_language## \n\n'], - - ['id' => 90, 'template_id' => 3, 'key' => "pt-PT", 'value' => 'Escreva um parágrafo grande e significativo sobre este tópico:\n\n ##title## \n\nUse as seguintes palavras-chave no parágrafo:\n ##keywords## \n\nTom de voz do parágrafo deve ser:\n ##tone_language## \n\n'], - - ['id' => 91, 'template_id' => 3, 'key' => "ru-RU", 'value' => 'Напишите большой и осмысленный абзац на эту тему:\n\n ##title## \n\nИспользуйте следующие ключевые слова в абзаце:\n ##keywords## \n\nТон абзаца должен быть:\n ##tone_language## \n\n'], - - ['id' => 92, 'template_id' => 3, 'key' => "es-ES", 'value' => 'Escribe un párrafo extenso y significativo sobre este tema:\n\n ##title## \n\nUtilice las siguientes palabras clave en el párrafo:\n ##keywords## \n\nEl tono de voz del párrafo debe ser:\n ##tone_language## \n\n'], - - ['id' => 93, 'template_id' => 3, 'key' => "sv-SE", 'value' => 'Skriv ett stort och meningsfullt stycke om detta ämne:\n\n ##title## \n\nAnvänd följande nyckelord i stycket:\n ##keywords## \n\nTonfallet i stycket måste vara:\n ##tone_language## \n\n'], - - ['id' => 94, 'template_id' => 3, 'key' => "tr-TR", 'value' => 'Bu konu hakkında geniş ve anlamlı bir paragraf yaz:\n\n ##title## \n\nParagrafta şu anahtar sözcükleri kullanın:\n ##keywords## \n\nParagrafın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n'], - - ['id' => 95, 'template_id' => 3, 'key' => "pt-BR", 'value' => 'Escreva um parágrafo grande e significativo sobre este tópico:\n\n ##title## \n\nUse as seguintes palavras-chave no parágrafo:\n ##keywords## \n\nTom de voz do parágrafo deve ser:\n ##tone_language## \n\n'], - - ['id' => 96, 'template_id' => 3, 'key' => "ro-RO", 'value' => 'Scrieți un paragraf mare și semnificativ pe acest subiect:\n\n ##title## \n\nFolosiți următoarele cuvinte cheie în paragraf:\n ##keywords## \n\nTonul vocii al paragrafului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 97, 'template_id' => 3, 'key' => "vi-VN", 'value' => 'Viết một đoạn văn lớn và có ý nghĩa về chủ đề này:\n\n ##title## \n\nSử dụng các từ khóa sau trong đoạn văn:\n ##keywords## \n\nGiọng điệu của đoạn phải là:\n ##tone_language## \n\n'], - - ['id' => 98, 'template_id' => 3, 'key' => "sw-KE", 'value' => 'Andika aya kubwa na yenye maana juu ya mada hii:\n\n ##title## \n\nTumia manenomsingi yafuatayo katika aya:\n ##keywords## \n\nToni ya sauti ya aya lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 99, 'template_id' => 3, 'key' => "sl-SI", 'value' => 'Napišite velik in smiseln odstavek o tej temi:\n\n ##title## \n\nV odstavku uporabite naslednje ključne besede:\n ##keywords## \n\nTon glasu odstavka mora biti:\n ##tone_language## \n\n'], - - ['id' => 100, 'template_id' => 3, 'key' => "th-TH", 'value' => 'เขียนย่อหน้าใหญ่และมีความหมายในหัวข้อนี้:\n\n ##title## \n\nใช้คำหลักต่อไปนี้ในย่อหน้า:\n ##keywords## \n\nน้ำเสียงของย่อหน้าต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 101, 'template_id' => 3, 'key' => "uk-UA", 'value' => 'Напишіть великий і змістовний абзац на цю тему:\n\n ##title## \n\nВикористовуйте такі ключові слова в абзаці:\n ##keywords## \n\nТон абзацу має бути:\n ##tone_language## \n\n'], - - ['id' => 102, 'template_id' => 3, 'key' => "lt-LT", 'value' => 'Parašykite didelę ir prasmingą pastraipą šia tema:\n\n ##title## \n\nPastraipoje naudokite šiuos raktinius žodžius:\n ##keywords## \n\nPastraipos balso tonas turi būti:\n ##tone_language## \n\n'], - - ['id' => 103, 'template_id' => 3, 'key' => "bg-BG", 'value' => 'Напишете голям и смислен параграф по тази тема:\n\n ##title## \n\nИзползвайте следните ключови думи в параграфа:\n ##keywords## \n\nТонът на гласа на абзаца трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 104, 'template_id' => 4, 'key' => "en-US", 'value' => 'Write short, simple and informative talking points for:\n\n ##title## \n\nAnd also similar talking points for subheadings:\n ##keywords## \n\nTone of voice of the paragraph must be:\n ##tone_language## \n\n'], - - ['id' => 105, 'template_id' => 4, 'key' => "ar-AE", 'value' => 'اكتب نقاط حديث قصيرة وبسيطة وغنية بالمعلومات من أجل:\n\n ##title## \n\nونقاط الحديث المشابهة للعناوين الفرعية:\n ##keywords## \n\nيجب أن تكون نغمة الصوت في الفقرة:\n ##tone_language## \n\n'], - - ['id' => 106, 'template_id' => 4, 'key' => "cmn-CN", 'value' => '为以下内容编写简短、简单且信息丰富的谈话要点:\n\n ##title## \n\n以及副标题的类似谈话要点:\n ##keywords## \n\n段落的语气必须是 :\n ##tone_language## \n\n'], - - ['id' => 107, 'template_id' => 4, 'key' => "hr-HR", 'value' => 'Napišite kratke, jednostavne i informativne teme za:\n\n ##title## \n\nI također slične teme za podnaslove:\n ##keywords## \n\nTon glasa odlomka mora biti:\n ##tone_language## \n\n'], - - ['id' => 108, 'template_id' => 4, 'key' => "cs-CZ", 'value' => 'Napište krátké, jednoduché a informativní body pro:\n\n ##title## \n\nA také podobná témata pro podnadpisy:\n ##keywords## \n\nTón hlasu odstavce musí být:\n ##tone_language## \n\n'], - - ['id' => 109, 'template_id' => 4, 'key' => "da-DK", 'value' => 'Skriv korte, enkle og informative talepunkter til:\n\n ##title## \n\nOg også lignende talepunkter for underoverskrifter:\n ##keywords## \n\nTonefaldet i afsnittet skal være:\n ##tone_language## \n\n'], - - ['id' => 110, 'template_id' => 4, 'key' => "nl-NL", 'value' => 'Schrijf korte, eenvoudige en informatieve gespreksonderwerpen voor:\n\n ##title## \n\nEn ook gelijkaardige gespreksonderwerpen voor tussenkopjes:\n ##keywords## \n\nDe toon van de alinea moet zijn:\n ##tone_language## \n\n'], - - ['id' => 111, 'template_id' => 4, 'key' => "et-EE", 'value' => 'Kirjutage lühikesed, lihtsad ja informatiivsed jutupunktid:\n\n ##title## \n\nJa ka sarnased jutupunktid alapealkirjade jaoks:\n ##keywords## \n\nLõigu hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 112, 'template_id' => 4, 'key' => "fi-FI", 'value' => 'Kirjoita lyhyitä, yksinkertaisia ja informatiivisia puheenaiheita:\n\n ##title## \n\nJa myös samanlaisia puheenaiheita alaotsikoille:\n ##keywords## \n\nKappaleen äänensävyn on oltava:\n ##tone_language## \n\n'], - - ['id' => 113, 'template_id' => 4, 'key' => "fr-FR", 'value' => 'Rédigez des points de discussion courts, simples et informatifs pour :\n\n ##title## \n\nEt également des points de discussion similaires pour les sous-titres :\n ##keywords## \n\nLe ton de la voix du paragraphe doit être :\n ##tone_language## \n\n'], - - ['id' => 114, 'template_id' => 4, 'key' => "de-DE", 'value' => 'Schreiben Sie kurze, einfache und informative Gesprächsthemen für:\n\n ##title## \n\nUnd auch ähnliche Gesprächsthemen für Unterüberschriften:\n ##keywords## \n\nTonlage des Absatzes muss sein:\n ##tone_language## \n\n'], - - ['id' => 115, 'template_id' => 4, 'key' => "el-GR", 'value' => 'Γράψτε σύντομα, απλά και κατατοπιστικά σημεία ομιλίας για:\n\n ##title## \n\nΚαι επίσης παρόμοια σημεία συζήτησης για υποτίτλους:\n ##keywords## \n\nΟ τόνος της φωνής της παραγράφου πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 116, 'template_id' => 4, 'key' => "he-IL", 'value' => 'כתוב נקודות דיבור קצרות, פשוטות ואינפורמטיביות עבור:\n\n ##title## \n\nוגם נקודות דיבור דומות עבור כותרות משנה:\n ##keywords## \n\nטון הדיבור של הפסקה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 117, 'template_id' => 4, 'key' => "hi-IN", 'value' => 'के लिए संक्षिप्त, सरल और जानकारीपूर्ण चर्चा बिंदु लिखें:\n\n ##title## \n\nऔर उपशीर्षक के लिए समान चर्चा बिंदु:\n ##keywords## \n\nपैराग्राफ की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n'], - - ['id' => 118, 'template_id' => 4, 'key' => "hu-HU", 'value' => 'Írjon rövid, egyszerű és informatív beszédpontokat:\n\n ##title## \n\nÉs hasonló beszédpontok az alcímekhez:\n ##keywords## \n\nA bekezdés hangszínének a következőnek kell lennie:\n ##tone_language## \n\n'], - - ['id' => 119, 'template_id' => 4, 'key' => "is-IS", 'value' => 'Skrifaðu stutta, einfalda og upplýsandi umræðupunkta fyrir:\n\n ##title## \n\nOg líka svipaðar umræður fyrir undirfyrirsagnir:\n ##keywords## \n\nTónn málsgreinarinnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 120, 'template_id' => 4, 'key' => "id-ID", 'value' => 'Tulis poin pembicaraan singkat, sederhana dan informatif untuk:\n\n ##title## \n\nDan juga poin pembicaraan serupa untuk subjudul:\n ##keywords## \n\nNada suara paragraf harus:\n ##tone_language## \n\n'], - - ['id' => 121, 'template_id' => 4, 'key' => "it-IT", 'value' => 'Scrivi punti di discussione brevi, semplici e informativi per:\n\n ##title## \n\nE anche punti di discussione simili per i sottotitoli:\n ##keywords## \n\nIl tono di voce del paragrafo deve essere:\n ##tone_language## \n\n'], - - ['id' => 122, 'template_id' => 4, 'key' => "ja-JP", 'value' => '短く、シンプルで有益な論点を書いてください:\n\n ##title## \n\n小見出しにも同様の要点があります:\n ##keywords## \n\n段落の口調は次のようにする必要があります:\n ##tone_language## \n\n'], - - ['id' => 123, 'template_id' => 4, 'key' => "ko-KR", 'value' => '다음에 대한 짧고 간단하며 유익한 요점을 작성하십시오:\n\n ##title## \n\n또한 부제목에 대한 유사한 논점:\n ##keywords## \n\n문단의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 124, 'template_id' => 4, 'key' => "ms-MY", 'value' => 'Tulis perkara perbualan yang pendek, ringkas dan bermaklumat untuk:\n\n ##title## \n\nDan juga perkara yang serupa untuk tajuk kecil:\n ##keywords## \n\nNada suara perenggan mestilah:\n ##tone_language## \n\n'], - - ['id' => 125, 'template_id' => 4, 'key' => "nb-NO", 'value' => 'Skriv korte, enkle og informative samtalepunkter for:\n\n ##title## \n\nOg også lignende samtalepunkter for underoverskrifter:\n ##keywords## \n\nTone i avsnittet må være:\n ##tone_language## \n\n'], - - ['id' => 126, 'template_id' => 4 , 'key' => "pl-PL", 'value' => 'Napisz krótkie, proste i pouczające przemówienia dla:\n\n ##title## \n\nA także podobne uwagi do podtytułów:\n ##keywords## \n\nTon głosu akapitu musi być:\n ##tone_language## \n\n'], - - ['id' => 127, 'template_id' => 4, 'key' => "pt-PT", 'value' => 'Escreva pontos de conversa curtos, simples e informativos para:\n\n ##title## \n\nE também pontos de discussão semelhantes para subtítulos:\n ##keywords## \n\nTom de voz do parágrafo deve ser:\n ##tone_language## \n\n'], - - ['id' => 128, 'template_id' => 4, 'key' => "ru-RU", 'value' => 'Напишите короткие, простые и информативные тезисы для:\n\n ##title## \n\nА также аналогичные темы для подзаголовков:\n ##keywords## \n\nТон абзаца должен быть:\n ##tone_language## \n\n'], - - ['id' => 129, 'template_id' => 4, 'key' => "es-ES", 'value' => 'Escribe puntos de conversación breves, sencillos e informativos para:\n\n ##title## \n\nY también puntos de conversación similares para los subtítulos:\n ##keywords## \n\nEl tono de voz del párrafo debe ser:\n ##tone_language## \n\n'], - - ['id' => 130, 'template_id' => 4, 'key' => "sv-SE", 'value' => 'Skriv korta, enkla och informativa samtalspunkter för:\n\n ##title## \n\nOch även liknande diskussionspunkter för underrubriker:\n ##keywords## \n\nTonfallet i stycket måste vara:\n ##tone_language## \n\n'], - - ['id' => 131, 'template_id' => 4, 'key' => "tr-TR", 'value' => 'Skriv korta, enkla och informativa samtalspunkter för:\n\n ##title## \n\nOch även liknande diskussionspunkter för underrubriker:\n ##keywords## \n\nTonfallet i stycket måste vara:\n ##tone_language## \n\n'], - - ['id' => 132, 'template_id' => 4, 'key' => "pt-BR", 'value' => 'Escreva pontos de conversa curtos, simples e informativos para:\n\n ##title## \n\nE também pontos de discussão semelhantes para subtítulos:\n ##keywords## \n\nTom de voz do parágrafo deve ser:\n ##tone_language## \n\n'], - - ['id' => 133, 'template_id' => 4, 'key' => "ro-RO", 'value' => 'Scrieți puncte de discuție scurte, simple și informative pentru:\n\n ##title## \n\nȘi, de asemenea, puncte de discuție similare pentru subtitluri:\n ##keywords## \n\nTonul vocii al paragrafului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 134, 'template_id' => 4, 'key' => "vi-VN", 'value' => 'Viết luận điểm ngắn gọn, đơn giản và nhiều thông tin cho:\n\n ##title## \n\nVà cả những luận điểm tương tự cho các tiêu đề phụ:\n ##keywords## \n\nGiọng điệu của đoạn phải là:\n ##tone_language## \n\n'], - - ['id' => 135, 'template_id' => 4, 'key' => "sw-KE", 'value' => 'Andika vidokezo vifupi, rahisi na vya kuelimisha vya:\n\n ##title## \n\nNa pia hoja sawa za mazungumzo kwa vichwa vidogo:\n ##keywords## \n\nToni ya sauti ya aya lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 136, 'template_id' => 4, 'key' => "sl-SI", 'value' => 'Napišite kratke, preproste in informativne teme za:\n\n ##title## \n\nIn tudi podobne teme za podnaslove:\n ##keywords## \n\nTon glasu odstavka mora biti:\n ##tone_language## \n\n'], - - ['id' => 137, 'template_id' => 4, 'key' => "th-TH", 'value' => 'เขียนประเด็นการพูดคุยที่สั้น เรียบง่าย และให้ข้อมูลสำหรับ:\n\n ##title## \n\nและประเด็นการพูดคุยที่คล้ายกันสำหรับหัวข้อย่อย:\n ##keywords## \n\nน้ำเสียงของย่อหน้าต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 138, 'template_id' => 4, 'key' => "uk-UA", 'value' => 'Напишіть короткі, прості та інформативні теми для:\n\n ##title## \n\nА також подібні теми для підзаголовків:\n ##keywords## \n\nТон абзацу має бути:\n ##tone_language## \n\n'], - - ['id' => 139, 'template_id' => 4, 'key' => "lt-LT", 'value' => 'Parašykite trumpus, paprastus ir informatyvius pokalbio taškus:\n\n ##title## \n\nIr taip pat panašių pokalbių temų paantraštėms:\n ##keywords## \n\nPastraipos balso tonas turi būti:\n ##tone_language## \n\n'], - - ['id' => 140, 'template_id' => 4, 'key' => "bg-BG", 'value' => 'Напишете кратки, прости и информативни точки за разговор за:\n\n ##title## \n\nИ също подобни теми за подзаглавия:\n ##keywords## \n\nТонът на гласа на абзаца трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 141, 'template_id' => 5, 'key' => "en-US", 'value' => 'Write pros and cons of these products:\n\n ##title## \n\nUse following product description:\n ##keywords## \n\nTone of voice of the pros and cons must be:\n ##tone_language## \n\n'], - - ['id' => 142, 'template_id' => 5, 'key' => "ar-AE", 'value' => 'اكتب إيجابيات وسلبيات هذه المنتجات:\n\n ##title## \n\nاستخدم وصف المنتج التالي:\n ##keywords## \n\nيجب أن تكون نغمة الإيجابيات والسلبيات:\n ##tone_language## \n\n'], - - ['id' => 143, 'template_id' => 5, 'key' => "cmn-CN", 'value' => '写下这些产品的优缺点:\n\n ##title## \n\n使用以下产品描述:\n ##keywords## \n\n正反的语气必须是:\n ##tone_language## \n\n'], - - ['id' => 144, 'template_id' => 5, 'key' => "hr-HR", 'value' => 'Napišite prednosti i nedostatke ovih proizvoda:\n\n ##title## \n\nKoristite sljedeći opis proizvoda:\n ##keywords## \n\nTon glasa za i protiv mora biti:\n ##tone_language## \n\n'], - - ['id' => 145, 'template_id' => 5, 'key' => "cs-CZ", 'value' => 'Napište výhody a nevýhody těchto produktů:\n\n ##title## \n\nPoužijte následující popis produktu:\n ##keywords## \n\nTón hlasu pro a proti musí být:\n ##tone_language## \n\n'], - - ['id' => 146, 'template_id' => 5, 'key' => "da-DK", 'value' => 'Skriv fordele og ulemper ved disse produkter:\n\n ##title## \n\nBrug følgende produktbeskrivelse:\n ##keywords## \n\nTone af fordele og ulemper skal være:\n ##tone_language## \n\n'], - - ['id' => 147, 'template_id' => 5, 'key' => "nl-NL", 'value' => 'Schrijf de voor- en nadelen van deze producten op:\n\n ##title## \n\nGebruik de volgende productbeschrijving:\n ##keywords## \n\nDe toon van de voor- en nadelen moet zijn:\n ##tone_language## \n\n'], - - ['id' => 148, 'template_id' => 5, 'key' => "et-EE", 'value' => 'Kirjutage nende toodete plussid ja miinused:\n\n ##title## \n\nKasutage järgmist tootekirjeldust:\n ##keywords## \n\nPusside ja miinuste hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 149, 'template_id' => 5, 'key' => "fi-FI", 'value' => 'Kirjoita näiden tuotteiden hyvät ja huonot puolet:\n\n ##title## \n\nKäytä seuraavaa tuotekuvausta:\n ##keywords## \n\nPussien ja haittojen äänensävyn on oltava:\n ##tone_language## \n\n'], - - ['id' => 150, 'template_id' => 5, 'key' => "fr-FR", 'value' => 'Écrivez les avantages et les inconvénients de ces produits :\n\n ##title## \n\nUtilisez la description de produit suivante :\n ##keywords## \n\nLe ton de la voix des pour et des contre doit être :\n ##tone_language## \n\n'], - - ['id' => 151, 'template_id' => 5, 'key' => "de-DE", 'value' => 'Schreiben Sie Vor- und Nachteile dieser Produkte auf:\n\n ##title## \n\nFolgende Produktbeschreibung verwenden:\n ##keywords## \n\nTonfall der Vor- und Nachteile muss sein:\n ##tone_language## \n\n'], - - ['id' => 152, 'template_id' => 5, 'key' => "el-GR", 'value' => 'Γράψτε τα πλεονεκτήματα και τα μειονεκτήματα αυτών των προϊόντων:\n\n ##title## \n\nΧρησιμοποιήστε την ακόλουθη περιγραφή προϊόντος:\n ##keywords## \n\nΟ τόνος της φωνής των πλεονεκτημάτων και των μειονεκτημάτων πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 153, 'template_id' => 5, 'key' => "he-IL", 'value' => 'כתוב יתרונות וחסרונות של המוצרים האלה:\n\n ##title## \n\nהשתמש בתיאור המוצר הבא:\n ##keywords## \n\nטון הדיבור של היתרונות והחסרונות חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 154, 'template_id' => 5, 'key' => "hi-IN", 'value' => 'इन उत्पादों के फायदे और नुकसान लिखें:\n\n ##title## \n\nनिम्न उत्पाद विवरण का उपयोग करें:\n ##keywords## \n\n पक्ष और विपक्ष की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n'], - - ['id' => 155, 'template_id' => 5, 'key' => "hu-HU", 'value' => 'Írja le ezeknek a termékeknek előnyeit és hátrányait:\n\n ##title## \n\nHasználja a következő termékleírást:\n ##keywords## \n\nAz előnyök és hátrányok hangnemének a következőnek kell lennie:\n ##tone_language## \n\n'], - - ['id' => 156, 'template_id' => 5, 'key' => "is-IS", 'value' => 'Skrifaðu kosti og galla þessara vara:\n\n ##title## \n\nNotaðu eftirfarandi vörulýsingu:\n ##keywords## \n\nTónn fyrir kosti og galla verður að vera:\n ##tone_language## \n\n'], - - ['id' => 157, 'template_id' => 5, 'key' => "id-ID", 'value' => 'Tulis pro dan kontra dari produk ini:\n\n ##title## \n\nGunakan deskripsi produk berikut:\n ##keywords## \n\nNada suara pro dan kontra harus:\n ##tone_language## \n\n'], - - ['id' => 158, 'template_id' => 5, 'key' => "it-IT", 'value' => 'Scrivi pro e contro di questi prodotti:\n\n ##title## \n\nUsa la seguente descrizione del prodotto:\n ##keywords## \n\nIl tono di voce dei pro e dei contro deve essere:\n ##tone_language## \n\n'], - - ['id' => 159, 'template_id' => 5, 'key' => "ja-JP", 'value' => 'これらの製品の長所と短所を書いてください:\n\n ##title## \n\n次の製品説明を使用してください:\n ##keywords## \n\n賛成派と反対派の口調は次のとおりでなければなりません:\n ##tone_language## \n\n'], - - ['id' => 160, 'template_id' => 5, 'key' => "ko-KR", 'value' => '이 제품의 장단점을 작성하십시오:\n\n ##title## \n\n다음 제품 설명을 사용하십시오:\n ##keywords## \n\n장단점의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 161, 'template_id' => 5, 'key' => "ms-MY", 'value' => 'Tulis kebaikan dan keburukan produk ini:\n\n ##title## \n\nGunakan penerangan produk berikut:\n ##keywords## \n\nNada suara kebaikan dan keburukan mestilah:\n ##tone_language## \n\n'], - - ['id' => 162, 'template_id' => 5, 'key' => "nb-NO", 'value' => 'Skriv fordeler og ulemper med disse produktene:\n\n ##title## \n\nBruk følgende produktbeskrivelse:\n ##keywords## \n\nTone for fordeler og ulemper må være:\n ##tone_language## \n\n'], - - ['id' => 163, 'template_id' => 5 , 'key' => "pl-PL", 'value' => 'Napisz wady i zalety tych produktów:\n\n ##title## \n\nUżyj następującego opisu produktu:\n ##keywords## \n\nTon głosu za i przeciw musi być następujący:\n ##tone_language## \n\n'], - - ['id' => 164, 'template_id' => 5, 'key' => "pt-PT", 'value' => 'Escreva prós e contras destes produtos:\n\n ##title## \n\nUse a seguinte descrição do produto:\n ##keywords## \n\nTom de voz dos prós e contras deve ser:\n ##tone_language## \n\n'], - - ['id' => 165, 'template_id' => 5, 'key' => "ru-RU", 'value' => 'Напишите плюсы и минусы этих продуктов:\n\n ##title## \n\nИспользуйте следующее описание продукта:\n ##keywords## \n\nТон озвучивания плюсов и минусов должен быть:\n ##tone_language## \n\n'], - - ['id' => 166, 'template_id' => 5, 'key' => "es-ES", 'value' => 'Escriba pros y contras de estos productos:\n\n ##title## \n\nUtilice la siguiente descripción del producto:\n ##keywords## \n\nEl tono de voz de los pros y los contras debe ser:\n ##tone_language## \n\n'], - - ['id' => 167, 'template_id' => 5, 'key' => "sv-SE", 'value' => 'Skriv för- och nackdelar med dessa produkter:\n\n ##title## \n\nAnvänd följande produktbeskrivning:\n ##keywords## \n\nTonfall för för- och nackdelar måste vara:\n ##tone_language## \n\n'], - - ['id' => 168, 'template_id' => 5, 'key' => "tr-TR", 'value' => 'Bu ürünlerin artılarını ve eksilerini yazın:\n\n ##title## \n\nAşağıdaki ürün açıklamasını kullanın:\n ##keywords## \n\nSes tonu artıları ve eksileri şöyle olmalıdır:\n ##tone_language## \n\n'], - - ['id' => 169, 'template_id' => 5, 'key' => "pt-BR", 'value' => 'Escreva prós e contras destes produtos:\n\n ##title## \n\nUse a seguinte descrição do produto:\n ##keywords## \n\nTom de voz dos prós e contras deve ser:\n ##tone_language## \n\n'], - - ['id' => 170, 'template_id' => 5, 'key' => "ro-RO", 'value' => 'Scrieți argumentele pro și contra acestor produse:\n\n ##title## \n\nUtilizați următoarea descriere a produsului:\n ##keywords## \n\nTonul vocii argumentelor pro și contra trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 171, 'template_id' => 5, 'key' => "vi-VN", 'value' => 'Viết ưu và nhược điểm của những sản phẩm này:\n\n ##title## \n\nSử dụng mô tả sản phẩm sau:\n ##keywords## \n\nGiọng điệu của những ưu và nhược điểm phải là:\n ##tone_language## \n\n'], - - ['id' => 172, 'template_id' => 5, 'key' => "sw-KE", 'value' => 'Andika faida na hasara za bidhaa hizi:\n\n ##title## \n\nTumia maelezo ya bidhaa yafuatayo:\n ##keywords## \n\nToni ya sauti ya faida na hasara lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 173, 'template_id' => 5, 'key' => "sl-SI", 'value' => 'Napišite prednosti in slabosti teh izdelkov:\n\n ##title## \n\nUporabi naslednji opis izdelka:\n ##keywords## \n\nTon glasu prednosti in slabosti mora biti:\n ##tone_language## \n\n'], - - ['id' => 174, 'template_id' => 5, 'key' => "th-TH", 'value' => 'เขียนข้อดีข้อเสียของผลิตภัณฑ์เหล่านี้:\n\n ##title## \n\nใช้คำอธิบายผลิตภัณฑ์ต่อไปนี้:\n ##keywords## \n\nเสียงของข้อดีและข้อเสียต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 175, 'template_id' => 5, 'key' => "uk-UA", 'value' => 'Напишіть плюси та мінуси цих продуктів:\n\n ##title## \n\nВикористовуйте такий опис продукту:\n ##keywords## \n\nТон голосу плюсів і мінусів має бути:\n ##tone_language## \n\n'], - - ['id' => 176, 'template_id' => 5, 'key' => "lt-LT", 'value' => 'Parašykite šių produktų privalumus ir trūkumus:\n\n ##title## \n\nNaudokite šį produkto aprašymą:\n ##keywords## \n\nPrivalumai ir trūkumai turi būti tokie:\n ##tone_language## \n\n'], - - ['id' => 177, 'template_id' => 5, 'key' => "bg-BG", 'value' => 'Напишете плюсовете и минусите на тези продукти:\n\n ##title## \n\nИзползвайте следното описание на продукта:\n ##keywords## \n\nТонът на гласа на плюсовете и минусите трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 178, 'template_id' => 6, 'key' => "en-US", 'value' => 'Generate 10 catchy blog titles for:\n\n ##description## \n\n'], - - ['id' => 179, 'template_id' => 6, 'key' => "ar-AE", 'value' => 'قم بإنشاء 10 عناوين مدونة جذابة لـ:\n\n ##description## \n\n'], - - ['id' => 180, 'template_id' => 6, 'key' => "cmn-CN", 'value' => '为以下内容生成 10 个吸引人的博客标题:\n\n ##description## \n\n'], - - ['id' => 181, 'template_id' => 6, 'key' => "hr-HR", 'value' => 'Generiraj 10 privlačnih naslova bloga za:\n\n ##description## \n\n'], - - ['id' => 182, 'template_id' => 6, 'key' => "cs-CZ", 'value' => 'Vygenerujte 10 chytlavých názvů blogů pro:\n\n ##description## \n\n'], - - ['id' => 183, 'template_id' => 6, 'key' => "da-DK", 'value' => 'Generer 10 fængende blogtitler til:\n\n ##description## \n\n'], - - ['id' => 184, 'template_id' => 6, 'key' => "nl-NL", 'value' => 'Genereer 10 pakkende blogtitels voor:\n\n ##description## \n\n'], - - ['id' => 185, 'template_id' => 6, 'key' => "et-EE", 'value' => 'Loo 10 meeldejäävat ajaveebi pealkirja:\n\n ##description## \n\n'], - - ['id' => 186, 'template_id' => 6, 'key' => "fi-FI", 'value' => 'Luo 10 tarttuvaa blogiotsikkoa:\n\n ##description## \n\n'], - - ['id' => 187, 'template_id' => 6, 'key' => "fr-FR", 'value' => 'Générez 10 titres de blog accrocheurs pour :\n\n ##description## \n\n'], - - ['id' => 188, 'template_id' => 6, 'key' => "de-DE", 'value' => 'Generiere 10 einprägsame Blog-Titel für:\n\n ##description## \n\n'], - - ['id' => 189, 'template_id' => 6, 'key' => "el-GR", 'value' => 'Δημιουργήστε 10 εντυπωσιακούς τίτλους ιστολογίου για:\n\n ##description## \n\n'], - - ['id' => 190, 'template_id' => 6, 'key' => "he-IL", 'value' => 'צור 10 כותרות בלוג קליטות עבור:\n\n ##description## \n\n'], - - ['id' => 191, 'template_id' => 6, 'key' => "hi-IN", 'value' => '10 आकर्षक ब्लॉग शीर्षक उत्पन्न करें:\n\n ##description## \n\n'], - - ['id' => 192, 'template_id' => 6, 'key' => "hu-HU", 'value' => 'Generálj 10 fülbemászó blogcímet a következőhöz:\n\n ##description## \n\n'], - - ['id' => 193, 'template_id' => 6, 'key' => "is-IS", 'value' => 'Búðu til 10 grípandi bloggtitla fyrir:\n\n ##description## \n\n'], - - ['id' => 194, 'template_id' => 6, 'key' => "id-ID", 'value' => 'Hasilkan 10 judul blog menarik untuk:\n\n ##description## \n\n'], - - ['id' => 195, 'template_id' => 6, 'key' => "it-IT", 'value' => 'Genera 10 titoli di blog accattivanti per:\n\n ##description## \n\n'], - - ['id' => 196, 'template_id' => 6, 'key' => "ja-JP", 'value' => 'キャッチーなブログ タイトルを 10 個生成します:\n\n ##description## \n\n'], - - ['id' => 197, 'template_id' => 6, 'key' => "ko-KR", 'value' => '다음에 대한 10개의 눈길을 끄는 블로그 제목 생성:\n\n ##description## \n\n'], - - ['id' => 198, 'template_id' => 6, 'key' => "ms-MY", 'value' => 'Jana 10 tajuk blog yang menarik untuk:\n\n ##description## \n\n'], - - ['id' => 199, 'template_id' => 6, 'key' => "nb-NO", 'value' => 'Generer 10 fengende bloggtitler for:\n\n ##description## \n\n'], - - ['id' => 200, 'template_id' => 6, 'key' => "pl-PL", 'value' => 'Wygeneruj 10 chwytliwych tytułów blogów dla:\n\n ##description## \n\n'], - - ['id' => 201, 'template_id' => 6, 'key' => "pt-PT", 'value' => 'Gerar 10 títulos de blog cativantes para:\n\n ##description## \n\n'], - - ['id' => 202, 'template_id' => 6, 'key' => "ru-RU", 'value' => 'Создайте 10 броских заголовков блога для:\n\n ##description## \п\п'], - - ['id' => 203, 'template_id' => 6, 'key' => "es-ES", 'value' => 'Generar 10 títulos de blog pegadizos para:\n\n ##description## \n\n'], - - ['id' => 204, 'template_id' => 6, 'key' => "sv-SE", 'value' => 'Generera 10 catchy bloggtitlar för:\n\n ##description## \n\n'], - - ['id' => 205, 'template_id' => 6, 'key' => "tr-TR", 'value' => '10 akılda kalıcı blog başlığı oluşturun:\n\n ##description## \n\n'], - - ['id' => 206, 'template_id' => 6, 'key' => "pt-BR", 'value' => 'Gerar 10 títulos de blog cativantes para:\n\n ##description## \n\n'], - - ['id' => 207, 'template_id' => 6, 'key' => "ro-RO", 'value' => 'Generează 10 titluri de blog atrăgătoare pentru:\n\n ##description## \n\n'], - - ['id' => 208, 'template_id' => 6, 'key' => "vi-VN", 'value' => 'Tạo 10 tiêu đề blog hấp dẫn cho:\n\n ##description## \n\n'], - - ['id' => 209, 'template_id' => 6, 'key' => "sw-KE", 'value' => 'Zalisha vichwa 10 vya blogu vya kuvutia vya:\n\n ##description## \n\n'], - - ['id' => 210, 'template_id' => 6, 'key' => "sl-SI", 'value' => 'Ustvari 10 privlačnih naslovov blogov za:\n\n ##description## \n\n'], - - ['id' => 211, 'template_id' => 6, 'key' => "th-TH", 'value' => 'สร้างชื่อบล็อกที่ดึงดูดใจ 10 ชื่อสำหรับ:\n\n ##description## \n\n'], - - ['id' => 212, 'template_id' => 6, 'key' => "uk-UA", 'value' => 'Створіть 10 привабливих назв блогу для:\n\n ##description## \n\n'], - - ['id' => 213, 'template_id' => 6, 'key' => "lt-LT", 'value' => 'Sukurkite 10 patrauklių tinklaraščio pavadinimų:\n\n ##description## \n\n'], - - ['id' => 214, 'template_id' => 6, 'key' => "bg-BG", 'value' => 'Генерирайте 10 закачливи заглавия на блогове за:\n\n ##description## \n\n'], - - ['id' => 215, 'template_id' => 7, 'key' => "en-US", 'value' => 'Write a full blog section with at least 5 large paragraphs about:\n\n ##title## \n\nSplit by subheadings:\n ##subheadings## \n\nTone of voice of the paragraphs must be:\n ##tone_language## \n\n'], - - ['id' => 216, 'template_id' => 7, 'key' => "ar-AE", 'value' => 'اكتب قسم مدونة كاملًا يحتوي على 5 فقرات كبيرة على الأقل حول:\n\n ##title## \n\nانقسام حسب العناوين الفرعية:\n ##subheadings## \n\nيجب أن تكون نغمة صوت الفقرات:\n ##tone_language## \n\n'], - - ['id' => 217, 'template_id' => 7, 'key' => "cmn-CN", 'value' => '写一个完整的博客部分,其中至少包含 5 个大段落:\n\n ##title## \n\n按副标题拆分:\n ##subheadings## \n\n段落的语气必须是:\n ##tone_language## \n\n'], - - ['id' => 218, 'template_id' => 7, 'key' => "hr-HR", 'value' => 'Napišite cijeli odjeljak bloga s najmanje 5 velikih odlomaka o:\n\n ##title## \n\nPodijeli po podnaslovima:\n ##subheadings## \n\nTon glasa odlomaka mora biti:\n ##tone_language## \n\n'], - - ['id' => 219, 'template_id' => 7, 'key' => "cs-CZ", 'value' => 'Napište celou sekci blogu s alespoň 5 velkými odstavci o:\n\n ##title## \n\nRozdělit podle podnadpisů:\n ##subheadings## \n\nTón hlasu odstavců musí být:\n ##tone_language## \n\n'], - - ['id' => 220, 'template_id' => 7, 'key' => "da-DK", 'value' => 'Skriv en komplet blogsektion med mindst 5 store afsnit om:\n\n ##title## \n\nOpdelt efter underoverskrifter:\n ##subheadings## \n\nTonefaldet i afsnittene skal være:\n ##tone_language## \n\n'], - - ['id' => 221, 'template_id' => 7, 'key' => "nl-NL", 'value' => 'Schrijf een volledig bloggedeelte met minimaal 5 grote paragrafen over:\n\n ##title## \n\nGesplitst door subkoppen:\n ##subheadings## \n\nDe toon van de alinea`s moet zijn:\n ##tone_language## \n\n'], - - ['id' => 222, 'template_id' => 7, 'key' => "et-EE", 'value' => 'Kirjutage terve blogijaotis vähemalt 5 suure lõiguga teemal:\n\n ##title## \n\nJagatud alampealkirjade järgi:\n ##subheadings## \n\nLõigete hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 223, 'template_id' => 7, 'key' => "fi-FI", 'value' => 'Kirjoita koko blogiosio, jossa on vähintään 5 suurta kappaletta aiheesta:\n\n ##title## \n\nJaettu alaotsikoiden mukaan:\n ##subheadings## \n\nKappaleiden äänensävyn on oltava:\n ##tone_language## \n\n'], - - ['id' => 224, 'template_id' => 7, 'key' => "fr-FR", 'value' => 'Écrivez une section de blog complète avec au moins 5 grands paragraphes sur :\n\n ##title## \n\nDiviser par sous-titres :\n ##subheadings## \n\nLe ton de la voix des paragraphes doit être :\n ##tone_language## \n\n'], - - ['id' => 225, 'template_id' => 7, 'key' => "de-DE", 'value' => 'Schreiben Sie einen vollständigen Blog-Abschnitt mit mindestens 5 großen Absätzen über:\n\n ##title## \n\nAufgeteilt nach Unterüberschriften:\n ##subheadings## \n\nTonfall der Absätze muss sein:\n ##tone_language## \n\n'], - - ['id' => 226, 'template_id' => 7, 'key' => "el-GR", 'value' => 'Γράψτε μια πλήρη ενότητα ιστολογίου με τουλάχιστον 5 μεγάλες παραγράφους σχετικά με:\n\n ##title## \n\nΔιαίρεση κατά υποτίτλους:\n ##subheadings## \n\nΟ τόνος της φωνής των παραγράφων πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 227, 'template_id' => 7, 'key' => "he-IL", 'value' => 'כתוב מדור בלוג מלא עם לפחות 5 פסקאות גדולות על:\n\n ##title## \n\nפיצול לפי כותרות משנה:\n ##subheadings## \n\nטון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 228, 'template_id' => 7, 'key' => "hi-IN", 'value' => 'इस बारे में कम से कम 5 बड़े अनुच्छेदों के साथ एक पूर्ण ब्लॉग अनुभाग लिखें:\n\n ##title## \n\nउपशीर्षकों द्वारा विभाजित करें:\n ##subheadings## \n\nपैराग्राफ की आवाज का स्वर होना चाहिए:\n ##tone_language## \n\n'], - - ['id' => 229, 'template_id' => 7, 'key' => "hu-HU", 'value' => 'Írjon egy teljes blogrészt, legalább 5 nagy bekezdéssel erről:\n\n ##title## \n\nAlcímek szerint felosztva:\n ##subheadings## \n\nA bekezdések hangnemének a következőnek kell lennie:\n ##tone_language## \n\n'], - - ['id' => 230, 'template_id' => 7, 'key' => "is-IS", 'value' => 'Skrifaðu heilan blogghluta með að minnsta kosti 5 stórum málsgreinum um:\n\n ##title## \n\nDeilt eftir undirfyrirsögnum:\n ##subheadings## \n\nTónn málsgreina verður að vera:\n ##tone_language## \n\n'], - - ['id' => 231, 'template_id' => 7, 'key' => "id-ID", 'value' => 'Tulis bagian blog lengkap dengan setidaknya 5 paragraf besar tentang:\n\n ##title## \n\nDibagi berdasarkan subjudul:\n ##subheadings## \n\nNada suara paragraf harus:\n ##tone_language## \n\n'], - - ['id' => 232, 'template_id' => 7, 'key' => "it-IT", 'value' => 'Scrivi una sezione completa del blog con almeno 5 paragrafi di grandi dimensioni su:\n\n ##title## \n\nDiviso per sottotitoli:\n ##subheadings## \n\nIl tono di voce dei paragrafi deve essere:\n ##tone_language## \n\n'], - - ['id' => 233, 'template_id' => 7, 'key' => "ja-JP", 'value' => '次の内容について、少なくとも 5 つの大きな段落を含む完全なブログ セクションを作成します:\n\n ##title## \n\n小見出しで分割:\n ##subheadings## \n\n段落の口調は次のようにする必要があります:\n ##tone_language## \n\n'], - - ['id' => 234, 'template_id' => 7, 'key' => "ko-KR", 'value' => '다음에 대해 최소 5개의 큰 단락으로 전체 블로그 섹션을 작성하세요:\n\n ##title## \n\n하위 제목으로 분할:\n ##subheadings## \n\n문단의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 235, 'template_id' => 7, 'key' => "ms-MY", 'value' => 'Tulis bahagian blog penuh dengan sekurang-kurangnya 5 perenggan besar tentang:\n\n ##title## \n\nPisah mengikut subtajuk:\n ##subheadings## \n\nNada suara perenggan mestilah:\n ##tone_language## \n\n'], - - ['id' => 236, 'template_id' => 7, 'key' => "nb-NO", 'value' => 'Skriv en fullstendig bloggseksjon med minst 5 store avsnitt om:\n\n ##title## \n\nSplitt etter underoverskrifter:\n ##subheadings## \n\nTone i avsnittene må være:\n ##tone_language## \n\n'], - - ['id' => 237, 'template_id' => 7 , 'key' => "pl-PL", 'value' => 'Napisz pełną sekcję bloga zawierającą co najmniej 5 dużych akapitów na temat:\n\n ##title## \n\nPodział według podtytułów:\n ##subheadings## \n\nTon głosu akapitów musi być:\n ##tone_language## \n\n'], - - ['id' => 238, 'template_id' => 7, 'key' => "pt-PT", 'value' => 'Escreva uma seção de blog completa com pelo menos 5 parágrafos grandes sobre:\n\n ##title## \n\nDivisão por subtítulos:\n ##subheadings## \n\nTom de voz dos parágrafos deve ser:\n ##tone_language## \n\n'], - - ['id' => 239, 'template_id' => 7, 'key' => "ru-RU", 'value' => 'Напишите полный раздел блога, содержащий не менее 5 больших абзацев о:\n\n ##title## \n\nРазделить по подзаголовкам:\n ##subheadings## \n\nТон озвучивания абзацев должен быть:\n ##tone_language## \n\n'], - - ['id' => 240, 'template_id' => 7, 'key' => "es-ES", 'value' => 'Escribe una sección de blog completa con al menos 5 párrafos extensos sobre:\n\n ##title## \n\nDividir por subtítulos:\n ##subheadings## \n\nEl tono de voz de los párrafos debe ser:\n ##tone_language## \n\n'], - - ['id' => 241, 'template_id' => 7, 'key' => "sv-SE", 'value' => 'Skriv en fullständig bloggsektion med minst 5 stora stycken om:\n\n ##title## \n\nDela upp efter underrubriker:\n ##subheadings## \n\nTonfallet i styckena måste vara:\n ##tone_language## \n\n'], - - ['id' => 242, 'template_id' => 7, 'key' => "tr-TR", 'value' => 'Şununla ilgili en az 5 büyük paragraf içeren eksiksiz bir blog bölümü yazın:\n\n ##title## \n\nAlt başlıklara göre ayır:\n ##subheadings## \n\nParagrafların ses tonu şöyle olmalıdır:\n ##tone_language## \n\n'], - - ['id' => 243, 'template_id' => 7, 'key' => "pt-BR", 'value' => 'Escreva uma seção de blog completa com pelo menos 5 parágrafos grandes sobre:\n\n ##title## \n\nDivisão por subtítulos:\n ##subheadings## \n\nTom de voz dos parágrafos deve ser:\n ##tone_language## \n\n'], - - ['id' => 244, 'template_id' => 7, 'key' => "ro-RO", 'value' => 'Scrieți o secțiune completă de blog cu cel puțin 5 paragrafe mari despre:\n\n ##title## \n\nDivizat după subtitluri:\n ##subheadings## \n\nTonul de voce al paragrafelor trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 245, 'template_id' => 7, 'key' => "vi-VN", 'value' => 'Viết một mục blog đầy đủ với ít nhất 5 đoạn văn lớn về:\n\n ##title## \n\nChia theo tiêu đề phụ:\n ##subheadings## \n\nGiọng điệu của đoạn văn phải là:\n ##tone_language## \n\n'], - - ['id' => 246, 'template_id' => 7, 'key' => "sw-KE", 'value' => 'Andika sehemu kamili ya blogu iliyo na angalau aya 5 kubwa kuhusu:\n\n ##title## \n\nGawanya kwa vichwa vidogo:\n ##subheadings## \n\nToni ya sauti ya aya lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 247, 'template_id' => 7, 'key' => "sl-SI", 'value' => 'Napišite celoten razdelek spletnega dnevnika z vsaj 5 velikimi odstavki o:\n\n ##title## \n\nRazdeljeno po podnaslovih:\n ##subheadings## \n\nTon glasu odstavkov mora biti:\n ##tone_language## \n\n'], - - ['id' => 248, 'template_id' => 7, 'key' => "th-TH", 'value' => 'เขียนบล็อกแบบเต็มโดยมีย่อหน้าใหญ่อย่างน้อย 5 ย่อหน้าเกี่ยวกับ:\n\n ##title## \n\nแบ่งตามหัวข้อย่อย:\n ##subheadings## \n\nเสียงของย่อหน้าต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 249, 'template_id' => 7, 'key' => "uk-UA", 'value' => 'Напишіть повний розділ блогу, щонайменше 5 великих абзаців про:\n\n ##title## \n\nРозділити за підзаголовками:\n ##subheadings## \n\nТон абзаців має бути:\n ##tone_language## \n\n'], - - ['id' => 250, 'template_id' => 7, 'key' => "lt-LT", 'value' => 'Parašykite visą tinklaraščio skyrių su bent 5 didelėmis pastraipomis apie:\n\n ##title## \n\nPadalinta pagal paantraštes:\n ##subheadings## \n\nPastraipų balso tonas turi būti:\n ##tone_language## \n\n'], - - ['id' => 251, 'template_id' => 7, 'key' => "bg-BG", 'value' => 'Напишете цял блог с поне 5 големи абзаца за:\n\n ##title## \n\nРазделени по подзаглавия:\n ##subheadings## \n\nТонът на гласа на параграфите трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 252, 'template_id' => 8, 'key' => "en-US", 'value' => '"Write interesting blog ideas and outline about:\n\n ##title## \n\n Tone of voice of the ideas must be:\n ##tone_language## \n\n'], - - ['id' => 253, 'template_id' => 8, 'key' => "ar-AE", 'value' => 'اكتب أفكار مدونة ممتعة وحدد مخططًا تفصيليًا حول:\n\n ##title## \n\nيجب أن تكون نبرة صوت الأفكار:\n ##tone_language## \n\n'], - - ['id' => 254, 'template_id' => 8, 'key' => "cmn-CN", 'value' => '写下有趣的博客想法和大纲:\n\n ##title## \n\n 想法的语气必须是:\n ##tone_language## \n\n'], - - ['id' => 255, 'template_id' => 8, 'key' => "hr-HR", 'value' => 'Napišite zanimljive ideje za blog i skicirajte o:\n\n ##title## \n\n Ton glasa ideja mora biti:\n ##tone_language## \n\n'], - - ['id' => 256, 'template_id' => 8, 'key' => "cs-CZ", 'value' => 'Pište zajímavé nápady na blog a přehled o:\n\n ##title## \n\n Tón hlasu nápadů musí být:\n ##tone_language## \n\n'], - - ['id' => 257, 'template_id' => 8, 'key' => "da-DK", 'value' => 'Skriv interessante blogideer og skitser om:\n\n ##title## \n\n Tonen i ideerne skal være:\n ##tone_language## \n\n'], - - ['id' => 258, 'template_id' => 8, 'key' => "nl-NL", 'value' => 'Schrijf interessante blogideeën en schets over:\n\n ##title## \n\n De toon van de ideeën moet zijn:\n ##tone_language## \n\n'], - - ['id' => 259, 'template_id' => 8, 'key' => "et-EE", 'value' => 'Kirjutage huvitavaid ajaveebi ideid ja kirjeldage:\n\n ##title## \n\n Ideede hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 260, 'template_id' => 8, 'key' => "fi-FI", 'value' => 'Kirjoita mielenkiintoisia blogiideoita ja hahmotelkaa aiheesta:\n\n ##title## \n\n Ideoiden äänensävyn tulee olla:\n ##tone_language## \n\n'], - - ['id' => 261, 'template_id' => 8, 'key' => "fr-FR", 'value' => 'Rédigez des idées de blog intéressantes et décrivez :\n\n ##title## \n\n Le ton de la voix des idées doit être :\n ##tone_language## \n\n'], - - ['id' => 262, 'template_id' => 8, 'key' => "de-DE", 'value' => 'Schreiben Sie interessante Blog-Ideen und skizzieren Sie über:\n\n ##title## \n\n Tonfall der Ideen muss sein:\n ##tone_language## \n\n'], - - ['id' => 263, 'template_id' => 8, 'key' => "el-GR", 'value' => 'Γράψτε ενδιαφέρουσες ιδέες ιστολογίου και περιγράψτε τα σχετικά:\n\n ##title## \n\n Ο τόνος της φωνής των ιδεών πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 264, 'template_id' => 8, 'key' => "he-IL", 'value' => 'כתוב רעיונות מעניינים לבלוג ותאר את:\n\n ##title## \n\n טון הדיבור של הרעיונות חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 265, 'template_id' => 8, 'key' => "hi-IN", 'value' => 'दिलचस्प ब्लॉग विचार लिखें और इसके बारे में रूपरेखा लिखें:\n\n ##title## \n\n विचारों का स्वर होना चाहिए:\n ##tone_language## \n\n'], - - ['id' => 266, 'template_id' => 8, 'key' => "hu-HU", 'value' => 'Írjon érdekes blogötleteket és vázlatot erről:\n\n ##title## \n\n Az ötletek hangnemének a következőnek kell lennie:\n ##tone_language## \n\n'], - - ['id' => 267, 'template_id' => 8, 'key' => "is-IS", 'value' => 'Skrifaðu áhugaverðar blogghugmyndir og gerðu grein fyrir:\n\n ##title## \n\n Rödd hugmyndanna verður að vera:\n ##tone_language## \n\n'], - - ['id' => 268, 'template_id' => 8, 'key' => "id-ID", 'value' => 'Tulis ide blog yang menarik dan uraikan tentang:\n\n ##title## \n\n Nada suara ide harus:\n ##tone_language## \n\n'], - - ['id' => 269, 'template_id' => 8, 'key' => "it-IT", 'value' => 'Scrivi interessanti idee per il blog e delinea su:\n\n ##title## \n\n Il tono di voce delle idee deve essere:\n ##tone_language## \n\n'], - - ['id' => 270, 'template_id' => 8, 'key' => "ja-JP", 'value' => '興味深いブログのアイデアと概要を書きます:\n\n ##title## \n\n アイデアの口調は次のとおりでなければなりません:\n ##tone_language## \n\n'], - - ['id' => 271, 'template_id' => 8, 'key' => "ko-KR", 'value' => '흥미로운 블로그 아이디어를 작성하고 다음에 대한 개요를 작성하세요:\n\n ##title## \n\n 아이디어의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 272, 'template_id' => 8, 'key' => "ms-MY", 'value' => 'Tulis idea blog yang menarik dan gariskan tentang:\n\n ##title## \n\n Nada suara idea mestilah:\n ##tone_language## \n\n'], - - ['id' => 273, 'template_id' => 8, 'key' => "nb-NO", 'value' => 'Skriv interessante bloggideer og skisser om:\n\n ##title## \n\n Tonen til ideene må være:\n ##tone_language## \n\n'], - - ['id' => 274, 'template_id' => 8 , 'key' => "pl-PL", 'value' => 'Napisz ciekawe pomysły na bloga i zarys tematu:\n\n ##title## \n\n Ton głosu pomysłów musi być:\n ##tone_language## \n\n'], - - ['id' => 275, 'template_id' => 8, 'key' => "pt-PT", 'value' => 'Escreva ideias de blog interessantes e descreva sobre:\n\n ##title## \n\n Tom de voz das ideias deve ser:\n ##tone_language## \n\n'], - - ['id' => 276, 'template_id' => 8, 'key' => "ru-RU", 'value' => 'Напишите интересные идеи для блога и расскажите о:\n\n ##title## \n\n Тон голоса идей должен быть:\n ##tone_language## \n\n'], - - ['id' => 277, 'template_id' => 8, 'key' => "es-ES", 'value' => 'Escriba ideas de blog interesantes y esboce sobre:\n\n ##title## \n\n El tono de voz de las ideas debe ser:\n ##tone_language## \n\n'], - - ['id' => 278, 'template_id' => 8, 'key' => "sv-SE", 'value' => 'Skriv intressanta bloggidéer och beskriv:\n\n ##title## \n\n Tonen i idéerna måste vara:\n ##tone_language## \n\n'], - - ['id' => 279, 'template_id' => 8, 'key' => "tr-TR", 'value' => 'İlginç blog fikirleri yazın ve hakkında ana hatları çizin:\n\n ##title## \n\n Fikirlerin ses tonu şöyle olmalıdır:\n ##tone_language## \n\n'], - - ['id' => 280, 'template_id' => 8, 'key' => "pt-BR", 'value' => 'Escreva ideias de blog interessantes e descreva sobre:\n\n ##title## \n\n Tom de voz das ideias deve ser:\n ##tone_language## \n\n'], - - ['id' => 281, 'template_id' => 8, 'key' => "ro-RO", 'value' => 'Scrie idei interesante de blog și schiță despre:\n\n ##title## \n\n Tonul vocii ideilor trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 282, 'template_id' => 8, 'key' => "vi-VN", 'value' => 'Viết ý tưởng blog thú vị và phác thảo về:\n\n ##title## \n\n Giọng điệu của các ý tưởng phải là:\n ##tone_language## \n\n'], - - ['id' => 283, 'template_id' => 8, 'key' => "sw-KE", 'value' => 'Andika mawazo ya kuvutia ya blogu na muhtasari kuhusu:\n\n ##title## \n\n Toni ya sauti ya mawazo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 284, 'template_id' => 8, 'key' => "sl-SI", 'value' => 'Napišite zanimive ideje za blog in orišite o:\n\n ##title## \n\n Ton glasu idej mora biti:\n ##tone_language## \n\n'], - - ['id' => 285, 'template_id' => 8, 'key' => "th-TH", 'value' => 'เขียนแนวคิดและโครงร่างบล็อกที่น่าสนใจเกี่ยวกับ:\n\n ##title## \n\n น้ำเสียงของความคิดต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 286, 'template_id' => 8, 'key' => "uk-UA", 'value' => 'Напишіть цікаві ідеї для блогу та окресліть:\n\n ##title## \n\n Тон голосу ідей має бути:\n ##tone_language## \n\n'], - - ['id' => 287, 'template_id' => 8, 'key' => "lt-LT", 'value' => 'Parašykite įdomių tinklaraščio idėjų ir apibūdinkite apie:\n\n ##title## \n\n Idėjų balso tonas turi būti:\n ##tone_language## \n\n'], - - ['id' =>288, 'template_id' => 8, 'key' => "bg-BG", 'value' => 'Напишете интересни идеи за блог и очертайте:\n\n ##title## \n\n Тонът на гласа на идеите трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 289, 'template_id' => 9, 'key' => "en-US", 'value' => 'Write an interesting blog post intro about:\n\n ##description## \n\n Blog post title:\n ##title## \n\nTone of voice of the blog intro must be:\n ##tone_language## \n\n'], - - ['id' => 290, 'template_id' => 9, 'key' => "ar-AE", 'value' => 'اكتب مقدمة مدونة شيقة عن:\n\n ##description## \n\n عنوان منشور المدونة:\n ##title## \n\nيجب أن تكون نغمة الصوت في مقدمة المدونة:\n ##tone_language## \n\n'], - - ['id' => 291, 'template_id' => 9, 'key' => "cmn-CN", 'value' => '写一篇有趣的博客文章介绍:\n\n ##description## \n\n 博文标题:\n ##title## \n\n博客介绍的语气必须是:\n ##tone_language## \n\n'], - - ['id' => 292, 'template_id' => 9, 'key' => "hr-HR", 'value' => 'Napišite uvod u zanimljiv blog post o:\n\n ##description## \n\n Naslov posta na blogu:\n ##title## \n\nTon glasa uvoda u blog mora biti:\n ##tone_language## \n\n'], - - ['id' => 293, 'template_id' => 9, 'key' => "cs-CZ", 'value' => 'Napište zajímavý úvod do blogového příspěvku o:\n\n ##description## \n\n Název příspěvku na blogu:\n ##title## \n\nTón hlasu úvodu blogu musí být:\n ##tone_language## \n\n'], - - ['id' => 294, 'template_id' => 9, 'key' => "da-DK", 'value' => 'Skriv et interessant blogindlæg om:\n\n ##description## \n\n Blogindlægs titel:\n ##title## \n\nTone i blogintroen skal være:\n ##tone_language## \n\n'], - - ['id' => 295, 'template_id' => 9, 'key' => "nl-NL", 'value' => 'Schrijf een interessante blogpost-intro over:\n\n ##description## \n\n Titel blogpost:\n ##title## \n\nDe toon van de blogintro moet zijn:\n ##tone_language## \n\n'], - - ['id' => 296, 'template_id' => 9, 'key' => "et-EE", 'value' => 'Kirjutage huvitav blogipostituse tutvustus teemal:\n\n ##description## \n\n Blogipostituse pealkiri:\n ##title## \n\nBlogi sissejuhatuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 297, 'template_id' => 9, 'key' => "fi-FI", 'value' => 'Kirjoita mielenkiintoinen blogikirjoituksen esittely aiheesta:\n\n ##description## \n\n Blogiviestin otsikko:\n ##title## \n\nBlogin johdannon äänensävyn on oltava:\n ##tone_language## \n\n'], - - ['id' => 298, 'template_id' => 9, 'key' => "fr-FR", 'value' => 'Rédigez une introduction intéressante sur :\n\n ##description## \n\n Titre de larticle de blog :\n ##title## \n\nLe ton de la voix de l intro du blog doit être :\n ##tone_language## \n\n'], - - ['id' => 299, 'template_id' => 9, 'key' => "de-DE", 'value' => 'Schreiben Sie eine interessante Einführung in einen Blog-Beitrag über:\n\n ##description## \n\n Titel des Blogposts:\n ##title## \n\nTonlage des Blog-Intros muss sein:\n ##tone_language## \n\n'], - - ['id' => 300, 'template_id' => 9, 'key' => "el-GR", 'value' => 'Γράψτε μια ενδιαφέρουσα εισαγωγή δημοσίευσης ιστολογίου σχετικά με:\n\n ##description## \n\n Τίτλος ανάρτησης ιστολογίου:\n ##title## \n\nΟ τόνος της φωνής της εισαγωγής του ιστολογίου πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 301, 'template_id' => 9, 'key' => "he-IL", 'value' => 'כתוב מבוא פוסט מעניין בבלוג על:\n\n ##description## \n\n כותרת פוסט הבלוג:\n ##title## \n\nטון הדיבור של ההקדמה לבלוג חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 302, 'template_id' => 9, 'key' => "hi-IN", 'value' => 'इस बारे में एक रोचक ब्लॉग पोस्ट परिचय लिखें:\n\n ##description## \n\n ब्लॉग पोस्ट शीर्षक:\n ##title## \n\nब्लॉग के परिचय का स्वर होना चाहिए:\n ##tone_language## \n\n'], - - ['id' => 303, 'template_id' => 9, 'key' => "hu-HU", 'value' => 'Írjon érdekes blogbejegyzést erről:\n\n ##description## \n\n Blogbejegyzés címe:\n ##title## \n\nA blogbevezető hangnemének a következőnek kell lennie:\n ##tone_language## \n\n'], - - ['id' => 304, 'template_id' => 9, 'key' => "is-IS", 'value' => 'Skrifaðu áhugaverða bloggfærslu um:\n\n ##description## \n\n Titill bloggfærslu:\n ##title## \n\nTónn í blogginngangi verður að vera:\n ##tone_language## \n\n'], - - ['id' => 305, 'template_id' => 9, 'key' => "id-ID", 'value' => 'Tulis pengantar postingan blog yang menarik tentang:\n\n ##description## \n\n Judul entri blog:\n ##title## \n\nNada suara intro blog harus:\n ##tone_language## \n\n'], - - ['id' => 306, 'template_id' => 9, 'key' => "it-IT", 'value' => 'Scrivi un`interessante introduzione al post del blog su:\n\n ##description## \n\n Titolo del post del blog:\n ##title## \n\nIl tono di voce dell`introduzione del blog deve essere:\n ##tone_language## \n\n'], - - ['id' => 307, 'template_id' => 9, 'key' => "ja-JP", 'value' => '興味深いブログ投稿の紹介を書いてください:\n\n ##description## \n\n ブログ記事のタイトル:\n ##title## \n\nブログのイントロのトーンは次のようにする必要があります:\n ##tone_language## \n\n'], - - ['id' => 308, 'template_id' => 9, 'key' => "ko-KR", 'value' => '다음에 대한 흥미로운 블로그 게시물 소개 작성:\n\n ##description## \n\n 블로그 게시물 제목:\n ##title## \n\n블로그 소개의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 309, 'template_id' => 9, 'key' => "ms-MY", 'value' => 'Tulis intro catatan blog yang menarik tentang:\n\n ##description## \n\n Tajuk catatan blog:\n ##title## \n\nNada suara intro blog mestilah:\n ##tone_language## \n\n'], - - ['id' => 310, 'template_id' => 9, 'key' => "nb-NO", 'value' => 'Skriv en interessant introduksjon til blogginnlegg om:\n\n ##description## \n\n Tittel på blogginnlegg:\n ##title## \n\nTone i bloggintroen må være:\n ##tone_language## \n\n'], - - ['id' => 311, 'template_id' => 9 , 'key' => "pl-PL", 'value' => 'Napisz interesujące wprowadzenie do wpisu na blogu na temat:\n\n ##description## \n\n Tytuł wpisu na blogu:\n ##title## \n\nTon głosu we wstępie do bloga musi być:\n ##tone_language## \n\n'], - - ['id' => 312, 'template_id' => 9, 'key' => "pt-PT", 'value' => 'Escreva uma introdução de postagem de blog interessante sobre:\n\n ##description## \n\n Título da postagem do blog:\n ##title## \n\nTom de voz da introdução do blog deve ser:\n ##tone_language## \n\n'], - - ['id' => 313, 'template_id' => 9, 'key' => "ru-RU", 'value' => 'Напишите интересное введение в блог о:\n\n ##description## \n\n Заголовок сообщения в блоге:\n ##title## \n\nТон озвучивания вступления блога должен быть:\n ##tone_language## \n\n'], - - ['id' => 314, 'template_id' => 9, 'key' => "es-ES", 'value' => 'Escribe una introducción de blog interesante sobre:\n\n ##description## \n\n Título de la publicación del blog:\n ##title## \n\nEl tono de voz de la intro del blog debe ser:\n ##tone_language## \n\n'], - - ['id' => 315, 'template_id' => 9, 'key' => "sv-SE", 'value' => 'Skriv ett intressant blogginlägg om:\n\n ##description## \n\n Blogginläggets titel:\n ##title## \n\nRöst i bloggintrot måste vara:\n ##tone_language## \n\n'], - - ['id' => 316, 'template_id' => 9, 'key' => "tr-TR", 'value' => 'Şununla ilgili ilginç bir blog yazısı yaz:\n\n ##description## \n\n Blog gönderisi başlığı:\n ##title## \n\nBlog girişinin ses tonu şöyle olmalıdır:\n ##tone_language## \n\n'], - - ['id' => 317, 'template_id' => 9, 'key' => "pt-BR", 'value' => 'Escreva uma introdução de postagem de blog interessante sobre:\n\n ##description## \n\n Título da postagem do blog:\n ##title## \n\nTom de voz da introdução do blog deve ser:\n ##tone_language## \n\n'], - - ['id' => 318, 'template_id' => 9, 'key' => "ro-RO", 'value' => 'Scrieți o prezentare interesantă pe blog despre:\n\n ##description## \n\n Titlul postării de blog:\n ##title## \n\nTonul de voce al introducerii pe blog trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 319, 'template_id' => 9, 'key' => "vi-VN", 'value' => 'Viết một bài đăng blog thú vị giới thiệu về:\n\n ##description## \n\n Tiêu đề bài đăng trên blog:\n ##title## \n\nGiọng nói của phần giới thiệu blog phải là:\n ##tone_language## \n\n'], - - ['id' => 320, 'template_id' => 9, 'key' => "sw-KE", 'value' => 'Andika utangulizi wa chapisho la kuvutia la blogu kuhusu:\n\n ##description## \n\n Jina la chapisho la blogu:\n ##title## \n\nToni ya sauti ya utangulizi wa blogu lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 321, 'template_id' => 9, 'key' => "sl-SI", 'value' => 'Napišite zanimivo uvodno objavo v spletnem dnevniku o:\n\n ##description## \n\n Naslov objave v spletnem dnevniku:\n ##title## \n\nTon glasu uvoda v spletni dnevnik mora biti:\n ##tone_language## \n\n'], - - ['id' => 322, 'template_id' => 9, 'key' => "th-TH", 'value' => 'เขียนบทความแนะนำบล็อกที่น่าสนใจเกี่ยวกับ:\n\n ##description## \n\n ชื่อบล็อกโพสต์:\n ##title## \n\nเสียงแนะนำบล็อกต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 323, 'template_id' => 9, 'key' => "uk-UA", 'value' => 'Напишіть цікаву вступну публікацію в блозі про:\n\n ##description## \n\n Назва допису в блозі:\n ##title## \n\nТон вступу до блогу має бути:\n ##tone_language## \n\n'], - - ['id' => 324, 'template_id' => 9, 'key' => "lt-LT", 'value' => 'Parašykite įdomų tinklaraščio įrašą apie:\n\n ##description## \n\n Tinklaraščio įrašo pavadinimas:\n ##title## \n\nTinklaraščio įžangos balso tonas turi būti:\n ##tone_language## \n\n'], - - ['id' => 325, 'template_id' => 9, 'key' => "bg-BG", 'value' => 'Напишете интересна интро публикация в блог за:\n\n ##description## \n\n Заглавие на публикацията в блога:\n ##title## \n\nТонът на интрото на блога трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 326, 'template_id' => 10, 'key' => "en-US", 'value' => 'Write a blog article conclusion for:\n\n ##description## \n\n Blog article title:\n ##title## \n\nTone of voice of the conclusion must be:\n ##tone_language## \n\n'], - - ['id' => 327, 'template_id' => 10, 'key' => "ar-AE", 'value' => 'اكتب مقالاً ختامياً لـ:\n\n ##description## \n\n عنوان مقالة المدونة:\n ##title## \n\n يجب أن تكون نغمة صوت الاستنتاج:\n ##tone_language## \n\n'], - - ['id' => 328, 'template_id' => 10, 'key' => "cmn-CN", 'value' => '为以下内容写一篇博客文章结论:\n\n ##description## \n\n 博客文章标题:\n ##title## \n\n结论的语气必须是:\n ##tone_language## \n\n'], - - ['id' => 329, 'template_id' => 10, 'key' => "hr-HR", 'value' => 'Napišite zaključak članka na blogu za:\n\n ##description## \n\n Naslov članka na blogu:\n ##title## \n\nTon glasa zaključka mora biti:\n ##tone_language## \n\n'], - - ['id' => 330, 'template_id' => 10, 'key' => "cs-CZ", 'value' => 'Napište závěr článku blogu pro:\n\n ##description## \n\n Název článku blogu:\n ##title## \n\nTón hlasu závěru musí být:\n ##tone_language## \n\n'], - - ['id' => 331, 'template_id' => 10, 'key' => "da-DK", 'value' => 'Skriv en blogartikel konklusion for:\n\n ##description## \n\n Blogartikeltitel:\n ##title## \n\nTone i konklusionen skal være:\n ##tone_language## \n\n'], - - ['id' => 332, 'template_id' => 10, 'key' => "nl-NL", 'value' => 'Schrijf een conclusie van een blogartikel voor:\n\n ##description## \n\n Titel blogartikel:\n ##title## \n\nDe toon van de conclusie moet zijn:\n ##tone_language## \n\n'], - - ['id' => 333, 'template_id' => 10, 'key' => "et-EE", 'value' => 'Kirjutage blogiartikli järeldus:\n\n ##description## \n\n Blogi artikli pealkiri:\n ##title## \n\nJärelduse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 334, 'template_id' => 10, 'key' => "fi-FI", 'value' => 'Kirjoita blogiartikkelin päätelmä:\n\n ##description## \n\n Blogiartikkelin otsikko:\n ##title## \n\nJohtopäätöksen äänensävyn on oltava:\n ##tone_language## \n\n'], - - ['id' => 335, 'template_id' => 10, 'key' => "fr-FR", 'value' => "Rédigez une conclusion d'article de blog pour :\n\n ##description## \n\n Titre de l'article du blog :\n ##title## \n\nLe ton de la voix de la conclusion doit être :\n ##tone_language## \n\n"], - - ['id' => 336, 'template_id' => 10, 'key' => "de-DE", 'value' => 'Schreiben Sie einen Blogartikel-Abschluss für:\n\n ##description## \n\n Titel des Blog-Artikels:\n ##title## \n\nTonfall der Schlussfolgerung muss sein:\n ##tone_language## \n\n'], - - ['id' => 337, 'template_id' => 10, 'key' => "el-GR", 'value' => 'Γράψτε ένα συμπέρασμα άρθρου ιστολογίου για:\n\n ##description## \n\n Τίτλος άρθρου ιστολογίου:\n ##title## \n\nΟ τόνος της φωνής του συμπεράσματος πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 338, 'template_id' => 10, 'key' => "he-IL", 'value' => 'כתוב מסקנת מאמר בבלוג עבור:\n\n ##description## \n\n כותרת מאמר הבלוג:\n ##title## \n\nטון הדיבור של המסקנה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 339, 'template_id' => 10, 'key' => "hi-IN", 'value' => 'इसके लिए एक ब्लॉग लेख निष्कर्ष लिखें:\n\n ##description## \n\n ब्लॉग लेख का शीर्षक:\n ##title## \n\nनिष्कर्ष की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n'], - - ['id' => 340, 'template_id' => 10, 'key' => "hu-HU", 'value' => 'Írjon blogcikk következtetést:\n\n ##description## \n\n Blog cikk címe:\n ##title## \n\nA következtetés hangnemének a következőnek kell lennie:\n ##tone_language## \n\n'], - - ['id' => 341, 'template_id' => 10, 'key' => "is-IS", 'value' => 'Skrifaðu niðurstöðu blogggreinar fyrir:\n\n ##description## \n\n Titill blogggreinar:\n ##title## \n\nTónn í niðurstöðunni verður að vera:\n ##tone_language## \n\n'], - - ['id' => 342, 'template_id' => 10, 'key' => "id-ID", 'value' => 'Tulis kesimpulan artikel blog untuk:\n\n ##description## \n\n Judul artikel blog:\n ##title## \n\nNada suara kesimpulan harus:\n ##tone_language## \n\n'], - - ['id' => 343, 'template_id' => 10, 'key' => "it-IT", 'value' => 'Scrivi la conclusione di un articolo di blog per:\n\n ##description## \n\n Titolo articolo blog:\n ##title## \n\nIl tono di voce della conclusione deve essere:\n ##tone_language## \n\n'], - - ['id' => 344, 'template_id' => 10, 'key' => "ja-JP", 'value' => '次のブログ記事の結論を書きます:\n\n ##description## \n\n ブログ記事のタイトル:\n ##title## \n\n結論の口調は:\n ##tone_language## \n\n'], - - ['id' => 345, 'template_id' => 10, 'key' => "ko-KR", 'value' => '다음에 대한 블로그 기사 결론 쓰기:\n\n ##description## \n\n 블로그 기사 제목:\n ##title## \n\n결론의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n'], - - ['id' => 346, 'template_id' => 10, 'key' => "ms-MY", 'value' => '다음에 대한 블로그 기사 결론 쓰기:\n\n ##description## \n\n 블로그 기사 제목:\n ##title## \n\n결론의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n'], - - ['id' => 347, 'template_id' => 10, 'key' => "nb-NO", 'value' => 'Skriv en bloggartikkelkonklusjon for:\n\n ##description## \n\n Bloggartikkeltittel:\n ##title## \n\nTone i konklusjonen må være:\n ##tone_language## \n\n'], - - ['id' => 348, 'template_id' => 10, 'key' => "pl-PL", 'value' => 'Napisz zakończenie artykułu na blogu dla:\n\n ##description## \n\n Tytuł artykułu na blogu:\n ##title## \n\nTon wniosku musi być następujący:\n ##tone_language## \n\n'], - - ['id' => 349, 'template_id' => 10, 'key' => "pt-PT", 'value' => 'Escreva uma conclusão de artigo de blog para:\n\n ##description## \n\n Título do artigo do blog:\n ##title## \n\nTom de voz da conclusão deve ser:\n ##tone_language## \n\n'], - - ['id' => 350, 'template_id' => 10, 'key' => "ru-RU", 'value' => 'Напишите вывод статьи в блоге для:\n\n ##description## \n\n Название статьи в блоге:\n ##title## \n\nТон голоса заключения должен быть:\n ##tone_language## \n\n'], - - ['id' => 351, 'template_id' => 10, 'key' => "es-ES", 'value' => 'Escribe la conclusión de un artículo de blog para:\n\n ##description## \n\n Título del artículo del blog:\n ##title## \n\nEl tono de voz de la conclusión debe ser:\n ##tone_language## \n\n'], - - ['id' => 352, 'template_id' => 10, 'key' => "sv-SE", 'value' => 'Skriv en bloggartikelavslutning för:\n\n ##description## \n\n Bloggartikeltitel:\n ##title## \n\nTonfallet för slutsatsen måste vara:\n ##tone_language## \n\n'], - - ['id' => 353, 'template_id' => 10, 'key' => "tr-TR", 'value' => 'Bir blog makalesi sonucu yaz:\n\n ##description## \n\n Blog makalesi başlığı:\n ##title## \n\nSonuçtaki ses tonu şöyle olmalıdır:\n ##tone_language## \n\n'], - - ['id' => 354, 'template_id' => 10, 'key' => "pt-BR", 'value' => 'Escreva uma conclusão de artigo de blog para:\n\n ##description## \n\n Título do artigo do blog:\n ##title## \n\nTom de voz da conclusão deve ser:\n ##tone_language## \n\n'], - - ['id' => 355, 'template_id' => 10, 'key' => "ro-RO", 'value' => 'Scrieți o concluzie a unui articol de blog pentru:\n\n ##description## \n\n Titlul articolului de blog:\n ##title## \n\nTonul de voce al concluziei trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 356, 'template_id' => 10, 'key' => "vi-VN", 'value' => 'Viết kết luận bài viết trên blog cho:\n\n ##description## \n\n Tiêu đề bài viết trên blog:\n ##title## \n\nGiọng kết luận phải là:\n ##tone_language## \n\n'], - - ['id' => 357, 'template_id' => 10, 'key' => "sw-KE", 'value' => 'Andika hitimisho la makala ya blogu ya:\n\n ##description## \n\n Jina la makala ya blogu:\n ##title## \n\nToni ya sauti ya hitimisho lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 358, 'template_id' => 10, 'key' => "sl-SI", 'value' => 'Napišite zaključek članka v blogu za:\n\n ##description## \n\n Naslov članka v blogu:\n ##title## \n\nTon sklepa mora biti:\n ##tone_language## \n\n'], - - ['id' => 359, 'template_id' => 10, 'key' => "th-TH", 'value' => 'เขียนสรุปบทความบล็อกสำหรับ:\n\n ##description## \n\n ชื่อบทความบล็อก:\n ##title## \n\nเสียงสรุปต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 360, 'template_id' => 10, 'key' => "uk-UA", 'value' => 'Напишіть висновок статті в блозі для:\n\n ##description## \n\n Назва статті блогу:\n ##title## \n\nТон висновку повинен бути:\n ##tone_language## \n\n'], - - ['id' => 361, 'template_id' => 10, 'key' => "lt-LT", 'value' => 'Parašykite tinklaraščio straipsnio išvadą:\n\n ##description## \n\n Tinklaraščio straipsnio pavadinimas:\n ##title## \n\nIšvados balso tonas turi būti:\n ##tone_language## \n\n'], - - ['id' => 362, 'template_id' => 10, 'key' => "bg-BG", 'value' => 'Генерирайте 10 закачливи заглавия на блогове за:\n\n ##description## \n\nНапишете заключение за статия в блог за:\n\n ##description## \n\n Заглавие на блог статия:\n ##title## \n\nТонът на гласа на заключението трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 363, 'template_id' => 11, 'key' => "en-US", 'value' => 'Summarize this text in a short concise way:\n\n ##text## \n\nTone of summary must be:\n ##tone_language## \n\n'], - - ['id' => 364, 'template_id' => 11, 'key' => "ar-AE", 'value' => 'لخص هذا النص بإيجاز قصير:\n\n ##text## \n\nيجب أن تكون نغمة التلخيص:\n ##tone_language## \n\n'], - - ['id' => 365, 'template_id' => 11, 'key' => "cmn-CN", 'value' => '用简短的方式总结这段文字:\n\n ##text## \n\n摘要语气必须是:\n ##tone_language## \n\n'], - - ['id' => 366, 'template_id' => 11, 'key' => "hr-HR", 'value' => 'Ukratko sažeti ovaj tekst:\n\n ##text## \n\nTon sažetka mora biti:\n ##tone_language## \n\n'], - - ['id' => 367, 'template_id' => 11, 'key' => "cs-CZ", 'value' => 'Shrňte tento text krátkým výstižným způsobem:\n\n ##text## \n\nTón shrnutí musí být:\n ##tone_language## \n\n'], - - ['id' => 368, 'template_id' => 11, 'key' => "da-DK", 'value' => 'Opsummer denne tekst på en kort og præcis måde:\n\n ##text## \n\nTone i resumé skal være:\n ##tone_language## \n\n'], - - ['id' => 369, 'template_id' => 11, 'key' => "nl-NL", 'value' => 'Vat deze tekst kort en bondig samen:\n\n ##text## \n\nDe toon van de samenvatting moet zijn:\n ##tone_language## \n\n'], - - ['id' => 370, 'template_id' => 11, 'key' => "et-EE", 'value' => 'Tehke see tekst lühidalt kokkuvõtlikult:\n\n ##text## \n\nKokkuvõtte toon peab olema:\n ##tone_language## \n\n'], - - ['id' => 371, 'template_id' => 11, 'key' => "fi-FI", 'value' => 'Tee tämä teksti lyhyesti ytimekkäästi:\n\n ##text## \n\nYhteenvedon äänen tulee olla:\n ##tone_language## \n\n'], - - ['id' => 372, 'template_id' => 11, 'key' => "fr-FR", 'value' => 'Résumez ce texte de manière courte et concise :\n\n ##text## \n\nLe ton du résumé doit être :\n ##tone_language## \n\n'], - - ['id' => 373, 'template_id' => 11, 'key' => "de-DE", 'value' => 'Fass diesen Text kurz und prägnant zusammen:\n\n ##text## \n\nTon der Zusammenfassung muss sein:\n ##tone_language## \n\n'], - - ['id' => 374, 'template_id' => 11, 'key' => "el-GR", 'value' => 'Συνοψήστε αυτό το κείμενο με σύντομο και συνοπτικό τρόπο:\n\n ##text## \n\nΟ τόνος της σύνοψης πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 375, 'template_id' => 11, 'key' => "he-IL", 'value' => 'סכם את הטקסט הזה בצורה קצרה תמציתית:\n\n ##text## \n\nטון הסיכום חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 376, 'template_id' => 11, 'key' => "hi-IN", 'value' => 'इस पाठ को संक्षेप में संक्षेप में प्रस्तुत करें:\n\n ##text## \n\nसारांश का लहजा होना चाहिए:\n ##tone_language## \n\n'], - - ['id' => 377, 'template_id' => 11, 'key' => "hu-HU", 'value' => 'Összefoglalja ezt a szöveget röviden, tömören:\n\n ##text## \n\nAz összefoglaló hangjának a következőnek kell lennie:\n ##tone_language## \n\n'], - - ['id' => 378, 'template_id' => 11, 'key' => "is-IS", 'value' => 'Dregðu saman þennan texta á stuttan hnitmiðaðan hátt:\n\n ##text## \n\nTónn yfirlits verður að vera:\n ##tone_language## \n\n'], - - ['id' => 379, 'template_id' => 11, 'key' => "id-ID", 'value' => 'Rangkum teks ini dengan cara yang singkat dan padat:\n\n ##text## \n\nNada ringkasan harus:\n ##tone_language## \n\n'], - - ['id' => 380, 'template_id' => 11, 'key' => "it-IT", 'value' => 'Riassumi questo testo in modo breve e conciso:\n\n ##text## \n\nIl tono del riassunto deve essere:\n ##tone_language## \n\n'], - - ['id' => 381, 'template_id' => 11, 'key' => "ja-JP", 'value' => 'このテキストを短く簡潔に要約してください:\n\n ##text## \n\n要約のトーンは:\n ##tone_language## \n\n'], - - ['id' => 382, 'template_id' => 11, 'key' => "ko-KR", 'value' => '이 텍스트를 짧고 간결하게 요약:\n\n ##text## \n\n요약 톤은 다음과 같아야 합니다.\n ##tone_language## \n\n'], - - ['id' => 383, 'template_id' => 11, 'key' => "ms-MY", 'value' => 'Ringkaskan teks ini dengan cara ringkas yang ringkas:\n\n ##text## \n\nNada ringkasan mestilah:\n ##tone_language## \n\n'], - - ['id' => 384, 'template_id' => 11, 'key' => "nb-NO", 'value' => 'Opsummer denne teksten på en kortfattet måte:\n\n ##text## \n\nTone i sammendraget må være:\n ##tone_language## \n\n'], - - ['id' => 385, 'template_id' => 11, 'key' => "pl-PL", 'value' => 'Podsumuj ten tekst w zwięzły sposób:\n\n ##text## \n\nTon podsumowania musi być:\n ##tone_language## \n\n'], - - ['id' => 386, 'template_id' => 11, 'key' => "pt-PT", 'value' => 'Resuma este texto de forma curta e concisa:\n\n ##text## \n\nO tom do resumo deve ser:\n ##tone_language## \n\n'], - - ['id' => 387, 'template_id' => 11, 'key' => "ru-RU", 'value' => 'Кратко изложите этот текст:\n\n ##text## \n\nТон резюме должен быть:\n ##tone_language## \n\n'], - - ['id' => 388, 'template_id' => 11, 'key' => "es-ES", 'value' => 'Resume este texto de forma breve y concisa:\n\n ##text## \n\nEl tono del resumen debe ser:\n ##tone_language## \n\n'], - - ['id' => 389, 'template_id' => 11, 'key' => "sv-SE", 'value' => 'Sammanfatta den här texten på ett kortfattat sätt:\n\n ##text## \n\nTonen i sammanfattningen måste vara:\n ##tone_language## \n\n'], - - ['id' => 390, 'template_id' => 11, 'key' => "tr-TR", 'value' => 'Bu metni kısa ve öz bir şekilde özetleyin:\n\n ##text## \n\nÖzetin tonu şöyle olmalıdır:\n ##tone_language## \n\n'], - - ['id' => 391, 'template_id' => 11, 'key' => "pt-BR", 'value' => 'Resuma este texto de forma curta e concisa:\n\n ##text## \n\nO tom do resumo deve ser:\n ##tone_language## \n\n'], - - ['id' => 392, 'template_id' => 11, 'key' => "ro-RO", 'value' => 'Rezumați acest text într-un mod scurt și concis:\n\n ##text## \n\nTonul rezumatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 393, 'template_id' => 11, 'key' => "vi-VN", 'value' => 'Tóm tắt văn bản này một cách ngắn gọn súc tích:\n\n ##text## \n\nGiọng tóm tắt phải là:\n ##tone_language## \n\n'], - - ['id' => 394, 'template_id' => 11, 'key' => "sw-KE", 'value' => 'Fanya muhtasari wa maandishi haya kwa njia fupi fupi:\n\n ##text## \n\nToni ya muhtasari lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 395, 'template_id' => 11, 'key' => "sl-SI", 'value' => 'Povzemite to besedilo na kratek jedrnat način:\n\n ##text## \n\nTon povzetka mora biti:\n ##tone_language## \n\n'], - - ['id' => 396, 'template_id' => 11, 'key' => "th-TH", 'value' => 'สรุปข้อความนี้อย่างสั้นกระชับ:\n\n ##text## \n\nเสียงสรุปต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 397, 'template_id' => 11, 'key' => "uk-UA", 'value' => 'Коротко викладіть цей текст:\n\n ##text## \n\nТон резюме має бути:\n ##tone_language## \n\n'], - - ['id' => 398, 'template_id' => 11, 'key' => "lt-LT", 'value' => 'Trumpai glaustai apibendrinkite šį tekstą:\n\n ##text## \n\nSantraukos tonas turi būti:\n ##tone_language## \n\n'], - - ['id' => 399, 'template_id' => 11, 'key' => "bg-BG", 'value' => 'Резюмирайте този текст по кратък стегнат начин:\n\n ##text## \n\nТонът на обобщението трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 400, 'template_id' => 12, 'key' => "en-US", 'value' => 'Write a long creative product description for: ##title## \n\nTarget audience is: ##audience## \n\nUse this description: ##description## \n\nTone of generated text must be:\n ##tone_language## \n\n'], - - ['id' => 401, 'template_id' => 12, 'key' => "ar-AE", 'value' => 'اكتب وصفًا إبداعيًا طويلًا للمنتج لـ: ##title## \n\nالجمهور المستهدف هو: ##audience## \n\nاستخدم هذا الوصف:". $description. "\n\nيجب أن تكون نغمة النص الناتج:\n ##tone_language## \n\n'], - - ['id' => 402, 'template_id' => 12, 'key' => "cmn-CN", 'value' => '为:写一个长的创意产品描述 ##title## \n\n目标受众是: ##audience## \n\n使用这个描述: ##description## \n\n生成文本的基调必须是:\n ##tone_language## \n\n'], - - ['id' => 403, 'template_id' => 12, 'key' => "hr-HR", 'value' => 'Napišite dugačak kreativni opis proizvoda za: ##title## \n\nCiljana publika je: ##audience## \n\nKoristite ovaj opis: ##description## \n\nTon generiranog teksta mora biti:\n ##tone_language## \n\n'], - - ['id' => 404, 'template_id' => 12, 'key' => "cs-CZ", 'value' => 'Napište dlouhý popis kreativního produktu pro: ##title## \n\nCílové publikum je: ##audience## \n\nPoužijte tento popis: ##description## \n\nTón generovaného textu musí být:\n ##tone_language## \n\n'], - - ['id' => 405, 'template_id' => 12, 'key' => "da-DK", 'value' => 'Skriv en lang kreativ produktbeskrivelse til: ##title## \n\nMålgruppe er: ##audience## \n\nBrug denne beskrivelse: ##description## \n\nTone i genereret tekst skal være:\n ##tone_language## \n\n'], - - ['id' => 406, 'template_id' => 12, 'key' => "nl-NL", 'value' => 'Schrijf een lange creatieve productbeschrijving voor: ##title## \n\nDoelgroep is: ##audience## \n\nGebruik deze omschrijving: ##description## \n\nDe toon van gegenereerde tekst moet zijn:\n ##tone_language## \n\n'], - - ['id' => 407, 'template_id' => 12, 'key' => "et-EE", 'value' => 'Kirjutage pikk loominguline tootekirjeldus: ##title## \n\nSihtpublik on: ##audience## \n\nKasutage seda kirjeldust: ##description## \n\nLoodud teksti toon peab olema:\n ##tone_language## \n\n'], - - ['id' => 408, 'template_id' => 12, 'key' => "fi-FI", 'value' => 'Kirjoita pitkä luova tuotekuvaus: ##title## \n\nKohdeyleisö on: ##audience## \n\nKäytä tätä kuvausta: ##description## \n\nLuodun tekstin äänen tulee olla:\n ##tone_language## \n\n'], - - ['id' => 409, 'template_id' => 12, 'key' => "fr-FR", 'value' => 'Rédigez une longue description de produit créative pour : ##title## \n\nLe public cible est : ##audience## \n\nUtilisez cette description : ##description## \n\nLe ton du texte généré doit être :\n ##tone_language## \n\n'], - - ['id' => 410, 'template_id' => 12, 'key' => "de-DE", 'value' => 'Schreiben Sie eine lange kreative Produktbeschreibung für: ##title## \n\nZielpublikum ist: ##audience## \n\nVerwenden Sie diese Beschreibung: ##description## \n\nTon des generierten Textes muss sein:\n ##tone_language## \n\n'], - - ['id' => 411, 'template_id' => 12, 'key' => "el-GR", 'value' => 'Γράψτε μια μεγάλη περιγραφή δημιουργικού προϊόντος για: ##title## \n\nΤο κοινό-στόχος είναι: ##audience## \n\nΧρησιμοποιήστε αυτήν την περιγραφή: ##description## \n\nΟ τόνος του κειμένου που δημιουργείται πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 412, 'template_id' => 12, 'key' => "he-IL", 'value' => 'כתוב תיאור מוצר יצירתי ארוך עבור: ##title## \n\nקהל היעד הוא: ##audience## \n\nהשתמש בתיאור הזה: ##description## \n\nטון הטקסט שנוצר חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 413, 'template_id' => 12, 'key' => "hi-IN", 'value' => 'इसके लिए एक लंबा रचनात्मक उत्पाद विवरण लिखें: ##title## \n\nलक्षित दर्शक हैं: ##audience## \n\nइस विवरण का उपयोग करें: ##description## \n\nजनरेट किए गए टेक्स्ट का टोन होना चाहिए:\n ##tone_language## \n\n'], - - ['id' => 414, 'template_id' => 12, 'key' => "hu-HU", 'value' => 'Írjon hosszú kreatív termékleírást a következőhöz: ##title## \n\nA célközönség: ##audience## \n\nHasználja ezt a leírást: ##description## \n\nA generált szöveg hangjának a következőnek kell lennie:\n ##tone_language## \n\n'], - - ['id' => 415, 'template_id' => 12, 'key' => "is-IS", 'value' => 'Skrifaðu langa skapandi vörulýsingu fyrir: ##title## \n\nMarkhópur er: ##audience## \n\nNotaðu þessa lýsingu: ##description## \n\nTónn texta sem myndast verður að vera:\n ##tone_language## \n\n'], - - ['id' => 416, 'template_id' => 12, 'key' => "id-ID", 'value' => 'Tulis deskripsi produk kreatif yang panjang untuk: ##title## \n\nTarget audiens adalah: ##audience## \n\nGunakan deskripsi ini: ##description## \n\nNada teks yang dihasilkan harus:\n ##tone_language## \n\n'], - - ['id' => 417, 'template_id' => 12, 'key' => "it-IT", 'value' => 'Scrivi una lunga descrizione del prodotto creativo per: ##title## \n\nIl pubblico di destinazione è: ##audience## \n\nUsa questa descrizione: ##description## \n\nIl tono del testo generato deve essere:\n ##tone_language## \n\n'], - - ['id' => 418, 'template_id' => 12, 'key' => "ja-JP", 'value' => '次の製品の長いクリエイティブな説明を書いてください: ##title## \n\n対象者: ##audience## \n\nこの説明を使用してください: ##description## \n\n生成されたテキストのトーンは:\n ##tone_language## \n\n'], - - ['id' => 419, 'template_id' => 12, 'key' => "ko-KR", 'value' => '다음에 대한 길고 창의적인 제품 설명 작성: ##title## \n\n대상은: ##audience## \n\n이 설명을 사용하십시오: ##description## \n\n생성된 텍스트의 톤은 다음과 같아야 합니다.\n ##tone_language## \n\n'], - - ['id' => 420, 'template_id' => 12, 'key' => "ms-MY", 'value' => 'Tulis penerangan produk kreatif yang panjang untuk: ##title## \n\nKhalayak sasaran ialah: ##audience## \n\nGunakan penerangan ini: ##description## \n\nNada teks yang dijana mestilah:\n ##tone_language## \n\n'], - - ['id' => 421, 'template_id' => 12, 'key' => "nb-NO", 'value' => 'Skriv en lang kreativ produktbeskrivelse for: ##title## \n\nMålgruppen er: ##audience## \n\nBruk denne beskrivelsen: ##description## \n\nTone i generert tekst må være:\n ##tone_language## \n\n'], - - ['id' => 422, 'template_id' => 12, 'key' => "pl-PL", 'value' => 'Napisz długi kreatywny opis produktu dla: ##title## \n\nDocelowi odbiorcy to: ##audience## \n\nUżyj tego opisu: ##description## \n\nTon generowanego tekstu musi być:\n ##tone_language## \n\n'], - - ['id' => 423, 'template_id' => 12, 'key' => "pt-PT", 'value' => 'Escreva uma longa descrição de produto criativo para: ##title## \n\nO público-alvo é: ##audience## \n\nUse esta descrição: ##description## \n\nO tom do texto gerado deve ser:\n ##tone_language## \n\n'], - - ['id' => 424, 'template_id' => 12, 'key' => "ru-RU", 'value' => 'Напишите длинное креативное описание продукта для: ##title## \n\nЦелевая аудитория: ##audience## \n\nИспользуйте это описание: ##description## \n\nТон генерируемого текста должен быть:\n ##tone_language## \n\n'], - - ['id' => 425, 'template_id' => 12, 'key' => "es-ES", 'value' => 'Escriba una descripción de producto creativa larga para: ##title## \n\nEl público objetivo es: ##audience## \n\nUsar esta descripción: ##description## \n\nEl tono del texto generado debe ser:\n ##tone_language## \n\n'], - - ['id' => 426, 'template_id' => 12, 'key' => "sv-SE", 'value' => 'Skriv en lång kreativ produktbeskrivning för: ##title## \n\nMålgruppen är: ##audience## \n\nAnvänd denna beskrivning: ##description## \n\nTonen i genererad text måste vara:\n ##tone_language## \n\n'], - - ['id' => 427, 'template_id' => 12, 'key' => "tr-TR", 'value' => 'Şunun için uzun bir yaratıcı ürün açıklaması yazın: ##title## \n\nHedef kitle: ##audience## \n\nBu açıklamayı kullanın: ##description## \n\nOluşturulan metnin tonu şöyle olmalıdır:\n ##tone_language## \n\n'], - - ['id' => 428, 'template_id' => 12, 'key' => "pt-BR", 'value' => 'Escreva uma longa descrição de produto criativo para: ##title## \n\nO público-alvo é: ##audience## \n\nUse esta descrição: ##description## \n\nO tom do texto gerado deve ser:\n ##tone_language## \n\n'], - - ['id' => 429, 'template_id' => 12, 'key' => "ro-RO", 'value' => 'Scrieți o descriere creativă lungă a produsului pentru: ##title## \n\nPublicul țintă este: ##audience## \n\nUtilizați această descriere: ##description## \n\nTonul textului generat trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 430, 'template_id' => 12, 'key' => "vi-VN", 'value' => 'Viết một đoạn mô tả sản phẩm sáng tạo dài cho: ##title## \n\nĐối tượng mục tiêu là: ##audience## \n\nSử dụng mô tả này: ##description## \n\nÂm của văn bản được tạo phải là:\n ##tone_language## \n\n'], - - ['id' => 431, 'template_id' => 12, 'key' => "sw-KE", 'value' => 'Andika maelezo marefu ya bidhaa ya ubunifu kwa: ##title## \n\nHadhira inayolengwa ni: ##audience## \n\nTumia maelezo haya: ##description## \n\nToni ya maandishi yanayozalishwa lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 432, 'template_id' => 12, 'key' => "sl-SI", 'value' => 'Napišite dolg ustvarjalni opis izdelka za: ##title## \n\nCiljna publika je: ##audience## \n\nUporabi ta opis: ##description## \n\nTon ustvarjenega besedila mora biti:\n ##tone_language## \n\n'], - - ['id' => 433, 'template_id' => 12, 'key' => "th-TH", 'value' => 'เขียนคำอธิบายผลิตภัณฑ์ที่สร้างสรรค์แบบยาวสำหรับ: ##title## \n\nกลุ่มเป้าหมายคือ: ##audience## \n\nใช้คำอธิบายนี้:" .$description. "\n\nเสียงของข้อความที่สร้างขึ้นต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 434, 'template_id' => 12, 'key' => "uk-UA", 'value' => 'Напишіть довгий креативний опис продукту для: ##title## \n\nЦільова аудиторія: ##audience## \n\nВикористовуйте цей опис: ##description## \n\nТон створеного тексту має бути:\n ##tone_language## \n\n'], - - ['id' => 435, 'template_id' => 12, 'key' => "lt-LT", 'value' => 'Напишіть довгий креативний опис продукту для: ##title## \n\nЦільова аудиторія: ##audience## \n\nВикористовуйте цей опис: ##description## \n\nТон створеного тексту має бути:\n ##tone_language## \n\n'], - - ['id' => 436, 'template_id' => 12, 'key' => "bg-BG", 'value' => 'Напишете дълго творческо описание на продукта за: ##title## \n\nЦелевата аудитория е: ##audience## \n\nИзползвайте това описание: ##description## \n\nТонът на генерирания текст трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 437, 'template_id' => 13, 'key' => "en-US", 'value' => 'Generate cool, creative, and catchy names for startup description: ##description## \n\nSeed words: ##keywords## \n\n'], - - ['id' => 438, 'template_id' => 13, 'key' => "ar-AE", 'value' => 'أنشئ أسماء رائعة ومبتكرة وجذابة لوصف بدء التشغيل: ##description## \n\nكلمات المصدر: ##keywords## \n\n'], - - ['id' => 439, 'template_id' => 13, 'key' => "cmn-CN", 'value' => '为启动描述生成酷炫、有创意且朗朗上口的名称: ##description## \n\n种子词: ##keywords## \n\n'], - - ['id' => 440, 'template_id' => 13, 'key' => "hr-HR", 'value' => 'Generiraj cool, kreativna i privlačna imena za opis pokretanja: ##description## \n\nPočetne riječi: ##keywords## \n\n'], - - ['id' => 441, 'template_id' => 13, 'key' => "cs-CZ", 'value' => 'Vygenerujte skvělé, kreativní a chytlavé názvy pro popis spuštění: ##description## \n\nVýchozí slova: ##keywords## \n\n'], - - ['id' => 442, 'template_id' => 13, 'key' => "da-DK", 'value' => 'Generer seje, kreative og fængende navne til opstartsbeskrivelse: ##description## \n\nSeed ord: ##keywords## \n\n'], - - ['id' => 443, 'template_id' => 13, 'key' => "nl-NL", 'value' => 'Genereer coole, creatieve en pakkende namen voor opstartbeschrijving: ##description## \n\nZaalwoorden: ##keywords## \n\n'], - - ['id' => 444, 'template_id' => 13, 'key' => "et-EE", 'value' => 'Looge käivituskirjelduse jaoks lahedad, loomingulised ja meeldejäävad nimed: ##description## \n\nAlgussõnad: ##keywords## \n\n'], - - ['id' => 445, 'template_id' => 13, 'key' => "fi-FI", 'value' => 'Luo siistejä, luovia ja tarttuvia nimiä käynnistyksen kuvaukselle: ##description## \n\nSiemensanat: ##keywords## \n\n'], - - ['id' => 446, 'template_id' => 13, 'key' => "fr-FR", 'value' => 'Générez des noms sympas, créatifs et accrocheurs pour la description de démarrage : ##description## \n\nMots clés : ##keywords## \n\n'], - - ['id' => 447, 'template_id' => 13, 'key' => "de-DE", 'value' => 'Erzeuge coole, kreative und einprägsame Namen für die Startup-Beschreibung: ##description## \n\nStartwörter: ##keywords## \n\n'], - - ['id' => 448, 'template_id' => 13, 'key' => "el-GR", 'value' => 'Δημιουργήστε όμορφα, δημιουργικά και ελκυστικά ονόματα για περιγραφή εκκίνησης: ##description## \n\nΔείτε λέξεις: ##keywords## \n\n'], - - ['id' => 449, 'template_id' => 13, 'key' => "he-IL", 'value' => "ור שמות מגניבים, יצירתיים וקליטים לתיאור ההפעלה: ##description## \n\nמילות הזרע: ##keywords## \n\n"], - - ['id' => 450, 'template_id' => 13, 'key' => "hi-IN", 'value' => "स्टार्टअप विवरण के लिए बढ़िया, रचनात्मक और आकर्षक नाम उत्पन्न करें: ##description## \n\nबीज शब्द: ##keywords## \n\n"], - - ['id' => 451, 'template_id' => 13, 'key' => "hu-HU", 'value' => "Generál menő, kreatív és fülbemászó neveket az indítási leíráshoz: ##description## \n\nKezdőszavak: ##keywords## \n\n"], - - ['id' => 452, 'template_id' => 13, 'key' => "is-IS", 'value' => "Búðu til flott, skapandi og grípandi nöfn fyrir ræsingarlýsingu: ##description## \n\n Fræorð: ##keywords## \n\n"], - - ['id' => 453, 'template_id' => 13, 'key' => "id-ID", 'value' => "Hasilkan nama yang keren, kreatif, dan menarik untuk deskripsi startup: ##description## \n\nBenih kata: ##keywords## \n\n"], - - ['id' => 454, 'template_id' => 13, 'key' => "it-IT", 'value' => "Genera nomi interessanti, creativi e accattivanti per la descrizione dell avvio: ##description## \n\nParole seme: ##keywords## \n\n"], - - ['id' => 455, 'template_id' => 13, 'key' => "ja-JP", 'value' => "スタートアップの説明にクールでクリエイティブでキャッチーな名前を付けてください: ##description## \n\nシード ワード: ##keywords## \n\n"], - - ['id' => 456, 'template_id' => 13, 'key' => "ko-KR", 'value' => "스타트업 설명을 위한 멋지고 창의적이며 기억하기 쉬운 이름 생성: ##description## \n\n시드 단어: ##keywords## \n\n"], - - ['id' => 457, 'template_id' => 13, 'key' => "ms-MY", 'value' => "Jana nama yang keren, kreatif dan menarik untuk penerangan permulaan: ##description## \n\nPerkataan benih: ##keywords## \n\n"], - - ['id' => 458, 'template_id' => 13, 'key' => "nb-NO", 'value' => "Generer kule, kreative og fengende navn for oppstartsbeskrivelse: ##description## \n\nFrøord: ##keywords## \n\n"], - - ['id' => 459, 'template_id' => 13, 'key' => "pl-PL", 'value' => "Wygeneruj fajne, kreatywne i chwytliwe nazwy dla opisu startowego: ##description## \n\nSłowa źródłowe: ##keywords## \n\n"], - - ['id' => 460, 'template_id' => 13, 'key' => "pt-PT", 'value' => "Gerar nomes legais, criativos e atraentes para a descrição da inicialização: ##description## \n\nPalavras iniciais: ##keywords## \n\n"], - - ['id' => 461, 'template_id' => 13, 'key' => "ru-RU", 'value' => "Создавайте крутые, креативные и запоминающиеся названия для описания стартапа: ##description## \n\nИсходные слова: ##keywords## \n\n"], - - ['id' => 462, 'template_id' => 13, 'key' => "es-ES", 'value' => "Genera nombres geniales, creativos y pegadizos para la descripción de inicio: ##description## \n\nPalabras semilla: ##keywords## \n\n"], - - ['id' => 463, 'template_id' => 13, 'key' => "sv-SE", 'value' => "Skapa coola, kreativa och catchy namn för startbeskrivning: ##description## \n\nFröord: ##keywords## \n\n"], - - ['id' => 464, 'template_id' => 13, 'key' => "tr-TR", 'value' => "Başlangıç açıklaması için havalı, yaratıcı ve akılda kalıcı adlar oluşturun: ##description## \n\nÖz sözcükler: ##keywords## \n\n"], - - ['id' => 465, 'template_id' => 13, 'key' => "pt-BR", 'value' => "Gerar nomes legais, criativos e atraentes para a descrição da inicialização: ##description## \n\nPalavras iniciais: ##keywords## \n\n"], - - ['id' => 466, 'template_id' => 13, 'key' => "ro-RO", 'value' => "Generează nume interesante, creative și atrăgătoare pentru descrierea startup-ului: ##description## \n\nCuvinte semințe: ##keywords## \n\n"], - - ['id' => 467, 'template_id' => 13, 'key' => "vi-VN", 'value' => "Tạo tên thú vị, sáng tạo và hấp dẫn cho phần mô tả công ty khởi nghiệp:##description## \n\nTừ giống: ##keywords## \n\n"], - - ['id' => 468, 'template_id' => 13, 'key' => "sw-KE", 'value' => "Tengeneza majina mazuri, ya ubunifu na ya kuvutia kwa maelezo ya kuanza: ##description## \n\nManeno ya mbegu: ##keywords## \n\n"], - - ['id' => 469, 'template_id' => 13, 'key' => "sl-SI", 'value' => "Ustvarite kul, kreativna in privlačna imena za opis zagona: ##description## \n\nSemenske besede: ##keywords## \n\n"], - - ['id' => 470, 'template_id' => 13, 'key' => "th-TH", 'value' => "สร้างชื่อที่เจ๋ง สร้างสรรค์ และติดหูสำหรับคำอธิบายการเริ่มต้น: ##description## \n\nคำที่ใช้: ##keywords## \n\n"], - - ['id' => 471, 'template_id' => 13, 'key' => "uk-UA", 'value' => "Створюйте круті, креативні та привабливі назви для опису запуску: ##description## \n\nПочаткові слова: ##keywords## \n\n"], - - ['id' => 472, 'template_id' => 13, 'key' => "lt-LT", 'value' => "Generuokite šaunius, kūrybingus ir patrauklius paleidimo aprašymo pavadinimus:##description## \n\nPradiniai žodžiai: ##keywords## \n\n"], - - ['id' => 473, 'template_id' => 13, 'key' => "bg-BG", 'value' => "Генерирайте страхотни, креативни и запомнящи се имена за описание при стартиране: ##description## \n\nСедлови думи: ##keywords## \n\n"], - - ['id' => 474, 'template_id' => 14, 'key' => "en-US", 'value' => "Create creative product names: ##description## \n\nSeed words: ##keywords## \n\n"], - - ['id' => 475, 'template_id' => 14, 'key' => "ar-AE", 'value' => "إنشاء أسماء المنتجات الإبداعية: ##description## \n\n كلمات المصدر: ##keywords## \n\n"], - - ['id' => 476, 'template_id' => 14, 'key' => "cmn-CN", 'value' => "创建有创意的产品名称: ##description## \n\n种子词:##keywords## \n\n"], - - ['id' => 477, 'template_id' => 14, 'key' => "hr-HR", 'value' => "Stvorite kreativne nazive proizvoda: ##description## \n\nPočetne riječi: ##keywords## \n\n"], - - ['id' => 478, 'template_id' => 14, 'key' => "cs-CZ", 'value' => "Vytvořit názvy kreativních produktů: ##description## \n\nVýchozí slova: ##keywords## \n\n"], - - ['id' => 479, 'template_id' => 14, 'key' => "da-DK", 'value' => "Opret kreative produktnavne: ##description## \n\nSeed ord: ##keywords## \n\n"], - - ['id' => 480, 'template_id' => 14, 'key' => "nl-NL", 'value' => "Creëer creatieve productnamen: ##description## \n\nZaalwoorden: ##keywords## \n\n"], - - ['id' => 481, 'template_id' => 14, 'key' => "et-EE", 'value' => "Loo loomingulised tootenimed: ##description## \n\nAlgussõnad: ##keywords## \n\n"], - - ['id' => 482, 'template_id' => 14, 'key' => "fi-FI", 'value' => "Luo luovia tuotenimiä: ##description## \n\nSiemensanat: ##keywords## \n\n"], - - ['id' => 483, 'template_id' => 14, 'key' => "fr-FR", 'value' => "Créer des noms de produits créatifs : ##description## \n\nMots clés : ##keywords## \n\n"], - - ['id' => 484, 'template_id' => 14, 'key' => "de-DE", 'value' => "Kreative Produktnamen erstellen: ##description## \n\nStartwörter: ##keywords## \n\n"], - - ['id' => 485, 'template_id' => 14, 'key' => "el-GR", 'value' => "Δημιουργία δημιουργικών ονομάτων προϊόντων: ##description## \n\nΔείτε λέξεις: ##keywords## \n\n"], - - ['id' => 486, 'template_id' => 14, 'key' => "he-IL", 'value' => "צור שמות מוצרים יצירתיים: ##description## \n\nמילות הזרע: ##keywords## \n\n"], - - ['id' => 487, 'template_id' => 14, 'key' => "hi-IN", 'value' => "रचनात्मक उत्पाद नाम बनाएँ: ##description## \n\nबीज शब्द:##keywords## \n\n"], - - ['id' => 488, 'template_id' => 14, 'key' => "hu-HU", 'value' => "Kreatív terméknevek létrehozása: ##description## \n\nKiinduló szavak: ##keywords## \n\n"], - - ['id' => 489, 'template_id' => 14, 'key' => "is-IS", 'value' => "Búa til skapandi vöruheiti: ##description## \n\nSeed orð: ##keywords## \n\n"], - - ['id' => 490, 'template_id' => 14, 'key' => "id-ID", 'value' => "Buat nama produk kreatif: ##description## \n\nBenih kata: ##keywords## \n\n"], - - ['id' => 491, 'template_id' => 14, 'key' => "it-IT", 'value' => "Crea nomi di prodotti creativi: ##description## \n\nParole iniziali: ##keywords## \n\n"], - - ['id' => 492, 'template_id' => 14, 'key' => "ja-JP", 'value' => "クリエイティブな商品名を作成する: ##description## \n\nシード ワード: ##keywords## \n\n"], - - ['id' => 493, 'template_id' => 14, 'key' => "ko-KR", 'value' => "창의적인 제품 이름 만들기: ##description## \n\n시드 단어: ##keywords## \n\n"], - - ['id' => 494, 'template_id' => 14, 'key' => "ms-MY", 'value' => "Buat nama produk kreatif: ##description## \n\nPerkataan benih: ##keywords## \n\n"], - - ['id' => 495, 'template_id' => 14, 'key' => "nb-NO", 'value' => "Lag kreative produktnavn: ##description## \n\nSeed ord: ##keywords## \n\n"], - - ['id' => 496, 'template_id' => 14, 'key' => "pl-PL", 'value' => "Utwórz kreatywne nazwy produktów: ##description## \n\nSłowa źródłowe: ##keywords## \n\n"], - - ['id' => 497, 'template_id' => 14, 'key' => "pt-PT", 'value' => "Criar nomes de produtos criativos: ##description## \n\nPalavras iniciais: ##keywords## \n\n"], - - ['id' => 498, 'template_id' => 14, 'key' => "ru-RU", 'value' => "Создайте креативные названия продуктов: ##description## \n\nИсходные слова: ##keywords## \n\n"], - - ['id' => 499, 'template_id' => 14, 'key' => "es-ES", 'value' => "Crear nombres de productos creativos: ##description## \n\nPalabras semilla: ##keywords## \n\n"], - - ['id' => 500, 'template_id' => 14, 'key' => "sv-SE", 'value' => "Skapa kreativa produktnamn: ##description## \n\nFröord: ##keywords## \n\n"], - - ['id' => 501, 'template_id' => 14, 'key' => "tr-TR", 'value' => "Yaratıcı ürün adları oluşturun: ##description## \n\nÖz sözcükler: ##keywords## \n\n"], - - ['id' => 502, 'template_id' => 14, 'key' => "pt-BR", 'value' => "Criar nomes de produtos criativos: ##description## \n\nPalavras iniciais: ##keywords## \n\n"], - - ['id' => 503, 'template_id' => 14, 'key' => "ro-RO", 'value' => "Creați nume de produse creative: ##description## \n\nCuvinte semințe: ##keywords## \n\n"], - - ['id' => 504, 'template_id' => 14, 'key' => "vi-VN", 'value' => "Tạo tên sản phẩm sáng tạo: ##description## \n\nTừ giống: ##keywords## \n\n"], - - ['id' => 505, 'template_id' => 14, 'key' => "sw-KE", 'value' => "Unda majina ya ubunifu ya bidhaa: ##description## \n\nManeno ya mbegu: ##keywords## \n\n"], - - ['id' => 506, 'template_id' => 14, 'key' => "sl-SI", 'value' => "Ustvarite ustvarjalna imena izdelkov: ##description## \n\nSemenske besede: ##keywords## \n\n"], - - ['id' => 507, 'template_id' => 14, 'key' => "th-TH", 'value' => "สร้างชื่อผลิตภัณฑ์อย่างสร้างสรรค์:##description## \n\nคำที่ใช้: ##keywords## \n\n"], - - ['id' => 508, 'template_id' => 14, 'key' => "uk-UA", 'value' => "Створіть творчі назви продуктів: ##description## \n\nПочаткові слова: ##keywords## \n\n"], - - ['id' => 509, 'template_id' => 14, 'key' => "lt-LT", 'value' => "Sukurkite kūrybinius produktų pavadinimus: ##description## \n\nPradiniai žodžiai: ##keywords## \n\n"], - - ['id' => 510, 'template_id' => 14, 'key' => "bg-BG", 'value' => "Създайте творчески имена на продукти: ##description## \n\nСедлови думи: ##keywords## \n\n"], - - ['id' => 511, 'template_id' => 15, 'key' => "en-US", 'value' => "Write SEO meta description for:\n\n ##description## \n\nWebsite name is:\n ##title## \n\nSeed words:\n ##keywords## \n\n"], - - ['id' => 512, 'template_id' => 15, 'key' => "ar-AE", 'value' =>"اكتب وصف تعريف SEO لـ:\n\n ##description## \n\nاسم موقع الويب هو:\n ##title## \n\nكلمات المصدر:\n ##keywords## \n\n"], - - ['id' => 513, 'template_id' => 15, 'key' => "cmn-CN", 'value' => "为以下内容编写 SEO 元描述:\n\n ##description## \n\n 网站名称是:\n ##title## \n\n 种子词:\n ##keywords## \n\n"], - - ['id' => 514, 'template_id' => 15, 'key' => "hr-HR", 'value' => "Napišite SEO meta opis za:\n\n ##description## \n\n Naziv web stranice je:\n ##title## \n\n Početne riječi:\n ##keywords## \n\n"], - - ['id' => 515, 'template_id' => 15, 'key' => "cs-CZ", 'value' => "Zapsat SEO meta popis pro:\n\n ##description## \n\n Název webu je:\n ##title## \n\n Výchozí slova:\n ##keywords## \n\n"], - - ['id' => 516, 'template_id' => 15, 'key' => "da-DK", 'value' => "Skriv SEO-metabeskrivelse for:\n\n ##description## \n\n Webstedets navn er:\n ##title## \n\n Frøord:\n ##keywords## \n\n"], - - ['id' => 517, 'template_id' => 15, 'key' => "nl-NL", 'value' => "Schrijf SEO-metabeschrijving voor:\n\n ##description## \n\n Websitenaam is:\n ##title## \n\n Zaadwoorden:\n ##keywords## \n\n"], - - ['id' => 518, 'template_id' => 15, 'key' => "et-EE", 'value' => "Kirjutage SEO metakirjeldus:\n\n ##description## \n\n Veebisaidi nimi on:\n ##title## \n\n Algsõnad:\n ##keywords## \n\n"], - - ['id' => 519, 'template_id' => 15, 'key' => "fi-FI", 'value' => "Kirjoita hakukoneoptimoinnin metakuvaus kohteelle:\n\n ##description## \n\n Verkkosivuston nimi on:\n ##title## \n\n Alkusanat:\n ##keywords## \n\n"], - - ['id' => 520, 'template_id' => 15, 'key' => "fr-FR", 'value' => "Ecrire une méta description SEO pour :\n\n ##description## \n\n Le nom du site Web est :\n ##title## \n\n Mots clés :\n ##keywords## \n\n"], - - ['id' => 521, 'template_id' => 15, 'key' => "de-DE", 'value' => "SEO-Metabeschreibung schreiben für:\n\n ##description## \n\n Website-Name ist:\n ##title## \n\n Ausgangswörter:\n ##keywords## \n\n"], - - ['id' => 522, 'template_id' => 15, 'key' => "el-GR", 'value' => "Γράψτε μετα-περιγραφή SEO για:\n\n ##description## \n\n Το όνομα ιστότοπου είναι:\n ##title## \n\n Βασικές λέξεις:\n ##keywords## \n\n"], - - ['id' => 523, 'template_id' => 15, 'key' => "he-IL", 'value' => "כתוב מטא תיאור SEO עבור:\n\n ##description## \n\n שם האתר הוא:\n ##title## \n\n מילות זרע:\n ##keywords## \n\n"], - - ['id' => 524, 'template_id' => 15, 'key' => "hi-IN", 'value' => "इसके लिए SEO मेटा विवरण लिखें:\n\n ##description## \n\n वेबसाइट का नाम है:\n ##title## \n\n बीज शब्द:\n ##keywords## \n\n"], - - ['id' => 525, 'template_id' => 15, 'key' => "hu-HU", 'value' => "Írjon SEO meta leírást:\n\n ##description## \n\n A webhely neve:\n ##title## \n\n Kezdőszavak:\n ##keywords## \n\n"], - - ['id' => 526, 'template_id' => 15, 'key' => "is-IS", 'value' => "Skrifaðu SEO lýsilýsingu fyrir:\n\n ##description## \n\n Heiti vefsvæðis er:\n ##title## \n\n Fræorð:\n ##keywords## \n\n"], - - ['id' => 527, 'template_id' => 15, 'key' => "id-ID", 'value' => "Tulis deskripsi meta SEO untuk:\n\n ##description## \n\n Nama situs web adalah:\n ##title## \n\n Kata bibit:\n ##keywords## \n\n"], - - ['id' => 528, 'template_id' => 15, 'key' => "it-IT", 'value' => "Scrivi meta descrizione SEO per:\n\n ##description## \n\n Il nome del sito web è:\n ##title## \n\n Parole seme:\n ##keywords## \n\n"], - - ['id' => 529, 'template_id' => 15, 'key' => "ja-JP", 'value' => "以下の SEO メタ ディスクリプションを書き込みます:\n\n ##description## \n\n ウェブサイト名:\n ##title## \n\n シード ワード:\n ##keywords## \n\n"], - - ['id' => 530, 'template_id' => 15, 'key' => "ko-KR", 'value' => "다음에 대한 SEO 메타 설명 쓰기:\n\n ##description## \n\n 웹사이트 이름:\n ##title## \n\n 시드 단어:\n ##keywords## \n\n"], - - ['id' => 531, 'template_id' => 15, 'key' => "ms-MY", 'value' => "Tulis perihalan meta SEO untuk:\n\n ##description## \n\n Nama tapak web ialah:\n ##title## \n\n Perkataan benih:\n ##keywords## \n\n"], - - ['id' => 532, 'template_id' => 15, 'key' => "nb-NO", 'value' => "Skriv SEO-metabeskrivelse for:\n\n ##description## \n\n Nettstedets navn er:\n ##title## \n\n Frøord:\n ##keywords## \n\n"], - - ['id' => 533, 'template_id' => 15, 'key' => "pl-PL", 'value' => "Napisz metaopis SEO dla:\n\n ##description## \n\n Nazwa witryny to:\n ##title## \n\n Słowa źródłowe:\n ##keywords## \n\n"], - - ['id' => 534, 'template_id' => 15, 'key' => "pt-PT", 'value' => "Escreva a meta descrição de SEO para:\n\n ##description## \n\n O nome do site é:\n ##title## \n\n Palavras-chave:\n ##keywords## \n\n"], - - ['id' => 535, 'template_id' => 15, 'key' => "ru-RU", 'value' => "Напишите мета-описание SEO для:\n\n ##description## \n\n Имя веб-сайта:\n ##title## \n\n Исходные слова:\n ##keywords## \n\n"], - - ['id' => 536, 'template_id' => 15, 'key' => "es-ES", 'value' => "Escribir meta descripción SEO para:\n\n ##description## \n\n El nombre del sitio web es:\n ##title## \n\n Palabras semilla:\n ##keywords## \n\n"], - - ['id' => 537, 'template_id' => 15, 'key' => "sv-SE", 'value' => "Skriv SEO-metabeskrivning för:\n\n ##description## \n\n Webbplatsens namn är:\n ##title## \n\n Fröord:\n ##keywords## \n\n"], - - ['id' => 538, 'template_id' => 15, 'key' => "tr-TR", 'value' => "Şunun için SEO meta açıklaması yaz:\n\n ##description## \n\n Web sitesi adı:\n ##title## \n\n Çekirdek sözcükler:\n ##keywords## \n\n"], - - ['id' => 539, 'template_id' => 15, 'key' => "pt-BR", 'value' => "Escreva a meta descrição de SEO para:\n\n ##description## \n\n O nome do site é:\n ##title## \n\n Palavras-chave:\n ##keywords## \n\n"], - - ['id' => 540, 'template_id' => 15, 'key' => "ro-RO", 'value' => "Scrieți metadescriere SEO pentru:\n\n ##description## \n\nNumele site-ului este:\n ##title## \n\n nevoie de cuvinte:\n ##keywords## \n\n"], - - ['id' => 541, 'template_id' => 15, 'key' => "vi-VN", 'value' => "Viết mô tả meta SEO cho:\n\n ##description## \n\nTên trang web là:\n ##title## \n\ncần từ:\n ##keywords## \n\n"], - - ['id' => 542, 'template_id' => 15, 'key' => "sw-KE", 'value' => "Andika maelezo ya meta ya SEO ya:\n\n ##description## \n\nJina la tovuti ni:\n ##title## \n\nManeno ya mbegu:\n ##keywords## \n\n"], - - ['id' => 543, 'template_id' => 15, 'key' => "sl-SI", 'value' => "Napišite meta opis SEO za:\n\n ##description## \n\nIme spletne strani je:\n ##title## \n\nSemenske besede:\n ##keywords## \n\n"], - - ['id' => 544, 'template_id' => 15, 'key' => "th-TH", 'value' => "เขียนคำอธิบายเมตา SEO สำหรับ:\n\n ##description## \n\nชื่อเว็บไซต์คือ:\n ##title## \n\nคำเมล็ด:\n ##keywords## \n\n"], - - ['id' => 545, 'template_id' => 15, 'key' => "uk-UA", 'value' => "Напишіть метаопис SEO для:\n\n ##description## \n\nНазва сайту:\n ##title## \n\nНасіннєві слова:\n ##keywords## \n\n"], - - ['id' => 546, 'template_id' => 15, 'key' => "lt-LT", 'value' => "Parašykite SEO meta aprašymą:\n\n ##description## \n\nSvetainės pavadinimas yra:\n ##title## \n\nPradiniai žodžiai:\n ##keywords## \n\n"], - - ['id' => 547, 'template_id' => 15, 'key' => "bg-BG", 'value' => "Напишете SEO мета описание за:\n\n ##description## \n\nИмето на уебсайта е:\n ##title## \n\nЗародишни думи:\n ##keywords## \n\n"], - - ['id' => 548, 'template_id' => 16, 'key' => "en-US", 'value' => "Generate list of 10 frequently asked questions based on description:\n\n ##description## \n\n Product name:\n ##title## \n\n Tone of voice of the questions must be:\n ##tone_language## \n\n"], - - ['id' => 549, 'template_id' => 16, 'key' => "ar-AE", 'value' => "قم بإنشاء قائمة من 10 أسئلة متداولة بناءً على الوصف:\n\n ##description## \n\nاسم المنتج:\n ##title## \n\nيجب أن تكون نبرة صوت الأسئلة:\n ##tone_language## \n\n"], - - ['id' => 550, 'template_id' => 16, 'key' => "cmn-CN", 'value' => "根据描述生成 10 个常见问题列表:\n\n ##description## \n\n 产品名称:\n ##title## \n\n 提问的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 551, 'template_id' => 16, 'key' => "hr-HR", 'value' => "Generiraj popis od 10 često postavljanih pitanja na temelju opisa:\n\n ##description## \n\n Naziv proizvoda:\n ##title## \n\n Ton glasa pitanja mora biti:\n ##tone_language## \n\n"], - - ['id' => 552, 'template_id' => 16, 'key' => "cs-CZ", 'value' => "Vygenerujte seznam 10 často kladených otázek na základě popisu:\n\n ##description## \n\n Název produktu:\n ##title## \n\n Tón hlasu otázek musí být:\n ##tone_language## \n\n"], - - ['id' => 553, 'template_id' => 16, 'key' => "da-DK", 'value' => "Generer en liste med 10 ofte stillede spørgsmål baseret på beskrivelse:\n\n ##description## \n\n Produktnavn:\n ##title## \n\n Tonen i spørgsmålene skal være:\n ##tone_language## \n\n"], - - ['id' => 554, 'template_id' => 16, 'key' => "nl-NL", 'value' => "Genereer een lijst met 10 veelgestelde vragen op basis van beschrijving:\n\n ##description## \n\n Productnaam:\n ##title## \n\n Tone of voice van de vragen moet zijn:\n ##tone_language## \n\n"], - - ['id' => 555, 'template_id' => 16, 'key' => "et-EE", 'value' => "Loo kirjelduse põhjal 10 korduma kippuva küsimuse loend:\n\n ##description## \n\n Toote nimi:\n ##title## \n\n Küsimuste hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 556, 'template_id' => 16, 'key' => "fi-FI", 'value' => "Luo luettelo 10 usein kysytystä kysymyksestä kuvauksen perusteella:\n\n ##description## \n\n Tuotteen nimi:\n ##title## \n\n Kysymysten äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 557, 'template_id' => 16, 'key' => "fr-FR", 'value' => "Générer une liste de 10 questions fréquemment posées en fonction de la description :\n\n ##description## \n\n Nom du produit :\n ##title## \n\n Le ton de la voix des questions doit être :\n ##tone_language## \n\n"], - - ['id' => 558, 'template_id' => 16, 'key' => "de-DE", 'value' => "Erzeuge eine Liste mit 10 häufig gestellten Fragen basierend auf der Beschreibung:\n\n ##description## \n\n Produktname:\n ##title## \n\n Tonfall der Fragen muss sein:\n ##tone_language## \n\n"], - - ['id' => 559, 'template_id' => 16, 'key' => "el-GR", 'value' => "Δημιουργία λίστας 10 συχνών ερωτήσεων με βάση την περιγραφή:\n\n ##description## \n\n Όνομα προϊόντος:\n ##title## \n\n Ο τόνος της φωνής των ερωτήσεων πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 560, 'template_id' => 16, 'key' => "he-IL", 'value' => "צור רשימה של 10 שאלות נפוצות על סמך תיאור:\n\n ##description## \n\n שם המוצר:\n ##title## \n\n טון הדיבור של השאלות חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 561, 'template_id' => 16, 'key' => "hi-IN", 'value' => "विवरण के आधार पर अक्सर पूछे जाने वाले 10 प्रश्नों की सूची तैयार करें:\n\n ##description## \n\n उत्पाद का नाम:\n ##title## \n\n प्रश्नों का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 562, 'template_id' => 16, 'key' => "hu-HU", 'value' => "Létrehozzon 10 gyakran ismételt kérdést tartalmazó listát a leírás alapján:\n\n ##description## \n\n Terméknév:\n ##title## \n\n A kérdések hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 563, 'template_id' => 16, 'key' => "is-IS", 'value' => "Búðu til lista yfir 10 algengar spurningar byggðar á lýsingu:\n\n ##description## \n\n Vöruheiti:\n ##title## \n\n Röddtónn spurninganna verður að vera:\n ##tone_language## \n\n"], - - ['id' => 564, 'template_id' => 16, 'key' => "id-ID", 'value' => "Buat daftar 10 pertanyaan umum berdasarkan deskripsi:\n\n ##description## \n\n Nama produk:\n ##title## \n\n Nada suara pertanyaan harus:\n ##tone_language## \n\n"], - - ['id' => 565, 'template_id' => 16, 'key' => "it-IT", 'value' => "Genera elenco di 10 domande frequenti in base alla descrizione:\n\n ##description## \n\n Nome prodotto:\n ##title## \n\n Il tono di voce delle domande deve essere:\n ##tone_language## \n\n"], - - ['id' => 566, 'template_id' => 16, 'key' => "ja-JP", 'value' => "説明に基づいて 10 のよくある質問のリストを生成します:\n\n ##description## \n\n 製品名:\n ##title## \n\n 質問のトーンは次のようにする必要があります:\n ##tone_language## \n\n"], - - ['id' => 567, 'template_id' => 16, 'key' => "ko-KR", 'value' => "설명에 따라 자주 묻는 질문 10개 목록 생성:\n\n ##description## \n\n 제품 이름:\n ##title## \n\n 질문의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n"], - - ['id' => 568, 'template_id' => 16, 'key' => "ms-MY", 'value' => "Jana senarai 10 soalan lazim berdasarkan penerangan:\n\n ##description## \n\n Nama produk:\n ##title## \n\n Nada suara soalan mestilah:\n ##tone_language## \n\n"], - - ['id' => 569, 'template_id' => 16, 'key' => "nb-NO", 'value' => "Generer liste over 10 vanlige spørsmål basert på beskrivelse:\n\n ##description## \n\n Produktnavn:\n ##title## \n\n Tonen i spørsmålene må være:\n ##tone_language## \n\n"], - - ['id' => 570, 'template_id' => 16, 'key' => "pl-PL", 'value' => "Wygeneruj listę 10 najczęściej zadawanych pytań na podstawie opisu:\n\n ##description## \n\n Nazwa produktu:\n ##title## \n\n Ton pytań musi być następujący:\n ##tone_language## \n\n"], - - ['id' => 571, 'template_id' => 16, 'key' => "pt-PT", 'value' => "Gerar lista de 10 perguntas frequentes com base na descrição:\n\n ##description## \n\n Nome do produto:\n ##title## \n\n Tom de voz das perguntas deve ser:\n ##tone_language## \n\n"], - - ['id' => 572, 'template_id' => 16, 'key' => "ru-RU", 'value' => "Создать список из 10 часто задаваемых вопросов на основе описания:\n\n ##description## \n\n Название продукта:\n ##title## \n\n Тон вопросов должен быть:\n ##tone_language## \n\n"], - - ['id' => 573, 'template_id' => 16, 'key' => "es-ES", 'value' => "Generar una lista de 10 preguntas frecuentes según la descripción:\n\n ##description## \n\n Nombre del producto:\n ##title## \n\n El tono de voz de las preguntas debe ser:\n ##tone_language## \n\n"], - - ['id' => 574, 'template_id' => 16, 'key' => "sv-SE", 'value' => "Skapa en lista med 10 vanliga frågor baserat på beskrivning:\n\n ##description## \n\n Produktnamn:\n ##title## \n\n Tonen i frågorna måste vara:\n ##tone_language## \n\n"], - - ['id' => 575, 'template_id' => 16, 'key' => "tr-TR", 'value' => "Açıklamaya göre sık sorulan 10 sorudan oluşan bir liste oluşturun:\n\n ##description## \n\n Ürün adı:\n ##title## \n\n Soruların ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 576, 'template_id' => 16, 'key' => "pt-BR", 'value' => "Gerar lista de 10 perguntas frequentes com base na descrição:\n\n ##description## \n\n Nome do produto:\n ##title## \n\n Tom de voz das perguntas deve ser:\n ##tone_language## \n\n"], - - ['id' => 577, 'template_id' => 16, 'key' => "ro-RO", 'value' => "Generează o listă cu 10 întrebări frecvente pe baza descrierii:\n\n ##description## \n\n Nume produs:\n ##title## \n\n Tonul de voce al întrebărilor trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 578, 'template_id' => 16, 'key' => "vi-VN", 'value' => "Tạo danh sách 10 câu hỏi thường gặp dựa trên mô tả:\n\n ##description## \n\n Tên sản phẩm:\n ##title## \n\n Giọng điệu của câu hỏi phải là:\n ##tone_language## \n\n"], - - ['id' => 579, 'template_id' => 16, 'key' => "sw-KE", 'value' => "Tengeneza orodha ya maswali 10 yanayoulizwa mara kwa mara kulingana na maelezo:\n\n ##description## \n\n Jina la bidhaa:\n ##title## \n\n Toni ya sauti ya maswali lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 580, 'template_id' => 16, 'key' => "sl-SI", 'value' => "Ustvari seznam 10 pogosto zastavljenih vprašanj na podlagi opisa:\n\n ##description## \n\n Ime izdelka:\n ##title## \n\n Ton glasu vprašanj mora biti:\n ##tone_language## \n\n"], - - ['id' => 581, 'template_id' => 16, 'key' => "th-TH", 'value' => "สร้างรายการคำถามที่พบบ่อย 10 รายการตามคำอธิบาย:\n\n ##description## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n เสียงของคำถามต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 582, 'template_id' => 16, 'key' => "uk-UA", 'value' => "Створити список із 10 поширених запитань на основі опису:\n\n ##description## \n\n Назва продукту:\n ##title## \n\n Тон голосу запитань має бути:\n ##tone_language## \n\n"], - - ['id' => 583, 'template_id' => 16, 'key' => "lt-LT", 'value' => "Sukurkite 10 dažniausiai užduodamų klausimų sąrašą pagal aprašymą:\n\n ##description## \n\n Produkto pavadinimas:\n ##title## \n\n Klausimų balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 584, 'template_id' => 16, 'key' => "bg-BG", 'value' => "Генериране на списък от 10 често задавани въпроса въз основа на описание:\n\n ##description## \n\n Име на продукта:\n ##title## \n\n Тонът на гласа на въпросите трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 585, 'template_id' => 17, 'key' => "en-US", 'value' => "Generate creative 5 answers to question:\n\n ##question## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the answers must be:\n ##tone_language## \n\n"], - - ['id' => 586, 'template_id' => 17, 'key' => "ar-AE", 'value' => "إنشاء 5 إجابات إبداعية على السؤال:\n\n ##question## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نبرة صوت الإجابات:\n ##tone_language## \n\n"], - - ['id' => 587, 'template_id' => 17, 'key' => "cmn-CN", 'value' => "为问题生成有创意的 5 个答案:\n\n ##question## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 回答的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 588, 'template_id' => 17, 'key' => "hr-HR", 'value' => "Generiraj kreativnih 5 odgovora na pitanje:\n\n ##question## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa odgovora mora biti:\n ##tone_language## \n\n"], - - ['id' => 589, 'template_id' => 17, 'key' => "cs-CZ", 'value' => "Vygenerujte kreativu 5 odpovědí na otázku:\n\n ##question## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu odpovědí musí být:\n ##tone_language## \n\n"], - - ['id' => 590, 'template_id' => 17, 'key' => "da-DK", 'value' => "Generer kreative 5 svar på spørgsmål:\n\n ##question## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i svarene skal være:\n ##tone_language## \n\n"], - - ['id' => 591, 'template_id' => 17, 'key' => "nl-NL", 'value' => "Genereer creatieve 5 antwoorden op vraag:\n\n ##question## \n\n Productnaam:\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de antwoorden moet zijn:\n ##tone_language## \n\n"], - - ['id' => 592, 'template_id' => 17, 'key' => "et-EE", 'value' => "Loo 5 loomingulist vastust küsimusele:\n\n ##question## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Vastuste hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 593, 'template_id' => 17, 'key' => "fi-FI", 'value' => "Luo luova 5 vastausta kysymykseen:\n\n ##question## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Vastausten äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 594, 'template_id' => 17, 'key' => "fr-FR", 'value' => "Générer la création 5 réponses à la question :\n\n ##question## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix des réponses doit être :\n ##tone_language## \n\n"], - - ['id' => 595, 'template_id' => 17, 'key' => "de-DE", 'value' => "Erzeuge kreative 5 Antworten auf Frage:\n\n ##question## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Antworten muss sein:\n ##tone_language## \n\n"], - - ['id' => 596, 'template_id' => 17, 'key' => "el-GR", 'value' => "Δημιουργία δημιουργικού 5 απαντήσεων στην ερώτηση:\n\n ##question## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής των απαντήσεων πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 597, 'template_id' => 17, 'key' => "he-IL", 'value' => "צור קריאייטיב 5 תשובות לשאלה:\n\n ##question## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n טון הדיבור של התשובות חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 598, 'template_id' => 17, 'key' => "hi-IN", 'value' => "प्रश्न के रचनात्मक 5 उत्तर उत्पन्न करें:\n\n ##question## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n जवाबों के स्वर इस प्रकार होने चाहिए:\n ##tone_language## \n\n"], - - ['id' => 599, 'template_id' => 17, 'key' => "hu-HU", 'value' => "Kreatív 5 válasz létrehozása a következő kérdésre:\n\n ##question## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A válaszok hangszínének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 600, 'template_id' => 17, 'key' => "is-IS", 'value' => "Búðu til skapandi 5 svör við spurningu:\n\n ##question## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Röddtónn svara verður að vera:\n ##tone_language## \n\n"], - - ['id' => 601, 'template_id' => 17, 'key' => "id-ID", 'value' => "Hasilkan 5 jawaban kreatif untuk pertanyaan:\n\n ##question## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara jawaban harus:\n ##tone_language## \n\n"], - - ['id' => 602, 'template_id' => 17, 'key' => "it-IT", 'value' => "Genera creatività 5 risposte alla domanda:\n\n ##question## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce delle risposte deve essere:\n ##tone_language## \n\n"], - - ['id' => 603, 'template_id' => 17, 'key' => "ja-JP", 'value' => "質問に対する創造的な 5 つの回答を生成します:\n\n ##question## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 回答の声のトーンは次のとおりでなければなりません:\n ##tone_language## \n\n"], - - ['id' => 604, 'template_id' => 17, 'key' => "ko-KR", 'value' => "질문에 대한 창의적인 5개 답변 생성:\n\n ##question## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 답변의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n"], - - ['id' => 605, 'template_id' => 17, 'key' => "ms-MY", 'value' => "Jana 5 jawapan kreatif untuk soalan:\n\n ##question## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara jawapan mestilah:\n ##tone_language## \n\n"], - - ['id' => 606, 'template_id' => 17, 'key' => "nb-NO", 'value' => "Generer kreative 5 svar på spørsmål:\n\n ##question## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen til svarene må være:\n ##tone_language## \n\n"], - - ['id' => 607, 'template_id' => 17, 'key' => "pl-PL", 'value' => "Wygeneruj kreację 5 odpowiedzi na pytanie:\n\n ##question## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton odpowiedzi musi być:\n ##tone_language## \n\n"], - - ['id' => 608, 'template_id' => 17, 'key' => "pt-PT", 'value' => "Gerar criativo 5 respostas para a pergunta:\n\n ##question## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n Tom de voz das respostas deve ser:\n ##tone_language## \n\n"], - - ['id' => 609, 'template_id' => 17, 'key' => "ru-RU", 'value' => "Сгенерировать креативные 5 ответов на вопрос:\n\n ##question## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон голоса ответов должен быть:\n ##tone_language## \п\п"], - - ['id' => 610, 'template_id' => 17, 'key' => "es-ES", 'value' => "Generar 5 respuestas creativas a la pregunta:\n\n ##question## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz de las respuestas debe ser:\n ##tone_language## \n\n"], - - ['id' => 611, 'template_id' => 17, 'key' => "sv-SE", 'value' => "Generera kreativa fem svar på frågan:\n\n ##question## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i svaren måste vara:\n ##tone_language## \n\n"], - - ['id' => 612, 'template_id' => 17, 'key' => "tr-TR", 'value' => "Soruya yaratıcı 5 yanıt oluşturun:\n\n ##question## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Cevapların ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 613, 'template_id' => 17, 'key' => "pt-BR", 'value' => "Gerar criativo 5 respostas para a pergunta:\n\n ##question## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n Tom de voz das respostas deve ser:\n ##tone_language## \n\n"], - - ['id' => 614, 'template_id' => 17, 'key' => "ro-RO", 'value' => "Generează reclame 5 răspunsuri la întrebarea:\n\n ##question## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii răspunsurilor trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 615, 'template_id' => 17, 'key' => "vi-VN", 'value' => "Tạo 5 câu trả lời sáng tạo cho câu hỏi:\n\n ##question## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của câu trả lời phải là:\n ##tone_language## \n\n"], - - ['id' => 616, 'template_id' => 17, 'key' => "sw-KE", 'value' => "Toa majibu 5 ya ubunifu kwa swali:\n\n ##question## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya majibu lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 617, 'template_id' => 17, 'key' => "sl-SI", 'value' => "Ustvari kreativnih 5 odgovorov na vprašanje:\n\n ##question## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu odgovorov mora biti:\n ##tone_language## \n\n"], - - ['id' => 618, 'template_id' => 17, 'key' => "th-TH", 'value' => "สร้างครีเอทีฟ 5 คำตอบสำหรับคำถาม:\n\n ##question## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของคำตอบต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 619, 'template_id' => 17, 'key' => "uk-UA", 'value' => "Створіть творчі 5 відповідей на запитання:\n\n ##question## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу відповідей має бути:\n ##tone_language## \n\n"], - - ['id' => 620, 'template_id' => 17, 'key' => "lt-LT", 'value' => "Sukurkite 5 kūrybingus atsakymus į klausimą:\n\n ##question## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Atsakymų balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 621, 'template_id' => 17, 'key' => "bg-BG", 'value' => "Генерирайте творчески 5 отговора на въпрос:\n\n ##question## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на отговорите трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 622, 'template_id' => 18, 'key' => "en-US", 'value' => "Create 5 creative customer reviews for a product. Product name:\n\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the customer review must be:\n ##tone_language## \n\n"], - - ['id' => 623, 'template_id' => 18, 'key' => "ar-AE", 'value' => "أنشئ 5 مراجعات إبداعية للعملاء لمنتج ما. اسم المنتج:\n\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نبرة صوت مراجعة العميل:\n ##tone_language## \n\n"], - - ['id' => 623, 'template_id' => 18, 'key' => "cmn-CN", 'value' => "为产品创建 5 个有创意的客户评论。产品名称:\n\n ##title## \n\n 产品描述:\n ##description## \n\n 客户评论的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 624, 'template_id' => 18, 'key' => "hr-HR", 'value' => "Stvorite 5 kreativnih korisničkih recenzija za proizvod. Naziv proizvoda:\n\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa klijentove recenzije mora biti:\n ##tone_language## \n\n"], - - ['id' => 625, 'template_id' => 18, 'key' => "cs-CZ", 'value' => "Vytvořte 5 kreativních zákaznických recenzí pro produkt. Název produktu:\n\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu zákaznické recenze musí být:\n ##tone_language## \n\n"], - - ['id' => 626, 'template_id' => 18, 'key' => "da-DK", 'value' => "Opret 5 kreative kundeanmeldelser for et produkt. Produktnavn:\n\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i kundeanmeldelsen skal være:\n ##tone_language## \n\n"], - - ['id' => 627, 'template_id' => 18, 'key' => "nl-NL", 'value' => "Maak 5 creatieve klantrecensies voor een product. Productnaam:\n\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de klantrecensie moet zijn:\n ##tone_language## \n\n"], - - ['id' => 628, 'template_id' => 18, 'key' => "et-EE", 'value' => "Looge toote kohta 5 loomingulist kliendiarvustust. Toote nimi:\n\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Kliendiarvustuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 629, 'template_id' => 18, 'key' => "fi-FI", 'value' => "Luo 5 luovaa asiakasarvostelua tuotteelle. Tuotteen nimi:\n\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Asiakasarvion äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 630, 'template_id' => 18, 'key' => "fr-FR", 'value' => "Créez 5 avis clients créatifs pour un produit. Nom du produit :\n\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix de l'avis client doit être :\n ##tone_language## \n\n"], - - ['id' => 631, 'template_id' => 18, 'key' => "de-DE", 'value' => "Erstellen Sie 5 kreative Kundenrezensionen für ein Produkt. Produktname:\n\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Kundenrezension muss sein:\n ##tone_language## \n\n"], - - ['id' => 632, 'template_id' => 18, 'key' => "el-GR", 'value' => "Δημιουργήστε 5 δημιουργικές κριτικές πελατών για ένα προϊόν. Όνομα προϊόντος:\n\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο ήχος της κριτικής πελάτη πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 633, 'template_id' => 18, 'key' => "he-IL", 'value' => "צור 5 ביקורות יצירתיות של לקוחות עבור מוצר. שם המוצר:\n\n ##title## \n\n תיאור המוצר:\n ##description## \n\n טון הדיבור של ביקורת הלקוח חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 634, 'template_id' => 18, 'key' => "hi-IN", 'value' => "एक उत्पाद के लिए 5 रचनात्मक ग्राहक समीक्षाएँ बनाएँ। उत्पाद का नाम:\n\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n ग्राहक समीक्षा का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 635, 'template_id' => 18, 'key' => "hu-HU", 'value' => "Hozzon létre 5 kreatív vásárlói véleményt egy termékről. Termék neve:\n\n ##title## \n\n Termékleírás:\n ##description## \n\n A vásárlói vélemény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 636, 'template_id' => 18, 'key' => "is-IS", 'value' => "Búðu til 5 skapandi umsagnir viðskiptavina fyrir vöru. Vöruheiti:\n\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í umsögn viðskiptavina verður að vera:\n ##tone_language## \n\n"], - - ['id' => 637, 'template_id' => 18, 'key' => "id-ID", 'value' => "Buat 5 ulasan pelanggan yang kreatif untuk sebuah produk. Nama produk:\n\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara ulasan pelanggan harus:\n ##tone_language## \n\n"], - - ['id' => 638, 'template_id' => 18, 'key' => "it-IT", 'value' => "Crea 5 recensioni cliente creative per un prodotto. Nome prodotto:\n\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce della recensione del cliente deve essere:\n ##tone_language## \n\n"], - - ['id' => 639, 'template_id' => 18, 'key' => "ja-JP", 'value' => "商品のクリエイティブなカスタマー レビューを 5 つ作成します。商品名:\n\n ##title## \n\n 製品説明:\n ##description## \n\n カスタマー レビューの声調は次のとおりでなければなりません:\n ##tone_language## \n\n"], - - ['id' => 640, 'template_id' => 18, 'key' => "ko-KR", 'value' => "제품에 대해 5개의 창의적인 고객 리뷰를 작성하십시오. 제품 이름:\n\n ##title## \n\n 제품 설명:\n ##description## \n\n 고객 리뷰의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 641, 'template_id' => 18, 'key' => "ms-MY", 'value' => "Buat 5 ulasan pelanggan kreatif untuk produk. Nama produk:\n\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara ulasan pelanggan mestilah:\n ##tone_language## \n\n"], - - ['id' => 642, 'template_id' => 18, 'key' => "nb-NO", 'value' => "Lag 5 kreative kundeanmeldelser for et produkt. Produktnavn:\n\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i kundeanmeldelsen må være:\n ##tone_language## \n\n"], - - ['id' => 643, 'template_id' => 18, 'key' => "pl-PL", 'value' => "Utwórz 5 kreatywnych recenzji klientów dla produktu. Nazwa produktu:\n\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton opinii klienta musi być następujący:\n ##tone_language## \n\n"], - - ['id' => 644, 'template_id' => 18, 'key' => "pt-PT", 'value' => "Crie 5 avaliações criativas de clientes para um produto. Nome do produto:\n\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz da avaliação do cliente deve ser:\n ##tone_language## \n\n"], - - ['id' => 645, 'template_id' => 18, 'key' => "ru-RU", 'value' => "Создайте 5 креативных отзывов клиентов о продукте. Название продукта:\n\n ##title## \n\n Описание товара:\n ##description## \n\n Тон голоса отзыва клиента должен быть:\n ##tone_language## \n\n"], - - ['id' => 646, 'template_id' => 18, 'key' => "es-ES", 'value' => "Cree 5 reseñas creativas de clientes para un producto. Nombre del producto:\n\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz de la reseña del cliente debe ser:\n ##tone_language## \n\n"], - - ['id' => 647, 'template_id' => 18, 'key' => "sv-SE", 'value' => "Skapa 5 kreativa kundrecensioner för en produkt. Produktnamn:\n\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i kundrecensionen måste vara:\n ##tone_language## \n\n"], - - ['id' => 648, 'template_id' => 18, 'key' => "tr-TR", 'value' => "Bir ürün için 5 yaratıcı müşteri yorumu oluşturun. Ürün adı:\n\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Müşteri incelemesinin ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 649, 'template_id' => 18, 'key' => "pt-BR", 'value' => "Crie 5 avaliações criativas de clientes para um produto. Nome do produto:\n\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz da avaliação do cliente deve ser:\n ##tone_language## \n\n"], - - ['id' => 650, 'template_id' => 18, 'key' => "ro-RO", 'value' => "Creați 5 recenzii creative ale clienților pentru un produs. Nume produs:\n\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul de voce al recenziei clientului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 651, 'template_id' => 18, 'key' => "vi-VN", 'value' => "Tạo 5 bài đánh giá sáng tạo của khách hàng cho một sản phẩm. Tên sản phẩm:\n\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của bài đánh giá của khách hàng phải là:\n ##tone_language## \n\n"], - - ['id' => 652, 'template_id' => 18, 'key' => "sw-KE", 'value' => "Unda maoni 5 bunifu ya wateja kwa bidhaa. Jina la bidhaa:\n\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya ukaguzi wa mteja lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 653, 'template_id' => 18, 'key' => "sl-SI", 'value' => "Ustvarite 5 kreativnih ocen strank za izdelek. Ime izdelka:\n\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton ocene stranke mora biti:\n ##tone_language## \n\n"], - - ['id' => 654, 'template_id' => 18, 'key' => "th-TH", 'value' => "สร้างบทวิจารณ์จากลูกค้าเชิงสร้างสรรค์ 5 รายการสำหรับผลิตภัณฑ์หนึ่งๆ ชื่อผลิตภัณฑ์:\n\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n ความคิดเห็นของลูกค้าต้องเป็นเสียง:\n ##tone_language## \n\n"], - - ['id' => 655, 'template_id' => 18, 'key' => "uk-UA", 'value' => "Створіть 5 креативних відгуків клієнтів про продукт. Назва продукту:\n\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу відгуку клієнта повинен бути:\n ##tone_language## \n\n"], - - ['id' => 656, 'template_id' => 18, 'key' => "lt-LT", 'value' => "Sukurkite 5 kūrybingus klientų atsiliepimus apie produktą. Produkto pavadinimas:\n\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Kliento atsiliepimo balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 657, 'template_id' => 18, 'key' => "bg-BG", 'value' => "Създайте 5 креативни клиентски рецензии за продукт. Име на продукта:\n\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на рецензията на клиента трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 659, 'template_id' => 19, 'key' => "en-US", 'value' => "Write a creative ad for the following product to run on Facebook aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the ad must be:\n ##tone_language## \n\n"], - - ['id' => 660, 'template_id' => 19, 'key' => "ar-AE", 'value' => "اكتب إعلانًا إبداعيًا للمنتج التالي ليتم تشغيله على Facebook بهدف:\n\n ##audience## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نغمة صوت الإعلان:\n ##tone_language## \n\n"], - - ['id' => 661, 'template_id' => 19, 'key' => "cmn-CN", 'value' => "为以下产品编写创意广告以在 Facebook 上投放,目标是:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 广告语调必须是:\n ##tone_language## \n\n"], - - ['id' => 662, 'template_id' => 19, 'key' => "hr-HR", 'value' => "Napišite kreativni oglas za sljedeći proizvod za prikazivanje na Facebooku s ciljem:\n\n ##audience## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa oglasa mora biti:\n ##tone_language## \n\n"], - - ['id' => 663, 'template_id' => 19, 'key' => "cs-CZ", 'value' => "Napište kreativní reklamu pro následující produkt, který se bude zobrazovat na Facebooku a je zaměřen na:\n\n ##audience## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu reklamy musí být:\n ##tone_language## \n\n"], - - ['id' => 664, 'template_id' => 19, 'key' => "da-DK", 'value' => "Skriv en kreativ annonce for følgende produkt til at køre på Facebook rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annoncen skal være:\n ##tone_language## \n\n"], - - ['id' => 665, 'template_id' => 19, 'key' => "nl-NL", 'value' => "Schrijf een creatieve advertentie voor het volgende product voor weergave op Facebook gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de advertentie moet zijn:\n ##tone_language## \n\n"], - - ['id' => 666, 'template_id' => 19, 'key' => "et-EE", 'value' => "Kirjutage Facebookis esitamiseks järgmise toote loov reklaam, mille eesmärk on:\n\n ##audience## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Reklaami hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 667, 'template_id' => 19, 'key' => "fi-FI", 'value' => "Kirjoita luova mainos seuraavalle tuotteelle Facebookissa, jonka tarkoituksena on:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Mainoksen äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 668, 'template_id' => 19, 'key' => "fr-FR", 'value' => "Rédigez une publicité créative pour le produit suivant à diffuser sur Facebook et destinée à :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix de l'annonce doit être :\n ##tone_language## \n\n"], - - ['id' => 669, 'template_id' => 19, 'key' => "de-DE", 'value' => "Schreiben Sie eine kreative Anzeige für das folgende Produkt, das auf Facebook geschaltet werden soll:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Anzeige muss sein:\n ##tone_language## \n\n"], - - ['id' => 670, 'template_id' => 19, 'key' => "el-GR", 'value' => "Γράψτε μια δημιουργική διαφήμιση για το ακόλουθο προϊόν για προβολή στο Facebook με στόχο:\n\n ##audience## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της διαφήμισης πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 671, 'template_id' => 19, 'key' => "hi-IN", 'value' => "Facebook पर चलाने के लिए निम्नलिखित उत्पाद के लिए एक रचनात्मक विज्ञापन लिखें:\n\n ##audience## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n विज्ञापन का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 672, 'template_id' => 19, 'key' => "hu-HU", 'value' => "Írjon kreatív hirdetést a következő termékhez a Facebookon való futtatáshoz, amelynek célja:\n\n ##audience## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A hirdetés hangszínének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 673, 'template_id' => 19, 'key' => "is-IS", 'value' => "Skrifaðu skapandi auglýsingu fyrir eftirfarandi vöru til að birta á Facebook sem miðar að:\n\n ##audience## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Röddtónn auglýsingarinnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 674, 'template_id' => 19, 'key' => "id-ID", 'value' => "Tulis iklan kreatif untuk produk berikut agar berjalan di Facebook yang ditujukan untuk:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara iklan harus:\n ##tone_language## \n\n"], - - ['id' => 675, 'template_id' => 19, 'key' => "it-IT", 'value' => "Scrivi un annuncio creativo per il seguente prodotto da pubblicare su Facebook rivolto a:\n\n ##audience## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell'annuncio deve essere:\n ##tone_language## \n\n"], - - ['id' => 676, 'template_id' => 19, 'key' => "ja-JP", 'value' => "次の製品のクリエイティブ広告を作成して、Facebook で実行することを目的としています:\n\n ##audience## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 広告のトーンは次のようにする必要があります:\n ##tone_language## \n\n"], - - ['id' => 677, 'template_id' => 19, 'key' => "ko-KR", 'value' => "Facebook에서 실행할 다음 제품에 대한 크리에이티브 광고 작성:\n\n ##audience## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 광고 음성 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 678, 'template_id' => 19, 'key' => "ms-MY", 'value' => "Tulis iklan kreatif untuk produk berikut untuk disiarkan di Facebook bertujuan:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara iklan mestilah:\n ##tone_language## \n\n"], - - ['id' => 679, 'template_id' => 19, 'key' => "nb-NO", 'value' => "Skriv en kreativ annonse for følgende produkt som skal kjøres på Facebook rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annonsen må være:\n ##tone_language## \n\n"], - - ['id' => 680, 'template_id' => 19, 'key' => "pl-PL", 'value' => "Napisz kreatywną reklamę następującego produktu do wyświetlania na Facebooku, skierowaną do:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton reklamy musi być:\n ##tone_language## \n\n"], - - ['id' => 681, 'template_id' => 19, 'key' => "pt-PT", 'value' => "Escreva um anúncio criativo para o seguinte produto para exibição no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n"], - - ['id' => 682, 'template_id' => 19, 'key' => "ru-RU", 'value' => "Напишите креативную рекламу следующего продукта для показа на Facebook, нацеленную на:\n\n ##audience## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон объявления должен быть:\n ##tone_language## \n\n"], - - ['id' => 683, 'template_id' => 19, 'key' => "es-ES", 'value' => "Escriba un anuncio creativo para que el siguiente producto se publique en Facebook dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz del anuncio debe ser:\n ##tone_language## \n\n"], - - ['id' => 684, 'template_id' => 19, 'key' => "sv-SE", 'value' => "Skriv en kreativ annons för följande produkt som ska visas på Facebook som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i annonsen måste vara:\n ##tone_language## \n\n"], - - ['id' => 685, 'template_id' => 19, 'key' => "tr-TR", 'value' => "Aşağıdaki ürün için Facebook'ta yayınlanması hedeflenen yaratıcı bir reklam yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Reklamın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 686, 'template_id' => 19, 'key' => "pt-BR", 'value' => "Escreva um anúncio criativo para o seguinte produto para exibição no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n"], - - ['id' => 687, 'template_id' => 19, 'key' => "ro-RO", 'value' => "Scrieți un anunț creativ pentru următorul produs, care să fie difuzat pe Facebook, care vizează:\n\n ##audience## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii al anunțului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 688, 'template_id' => 19, 'key' => "vi-VN", 'value' => "Viết quảng cáo sáng tạo cho sản phẩm sau để chạy trên Facebook nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của quảng cáo phải là:\n ##tone_language## \n\n"], - - ['id' => 689, 'template_id' => 19, 'key' => "sw-KE", 'value' => "Andika tangazo la ubunifu ili bidhaa ifuatayo ionyeshwe kwenye Facebook inayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya tangazo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 690, 'template_id' => 19, 'key' => "sl-SI", 'value' => "Napišite kreativni oglas za naslednji izdelek za prikazovanje na Facebooku, namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu oglasa mora biti:\n ##tone_language## \n\n"], - - ['id' => 691, 'template_id' => 19, 'key' => "th-TH", 'value' => "เขียนโฆษณาที่สร้างสรรค์สำหรับผลิตภัณฑ์ต่อไปนี้เพื่อทำงานบน Facebook โดยมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของโฆษณาต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 692, 'template_id' => 19, 'key' => "uk-UA", 'value' => "Напишіть креативне оголошення для наступного продукту для показу на Facebook, спрямоване на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу оголошення має бути:\n ##tone_language## \n\n"], - - ['id' => 693, 'template_id' => 19, 'key' => "lt-LT", 'value' => "Parašykite šio produkto kūrybinį skelbimą, kad jis būtų rodomas „Facebook“, skirtas:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Skelbimo balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 694, 'template_id' => 19, 'key' => "bg-BG", 'value' => "Напишете творческа реклама за следния продукт, която да се пусне във Facebook и е насочена към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на рекламата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 695, 'template_id' => 20, 'key' => "en-US", 'value' => "Write compelling YouTube description to get people interested in watching.\n\nVideo description:\n ##description## \n\nTone of voice of the video description must be:\n ##tone_language## \n\n"], - - ['id' => 696, 'template_id' => 20, 'key' => "ar-AE", 'value' => "اكتب وصفًا مقنعًا على YouTube لجذب اهتمام الأشخاص بالمشاهدة.\n\n وصف الفيديو:\n ##description## \n\nيجب أن تكون نغمة الصوت في وصف الفيديو:\n ##tone_language## \n\n"], - - ['id' => 697, 'template_id' => 20, 'key' => "cmn-CN", 'value' => "撰写引人注目的 YouTube 说明,让人们有兴趣观看。\n\n视频说明:\n ##description## \n\n视频描述的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 698, 'template_id' => 20, 'key' => "hr-HR", 'value' => "Napišite uvjerljiv YouTube opis kako biste zainteresirali ljude za gledanje.\n\nOpis videozapisa:\n ##description## \n\nTon glasa opisa videa mora biti:\n ##tone_language## \n\n"], - - ['id' => 699, 'template_id' => 20, 'key' => "cs-CZ", 'value' => "Napište působivý popis na YouTube, aby se lidé zajímali o sledování.\n\nPopis videa:\n ##description## \n\nTón hlasu popisu videa musí být:\n ##tone_language## \n\n"], - - ['id' => 700, 'template_id' => 20, 'key' => "da-DK", 'value' => "Skriv en overbevisende YouTube-beskrivelse for at få folk interesseret i at se.\n\nVideobeskrivelse:\n ##description## \n\nTone i videobeskrivelsen skal være:\n ##tone_language## \n\n"], - - ['id' => 701, 'template_id' => 20, 'key' => "nl-NL", 'value' => "Schrijf een overtuigende YouTube-beschrijving om mensen te interesseren om te kijken.\n\nVideobeschrijving:\n ##description## \n\nDe toon van de videobeschrijving moet zijn:\n ##tone_language## \n\n"], - - ['id' => 702, 'template_id' => 20, 'key' => "et-EE", 'value' => "Kirjutage ahvatlev YouTube'i kirjeldus, et tekitada inimestes vaatamisest huvi.\n\nVideo kirjeldus:\n ##description## \n\nVideo kirjelduse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 703, 'template_id' => 20, 'key' => "fi-FI", 'value' => "Kirjoita houkutteleva YouTube-kuvaus saadaksesi ihmiset kiinnostumaan katselusta.\n\nVideon kuvaus:\n ##description## \n\nVideon kuvauksen äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 704, 'template_id' => 20, 'key' => "fr-FR", 'value' => "Rédigez une description YouTube convaincante pour intéresser les internautes.\n\nDescription de la vidéo :\n ##description## \n\nLe ton de la description de la vidéo doit être :\n ##tone_language## \n\n"], - - ['id' => 705, 'template_id' => 20, 'key' => "de-DE", 'value' => "Schreiben Sie eine überzeugende YouTube-Beschreibung, um das Interesse der Zuschauer zu wecken.\n\nVideobeschreibung:\n ##description## \n\nTonfall der Videobeschreibung muss sein:\n ##tone_language## \n\n"], - - ['id' => 706, 'template_id' => 20, 'key' => "el-GR", 'value' => "Γράψτε μια συναρπαστική περιγραφή στο YouTube για να κάνετε τους ανθρώπους να ενδιαφέρονται να παρακολουθήσουν.\n\nΠεριγραφή βίντεο:\n ##description## \n\nΟ τόνος της φωνής της περιγραφής του βίντεο πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 707, 'template_id' => 20, 'key' => "he-IL", 'value' => "כתוב תיאור משכנע של YouTube כדי לגרום לאנשים להתעניין בצפייה.\n\nתיאור הסרטון:\n ##description## \n\nטון הדיבור של תיאור הסרטון חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 708, 'template_id' => 20, 'key' => "hi-IN", 'value' => "लोगों को देखने में रुचि लेने के लिए आकर्षक YouTube विवरण लिखें।\n\nवीडियो विवरण:\n ##description## \n\nवीडियो विवरण का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 709, 'template_id' => 20, 'key' => "hu-HU", 'value' => "Írjon lenyűgöző YouTube-leírást, hogy felkeltse az emberek érdeklődését a megtekintés iránt.\n\nVideó leírása:\n ##description## \n\nA videó leírásának hangszínének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 710, 'template_id' => 20, 'key' => "is-IS", 'value' => "Skrifaðu sannfærandi YouTube lýsingu til að vekja áhuga fólks á að horfa.\n\nLýsing myndskeiðs:\n ##description## \n\nTónn í lýsingu myndbandsins verður að vera:\n ##tone_language## \n\n"], - - ['id' => 711, 'template_id' => 20, 'key' => "id-ID", 'value' => "Tulis deskripsi YouTube yang menarik agar orang tertarik menonton.\n\nDeskripsi video:\n ##description## \n\nNada suara deskripsi video harus:\n ##tone_language## \n\n"], - - ['id' => 712, 'template_id' => 20, 'key' => "it-IT", 'value' => "Scrivi una descrizione accattivante per YouTube per attirare l'interesse delle persone a guardarlo.\n\nDescrizione del video:\n ##description## \n\nIl tono di voce della descrizione del video deve essere:\n ##tone_language## \n\n"], - - ['id' => 713, 'template_id' => 20, 'key' => "ja-JP", 'value' => "魅力的な YouTube の説明を書いて、視聴者に興味を持ってもらいましょう。\n\n動画の説明:\n ##description## \n\nビデオの説明のトーンは次のようにする必要があります:\n ##tone_language## \n\n"], - - ['id' => 714, 'template_id' => 20, 'key' => "ko-KR", 'value' => "사람들이 시청에 관심을 갖도록 설득력 있는 YouTube 설명을 작성하세요.\n\n동영상 설명:\n ##description## \n\n동영상 설명의 음성 톤은 다음과 같아야 합니다.\n ##tone_language## \n\n"], - - ['id' => 715, 'template_id' => 20, 'key' => "ms-MY", 'value' => "Tulis perihalan YouTube yang menarik untuk menarik minat orang untuk menonton.\n\nPerihalan video:\n ##description## \n\nNada suara penerangan video mestilah:\n ##tone_language## \n\n"], - - ['id' => 716, 'template_id' => 20, 'key' => "nb-NO", 'value' => "Skriv overbevisende YouTube-beskrivelse for å få folk interessert i å se.\n\nVideobeskrivelse:\n ##description## \n\nTone i videobeskrivelsen må være:\n ##tone_language## \n\n"], - - ['id' => 717, 'template_id' => 20, 'key' => "pl-PL", 'value' => "Napisz przekonujący opis w YouTube, aby zainteresować ludzi oglądaniem.\n\nOpis filmu:\n ##description## \n\nTon głosu w opisie filmu musi być:\n ##tone_language## \n\n"], - - ['id' => 718, 'template_id' => 20, 'key' => "pt-PT", 'value' => "Escreva uma descrição atraente do YouTube para atrair o interesse das pessoas em assistir.\n\nDescrição do vídeo:\n ##description## \n\nTom de voz da descrição do vídeo deve ser:\n ##tone_language## \n\n"], - - ['id' => 719, 'template_id' => 20, 'key' => "ru-RU", 'value' => "Напишите привлекательное описание для YouTube, чтобы заинтересовать людей.\n\nОписание видео:\n ##description## \n\nТон описания видео должен быть:\n ##tone_language## \п\п"], - - ['id' => 720, 'template_id' => 20, 'key' => "es-ES", 'value' => "Escribe una descripción convincente de YouTube para que las personas se interesen en verlo.\n\nDescripción del video:\n ##description## \n\nEl tono de voz de la descripción del video debe ser:\n ##tone_language## \n\n"], - - ['id' => 721, 'template_id' => 20, 'key' => "sv-SE", 'value' => "Skriv övertygande YouTube-beskrivning för att få folk intresserade av att titta.\n\nVideobeskrivning:\n ##description## \n\nRösttonen i videobeskrivningen måste vara:\n ##tone_language## \n\n"], - - ['id' => 722, 'template_id' => 20, 'key' => "tr-TR", 'value' => "İnsanların izlemekle ilgilenmesini sağlamak için etkileyici bir YouTube açıklaması yazın.\n\nVideo açıklaması:\n ##description## \n\nVideo açıklamasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 723, 'template_id' => 20, 'key' => "pt-BR", 'value' => "Escreva uma descrição atraente do YouTube para atrair o interesse das pessoas em assistir.\n\nDescrição do vídeo:\n ##description## \n\nTom de voz da descrição do vídeo deve ser:\n ##tone_language## \n\n"], - - ['id' => 724, 'template_id' => 20, 'key' => "ro-RO", 'value' => "Scrieți o descriere YouTube convingătoare pentru a-i determina pe oameni să fie interesați de vizionare.\n\nDescrierea videoclipului:\n ##description## \n\nTonul de voce al descrierii videoclipului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 725, 'template_id' => 20, 'key' => "vi-VN", 'value' => "Viết mô tả YouTube hấp dẫn để thu hút mọi người thích xem.\n\nMô tả video:\n ##description## \n\nGiọng điệu của mô tả video phải là:\n ##tone_language## \n\n"], - - ['id' => 726, 'template_id' => 20, 'key' => "sw-KE", 'value' => "Andika maelezo ya YouTube ya kuvutia ili kuwavutia watu kutazama.\n\nMaelezo ya video:\n ##description## \n\nToni ya sauti ya maelezo ya video lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 727, 'template_id' => 20, 'key' => "sl-SI", 'value' => "Napišite privlačen opis YouTube, da boste ljudi zanimali za ogled.\n\nOpis videa:\n ##description## \n\nTon glasu opisa videa mora biti:\n ##tone_language## \n\n"], - - ['id' => 728, 'template_id' => 20, 'key' => "th-TH", 'value' => "เขียนคำอธิบาย YouTube ที่น่าสนใจเพื่อให้ผู้คนสนใจรับชม\n\n คำอธิบายวิดีโอ:\n ##description## \nเสียงของคำอธิบายวิดีโอต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 729, 'template_id' => 20, 'key' => "uk-UA", 'value' => "Напишіть переконливий опис YouTube, щоб зацікавити людей переглядом.\n\n Опис відео:\n ##description## \n\nТон опису відео має бути:\n ##tone_language## \n\n"], - - ['id' => 730, 'template_id' => 20, 'key' => "lt-LT", 'value' => "Parašykite patrauklų „YouTube“ aprašą, kad žmonės susidomėtų žiūrėti.\n\n Vaizdo įrašo aprašymas:\n ##description## \n\Vaizdo įrašo aprašymo balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 731, 'template_id' => 20, 'key' => "bg-BG", 'value' => "Напишете завладяващо описание в YouTube, за да накарате хората да се заинтересуват да гледат.\n\n Описание на видеоклипа:\n ##description## \n\nТонът на гласа на видео описанието трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 732, 'template_id' => 21, 'key' => "en-US", 'value' => "Write compelling YouTube video title for the provided video description to get people interested in watching:\n\nVideo description:\n ##description## \n\n"], - - ['id' => 733, 'template_id' => 21, 'key' => "ar-AE", 'value' => "اكتب عنوان فيديو YouTube مقنعًا لوصف الفيديو المقدم لجذب اهتمام الأشخاص بالمشاهدة:\n\nوصف الفيديو:\n ##description## \n\n"], - - ['id' => 734, 'template_id' => 21, 'key' => "cmn-CN", 'value' => "为提供的视频描述写引人注目的 YouTube 视频标题,以引起人们对观看的兴趣:\n\n视频描述:\n ##description## \n\n"], - - ['id' => 735, 'template_id' => 21, 'key' => "hr-HR", 'value' => "Napišite uvjerljiv naslov YouTube videozapisa za navedeni opis videozapisa kako biste zainteresirali ljude za gledanje:\n\nOpis videozapisa:\n ##description## \n\n"], - - ['id' => 736, 'template_id' => 21, 'key' => "cs-CZ", 'value' => "K poskytnutému popisu videa napište působivý název videa na YouTube, aby lidi zaujalo sledování:\n\nPopis videa:\n ##description## \n\n"], - - ['id' => 737, 'template_id' => 21, 'key' => "da-DK", 'value' => "Skriv en overbevisende YouTube-videotitel til den medfølgende videobeskrivelse for at få folk interesseret i at se:\n\nVideobeskrivelse:\n ##description## \n\n"], - - ['id' => 738, 'template_id' => 21, 'key' => "nl-NL", 'value' => "Schrijf een pakkende YouTube-videotitel voor de verstrekte videobeschrijving om mensen te interesseren om te kijken:\n\nVideobeschrijving:\n ##description## \n\n"], - - ['id' => 739, 'template_id' => 21, 'key' => "et-EE", 'value' => "Kirjutage esitatud video kirjeldusele köitev YouTube'i video pealkiri, et tekitada inimestes huvi vaatamise vastu:\n\nVideo kirjeldus:\n ##description## \n\n"], - - ['id' => 740, 'template_id' => 21, 'key' => "fi-FI", 'value' => "Kirjoita houkutteleva YouTube-videon nimi annetulle videon kuvaukselle saadaksesi ihmiset kiinnostumaan:\n\nVideon kuvaus:\n ##description## \n\n"], - - ['id' => 741, 'template_id' => 21, 'key' => "fr-FR", 'value' => "Écrivez un titre de vidéo YouTube convaincant pour la description de la vidéo fournie afin d'intéresser les gens à regarder :\n\nDescription de la vidéo :\n ##description## \n\n"], - - ['id' => 742, 'template_id' => 21, 'key' => "de-DE", 'value' => "Schreiben Sie einen überzeugenden YouTube-Videotitel für die bereitgestellte Videobeschreibung, um das Interesse der Zuschauer zu wecken:\n\nVideobeschreibung:\n ##description## \n\n"], - - ['id' => 743, 'template_id' => 21, 'key' => "el-GR", 'value' => "Γράψτε τον συναρπαστικό τίτλο του βίντεο YouTube για την παρεχόμενη περιγραφή του βίντεο για να ενθαρρύνετε τους χρήστες να το παρακολουθήσουν:\n\nΠεριγραφή βίντεο:\n ##description## \n\n"], - - ['id' => 744, 'template_id' => 21, 'key' => "he-IL", 'value' => "כתוב כותרת סרטון YouTube משכנעת עבור תיאור הסרטון שסופק כדי לגרום לאנשים להתעניין בצפייה:\n\nתיאור הסרטון:\n ##description## \n\n"], - - ['id' => 745, 'template_id' => 21, 'key' => "hi-IN", 'value' => "लोगों को देखने में रुचि लेने के लिए प्रदान किए गए वीडियो विवरण के लिए आकर्षक YouTube वीडियो शीर्षक लिखें:\n\nवीडियो विवरण:\n ##description## \n\n"], - - ['id' => 746, 'template_id' => 21, 'key' => "hu-HU", 'value' => "Írjon lenyűgöző YouTube-videócímet a mellékelt videó leírásához, hogy felkeltse az emberek érdeklődését a megtekintés iránt:\n\nVideó leírása:\n ##description## \n\n"], - - ['id' => 747, 'template_id' => 21, 'key' => "is-IS", 'value' => "Skrifaðu sannfærandi titil á YouTube vídeói fyrir vídeólýsinguna sem fylgir til að vekja áhuga fólks á að horfa á:\n\nLýsing myndskeiðs:\n ##description## \n\n"], - - ['id' => 748, 'template_id' => 21, 'key' => "id-ID", 'value' => "Tulis judul video YouTube yang menarik untuk deskripsi video yang diberikan agar orang-orang tertarik untuk menonton:\n\nDeskripsi video:\n ##description## \n\n"], - - ['id' => 749, 'template_id' => 21, 'key' => "it-IT", 'value' => "Scrivi un titolo del video di YouTube convincente per la descrizione del video fornita per attirare l'interesse delle persone a guardarlo:\n\nDescrizione del video:\n ##description## \n\n"], - - ['id' => 750, 'template_id' => 21, 'key' => "ja-JP", 'value' => "視聴者に興味を持ってもらうために、提供された動画の説明に説得力のある YouTube 動画のタイトルを書いてください:\n\n動画の説明:\n ##description## \n\n"], - - ['id' => 751, 'template_id' => 21, 'key' => "ko-KR", 'value' => "사람들이 시청에 관심을 갖도록 제공된 동영상 설명에 대한 매력적인 YouTube 동영상 제목을 작성하세요:\n\n동영상 설명:\n ##description## \n\n"], - - ['id' => 752, 'template_id' => 21, 'key' => "ms-MY", 'value' => "Tulis tajuk video YouTube yang menarik untuk penerangan video yang disediakan untuk menarik minat orang untuk menonton:\n\nPerihalan video:\n ##description## \n\n"], - - ['id' => 753, 'template_id' => 21, 'key' => "nb-NO", 'value' => "Skriv en overbevisende YouTube-videotittel for den oppgitte videobeskrivelsen for å få folk interessert i å se:\n\nVideobeskrivelse:\n ##description## \n\n"], - - ['id' => 754, 'template_id' => 21, 'key' => "pl-PL", 'value' => "Napisz przekonujący tytuł filmu YouTube dla podanego opisu filmu, aby zainteresować ludzi oglądaniem:\n\nOpis filmu:\n ##description## \n\n"], - - ['id' => 755, 'template_id' => 21, 'key' => "pt-PT", 'value' => "Escreva um título de vídeo do YouTube atraente para a descrição do vídeo fornecida para atrair o interesse das pessoas em assistir:\n\nDescrição do vídeo:\n ##description## \n\n"], - - ['id' => 756, 'template_id' => 21, 'key' => "ru-RU", 'value' => "Напишите привлекательное название видео YouTube для предоставленного описания видео, чтобы заинтересовать людей в просмотре:\n\nОписание видео:\n ##description## \n\n"], - - ['id' => 757, 'template_id' => 21, 'key' => "es-ES", 'value' => "Escribe un título de video de YouTube atractivo para la descripción del video proporcionada para que las personas se interesen en verlo:\n\nDescripción del video:\n ##description## \n\n"], - - ['id' => 758, 'template_id' => 21, 'key' => "sv-SE", 'value' => "Skriv övertygande YouTube-videotitel för den medföljande videobeskrivningen för att få folk intresserade av att titta på:\n\nVideobeskrivning:\n ##description## \n\n"], - - ['id' => 759, 'template_id' => 21, 'key' => "tr-TR", 'value' => "Kullanıcıların izlemekle ilgilenmesini sağlamak için sağlanan video açıklamasına çekici bir YouTube video başlığı yazın:\n\nVideo açıklaması:\n ##description## \n\n"], - - ['id' => 760, 'template_id' => 21, 'key' => "pt-BR", 'value' => "Escreva um título de vídeo do YouTube atraente para a descrição do vídeo fornecida para atrair o interesse das pessoas em assistir:\n\nDescrição do vídeo:\n ##description## \n\n"], - - ['id' => 761, 'template_id' => 21, 'key' => "ro-RO", 'value' => "Scrieți un titlu convingător al videoclipului YouTube pentru descrierea videoclipului furnizată pentru a-i determina pe oameni să fie interesați să vizioneze:\n\nDescrierea videoclipului:\n ##description## \n\n"], - - ['id' => 762, 'template_id' => 21, 'key' => "vi-VN", 'value' => "Viết tiêu đề video hấp dẫn trên YouTube cho phần mô tả video được cung cấp để thu hút mọi người quan tâm đến việc xem:\n\nMô tả video:\n ##description## \n\n"], - - ['id' => 763, 'template_id' => 21, 'key' => "sw-KE", 'value' => "Andika mada ya video ya YouTube yenye kuvutia kwa maelezo ya video yaliyotolewa ili kuwavutia watu kutazama:\n\nMaelezo ya video:\n ##description## \n\n"], - - ['id' => 764, 'template_id' => 21, 'key' => "sl-SI", 'value' => "Napišite privlačen naslov videoposnetka YouTube za predloženi opis videoposnetka, da boste ljudi zanimali za ogled:\n\nOpis videoposnetka:\n ##description## \n\n"], - - ['id' => 765, 'template_id' => 21, 'key' => "th-TH", 'value' => "เขียนชื่อวิดีโอ YouTube ที่น่าสนใจสำหรับคำอธิบายวิดีโอที่ให้มาเพื่อให้ผู้คนสนใจรับชม:\n\nคำอธิบายวิดีโอ:\n ##description## \n\n"], - - ['id' => 766, 'template_id' => 21, 'key' => "uk-UA", 'value' => "Напишіть переконливу назву відео YouTube для наданого опису відео, щоб зацікавити людей до перегляду:\n\nОпис відео:\n ##description## \n\n"], - - ['id' => 767, 'template_id' => 21, 'key' => "lt-LT", 'value' => "Parašykite patrauklų „YouTube“ vaizdo įrašo pavadinimą pateiktam vaizdo įrašo aprašui, kad žmonės susidomėtų žiūrėti:\n\nVaizdo įrašo aprašas:\n ##description## \n\n"], - - ['id' => 768, 'template_id' => 21, 'key' => "bg-BG", 'value' => "Напишете завладяващо заглавие на видеоклипа в YouTube за предоставеното описание на видеоклипа, за да предизвикате интерес у хората да гледат:\n\nОписание на видеоклипа:\n ##description## \n\n"], - - ['id' => 769, 'template_id' => 22, 'key' => "en-US", 'value' => "Generate SEO-optimized YouTube tags and keywords for:\n\n ##title## \n\n"], - - ['id' => 770, 'template_id' => 22, 'key' => "ar-AE", 'value' => "إنشاء علامات وكلمات رئيسية على YouTube مُحسّنة لتحسين محركات البحث لـ:\n\n ##title## \n\n"], - - ['id' => 771, 'template_id' => 22, 'key' => "cmn-CN", 'value' => "为以下内容生成针对 SEO 优化的 YouTube 标签和关键字:\n\n ##title## \n\n"], - - ['id' => 772, 'template_id' => 22, 'key' => "hr-HR", 'value' => "Generiraj SEO-optimizirane YouTube oznake i ključne riječi za:\n\n ##title## \n\n"], - - ['id' => 773, 'template_id' => 22, 'key' => "cs-CZ", 'value' => "Generujte značky a klíčová slova YouTube optimalizované pro SEO pro:\n\n ##title## \n\n"], - - ['id' => 774, 'template_id' => 22, 'key' => "da-DK", 'value' => "Generer SEO-optimerede YouTube-tags og søgeord til:\n\n ##title## \n\n"], - - ['id' => 775, 'template_id' => 22, 'key' => "nl-NL", 'value' => "Genereer SEO-geoptimaliseerde YouTube-tags en trefwoorden voor:\n\n ##title## \n\n"], - - ['id' => 776, 'template_id' => 22, 'key' => "et-EE", 'value' => "SEO jaoks optimeeritud YouTube'i märgendite ja märksõnade loomine:\n\n ##title## \n\n"], - - ['id' => 777, 'template_id' => 22, 'key' => "fi-FI", 'value' => "Luo SEO-optimoituja YouTube-tageja ja avainsanoja:\n\n ##title## \n\n"], - - ['id' => 778, 'template_id' => 22, 'key' => "fr-FR", 'value' => "Générez des balises et des mots clés YouTube optimisés pour le référencement pour :\n\n ##title## \n\n"], - - ['id' => 779, 'template_id' => 22, 'key' => "de-DE", 'value' => "Generiere SEO-optimierte YouTube-Tags und Keywords für:\n\n ##title## \n\n"], - - ['id' => 780, 'template_id' => 22, 'key' => "el-GR", 'value' => "Δημιουργήστε ετικέτες και λέξεις-κλειδιά YouTube βελτιστοποιημένες για SEO για:\n\n ##title## \n\n"], - - ['id' => 781, 'template_id' => 22, 'key' => "he-IL", 'value' => "צור תגיות YouTube ומילות מפתח מותאמות לקידום אתרים עבור:\n\n ##title## \n\n"], - - ['id' => 782, 'template_id' => 22, 'key' => "hi-IN", 'value' => "इनके लिए SEO-अनुकूलित YouTube टैग और कीवर्ड जनरेट करें:\n\n ##title## \n\n"], - - ['id' => 783, 'template_id' => 22, 'key' => "hu-HU", 'value' => "SEO-optimalizált YouTube-címkék és kulcsszavak létrehozása a következőkhöz:\n\n ##title## \n\n"], - - ['id' => 784, 'template_id' => 22, 'key' => "is-IS", 'value' => "Búðu til SEO-bjartsýni YouTube merki og leitarorð fyrir:\n\n ##title## \n\n"], - - ['id' => 785, 'template_id' => 22, 'key' => "id-ID", 'value' => "Buat tag dan kata kunci YouTube yang dioptimalkan untuk SEO untuk:\n\n ##title## \n\n"], - - ['id' => 786, 'template_id' => 22, 'key' => "it-IT", 'value' => "Genera tag e parole chiave YouTube ottimizzati per la SEO per:\n\n ##title## \n\n"], - - ['id' => 787, 'template_id' => 22, 'key' => "ja-JP", 'value' => "SEO 用に最適化された YouTube タグとキーワードを生成します:\n\n ##title## \n\n"], - - ['id' => 788, 'template_id' => 22, 'key' => "ko-KR", 'value' => "SEO에 최적화된 YouTube 태그 및 키워드 생성:\n\n ##title## \n\n"], - - ['id' => 789, 'template_id' => 22, 'key' => "ms-MY", 'value' => "Jana teg dan kata kunci YouTube yang dioptimumkan SEO untuk:\n\n ##title## \n\n"], - - ['id' => 790, 'template_id' => 22, 'key' => "nb-NO", 'value' => "Generer SEO-optimaliserte YouTube-tagger og søkeord for:\n\n ##title## \n\n"], - - ['id' => 791, 'template_id' => 22, 'key' => "pl-PL", 'value' => "Wygeneruj zoptymalizowane pod kątem SEO tagi i słowa kluczowe YouTube dla:\n\n ##title## \n\n"], - - ['id' => 792, 'template_id' => 22, 'key' => "pt-PT", 'value' => "Gerar tags e palavras-chave do YouTube otimizadas para SEO para:\n\n ##title## \n\n"], - - ['id' => 793, 'template_id' => 22, 'key' => "ru-RU", 'value' => "Создать SEO-оптимизированные теги и ключевые слова YouTube для:\n\n ##title## \n\n"], - - ['id' => 794, 'template_id' => 22, 'key' => "es-ES", 'value' => "Generar etiquetas y palabras clave de YouTube optimizadas para SEO para:\n\n ##title## \n\n"], - - ['id' => 795, 'template_id' => 22, 'key' => "sv-SE", 'value' => "Zalisha lebo za YouTube zilizoboreshwa na SEO na maneno muhimu ya:\n\n ##title## \n\n"], - - ['id' => 796, 'template_id' => 22, 'key' => "tr-TR", 'value' => "Şunlar için SEO için optimize edilmiş YouTube etiketleri ve anahtar kelimeler oluşturun:\n\n ##title## \n\n"], - - ['id' => 797, 'template_id' => 22, 'key' => "pt-BR", 'value' => "Gerar tags e palavras-chave do YouTube otimizadas para SEO para:\n\n ##title## \n\n"], - - ['id' => 798, 'template_id' => 22, 'key' => "ro-RO", 'value' => "Generează etichete și cuvinte cheie YouTube optimizate pentru SEO pentru:\n\n ##title## \n\n"], - - ['id' => 799, 'template_id' => 22, 'key' => "vi-VN", 'value' => "Tạo thẻ và từ khóa YouTube được tối ưu hóa cho SEO cho:\n\n ##title## \n\n" ], - - ['id' => 800, 'template_id' => 22, 'key' => "sw-KE", 'value' => "Zalisha lebo za YouTube zilizoboreshwa na SEO na maneno muhimu ya:\n\n ##title## \n\n"], - - ['id' => 801, 'template_id' => 22, 'key' => "sl-SI", 'value' => "Ustvari YouTube oznake in ključne besede, optimizirane za SEO za:\n\n ##title## \n\n"], - - ['id' => 802, 'template_id' => 22, 'key' => "th-TH", 'value' => "สร้างแท็ก YouTube ที่ปรับให้เหมาะสม SEO และคำหลักสำหรับ:\n\n ##title## \n\n"], - - ['id' => 803, 'template_id' => 22, 'key' => "uk-UA", 'value' => "Створіть оптимізовані для SEO теги та ключові слова YouTube для:\n\n ##title## \n\n"], - - ['id' => 804, 'template_id' => 22, 'key' => "lt-LT", 'value' => "Generuokite pagal SEO optimizuotas „YouTube“ žymas ir raktinius žodžius:\n\n ##title## \n\n"], - - ['id' => 805, 'template_id' => 22, 'key' => "bg-BG", 'value' => "Генериране на оптимизирани за SEO маркери и ключови думи в YouTube за:\n\n ##title## \n\n"], - - ['id' => 806, 'template_id' => 23, 'key' => "en-US", 'value' => "Grab attention with catchy captions for this Instagram post:\n\n ##description## \n\nTone of voice of the captions must be:\n ##tone_language## \n\n"], - - ['id' => 807, 'template_id' => 23, 'key' => "ar-AE", 'value' => "اجذب الانتباه باستخدام التسميات التوضيحية الجذابة لمشاركة Instagram هذه:\n\n ##description## \n\nيجب أن تكون نغمة صوت التسميات التوضيحية:\n ##tone_language## \n\n"], - - ['id' => 808, 'template_id' => 23, 'key' => "cmn-CN", 'value' => "为这条 Instagram 帖子添加朗朗上口的标题以吸引注意力:\n\n ##description## \n\n字幕的语调必须是:\n ##tone_language## \n\n"], - - ['id' => 809, 'template_id' => 23, 'key' => "hr-HR", 'value' => "Privucite pažnju privlačnim natpisima za ovu objavu na Instagramu:\n\n ##description## \n\nTon glasa titlova mora biti:\n ##tone_language## \n\n"], - - ['id' => 810, 'template_id' => 23, 'key' => "cs-CZ", 'value' => "Přitáhněte pozornost chytlavými titulky k tomuto příspěvku na Instagramu:\n\n ##description## \n\nTón hlasu titulků musí být:\n ##tone_language## \n\n"], - - ['id' => 811, 'template_id' => 23, 'key' => "da-DK", 'value' => "Fang opmærksomhed med fængende billedtekster til dette Instagram-opslag:\n\n ##description## \n\nTelefonen for billedteksterne skal være:\n ##tone_language## \n\n"], - - ['id' => 812, 'template_id' => 23, 'key' => "nl-NL", 'value' => "Trek de aandacht met pakkende bijschriften voor dit Instagram-bericht:\n\n ##description## \n\nDe toon van de ondertiteling moet zijn:\n ##tone_language## \n\n"], - - ['id' => 813, 'template_id' => 23, 'key' => "et-EE", 'value' => "Pöörake tähelepanu selle Instagrami postituse meeldejäävate pealkirjadega:\n\n ##description## \n\nTiitrite hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 814, 'template_id' => 23, 'key' => "fi-FI", 'value' => "Kiinnitä huomiota tarttuvilla kuvateksteillä tälle Instagram-julkaisulle:\n\n ##description## \n\nTekstitysten äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 815, 'template_id' => 23, 'key' => "fr-FR", 'value' => "Attirez l'attention avec des légendes accrocheuses pour cette publication Instagram :\n\n ##description## \n\nLe ton de la voix des sous-titres doit être :\n ##tone_language## \n\n"], - - ['id' => 816, 'template_id' => 23, 'key' => "de-DE", 'value' => "Erregen Sie Aufmerksamkeit mit einprägsamen Bildunterschriften für diesen Instagram-Post:\n\n ##description## \n\nTonlage der Untertitel muss sein:\n ##tone_language## \n\n"], - - ['id' => 817, 'template_id' => 23, 'key' => "el-GR", 'value' => "Τραβήξτε την προσοχή με εντυπωσιακούς λεζάντες για αυτήν την ανάρτηση στο Instagram:\n\n ##description## \n\nΟ τόνος της φωνής των υπότιτλων πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 818, 'template_id' => 23, 'key' => "he-IL", 'value' => "משכו תשומת לב עם כיתובים קליטים לפוסט הזה באינסטגרם:\n\n ##description## \n\nטון הדיבור של הכתוביות חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 819, 'template_id' => 23, 'key' => "hi-IN", 'value' => "इस Instagram पोस्ट के लिए आकर्षक कैप्शन के साथ ध्यान आकर्षित करें:\n\n ##description## \n\nकैप्शन की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 820, 'template_id' => 23, 'key' => "hu-HU", 'value' => "Felhívja fel a figyelmet ennek az Instagram-bejegyzésnek a fülbemászó felirataival:\n\n ##description## \n\nA feliratok hangszínének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 821, 'template_id' => 23, 'key' => "is-IS", 'value' => "Gríptu athygli með grípandi texta fyrir þessa Instagram færslu:\n\n ##description## \n\nTónn skjátextanna verður að vera:\n ##tone_language## \n\n"], - - ['id' => 822, 'template_id' => 23, 'key' => "id-ID", 'value' => "Raih perhatian dengan teks menarik untuk postingan Instagram ini:\n\n ##description## \n\nNada suara teks harus:\n ##tone_language## \n\n"], - - ['id' => 823, 'template_id' => 23, 'key' => "it-IT", 'value' => "Attira l'attenzione con didascalie accattivanti per questo post di Instagram:\n\n ##description## \n\nIl tono di voce dei sottotitoli deve essere:\n ##tone_language## \n\n"], - - ['id' => 824, 'template_id' => 23, 'key' => "ja-JP", 'value' => "この Instagram 投稿のキャッチーなキャプションで注目を集めましょう:\n\n ##description## \n\nキャプションの声のトーンは次のようにする必要があります:\n ##tone_language## \n\n"], - - ['id' => 825, 'template_id' => 23, 'key' => "ko-KR", 'value' => "이 Instagram 게시물에 대한 눈길을 끄는 캡션으로 관심 끌기:\n\n ##description## \n\n캡션의 목소리 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 826, 'template_id' => 23, 'key' => "ms-MY", 'value' => "Tarik perhatian dengan kapsyen yang menarik untuk siaran Instagram ini:\n\n ##description## \n\nNada suara kapsyen mestilah:\n ##tone_language## \n\n"], - - ['id' => 827, 'template_id' => 23, 'key' => "nb-NO", 'value' => "Fang oppmerksomhet med fengende bildetekster for dette Instagram-innlegget:\n\n ##description## \n\nStemmetonen til bildetekstene må være:\n ##tone_language## \n\n"], - - ['id' => 828, 'template_id' => 23, 'key' => "pl-PL", 'value' => "Przyciągnij uwagę chwytliwymi napisami do tego posta na Instagramie:\n\n ##description## \n\nTon głosu napisów musi być:\n ##tone_language## \n\n"], - - ['id' => 829, 'template_id' => 23, 'key' => "pt-PT", 'value' => "Chame a atenção com legendas cativantes para esta postagem do Instagram:\n\n ##description## \n\nTom de voz das legendas deve ser:\n ##tone_language## \n\n"], - - ['id' => 830, 'template_id' => 23, 'key' => "ru-RU", 'value' => "Привлеките внимание броскими подписями к этому посту в Instagram:\n\n ##description## \n\nТон титров должен быть:\n ##tone_language## \n\n"], - - ['id' => 831, 'template_id' => 23, 'key' => "es-ES", 'value' => "Capte la atención con subtítulos pegadizos para esta publicación de Instagram:\n\n ##description## \n\nEl tono de voz de los subtítulos debe ser:\n ##tone_language## \n\n"], - - ['id' => 832, 'template_id' => 23, 'key' => "sv-SE", 'value' => "Fånga uppmärksamhet med catchy bildtexter för detta Instagram-inlägg:\n\n ##description## \n\nRösten för bildtexterna måste vara:\n ##tone_language## \n\n"], - - ['id' => 833, 'template_id' => 23, 'key' => "tr-TR", 'value' => "Bu Instagram gönderisi için akılda kalıcı altyazılarla dikkat çekin:\n\n ##description## \n\nAltyazıların ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 834, 'template_id' => 23, 'key' => "pt-BR", 'value' =>"Chame a atenção com legendas cativantes para esta postagem do Instagram:\n\n ##description## \n\nTom de voz das legendas deve ser:\n ##tone_language## \n\n"], - - ['id' => 835, 'template_id' => 23, 'key' => "ro-RO", 'value' => "Atrageți atenția cu subtitrări captivante pentru această postare pe Instagram:\n\n ##description## \n\nTonul vocii subtitrărilor trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 836, 'template_id' => 23, 'key' => "vi-VN", 'value' => "Thu hút sự chú ý bằng chú thích hấp dẫn cho bài đăng trên Instagram này:\n\n ##description## \n\nGiọng điệu của phụ đề phải là:\n ##tone_language## \n\n"], - - ['id' => 837, 'template_id' => 23, 'key' => "sw-KE", 'value' => "Chukua umakini na manukuu ya kuvutia ya chapisho hili la Instagram:\n\n ##description## \n\nToni ya sauti ya manukuu lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 838, 'template_id' => 23, 'key' => "sl-SI", 'value' => "Pritegnite pozornost s privlačnimi napisi za to objavo na Instagramu:\n\n ##description## \n\nTon glasu napisov mora biti:\n ##tone_language## \n\n"], - - ['id' => 838, 'template_id' => 23, 'key' => "th-TH", 'value' => "ดึงดูดความสนใจด้วยคำบรรยายที่ติดหูสำหรับโพสต์ Instagram นี้:\n\n ##description## \n\nน้ำเสียงของคำบรรยายต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 830, 'template_id' => 23, 'key' => "uk-UA", 'value' => "Привертайте увагу привабливими підписами до цієї публікації в Instagram:\n\n ##description## \n\nТон субтитрів має бути:\n ##tone_language## \n\n"], - - ['id' => 831, 'template_id' => 23, 'key' => "lt-LT", 'value' => "Patraukite dėmesį patraukliais šio Instagram įrašo antraštėmis:\n\n ##description## \n\nSubtitrų balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 832, 'template_id' => 23, 'key' => "bg-BG", 'value' => "Привлечете вниманието със закачливи надписи за тази публикация в Instagram:\n\n ##description## \n\nТонът на надписите трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 833, 'template_id' => 24, 'key' => "en-US", 'value' => "Find the best hashtags to use for this Instagram keyword:\n\n ##keyword## \n\n"], - - ['id' => 834, 'template_id' => 24, 'key' => "ar-AE", 'value' => "ابحث عن أفضل علامات التصنيف لاستخدامها لهذه الكلمة الأساسية في Instagram:\n\n ##keyword## \n\n"], - - ['id' => 835, 'template_id' => 24, 'key' => "cmn-CN", 'value' => "找到用于此 Instagram 关键字的最佳主题标签:\n\n ##keyword## \n\n"], - - ['id' => 836, 'template_id' => 24, 'key' => "hr-HR", 'value' => "Pronađite najbolje hashtagove za ovu ključnu riječ za Instagram:\n\n ##keyword## \n\n"], - - ['id' => 837, 'template_id' => 24, 'key' => "cs-CZ", 'value' => "Najděte nejlepší hashtagy pro toto klíčové slovo na Instagramu:\n\n ##keyword## \n\n"], - - ['id' => 838, 'template_id' => 24, 'key' => "da-DK", 'value' => "Find de bedste hashtags til dette Instagram-søgeord:\n\n ##keyword## \n\n"], - - ['id' => 839, 'template_id' => 24, 'key' => "nl-NL", 'value' => "Vind de beste hashtags om te gebruiken voor dit Instagram-trefwoord:\n\n ##keyword## \n\n"], - - ['id' => 840, 'template_id' => 24, 'key' => "et-EE", 'value' => "Leia parimad hashtagid, mida selle Instagrami märksõna jaoks kasutada:\n\n ##keyword## \n\n"], - - ['id' => 841, 'template_id' => 24, 'key' => "fi-FI", 'value' => "Etsi parhaat hashtagit tälle Instagram-avainsanalle:\n\n ##keyword## \n\n"], - - ['id' => 842, 'template_id' => 24, 'key' => "fr-FR", 'value' => "Trouvez les meilleurs hashtags à utiliser pour ce mot clé Instagram :\n\n ##keyword## \n\n"], - - ['id' => 843, 'template_id' => 24, 'key' => "de-DE", 'value' => "Finde die besten Hashtags für dieses Instagram-Keyword:\n\n ##keyword## \n\n"], - - ['id' => 844, 'template_id' => 24, 'key' => "el-GR", 'value' => "Βρείτε τα καλύτερα hashtags για χρήση για αυτήν τη λέξη-κλειδί Instagram:\n\n ##keyword## \n\n"], - - ['id' => 845, 'template_id' => 24, 'key' => "he-IL", 'value' => "מצא את ההאשטאגים הטובים ביותר לשימוש עבור מילת המפתח הזו באינסטגרם:\n\n ##keyword## \n\n"], - - ['id' => 846, 'template_id' => 24, 'key' => "hi-IN", 'value' => "इस Instagram कीवर्ड के लिए उपयोग करने के लिए सर्वोत्तम हैशटैग खोजें:\n\n ##keyword## \n\n"], - - ['id' => 847, 'template_id' => 24, 'key' => "hu-HU", 'value' => "Keresse meg az ehhez az Instagram-kulcsszóhoz használható legjobb hashtageket:\n\n ##keyword## \n\n"], - - ['id' => 848, 'template_id' => 24, 'key' => "is-IS", 'value' => "Finndu bestu myllumerkin til að nota fyrir þetta Instagram leitarorð:\n\n ##keyword## \n\n"], - - ['id' => 849, 'template_id' => 24, 'key' => "id-ID", 'value' => "Temukan tagar terbaik untuk digunakan untuk kata kunci Instagram ini:\n\n ##keyword## \n\n"], - - ['id' => 850, 'template_id' => 24, 'key' => "it-IT", 'value' => "Trova i migliori hashtag da utilizzare per questa parola chiave di Instagram:\n\n ##keyword## \n\n"], - - ['id' => 851, 'template_id' => 24, 'key' => "ja-JP", 'value' => "この Instagram キーワードに使用するのに最適なハッシュタグを見つけてください:\n\n ##keyword## \n\n"], - - ['id' => 852, 'template_id' => 24, 'key' => "ko-KR", 'value' => "이 Instagram 키워드에 사용할 최고의 해시태그 찾기:\n\n ##keyword## \n\n"], - - ['id' => 853, 'template_id' => 24, 'key' => "ms-MY", 'value' => "Cari hashtag terbaik untuk digunakan untuk kata kunci Instagram ini:\n\n ##keyword## \n\n"], - - ['id' => 854, 'template_id' => 24, 'key' => "nb-NO", 'value' => "Finn de beste hashtaggene du kan bruke for dette Instagram-søkeordet:\n\n ##keyword## \n\n"], - - ['id' => 855, 'template_id' => 24, 'key' => "pl-PL", 'value' => "Znajdź najlepsze hashtagi do użycia dla tego słowa kluczowego na Instagramie:\n\n ##keyword## \n\n"], - - ['id' => 856, 'template_id' => 24, 'key' => "pt-PT", 'value' => "Encontre as melhores hashtags para usar com esta palavra-chave do Instagram:\n\n ##keyword## \n\n"], - - ['id' => 857, 'template_id' => 24, 'key' => "ru-RU", 'value' => "Найдите лучшие хэштеги для этого ключевого слова Instagram:\n\n ##keyword## \n\n"], - - ['id' => 858, 'template_id' => 24, 'key' => "es-ES", 'value' => "Encuentra los mejores hashtags para usar con esta palabra clave de Instagram:\n\n ##keyword## \n\n"], - - ['id' => 858, 'template_id' => 24, 'key' => "sv-SE", 'value' => "Hitta de bästa hashtaggarna att använda för detta Instagram-sökord:\n\n ##keyword## \n\n"], - - ['id' => 859, 'template_id' => 24, 'key' => "tr-TR", 'value' => "Bu Instagram anahtar kelimesi için kullanılacak en iyi etiketleri bulun:\n\n ##keyword## \n\n"], - - ['id' => 860, 'template_id' => 24, 'key' => "pt-BR", 'value' => "Encontre as melhores hashtags para usar com esta palavra-chave do Instagram:\n\n ##keyword## \n\n"], - - ['id' => 861, 'template_id' => 24, 'key' => "ro-RO", 'value' => "Găsiți cele mai bune hashtag-uri de folosit pentru acest cuvânt cheie Instagram:\n\n ##keyword## \n\n"], - - ['id' => 862, 'template_id' => 24, 'key' => "vi-VN", 'value' => "Tìm các thẻ bắt đầu bằng # tốt nhất để sử dụng cho từ khóa Instagram này:\n\n ##keyword## \n\n"], - - ['id' => 863, 'template_id' => 24, 'key' => "sw-KE", 'value' => "Tafuta lebo za reli bora za kutumia kwa neno kuu la Instagram:\n\n ##keyword## \n\n"], - - ['id' => 864, 'template_id' => 24, 'key' => "sl-SI", 'value' => "Poiščite najboljše hashtage za to ključno besedo za Instagram:\n\n ##keyword## \n\n"], - - ['id' => 865, 'template_id' => 24, 'key' => "th-TH", 'value' => "ค้นหาแฮชแท็กที่ดีที่สุดเพื่อใช้สำหรับคีย์เวิร์ด Instagram นี้:\n\n ##keyword## \n\n"], - - ['id' => 866, 'template_id' => 24, 'key' => "uk-UA", 'value' => "Знайдіть найкращі хештеги для цього ключового слова Instagram:\n\n ##keyword## \n\n"], - - ['id' => 867, 'template_id' => 24, 'key' => "lt-LT", 'value' => "Rasti geriausias žymas su grotelėmis, kurias galima naudoti šiam „Instagram“ raktiniam žodžiui:\n\n ##keyword## \n\n"], - - ['id' => 868, 'template_id' => 24, 'key' => "bg-BG", 'value' => "Намерете най-добрите хаштагове, които да използвате за тази ключова дума в Instagram:\n\n ##keyword## \n\n"], - - ['id' => 869, 'template_id' => 25, 'key' => "en-US", 'value' => "Write a personal social media post about:\n\n ##description## \n\nTone of voice of the post must be:\n ##tone_language## \n\n"], - - ['id' => 870, 'template_id' => 25, 'key' => "ar-AE", 'value' => "اكتب منشورًا شخصيًا على وسائل التواصل الاجتماعي حول:\n\n ##description## \n\nيجب أن تكون نغمة صوت المشاركة:\n ##tone_language## \n\n"], - - ['id' => 871, 'template_id' => 25, 'key' => "cmn-CN", 'value' => "写一篇个人社交媒体帖子:\n\n ##description## \n\n帖子的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 872, 'template_id' => 25, 'key' => "hr-HR", 'value' => "Napišite osobnu objavu na društvenim mrežama o:\n\n ##description## \n\nTon glasa objave mora biti:\n ##tone_language## \n\n"], - - ['id' => 873, 'template_id' => 25, 'key' => "cs-CZ", 'value' => "Napište osobní příspěvek na sociální média o:\n\n ##description## \n\nTón hlasu příspěvku musí být:\n ##tone_language## \n\n"], - - ['id' => 874, 'template_id' => 25, 'key' => "da-DK", 'value' => "Skriv et personligt opslag på sociale medier om:\n\n ##description## \n\nOplæggets stemme skal være:\n ##tone_language## \n\n"], - - ['id' => 875, 'template_id' => 25, 'key' => "nl-NL", 'value' => "Schrijf een persoonlijk bericht op sociale media over:\n\n ##description## \n\nDe toon van het bericht moet zijn:\n ##tone_language## \n\n"], - - ['id' => 876, 'template_id' => 25, 'key' => "et-EE", 'value' => "Kirjutage isiklik sotsiaalmeedia postitus teemal:\n\n ##description## \n\nPostituse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 877, 'template_id' => 25, 'key' => "fi-FI", 'value' => "Kirjoita henkilökohtainen sosiaalisen median viesti aiheesta:\n\n ##description## \n\nViestin äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 878, 'template_id' => 25, 'key' => "fr-FR", 'value' => "Rédigez un message personnel sur les réseaux sociaux à propos de :\n\n ##description## \n\nLe ton de la voix du message doit être :\n ##tone_language## \n\n"], - - ['id' => 879, 'template_id' => 25, 'key' => "de-DE", 'value' => "Schreiben Sie einen persönlichen Social-Media-Beitrag über:\n\n ##description## \n\nTonlage des Beitrags muss sein:\n ##tone_language## \n\n"], - - ['id' => 880, 'template_id' => 25, 'key' => "el-GR", 'value' => "Γράψτε μια προσωπική ανάρτηση στα μέσα κοινωνικής δικτύωσης σχετικά με:\n\n ##description## \n\nΟ τόνος της φωνής της ανάρτησης πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 881, 'template_id' => 25, 'key' => "he-IL", 'value' => "כתוב פוסט אישי במדיה החברתית על:\n\n ##description## \n\nטון הדיבור של הפוסט חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 882, 'template_id' => 25, 'key' => "hi-IN", 'value' => "इसके बारे में एक निजी सोशल मीडिया पोस्ट लिखें:\n\n ##description## \n\nपोस्ट की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 883, 'template_id' => 25, 'key' => "hu-HU", 'value' => "Írjon személyes közösségimédia-bejegyzést erről:\n\n ##description## \n\nA bejegyzés hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 884, 'template_id' => 25, 'key' => "is-IS", 'value' => "Skrifaðu persónulega færslu á samfélagsmiðlum um:\n\n ##description## \n\nTónn færslunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 885, 'template_id' => 25, 'key' => "id-ID", 'value' => "Tulis postingan media sosial pribadi tentang:\n\n ##description## \n\nNada suara postingan harus:\n ##tone_language## \n\n"], - - ['id' => 886, 'template_id' => 25, 'key' => "it-IT", 'value' => "Scrivi un post personale sui social media su:\n\n ##description## \n\nIl tono di voce del post deve essere:\n ##tone_language## \n\n"], - - ['id' => 887, 'template_id' => 25, 'key' => "ja-JP", 'value' => "個人的なソーシャル メディアの投稿について書く:\n\n ##description## \n\n投稿のトーンは次のようにする必要があります:\n ##tone_language## \n\n"], - - ['id' => 888, 'template_id' => 25, 'key' => "ko-KR", 'value' => "다음에 대한 개인 소셜 미디어 게시물 작성:\n\n ##description## \n\n포스트의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 889, 'template_id' => 25, 'key' => "ms-MY", 'value' => "Tulis siaran media sosial peribadi tentang:\n\n ##description## \n\nNada suara siaran mestilah:\n ##tone_language## \n\n"], - - ['id' => 890, 'template_id' => 25, 'key' => "nb-NO", 'value' => "Skriv et personlig innlegg på sosiale medier om:\n\n ##description## \n\nTone i innlegget må være:\n ##tone_language## \n\n"], - - ['id' => 891, 'template_id' => 25, 'key' => "pl-PL", 'value' => "Napisz osobisty post w mediach społecznościowych na temat:\n\n ##description## \n\nTon wypowiedzi w poście musi być:\n ##tone_language## \n\n"], - - ['id' => 892, 'template_id' => 25, 'key' => "pt-PT", 'value' => "Escreva uma postagem de mídia social pessoal sobre:\n\n ##description## \n\nTom de voz da postagem deve ser:\n ##tone_language## \n\n"], - - ['id' => 893, 'template_id' => 25, 'key' => "ru-RU", 'value' => "Напишите личный пост в социальной сети о:\n\n ##description## \n\nТон сообщения должен быть:\n ##tone_language## \n\n"], - - ['id' => 894, 'template_id' => 25, 'key' => "es-ES", 'value' => "Escribe una publicación personal en las redes sociales sobre:\n\n ##description## \n\nEl tono de voz de la publicación debe ser:\n ##tone_language## \n\n"], - - ['id' => 895, 'template_id' => 25, 'key' => "sv-SE", 'value' => "Skriv ett personligt inlägg på sociala medier om:\n\n ##description## \n\nTonfallet i inlägget måste vara:\n ##tone_language## \n\n"], - - ['id' => 896, 'template_id' => 25, 'key' => "tr-TR", 'value' => "Şununla ilgili kişisel bir sosyal medya gönderisi yaz:\n\n ##description## \n\nGönderinin ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 897, 'template_id' => 25, 'key' => "pt-BR", 'value' => "Escreva uma postagem de mídia social pessoal sobre:\n\n ##description## \n\nTom de voz da postagem deve ser:\n ##tone_language## \n\n"], - - ['id' => 898, 'template_id' => 25, 'key' => "ro-RO", 'value' => "Scrieți o postare personală pe rețelele sociale despre:\n\n ##description## \n\nTonul vocii postării trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 899, 'template_id' => 25, 'key' => "vi-VN", 'value' => "Viết một bài đăng cá nhân trên mạng xã hội về:\n\n ##description## \n\nGiọng điệu của bài đăng phải là:\n ##tone_language## \n\n"], - - ['id' => 900, 'template_id' => 25, 'key' => "sw-KE", 'value' => "Andika chapisho la kibinafsi la mtandao wa kijamii kuhusu:\n\n ##description## \n\nToni ya sauti ya chapisho lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 901, 'template_id' => 25, 'key' => "sl-SI", 'value' => "Napišite osebno objavo v družabnem omrežju o:\n\n ##description## \n\nTon objave mora biti:\n ##tone_language## \n\n"], - - ['id' => 902, 'template_id' => 25, 'key' => "th-TH", 'value' => "เขียนโพสต์โซเชียลมีเดียส่วนตัวเกี่ยวกับ:\n\n ##description## \n\nน้ำเสียงของโพสต์ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 903, 'template_id' => 25, 'key' => "uk-UA", 'value' => "Напишіть особисту публікацію в соціальних мережах про:\n\n ##description## \n\nТон допису має бути:\n ##tone_language## \n\n"], - - ['id' => 904, 'template_id' => 25, 'key' => "lt-LT", 'value' => "Parašykite asmeninį socialinių tinklų įrašą apie:\n\n ##description## \n\nĮrašo balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 905, 'template_id' => 25, 'key' => "bg-BG", 'value' => "Напишете лична публикация в социалните медии за:\n\n ##description## \n\nТонът на публикацията трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 906, 'template_id' => 26, 'key' => "en-US", 'value' => "Create a large professional social media post for my company. Post description:\n\n ##post## \n\nCompany description:\n ##description## \n\nCompany name:\n ##title## \n\n"], - - ['id' => 907, 'template_id' => 26, 'key' => "ar-AE", 'value' => "أنشئ منشورًا احترافيًا كبيرًا على الوسائط الاجتماعية لشركتي. وصف المشاركة:\n\n ##post## \n\nوصف الشركة:\n ##description## \n\nاسم الشركة:\n ##title## \n\n"], - - ['id' => 908, 'template_id' => 26, 'key' => "cmn-CN", 'value' => "为我的公司创建大型专业社交媒体帖子。帖子描述:\n\n ##post## \n\n公司描述:\n ##description## \n\n公司名称:\n ##title## \n\n"], - - ['id' => 909, 'template_id' => 26, 'key' => "hr-HR", 'value' => "Stvorite veliku profesionalnu objavu na društvenim mrežama za moju tvrtku. Opis objave:\n\n ##post## \n\nOpis tvrtke:\n ##description## \n\nNaziv tvrtke:\n ##title## \n\n"], - - ['id' => 910, 'template_id' => 26, 'key' => "cs-CZ", 'value' => "Vytvořte pro mou společnost velký profesionální příspěvek na sociálních sítích. Popis příspěvku:\n\n ##post## \n\nPopis společnosti:\n ##description## \n\nNázev společnosti:\n ##title## \n\n"], - - ['id' => 911, 'template_id' => 26, 'key' => "da-DK", 'value' => "Opret et stort professionelt opslag på sociale medier til min virksomhed. Indlægsbeskrivelse:\n\n ##post## \n\nVirksomhedsbeskrivelse:\n ##description## \n\nVirksomhedsnavn:\n ##title## \n\n"], - ['id' => 912, 'template_id' => 26, 'key' => "nl-NL", 'value' => "Maak een groot professioneel bericht op sociale media voor mijn bedrijf. Berichtbeschrijving:\n\n ##post## \n\nBedrijfsomschrijving:\n ##description## \n\nBedrijfsnaam:\n ##title## \n\n"], - - ['id' => 913, 'template_id' => 26, 'key' => "et-EE", 'value' => "Loo minu ettevõtte jaoks suur professionaalne sotsiaalmeediapostitus. Postituse kirjeldus:\n\n ##post## \n\nEttevõtte kirjeldus:\n ##description## \n\nEttevõtte nimi:\n ##title## \n\n"], - - ['id' => 914, 'template_id' => 26, 'key' => "fi-FI", 'value' => "Luo suuri ammattimainen sosiaalisen median viesti yritykselleni. Viestin kuvaus:\n\n ##post## \n\nYrityksen kuvaus:\n ##description## \n\nYrityksen nimi:\n ##title## \n\n"], - - ['id' => 915, 'template_id' => 26, 'key' => "fr-FR", 'value' => "Créer une grande publication professionnelle sur les réseaux sociaux pour mon entreprise. Description de la publication :\n\n ##post## \n\nDescription de l'entreprise :\n ##description## \n\nNom de l'entreprise :\n ##title## \n\n"], - - ['id' => 916, 'template_id' => 26, 'key' => "de-DE", 'value' => "Erstelle einen großen professionellen Social-Media-Beitrag für mein Unternehmen. Beitragsbeschreibung:\n\n ##post## \n\nUnternehmensbeschreibung:\n ##description## \n\nFirmenname:\n ##title## \n\n"], - - ['id' => 917, 'template_id' => 26, 'key' => "el-GR", 'value' => "Δημιουργήστε μια μεγάλη επαγγελματική ανάρτηση στα μέσα κοινωνικής δικτύωσης για την εταιρεία μου. Περιγραφή ανάρτησης:\n\n ##post## \n\nΠεριγραφή εταιρείας:\n ##description## \n\nΌνομα εταιρείας:\n ##title## \n\n"], - - ['id' => 918, 'template_id' => 26, 'key' => "he-IL", 'value' => "צור פוסט מקצועי גדול במדיה החברתית עבור החברה שלי. תיאור הפוסט:\n\n ##post## \n\nתיאור החברה:\n ##description## \n\nשם החברה:\n ##title## \n\n"], - - ['id' => 919, 'template_id' => 26, 'key' => "hi-IN", 'value' => "मेरी कंपनी के लिए एक बड़ी पेशेवर सोशल मीडिया पोस्ट बनाएं। पोस्ट विवरण:\n\n ##post## \n\nकंपनी विवरण:\n ##description## \n\nकंपनी का नाम:\n ##title## \n\n"], - - ['id' => 920, 'template_id' => 26, 'key' => "hu-HU", 'value' => "Hozzon létre egy nagy, professzionális közösségi média bejegyzést a cégem számára. Bejegyzés leírása:\n\n ##post## \n\nCég leírása:\n ##description## \n\nCég neve:\n ##title## \n\n"], - - ['id' => 921, 'template_id' => 26, 'key' => "is-IS", 'value' => "Búðu til 10 grípandi bloggtitla fyrir:\n\n ##description## \n\n'Búa til stóra faglega samfélagsmiðlafærslu fyrir fyrirtækið mitt. Lýsing færslu:\n\n ##post## \n\nFyrirtækislýsing:\n ##description## \n\nNafn fyrirtækis:\n ##title## \n\n"], - - ['id' => 922, 'template_id' => 26, 'key' => "id-ID", 'value' => "Buat postingan media sosial profesional yang besar untuk perusahaan saya. Deskripsi postingan:\n\n ##post## \n\nDeskripsi perusahaan:\n ##description## \n\nNama perusahaan:\n ##title## \n\n"], - - ['id' => 923, 'template_id' => 26, 'key' => "it-IT", 'value' => "Crea un grande post professionale sui social media per la mia azienda. Descrizione del post:\n\n ##post## \n\nDescrizione azienda:\n ##description## \n\nNome azienda:\n ##title## \n\n"], - - ['id' => 924, 'template_id' => 26, 'key' => "ja-JP", 'value' => "私の会社のために大規模なプロフェッショナル ソーシャル メディア投稿を作成します。投稿の説明:\n\n ##post## \n\n会社説明:\n ##description## \n\n会社名:\n ##title## \n\n"], - - ['id' => 925, 'template_id' => 26, 'key' => "ko-KR", 'value' => "우리 회사를 위한 대규모 전문 소셜 미디어 게시물을 작성합니다. 게시물 설명:\n\n ##post## \n\n회사 설명:\n ##description## \n\n회사 이름:\n ##title## \n\n"], - - ['id' => 926, 'template_id' => 26, 'key' => "ms-MY", 'value' => "Buat siaran media sosial profesional yang besar untuk syarikat saya. Perihalan siaran:\n\n ##post## \n\nPerihalan syarikat:\n ##description## \n\nNama syarikat:\n ##title## \n\n"], - - ['id' => 927, 'template_id' => 26, 'key' => "nb-NO", 'value' => "Opprett et stort profesjonelt innlegg på sosiale medier for firmaet mitt. Innleggsbeskrivelse:\n\n ##post## \n\nBedriftsbeskrivelse:\n ##description## \n\nBedriftsnavn:\n ##title## \n\n"], - - ['id' => 928, 'template_id' => 26, 'key' => "pl-PL", 'value' => "Utwórz obszerny, profesjonalny post mojej firmy w mediach społecznościowych. Opis wpisu:\n\n ##post## \n\nOpis firmy:\n ##description## \n\nNazwa firmy:\n ##title## \n\n"], - - ['id' => 929, 'template_id' => 26, 'key' => "pt-PT", 'value' => "Criar uma grande postagem de mídia social profissional para minha empresa. Descrição da postagem:\n\n ##post## \n\nDescrição da empresa:\n ##description## \n\nNome da empresa:\n ##title## \n\n"], - - ['id' => 930, 'template_id' => 26, 'key' => "ru-RU", 'value' => "Создайте большую профессиональную публикацию в социальных сетях для моей компании. Описание публикации:\n\n ##post## \n\nОписание компании:\n ##description## \n\nНазвание компании:\n ##title## \n\n"], - - ['id' => 931, 'template_id' => 26, 'key' => "es-ES", 'value' => "Crear una gran publicación profesional en las redes sociales para mi empresa. Descripción de la publicación:\n\n ##post## \n\nDescripción de la empresa:\n ##description## \n\nNombre de la empresa:\n ##title## \n\n"], - - ['id' => 932, 'template_id' => 26, 'key' => "sv-SE", 'value' => "Skapa ett stort professionellt inlägg på sociala medier för mitt företag. Inläggsbeskrivning:\n\n ##post## \n\nFöretagsbeskrivning:\n ##description## \n\nFöretagsnamn:\n ##title## \n\n"], - - ['id' => 933, 'template_id' => 26, 'key' => "tr-TR", 'value' => "Şirketim için büyük bir profesyonel sosyal medya gönderisi oluştur. Gönderi açıklaması:\n\n ##post## \n\nŞirket açıklaması:\n ##description## \n\nŞirket adı:\n ##title## \n\n"], - - ['id' => 934, 'template_id' => 26, 'key' => "pt-BR", 'value' => "Criar uma grande postagem de mídia social profissional para minha empresa. Descrição da postagem:\n\n ##post## \n\nDescrição da empresa:\n ##description## \n\nNome da empresa:\n ##title## \n\n"], - - ['id' => 935, 'template_id' => 26, 'key' => "ro-RO", 'value' => "Creează o postare mare profesională pe rețelele sociale pentru compania mea. Descrierea postării:\n\n ##post## \n\nDescrierea companiei:\n ##description## \n\nNumele companiei:\n ##title## \n\n"], - - ['id' => 936, 'template_id' => 26, 'key' => "vi-VN", 'value' => "Tạo một bài đăng lớn chuyên nghiệp trên mạng xã hội cho công ty của tôi. Mô tả bài đăng:\n\n ##post## \n\nMô tả công ty:\n ##description## \n\nTên công ty:\n ##title## \n\n"], - - ['id' => 937, 'template_id' => 26, 'key' => "sw-KE", 'value' => "Unda chapisho kubwa la kitaalamu la mitandao ya kijamii kwa ajili ya kampuni yangu. Chapisha maelezo:\n\n ##post## \n\nMaelezo ya kampuni:\n ##description## \n\nJina la kampuni:\n ##title## \n\n"], - - ['id' => 938, 'template_id' => 26, 'key' => "sl-SI", 'value' => "Ustvari veliko profesionalno objavo v družbenih medijih za moje podjetje. Opis objave:\n\n ##post## \n\nOpis podjetja:\n ##description## \n\nIme podjetja:\n ##title## \n\n"], - - ['id' => 939, 'template_id' => 26, 'key' => "th-TH", 'value' => "สร้างโพสต์โซเชียลมีเดียระดับมืออาชีพขนาดใหญ่สำหรับบริษัทของฉัน คำอธิบายโพสต์:\n\n ##post## \n\nคำอธิบายบริษัท:\n ##description## \n\nชื่อบริษัท:\n ##title## \n\n"], - - ['id' => 940, 'template_id' => 26, 'key' => "uk-UA", 'value' => "Створіть великий професійний допис у соціальних мережах для моєї компанії. Опис допису:\n\n ##post## \n\nОпис компанії:\n ##description## \n\nНазва компанії:\n ##title## \n\n"], - - ['id' => 941, 'template_id' => 26, 'key' => "lt-LT", 'value' => "Sukurkite didelį profesionalų mano įmonės socialinės žiniasklaidos įrašą. Įrašo aprašas: \n\n ##post## \n\nĮmonės aprašymas:\n ##description## \n\nĮmonės pavadinimas:\n ##title## \n\n"], - - ['id' => 942, 'template_id' => 26, 'key' => "bg-BG", 'value' => "Създайте голяма професионална публикация в социалните медии за моята компания. Описание на публикацията:\n\n ##post## \n\nОписание на фирмата:\n ##description## \n\nИме на фирмата:\n ##title## \n\n"], - - ['id' => 943, 'template_id' => 27, 'key' => "en-US", 'value' => "Write a long creative headline for the following product to run on Facebook aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the headline must be:\n ##tone_language## \n\n"], - - ['id' => 944, 'template_id' => 27, 'key' => "ar-AE", 'value' => "اكتب عنوانًا إبداعيًا طويلاً للمنتج التالي ليتم تشغيله على Facebook بهدف:\n\n ##audience## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نبرة صوت العنوان:\n ##tone_language## \n\n"], - - ['id' => 945, 'template_id' => 27, 'key' => "cmn-CN", 'value' => "为以下产品写一个长创意标题以在 Facebook 上运行,旨在:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 标题的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 946, 'template_id' => 27, 'key' => "hr-HR", 'value' => "Napišite dugačak kreativni naslov za sljedeći proizvod koji će se prikazivati na Facebooku s ciljem:\n\n ##audience## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa naslova mora biti:\n ##tone_language## \n\n"], - - ['id' => 947, 'template_id' => 27, 'key' => "cs-CZ", 'value' => "Napište dlouhý kreativní nadpis pro následující produkt, který bude spuštěn na Facebooku:\n\n ##audience## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu titulku musí být:\n ##tone_language## \n\n"], - - ['id' => 948, 'template_id' => 27, 'key' => "da-DK", 'value' => "Skriv en lang kreativ overskrift til følgende produkt, der skal køre på Facebook, rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i overskriften skal være:\n ##tone_language## \n\n"], - - ['id' => 949, 'template_id' => 27, 'key' => "nl-NL", 'value' => "Skriv en lang kreativ overskrift til følgende produkt, der skal køre på Facebook, rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i overskriften skal være:\n ##tone_language## \n\n"], - - ['id' => 950, 'template_id' => 27, 'key' => "et-EE", 'value' => "Kirjutage Facebookis käivitamiseks järgmise toote jaoks pikk loominguline pealkiri, mille eesmärk on:\n\n ##audience## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Pealkirja hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 951, 'template_id' => 27, 'key' => "fi-FI", 'value' =>"Kirjoita pitkä luova otsikko seuraavalle tuotteelle Facebookissa käytettäväksi:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Otsikon äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 952, 'template_id' => 27, 'key' => "fr-FR", 'value' => "Écrivez un long titre créatif pour le produit suivant à diffuser sur Facebook destiné à :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix du titre doit être :\n ##tone_language## \n\n"], - - ['id' => 953, 'template_id' => 27, 'key' => "de-DE", 'value' =>"Schreiben Sie eine lange kreative Überschrift für das folgende Produkt, das auf Facebook laufen soll:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Überschrift muss sein:\n ##tone_language## \n\n"], - - ['id' => 954, 'template_id' => 27, 'key' => "el-GR", 'value' => "Γράψτε μια μακρά δημιουργική επικεφαλίδα για το ακόλουθο προϊόν για προβολή στο Facebook με στόχο:\n\n ##audience## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής της επικεφαλίδας πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 955, 'template_id' => 27, 'key' => "he-IL", 'value' => "כתוב כותרת יצירתית ארוכה למוצר הבא שיוצג בפייסבוק שמטרתה:\n\n ##audience## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n גוון הקול של הכותרת חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 956, 'template_id' => 27, 'key' => "hi-IN", 'value' => "Facebook पर चलने के लिए निम्न उत्पाद के लिए एक लंबी क्रिएटिव हेडलाइन लिखें:\n\n ##audience## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n शीर्षक का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 957, 'template_id' => 27, 'key' => "hu-HU", 'value' => "Írjon egy hosszú kreatív címsort a következő termékhez a Facebookon való futtatáshoz, amelynek célja:\n\n ##audience## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A címsor hangszínének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 958, 'template_id' => 27, 'key' => "is-IS", 'value' => "Skrifaðu langa skapandi fyrirsögn fyrir eftirfarandi vöru til að birtast á Facebook sem miðar að:\n\n ##audience## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í fyrirsögninni verður að vera:\n ##tone_language## \n\n"], - - ['id' => 959, 'template_id' => 27, 'key' => "id-ID", 'value' => "Tulis judul kreatif yang panjang untuk produk berikut agar berjalan di Facebook yang ditujukan untuk:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara judul harus:\n ##tone_language## \n\n"], - - ['id' => 960, 'template_id' => 27, 'key' => "it-IT", 'value' => "Scrivi un lungo titolo creativo per il seguente prodotto da pubblicare su Facebook destinato a:\n\n ##audience## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce del titolo deve essere:\n ##tone_language## \n\n"], - - ['id' => 961, 'template_id' => 27, 'key' => "ja-JP", 'value' => "次の製品の長いクリエイティブな見出しを書いて、Facebook で実行することを目的としています:\n\n ##audience## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 見出しの口調は次のようにする必要があります:\n ##tone_language## \n\n"], - - ['id' => 962, 'template_id' => 27, 'key' => "ko-KR", 'value' => "Facebook에서 실행할 다음 제품에 대한 길고 창의적인 헤드라인을 작성하세요.\n\n ##audience## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 헤드라인의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n"], - - ['id' => 963, 'template_id' => 27, 'key' => "ms-MY", 'value' => "Tulis tajuk kreatif yang panjang untuk produk berikut disiarkan di Facebook bertujuan:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara tajuk mestilah:\n ##tone_language## \n\n"], - - ['id' => 964, 'template_id' => 27, 'key' => "nb-NO", 'value' => "Skriv en lang kreativ overskrift for følgende produkt å kjøre på Facebook rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i overskriften må være:\n ##tone_language## \n\n"], - - ['id' => 965, 'template_id' => 27, 'key' => "pl-PL", 'value' => "Napisz długi kreatywny nagłówek dla następującego produktu do wyświetlania na Facebooku, którego celem jest:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton nagłówka musi być:\n ##tone_language## \n\n"], - - ['id' => 966, 'template_id' => 27, 'key' => "pt-PT", 'value' => "Escreva um longo título criativo para o seguinte produto a ser executado no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do título deve ser:\n ##tone_language## \n\n"], - - ['id' => 967, 'template_id' => 27, 'key' => "ru-RU", 'value' => "Напишите длинный креативный заголовок для следующего продукта, который будет запущен на Facebook и нацелен на:\n\n ##audience## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон голоса заголовка должен быть:\n ##tone_language## \n\n"], - - ['id' => 968, 'template_id' => 27, 'key' => "es-ES", 'value' => "Escribe un título creativo largo para que el siguiente producto se ejecute en Facebook dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz del titular debe ser:\n ##tone_language## \n\n"], - - ['id' => 969, 'template_id' => 27, 'key' => "sv-SE", 'value' => "Skriv en lång kreativ rubrik för följande produkt att köra på Facebook som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rubriken måste vara:\n ##tone_language## \n\n"], - - ['id' => 970, 'template_id' => 27, 'key' => "tr-TR", 'value' => "Aşağıdaki ürünün Facebook'ta yayınlanması için uzun bir yaratıcı başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Başlığın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 971, 'template_id' => 27, 'key' => "pt-BR", 'value' => "Escreva um longo título criativo para o seguinte produto a ser executado no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do título deve ser:\n ##tone_language## \n\n"], - - ['id' => 972, 'template_id' => 27, 'key' => "ro-RO", 'value' => "Scrieți un titlu creativ lung pentru următorul produs care să fie difuzat pe Facebook, care vizează:\n\n ##audience## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii titlului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 973, 'template_id' => 27, 'key' => "vi-VN", 'value' => "Viết một dòng tiêu đề sáng tạo dài cho sản phẩm sau để chạy trên Facebook nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của tiêu đề phải là:\n ##tone_language## \n\n"], - - ['id' => 974, 'template_id' => 27, 'key' => "sw-KE", 'value' => "Andika kichwa kirefu cha ubunifu ili bidhaa ifuatayo iendeshwe kwenye Facebook inayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya kichwa lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 975, 'template_id' => 27, 'key' => "sl-SI", 'value' => "Napišite dolg kreativni naslov za naslednji izdelek, ki bo deloval na Facebooku in bo namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu naslova mora biti:\n ##tone_language## \n\n"], - - ['id' => 976, 'template_id' => 27, 'key' => "th-TH", 'value' => "เขียนพาดหัวโฆษณาแบบยาวเพื่อให้ผลิตภัณฑ์ต่อไปนี้ทำงานบน Facebook โดยมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงพาดหัวต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 977, 'template_id' => 27, 'key' => "uk-UA", 'value' => "Напишіть довгий креативний заголовок для наступного продукту для показу на Facebook, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон заголовка має бути:\n ##tone_language## \n\n"], - - ['id' => 978, 'template_id' => 27, 'key' => "lt-LT", 'value' => "Parašykite ilgą kūrybinę antraštę, kad šis produktas būtų paleistas „Facebook“ ir skirtas:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Antraštės balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 979, 'template_id' => 27, 'key' => "bg-BG", 'value' => "Напишете дълго творческо заглавие за следния продукт, който да се пусне във Facebook и е насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на заглавието трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 980, 'template_id' => 28, 'key' => "en-US", 'value' => "Write catchy 30-character headlines to promote your product with Google Ads. Product name:\n\n ##title## \n\nProduct description:\n ##description## \n\nTarget audience for ad:\n ##audience## \n\nTone of voice of the headline must be:\n ##tone_language## \n\n"], - - ['id' => 981, 'template_id' => 28, 'key' => "ar-AE", 'value' => "اكتب عناوين جذابة مكونة من 30 حرفًا للترويج لمنتجك باستخدام إعلانات Google. اسم المنتج:\n\n ##title## \n\nوصف المنتج:\n ##description## \n\nالجمهور المستهدف للإعلان:\n ##audience## \n\nيجب أن تكون نغمة الصوت في العنوان:\n ##tone_language## \n\n"], - - ['id' => 982, 'template_id' => 28, 'key' => "cmn-CN", 'value' => "撰写醒目的 30 个字符的标题,以使用 Google Ads 宣传您的产品。产品名称:\n\n ##title## \n\n产品描述:\n ##description## \n\n广告的目标受众:\n ##audience## \n\n标题的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 983, 'template_id' => 28, 'key' => "hr-HR", 'value' => "Napišite upečatljive naslove od 30 znakova kako biste promovirali svoj proizvod uz Google Ads. Naziv proizvoda:\n\n ##title## \n\nOpis proizvoda:\n ##description## \n\nCiljana publika za oglas:\n ##audience## \n\nTon glasa naslova mora biti:\n ##tone_language## \n\n"], - - ['id' => 984, 'template_id' => 28, 'key' => "cs-CZ", 'value' => "Napište chytlavé nadpisy o délce 30 znaků a propagujte svůj produkt pomocí Google Ads. Název produktu:\n\n ##title## \n\nPopis produktu:\n ##description## \n\nCílové publikum pro reklamu:\n ##audience## \n\nTón hlasu titulku musí být:\n ##tone_language## \n\n"], - - ['id' => 985, 'template_id' => 28, 'key' => "da-DK", 'value' => "Skriv fængende overskrifter på 30 tegn for at promovere dit produkt med Google Ads. Produktnavn:\n\n ##title## \n\nProduktbeskrivelse:\n ##description## \n\nMålgruppe for annonce:\n ##audience## \n\nTone i overskriften skal være:\n ##tone_language## \n\n"], - - ['id' => 986, 'template_id' => 28, 'key' => "nl-NL", 'value' => "Schrijf pakkende koppen van 30 tekens om uw product te promoten met Google Ads. Productnaam:\n\n ##title## \n\nProductbeschrijving:\n ##description## \n\nDoelgroep voor advertentie:\n ##audience## \n\nDe toon van de kop moet zijn:\n ##tone_language## \n\n"], - - ['id' => 987, 'template_id' => 28, 'key' => "et-EE", 'value' => "Kirjutage meeldejäävaid 30-märgilisi pealkirju, et reklaamida oma toodet Google Adsiga. Toote nimi:\n\n ##title## \n\nTootekirjeldus:\n ##description## \n\nReklaami sihtrühm:\n ##audience## \n\nPealkirja hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 988, 'template_id' => 28, 'key' => "fi-FI", 'value' => "Kirjoita tarttuvia 30 merkin pituisia otsikoita mainostaaksesi tuotettasi Google Adsin avulla. Tuotteen nimi:\n\n ##title## \n\nTuotteen kuvaus:\n ##description## \n\nMainoksen kohdeyleisö:\n ##audience## \n\nOtsikon äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 989, 'template_id' => 28, 'key' => "fr-FR", 'value' => "Rédigez des titres accrocheurs de 30 caractères pour promouvoir votre produit avec Google Ads. Nom du produit :\n\n ##title## \n\nDescription du produit :\n ##description## \n\nAudience cible pour l'annonce :\n ##audience## \n\nLe ton de la voix du titre doit être :\n ##tone_language## \n\n"], - - ['id' => 990, 'template_id' => 28, 'key' => "de-DE", 'value' => "Schreiben Sie ansprechende Überschriften mit 30 Zeichen, um Ihr Produkt mit Google Ads zu bewerben. Produktname:\n\n ##title## \n\nProduktbeschreibung:\n ##description## \n\nZielpublikum für Anzeige:\n ##audience## \n\nTonlage der Überschrift muss sein:\n ##tone_language## \n\n"], - - ['id' => 991, 'template_id' => 28, 'key' => "el-GR", 'value' => "Γράψτε εντυπωσιακούς τίτλους 30 χαρακτήρων για να προωθήσετε το προϊόν σας με το Google Ads. Όνομα προϊόντος:\n\n ##title## \n\nΠεριγραφή προϊόντος:\n ##description## \n\nΣτόχευση κοινού για διαφήμιση:\n ##audience## \n\nΟ τόνος της φωνής της επικεφαλίδας πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 992, 'template_id' => 28, 'key' => "he-IL", 'value' => "צור 10 כותרות בלוג קליטות עבור:\n\n ##description## \n\n'כתוב כותרות קליטות של 30 תווים כדי לקדם את המוצר שלך עם Google Ads. שם המוצר:\n\n ##title## \n\nתיאור המוצר:\n ##description## \n\nקהל יעד למודעה:\n ##audience## \n\nטון הדיבור של הכותרת חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 993, 'template_id' => 28, 'key' => "hi-IN", 'value' => "Google Ads के साथ अपने उत्पाद का प्रचार करने के लिए आकर्षक 30-वर्ण वाली सुर्खियाँ लिखें। उत्पाद का नाम:\n\n ##title## \n\nउत्पाद विवरण:\n ##description## \n\nविज्ञापन के लिए लक्षित दर्शक:\n ##audience## \n\nशीर्षक की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 994, 'template_id' => 28, 'key' => "hu-HU", 'value' => "Írjon fülbemászó, 30 karakterből álló címsorokat, hogy reklámozza termékét a Google Ads szolgáltatással. Termék neve:\n\n ##title## \n\nTermékleírás:\n ##description## \n\nHirdetés célközönsége:\n ##audience## \n\nA címsor hangszínének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 995, 'template_id' => 28, 'key' => "is-IS", 'value' => "Skrifaðu grípandi 30 stafa fyrirsagnir til að kynna vöruna þína með Google Ads. Vöruheiti:\n\n ##title## \n\nVörulýsing:\n ##description## \n\nMarkhópur auglýsingar:\n ##audience## \n\nTónn í fyrirsögninni verður að vera:\n ##tone_language## \n\n"], - - ['id' => 996, 'template_id' => 28, 'key' => "id-ID", 'value' => "Tulis judul 30 karakter yang menarik untuk mempromosikan produk Anda dengan Google Ads. Nama produk:\n\n ##title## \n\nDeskripsi produk:\n ##description## \n\nTarget pemirsa untuk iklan:\n ##audience## \n\nNada suara judul harus:\n ##tone_language## \n\n"], - - ['id' => 997, 'template_id' => 28, 'key' => "it-IT", 'value' => "Scrivi titoli accattivanti di 30 caratteri per promuovere il tuo prodotto con Google Ads. Nome del prodotto:\n\n ##title## \n\nDescrizione del prodotto:\n ##description## \n\nPubblico di destinazione dell'annuncio:\n ##audience## \n\nIl tono di voce del titolo deve essere:\n ##tone_language## \n\n"], - - ['id' => 998, 'template_id' => 28, 'key' => "ja-JP", 'value' => "キャッチーな 30 文字の見出しを書いて、Google 広告で商品を宣伝しましょう。商品名:\n\n ##title## \n\n商品説明:\n ##description## \n\n広告のターゲット ユーザー:\n ##audience## \n\n見出しの声のトーンは次のようにする必要があります:\n ##tone_language## \n\n"], - - ['id' => 999, 'template_id' => 28, 'key' => "ko-KR", 'value' => "Google Ads로 제품을 홍보하려면 눈길을 끄는 30자의 제목을 작성하세요. 제품 이름:\n\n ##title## \n\n제품 설명:\n ##description## \n\n광고 대상:\n ##audience## \n\n제목의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n"], - - ['id' => 1000, 'template_id' => 28, 'key' => "ms-MY", 'value' => "Tulis tajuk 30 aksara yang menarik untuk mempromosikan produk anda dengan Google Ads. Nama produk:\n\n ##title## \n\nPerihalan produk:\n ##description## \n\nSasarkan khalayak untuk iklan:\n ##audience## \n\nNada suara tajuk mestilah:\n ##tone_language## \n\n"], - - ['id' => 1001, 'template_id' => 28, 'key' => "nb-NO", 'value' => "Skriv fengende overskrifter på 30 tegn for å markedsføre produktet ditt med Google Ads. Produktnavn:\n\n ##title## \n\nProduktbeskrivelse:\n ##description## \n\nMålgruppe for annonse:\n ##audience## \n\nTone i overskriften må være:\n ##tone_language## \n\n"], - - ['id' => 1002, 'template_id' => 28, 'key' => "pl-PL", 'value' => "Pisz chwytliwe 30-znakowe nagłówki, aby promować swój produkt w Google Ads. Nazwa produktu:\n\n ##title## \n\nOpis produktu:\n ##description## \n\nDocelowi odbiorcy reklamy:\n ##audience## \n\nTon nagłówka musi być następujący:\n ##tone_language## \n\n"], - - ['id' => 1003, 'template_id' => 28, 'key' => "pt-PT", 'value' => "Escreva títulos atraentes de 30 caracteres para promover seu produto com o Google Ads. Nome do produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\nPúblico-alvo do anúncio:\n ##audience## \n\nTom de voz do título deve ser:\n ##tone_language## \n\n"], - - ['id' => 1004, 'template_id' => 28, 'key' => "ru-RU", 'value' => "Напишите броские 30-символьные заголовки, чтобы продвигать свой продукт с помощью Google Реклама. Название продукта:\n\n ##title## \n\nОписание продукта:\n ##description## \n\nЦелевая аудитория для рекламы:\n ##audience## \n\nТон заголовка должен быть:\n ##tone_language## \n\n"], - - ['id' => 1005, 'template_id' => 28, 'key' => "es-ES", 'value' => "Escriba títulos llamativos de 30 caracteres para promocionar su producto con Google Ads. Nombre del producto:\n\n ##title## \n\nDescripción del producto:\n ##description## \n\nAudiencia objetivo para el anuncio:\n ##audience## \n\nEl tono de voz del titular debe ser:\n ##tone_language## \n\n"], - - ['id' => 1006, 'template_id' => 28, 'key' => "sv-SE", 'value' => "Skriv medryckande rubriker med 30 tecken för att marknadsföra din produkt med Google Ads. Produktnamn:\n\n ##title## \n\nProduktbeskrivning:\n ##description## \n\nMålgrupp för annons:\n ##audience## \n\nTonfallet i rubriken måste vara:\n ##tone_language## \n\n"], - - ['id' => 1007, 'template_id' => 28, 'key' => "tr-TR", 'value' => "Ürününüzü Google Ads ile tanıtmak için akılda kalıcı 30 karakterlik başlıklar yazın. Ürün adı:\n\n ##title## \n\nÜrün açıklaması:\n ##description## \n\nReklamın hedef kitlesi:\n ##audience## \n\nBaşlığın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 1008, 'template_id' => 28, 'key' => "pt-BR", 'value' => "Escreva títulos atraentes de 30 caracteres para promover seu produto com o Google Ads. Nome do produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\nPúblico-alvo do anúncio:\n ##audience## \n\nTom de voz do título deve ser:\n ##tone_language## \n\n"], - - ['id' => 1009, 'template_id' => 28, 'key' => "ro-RO", 'value' => "Scrieți titluri atractive de 30 de caractere pentru a vă promova produsul cu Google Ads. Nume produs:\n\n ##title## \n\nDescrierea produsului:\n ##description## \n\nPublic țintă pentru anunț:\n ##audience## \n\nTonul vocii titlului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1010, 'template_id' => 28, 'key' => "vi-VN", 'value' => "Viết dòng tiêu đề hấp dẫn gồm 30 ký tự để quảng cáo sản phẩm của bạn với Google Ads. Tên sản phẩm:\n\n ##title## \n\nMô tả sản phẩm:\n ##description## \n\nĐối tượng mục tiêu cho quảng cáo:\n ##audience## \n\nGiọng điệu của tiêu đề phải là:\n ##tone_language## \n\n"], - - ['id' => 1011, 'template_id' => 28, 'key' => "sw-KE", 'value' => "Andika vichwa vya habari vya kuvutia vya herufi 30 ili kutangaza bidhaa yako ukitumia Google Ads. Jina la bidhaa:\n\n ##title## \n\nMaelezo ya bidhaa:\n ##description## \n\nHadhira lengwa ya tangazo:\n ##audience## \n\nToni ya sauti ya kichwa lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1012, 'template_id' => 28, 'key' => "sl-SI", 'value' => "Napišite privlačne naslove s 30 znaki za promocijo svojega izdelka z Google Ads. Ime izdelka:\n\n ##title## \n\nOpis izdelka:\n ##description## \n\nCiljna publika za oglas:\n ##audience## \n\nTon glasu naslova mora biti:\n ##tone_language## \n\n"], - - ['id' => 1013, 'template_id' => 28, 'key' => "th-TH", 'value' => "เขียนบรรทัดแรก 30 อักขระที่ดึงดูดใจเพื่อโปรโมตผลิตภัณฑ์ของคุณด้วย Google Ads ชื่อผลิตภัณฑ์:\n\n ##title## \n\nรายละเอียดสินค้า:\n ##description## \n\nกลุ่มเป้าหมายสำหรับโฆษณา:\n ##audience## \n\nน้ำเสียงของพาดหัวต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1014, 'template_id' => 28, 'key' => "uk-UA", 'value' => "Напишіть привабливі заголовки з 30 символів, щоб рекламувати свій продукт за допомогою Google Ads. Назва продукту:\n\n ##title## \n\nОпис товару:\n ##description## \n\nЦільова аудиторія для реклами:\n ##audience## \n\nТон заголовка має бути:\n ##tone_language## \n\n"], - - ['id' => 1015, 'template_id' => 28, 'key' => "lt-LT", 'value' => "Parašykite patrauklias 30 simbolių antraštes, kad reklamuotumėte savo produktą naudodami Google Ads. Produkto pavadinimas:\n\n ##title## \n\nProdukto aprašymas:\n ##description## \n\nSkelbimo tikslinė auditorija:\n ##audience## \n\nAntraštės balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 1016, 'template_id' => 28, 'key' => "bg-BG", 'value' => "Напишете закачливи заглавия от 30 знака, за да популяризирате продукта си с Google Ads. Име на продукта:\n\n ##title## \n\nОписание на продукта:\n ##description## \n\nЦелева аудитория за реклама:\n ##audience## \n\nТонът на заглавието трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1017, 'template_id' => 29, 'key' => "en-US", 'value' => "Write a Google Ads description that makes your ad stand out and generates leads. Target audience:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the ad must be:\n ##tone_language## \n\n"], - - ['id' => 1018, 'template_id' => 29, 'key' => "ar-AE", 'value' => "اكتب وصفًا لبرنامج إعلانات Google يجعل إعلانك متميزًا ويكتسب عملاء محتملين. الجمهور المستهدف:\n\n ##audience## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نغمة صوت الإعلان:\n ##tone_language## \n\n"], - - ['id' => 1019, 'template_id' => 29, 'key' => "cmn-CN", 'value' => "撰写 Google Ads 说明,使您的广告脱颖而出并带来潜在客户。目标受众:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 广告语调必须是:\n ##tone_language## \n\n'为以下内容生成 10 个吸引人的博客标题:\n\n ##description## \n\n"], - - ['id' => 1020, 'template_id' => 29, 'key' => "hr-HR", 'value' => "Napišite Google Ads opis koji ističe vaš oglas i generira potencijalne kupce. Ciljana publika:\n\n ##audience## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa oglasa mora biti:\n ##tone_language## \n\n"], - - ['id' => 1021, 'template_id' => 29, 'key' => "cs-CZ", 'value' => "Napište popis Google Ads, díky kterému vaše reklama vynikne a generuje potenciální zákazníky. Cílové publikum:\n\n ##audience## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu reklamy musí být:\n ##tone_language## \n\n"], - - ['id' => 1022, 'template_id' => 29, 'key' => "da-DK", 'value' => "Skriv en Google Ads-beskrivelse, der får din annonce til at skille sig ud og genererer kundeemner. Målgruppe:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annoncen skal være:\n ##tone_language## \n\n"], - - ['id' => 1023, 'template_id' => 29, 'key' => "nl-NL", 'value' => "Schrijf een Google Ads-beschrijving waardoor uw advertentie opvalt en leads genereert. Doelgroep:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de advertentie moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1024, 'template_id' => 29, 'key' => "et-EE", 'value' => "Kirjutage Google Adsi kirjeldus, mis muudab teie reklaami silmapaistvaks ja loob müügivihjeid. Sihtpublik:\n\n ##audience## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Reklaami hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1025, 'template_id' => 29, 'key' => "fi-FI", 'value' => "Kirjoita Google Ads -kuvaus, joka tekee mainoksestasi erottuvan ja luo liidejä. Kohdeyleisö:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Mainoksen äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 1026, 'template_id' => 29, 'key' => "fr-FR", 'value' => "Rédigez une description Google Ads qui permet à votre annonce de se démarquer et de générer des prospects. Public cible :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix de l'annonce doit être :\n ##tone_language## \n\n"], - - ['id' => 1027, 'template_id' => 29, 'key' => "de-DE", 'value' => "Schreiben Sie eine Google Ads-Beschreibung, die Ihre Anzeige hervorhebt und Leads generiert. Zielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Anzeige muss sein:\n ##tone_language## \n\n"], - - ['id' => 1028, 'template_id' => 29, 'key' => "el-GR", 'value' => "Γράψτε μια περιγραφή του Google Ads που κάνει τη διαφήμισή σας να ξεχωρίζει και να δημιουργεί δυνητικούς πελάτες. Στοχευόμενο κοινό:\n\n ##audience## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της διαφήμισης πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1029, 'template_id' => 29, 'key' => "he-IL", 'value' => "כתוב תיאור של Google Ads שיבלוט את המודעה שלך ויוצר לידים. קהל יעד:\n\n ##audience## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n טון הדיבור של המודעה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1030, 'template_id' => 29, 'key' => "hi-IN", 'value' => "एक Google Ads विवरण लिखें जो आपके विज्ञापन को सबसे अलग बनाता है और लीड उत्पन्न करता है। लक्षित ऑडियंस:\n\n ##audience## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n विज्ञापन का स्वर ऐसा होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1031, 'template_id' => 29, 'key' => "hu-HU", 'value' => "Írjon olyan Google Ads-leírást, amely kiemeli hirdetését, és potenciális ügyfeleket generál. Célközönség:\n\n ##audience## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A hirdetés hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1032, 'template_id' => 29, 'key' => "is-IS", 'value' => "Skrifaðu Google Ads lýsingu sem gerir auglýsinguna þína áberandi og gefur af sér leiðir. Markhópur:\n\n ##audience## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Röddtónn auglýsingarinnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1033, 'template_id' => 29, 'key' => "id-ID", 'value' => "Tulis deskripsi Google Ads yang menonjolkan iklan Anda dan menghasilkan prospek. Audiens target:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara iklan harus:\n ##tone_language## \n\n"], - - ['id' => 1034, 'template_id' => 29, 'key' => "it-IT", 'value' => "Scrivi una descrizione di Google Ads che faccia risaltare il tuo annuncio e generi lead. Pubblico di destinazione:\n\n ##audience## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell'annuncio deve essere:\n ##tone_language## \n\n"], - - ['id' => 1035, 'template_id' => 29, 'key' => "ja-JP", 'value' => "広告を目立たせ、リードを生み出す Google 広告の説明を書いてください。対象ユーザー:\n\n ##audience## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 広告のトーンは次のようにする必要があります:\n ##tone_language## \n\n"], - - ['id' => 1036, 'template_id' => 29, 'key' => "ko-KR", 'value' => "광고를 돋보이게 하고 리드를 생성하는 Google Ads 설명을 작성하세요. 타겟층:\n\n ##audience## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 광고의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n"], - - ['id' => 1037, 'template_id' => 29, 'key' => "ms-MY", 'value' => "Tulis perihalan Google Ads yang menjadikan iklan anda menonjol dan menjana petunjuk. Khalayak sasaran:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara iklan mestilah:\n ##tone_language## \n\n"], - - ['id' => 1038, 'template_id' => 29, 'key' => "nb-NO", 'value' => "Skriv en Google Ads-beskrivelse som gjør at annonsen din skiller seg ut og genererer potensielle kunder. Målgruppe:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annonsen må være:\n ##tone_language## \n\n"], - - ['id' => 1039, 'template_id' => 29, 'key' => "pl-PL", 'value' => "Napisz opis Google Ads, który wyróżni Twoją reklamę i przyciągnie potencjalnych klientów. Grupa docelowa:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton reklamy musi być:\n ##tone_language## \n\n"], - - ['id' => 1040, 'template_id' => 29, 'key' => "pt-PT", 'value' => "Escreva uma descrição do Google Ads que destaque seu anúncio e gere leads. Público-alvo:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n"], - - ['id' => 1041, 'template_id' => 29, 'key' => "ru-RU", 'value' => "Напишите описание Google Реклама, которое выделит вашу рекламу и привлечет потенциальных клиентов. Целевая аудитория:\n\n ##audience## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон объявления должен быть:\n ##tone_language## \n\n"], - - ['id' => 1042, 'template_id' => 29, 'key' => "es-ES", 'value' => "Escriba una descripción de Google Ads que haga que su anuncio se destaque y genere clientes potenciales. Público objetivo:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz del anuncio debe ser:\n ##tone_language## \n\n"], - - ['id' => 1043, 'template_id' => 29, 'key' => "sv-SE", 'value' => "Skriv en Google Ads-beskrivning som får din annons att sticka ut och genererar potentiella kunder. Målgrupp:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i annonsen måste vara:\n ##tone_language## \n\n"], - - ['id' => 1044, 'template_id' => 29, 'key' => "tr-TR", 'value' => "Reklamınızı öne çıkaran ve olası satışlar sağlayan bir Google Ads açıklaması yazın. Hedef kitle:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Reklamın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 1045, 'template_id' => 29, 'key' => "pt-BR", 'value' => "Escreva uma descrição do Google Ads que destaque seu anúncio e gere leads. Público-alvo:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n"], - - ['id' => 1046, 'template_id' => 29, 'key' => "ro-RO", 'value' => "Scrieți o descriere Google Ads care să vă facă anunțul în evidență și să genereze clienți potențiali. Publicul țintă:\n\n ##audience## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii al anunțului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1047, 'template_id' => 29, 'key' => "vi-VN", 'value' => "Viết mô tả Google Ads giúp quảng cáo của bạn nổi bật và tạo khách hàng tiềm năng. Đối tượng mục tiêu:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của quảng cáo phải là:\n ##tone_language## \n\n"], - - ['id' => 1048, 'template_id' => 29, 'key' => "sw-KE", 'value' => "Andika maelezo ya Google Ads ambayo yanafanya tangazo lako liwe bora zaidi na kuzalisha watu wanaoongoza. Hadhira inayolengwa:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya tangazo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1049, 'template_id' => 29, 'key' => "sl-SI", 'value' => "Napišite opis Google Ads, s katerim bo vaš oglas izstopal in pritegnil potencialne stranke. Ciljna publika:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu oglasa mora biti:\n ##tone_language## \n\n"], - - ['id' => 1050, 'template_id' => 29, 'key' => "th-TH", 'value' => "เขียนคำอธิบาย Google Ads ที่ทำให้โฆษณาของคุณโดดเด่นและสร้างโอกาสในการขาย ผู้ชมเป้าหมาย:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของโฆษณาต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1051, 'template_id' => 29, 'key' => "uk-UA", 'value' => "Напишіть опис Google Ads, який виділятиме вашу рекламу та залучатиме потенційних клієнтів. Цільова аудиторія:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу оголошення має бути:\n ##tone_language## \n\n"], - - ['id' => 1052, 'template_id' => 29, 'key' => "lt-LT", 'value' => "Parašykite Google Ads aprašą, kad jūsų skelbimas išsiskirtų ir pritrauktų potencialių klientų. Tikslinė auditorija:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Skelbimo balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 1053, 'template_id' => 29, 'key' => "bg-BG", 'value' => "Напишете описание в Google Ads, което прави рекламата ви да се откроява и генерира потенциални клиенти. Целева аудитория:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на рекламата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1054, 'template_id' => 30, 'key' => "en-US", 'value' => "Write problem-agitate-solution for the following product description:\n\n ##description## \n\nProduct name:\n ##title## \n\nTarget audience:\n ##audience## \n\n"], - - ['id' => 1055, 'template_id' => 30, 'key' => "ar-AE", 'value' => "اكتب حل المشكلات لوصف المنتج التالي:\n\n ##description## \n\n اسم المنتج و\n ##title## \n\n الجمهور المستهدف: \n ##audience## \n\n"], - - ['id' => 1056, 'template_id' => 30, 'key' => "cmn-CN", 'value' => "为以下产品描述编写问题解决方案:\n\n ##description## \nProduct name:\n ##title## \n\n 目标受众:\n ##audience## \n\n"], - - ['id' => 1057, 'template_id' => 30, 'key' => "hr-HR", 'value' => "Napišite problem-agitate-solution za sljedeći opis proizvoda:\n\n ##description## \n\nNaziv proizvoda:\n ##title## \n\nCiljana publika:\n ##audience## \n\n"], - - ['id' => 1058, 'template_id' => 30, 'key' => "cs-CZ", 'value' => "Napište problém-agitovat-řešení pro následující popis produktu:\n\n ##description## \n\n\Název produktu:\n ##title## \n\nCílové publikum:\n ##audience## \n\n"], - - ['id' => 1059, 'template_id' => 30, 'key' => "da-DK", 'value' => "Skriv problem-agitere-løsning til følgende produktbeskrivelse:\n\n ##description## \n\nProduktnavn:\n ##title## \n\nMålgruppe:\n ##audience## \n\n"], - - ['id' => 1060, 'template_id' => 30, 'key' => "nl-NL", 'value' => "Schrijf probleem-agitatie-oplossing voor de volgende productbeschrijving:\n\n ##description## \n\nProductnaam:\n ##title## \n\nDoelgroep:\n ##audience## \n\n"], - - ['id' => 1061, 'template_id' => 30, 'key' => "et-EE", 'value' => "Kirjutage probleem-agitate-lahendus järgmisele tootekirjeldusele:\n\n ##description## \n\nToote nimi:\n ##title## \n\nSihtpublik:\n ##audience## \n\n"], - - ['id' => 1062, 'template_id' => 30, 'key' => "fi-FI", 'value' => "Kirjoita ongelma-agitate-ratkaisu seuraavaan tuotekuvaukseen:\n\n ##description## \n\nTuotteen nimi:\n ##title## \n\nKohdeyleisö:\n ##audience## \n\n"], - - ['id' => 1063, 'template_id' => 30, 'key' => "fr-FR", 'value' => "Écrivez problem-agitate-solution pour la description de produit suivante :\n\n ##description## \n\nNom du produit :\n ##title## \n\nPublic cible :\n ##audience## \n\n"], - - ['id' => 1064, 'template_id' => 30, 'key' => "de-DE", 'value' => "Problem-agitate-solution für die folgende Produktbeschreibung schreiben:\n\n ##description## \n\nProduktname:\n ##title## \n\nZielgruppe:\n ##audience## \n\n"], - - ['id' => 1065, 'template_id' => 30, 'key' => "el-GR", 'value' => "Γράψτε πρόβλημα-ανακίνηση-λύση για την ακόλουθη περιγραφή προϊόντος:\n\n ##description## \n\nProduct name:\n ##title## \n\nΣτοχευόμενο κοινό:\n ##audience## \n\n"], - - ['id' => 1066, 'template_id' => 30, 'key' => "he-IL", 'value' => "כתוב פתרון לבעיה-ערעור עבור תיאור המוצר הבא:\n\n ##description## \n\שם המוצר:\n ##title## \n\nקהל יעד:\n ##audience## \n\n"], - - ['id' => 1067, 'template_id' => 30, 'key' => "hi-IN", 'value' => "निम्नलिखित उत्पाद विवरण के लिए समस्या-आंदोलन-समाधान लिखें:\n\n ##description## \n\nप्रोडक्ट का नाम:\n ##title## \n\nलक्षित दर्शक:\n ##audience## \n\n"], - - ['id' => 1068, 'template_id' => 30, 'key' => "hu-HU", 'value' => "Írjon probléma-agitáció-megoldást a következő termékleíráshoz:\n\n ##description## \n\nTerméknév:\n ##title## \n\nCélközönség:\n ##audience## \n\n"], - - ['id' => 1069, 'template_id' => 30, 'key' => "is-IS", 'value' => "Skrifaðu vandamál-agitate-lausn fyrir eftirfarandi vörulýsingu:\n\n ##description## \n\nVöruheiti:\n ##title## \n\nMarkhópur:\n ##audience## \n\n"], - - ['id' => 1070, 'template_id' => 30, 'key' => "id-ID", 'value' => "Tulis problem-agitate-solution untuk deskripsi produk berikut:\n\n ##description## \n\nNama produk:\n ##title## \n\nAudiens target:\n ##audience## \n\n"], - - ['id' => 1071, 'template_id' => 30, 'key' => "it-IT", 'value' => "Scrivi problem-agitate-solution per la seguente descrizione del prodotto:\n\n ##description## \n\nNome prodotto:\n ##title## \n\nPubblico di destinazione:\n ##audience## \n\n"], - - ['id' => 1072, 'template_id' => 30, 'key' => "ja-JP", 'value' => "次の製品説明について、問題 - 扇動 - 解決策を書いてください:\n\n ##description##\n\n商品名:\n ##title## \n\n対象視聴者:\n ##audience## \n\n"], - - ['id' => 1073, 'template_id' => 30, 'key' => "ko-KR", 'value' => "다음 제품 설명에 대한 문제-동요-해결책 쓰기:\n\n ##description## \n제품 이름:\및 \n##title## \n\n대상:\n ##audience## \n\n"], - - ['id' => 1074, 'template_id' => 30, 'key' => "ms-MY", 'value' => "Tulis problem-agitate-solution untuk penerangan produk berikut:\n\n ##description## \n\nNama produk:\n ##title## \n\nKhalayak sasaran:\n ##audience## \n\n"], - - ['id' => 1075, 'template_id' => 30, 'key' => "nb-NO", 'value' => "Skriv problem-agitere-løsning for følgende produktbeskrivelse:\n\n ##description## \n\nProduktnavn:\n ##title## \n\nMålgruppe:\n ##audience## \n\n"], - - ['id' => 1076, 'template_id' => 30, 'key' => "pl-PL", 'value' => "Napisz problem-agitate-solution dla następującego opisu produktu:\n\n ##description## \n\nNazwa produktu:\n ##title## \n\nDocelowi odbiorcy:\n ##audience## \n\n"], - - ['id' => 1077, 'template_id' => 30, 'key' => "pt-PT", 'value' => "Escrever problema-agitar-solução para a seguinte descrição do produto:\n\n ##description## \n\nNome do produto:\n ##title## \n\nPúblico-alvo:\n ##audience## \n\n"], - - ['id' => 1078, 'template_id' => 30, 'key' => "ru-RU", 'value' => "Напишите проблему-агитация-решение для следующего описания продукта:\n\n ##description## \n\nНазвание продукта:\n ##title## \n\nЦелевая аудитория:\n ##audience## \n\n"], - - ['id' => 1079, 'template_id' => 30, 'key' => "es-ES", 'value' => "Escriba problema-agitación-solución para la siguiente descripción del producto:\n\n ##description## \n\nNombre del producto:\n ##title## \n\nAudiencia objetivo:\n ##audience## \n\n"], - - ['id' => 1080, 'template_id' => 30, 'key' => "sv-SE", 'value' => "Skriv problem-agitera-lösning för följande produktbeskrivning:\n\n ##description## \n\nProduktnamn:\n ##title## \n\nMålgrupp:\n ##audience## \n\n"], - - ['id' => 1081, 'template_id' => 30, 'key' => "tr-TR", 'value' => "Aşağıdaki ürün açıklaması için problem-ajitasyon-çözüm yazın:\n\n ##description## \n\nÜrün adı:\n ##title## \n\nHedef kitle:\n ##audience## \n\n"], - - ['id' => 1082, 'template_id' => 30, 'key' => "pt-BR", 'value' => "Escrever problema-agitar-solução para a seguinte descrição do produto:\n\n ##description## \n\nNome do produto:\n ##title## \n\nPúblico-alvo:\n ##audience## \n\n"], - - ['id' => 1083, 'template_id' => 30, 'key' => "ro-RO", 'value' => "Scrieți problem-agitate-solution pentru următoarea descriere a produsului:\n\n ##description## \n\nNume produs:\n ##title## \n\nPublic țintă:\n ##audience## \n\n"], - - ['id' => 1084, 'template_id' => 30, 'key' => "vi-VN", 'value' => "Viết giải pháp kích động vấn đề cho phần mô tả sản phẩm sau:\n\n ##description## \n\nTên sản phẩm:\n ##title## \n\nĐối tượng mục tiêu:\n ##audience## \n\n"], - - ['id' => 1085, 'template_id' => 30, 'key' => "sw-KE", 'value' => "Andika utatuzi wa tatizo kwa maelezo yafuatayo ya bidhaa:\n\n ##description## \n\nJina la bidhaa:\n ##title## \n\nHadhira lengwa:\n ##audience## \n\n"], - - ['id' => 1086, 'template_id' => 30, 'key' => "sl-SI", 'value' => "Napišite problem-agitate-solution za naslednji opis izdelka:\n\n ##description## \n\nIme izdelka:\n##title## \n\nCiljna publika:\n ##audience## \n\n"], - - ['id' => 1087, 'template_id' => 30, 'key' => "th-TH", 'value' => "เขียนปัญหา-ปั่นป่วน-แก้ปัญหาสำหรับคำอธิบายผลิตภัณฑ์ต่อไปนี้:\n\n ##description## \n\nชื่อผลิตภัณฑ์:\n ##title## \n\nกลุ่มเป้าหมาย:\n ##audience## \n\n"], - - ['id' => 1088, 'template_id' => 30, 'key' => "uk-UA", 'value' => "Напишіть problem-agitate-solution для такого опису продукту:\n\n ##description## \n\nНазва продукту:\n ##title## \n\nЦільова аудиторія:\n ##audience## \n\n"], - - ['id' => 1089, 'template_id' => 30, 'key' => "lt-LT", 'value' => "Rašykite problemą-agituokite-sprendimą šiam gaminio aprašymui:\n\n ##description## \n\nProdukto pavadinimas:\n ##title## \n\nTikslinė auditorija:\n ##audience## \n\n"], - - ['id' => 1090, 'template_id' => 30, 'key' => "bg-BG", 'value' => "Напишете проблем-раздвижване-решение за следното описание на продукта:\n\n ##description## \nИме на продукта:\n ##title## \n\nЦелева аудитория:\n ##audience## \n\n"], - - ['id' => 1091, 'template_id' => 31, 'key' => "en-US", 'value' => "Write an academic essay about:\n\n ##title## \n\nUse following keywords in the essay:\n ##keywords## \n\nTone of voice of the essay must be:\n ##tone_language## \n\n"], - - ['id' => 1092, 'template_id' => 31, 'key' => "ar-AE", 'value' => "اكتب مقالًا أكاديميًا حول:\n\n ##title## \n\nاستخدم الكلمات الأساسية التالية في المقال:\n ##keywords## \n\nيجب أن تكون نغمة صوت المقال:\n ##tone_language## \n\n"], - - ['id' => 1093, 'template_id' => 31, 'key' => "cmn-CN", 'value' => "写一篇关于:\n\n”的学术论文 ##title## \n\n在文章中使用以下关键词:\n ##keywords## \n\n文章的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 1094, 'template_id' => 31, 'key' => "hr-HR", 'value' => "Napišite akademski esej o:\n\n ##title## \n\nKoristite sljedeće ključne riječi u eseju:\n ##keywords## \n\nTon glasa eseja mora biti:\n ##tone_language## \n\n"], - - ['id' => 1095, 'template_id' => 31, 'key' => "cs-CZ", 'value' =>"Napište akademickou esej o:\n\n ##title## \n\nV eseji použijte následující klíčová slova:\n ##keywords## \n\nTón hlasu eseje musí být:\n ##tone_language## \n\n"], - - ['id' => 1096, 'template_id' => 31, 'key' => "da-DK", 'value' => "Skriv et akademisk essay om:\n\n ##title## \n\nBrug følgende nøgleord i essayet:\n ##keywords## \n\nStemmetonen i essayet skal være:\n ##tone_language## \n\n"], - - ['id' => 1097, 'template_id' => 31, 'key' => "nl-NL", 'value' => "Schrijf een academisch essay over:\n\n ##title## \n\nGebruik de volgende trefwoorden in het essay:\n ##keywords## \n\nDe toon van het essay moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1098, 'template_id' => 31, 'key' => "et-EE", 'value' => "Kirjutage akadeemiline essee teemal:\n\n ##title## \n\nKasutage essees järgmisi märksõnu:\n ##keywords## \n\nEssee hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1099, 'template_id' => 31, 'key' => "fi-FI", 'value' => "Kirjoita akateeminen essee aiheesta:\n\n ##title## \n\nKäytä esseessä seuraavia avainsanoja:\n ##keywords## \n\nEsseen äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 1100, 'template_id' => 31, 'key' => "fr-FR", 'value' => "Rédigez une dissertation académique sur :\n\n ##title## \n\nUtilisez les mots clés suivants dans lessai :\n ##keywords## \n\nLe ton de la dissertation doit être :\n ##tone_language## \n\n"], - - ['id' => 1101, 'template_id' => 31, 'key' => "de-DE", 'value' => "Schreiben Sie einen akademischen Aufsatz über:\n\n ##title## \n\nVerwenden Sie folgende Schlüsselwörter im Aufsatz:\n ##keywords## \n\nTonlage des Aufsatzes muss sein:\n ##tone_language## \n\n"], - - ['id' => 1102, 'template_id' => 31, 'key' => "el-GR", 'value' => "Γράψτε ένα ακαδημαϊκό δοκίμιο για:\n\n ##title## \n\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στο δοκίμιο:\n ##keywords## \n\nΟ τόνος της φωνής του δοκιμίου πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1103, 'template_id' => 31, 'key' => "he-IL", 'value' => "כתוב חיבור אקדמי על:\n\n ##title## \n\nהשתמש במילות המפתח הבאות במאמר:\n ##keywords## \n\nטון הדיבור של החיבור חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1104, 'template_id' => 31, 'key' => "hi-IN", 'value' => "के बारे में एक अकादमिक निबंध लिखें:\n\n ##title## \n\nनिबंध में निम्नलिखित कीवर्ड का प्रयोग करें:\n ##keywords## \n\nनिबंध का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1105, 'template_id' => 31, 'key' => "hu-HU", 'value' => "Írjon tudományos esszét erről:\n\n ##title## \n\nHasználja a következő kulcsszavakat az esszében:\n ##keywords## \n\nAz esszé hangszínének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1106, 'template_id' => 31, 'key' => "is-IS", 'value' => "Skrifaðu fræðilega ritgerð um:\n\n ##title## \n\nNotaðu eftirfarandi lykilorð í ritgerðinni:\n ##keywords## \n\nTónn í ritgerðinni verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1107, 'template_id' => 31, 'key' => "id-ID", 'value' => "Tulis esai akademik tentang:\n\n ##title## \n\nGunakan kata kunci berikut dalam esai:\n ##keywords## \n\nNada suara esai harus:\n ##tone_language## \n\n"], - - ['id' => 1108, 'template_id' => 31, 'key' => "it-IT", 'value' => "Scrivi un saggio accademico su:\n\n ##title## \n\nUsa le seguenti parole chiave nel saggio:\n ##keywords## \n\nIl tono di voce del saggio deve essere:\n ##tone_language## \n\n"], - - ['id' => 1109, 'template_id' => 31, 'key' => "ja-JP", 'value' => "以下について学術論文を書きます:\n\n ##title## \n\nエッセイでは次のキーワードを使用してください:\n ##keywords## \n\nエッセイの口調は:\n ##tone_language## \n\n"], - - ['id' => 1110, 'template_id' => 31, 'key' => "ko-KR", 'value' => "다음에 대한 학술 에세이 쓰기:\n\n ##title## \n\n에세이에서 다음 키워드를 사용하십시오:\n ##keywords## \n\n에세이의 목소리 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 1111, 'template_id' => 31, 'key' => "ms-MY", 'value' => "Tulis esei akademik tentang:\n\n ##title## \n\nGunakan kata kunci berikut dalam esei:\n ##keywords## \n\nNada suara esei mestilah:\n ##tone_language## \n\n"], - - ['id' => 1112, 'template_id' => 31, 'key' => "nb-NO", 'value' => "Skriv et akademisk essay om:\n\n ##title## \n\nBruk følgende nøkkelord i essayet:\n ##keywords## \n\nTone i essayet må være:\n ##tone_language## \n\n"], - - ['id' => 1113, 'template_id' => 31, 'key' => "pl-PL", 'value' => "Napisz esej akademicki na temat:\n\n ##title## \n\nUżyj w eseju następujących słów kluczowych:\n ##keywords## \n\nTon wypowiedzi w eseju musi być:\n ##tone_language## \n\n"], - - ['id' => 1114, 'template_id' => 31, 'key' => "pt-PT", 'value' => "Escreva um ensaio acadêmico sobre:\n\n ##title## \n\nUse as seguintes palavras-chave no ensaio:\n ##keywords## \n\nTom de voz da redação deve ser:\n ##tone_language## \n\n"], - - ['id' => 1115, 'template_id' => 31, 'key' => "ru-RU", 'value' => "Напишите академическое эссе о:\n\n ##title## \n\nИспользуйте следующие ключевые слова в эссе:\n ##keywords## \n\nТон голоса эссе должен быть:\n ##tone_language## \n\n"], - - ['id' => 1116, 'template_id' => 31, 'key' => "es-ES", 'value' => "Escribe un ensayo académico sobre:\n\n ##title## \n\nUtilice las siguientes palabras clave en el ensayo:\n ##keywords## \n\nEl tono de voz del ensayo debe ser:\n ##tone_language## \n\n"], - - ['id' => 1117, 'template_id' => 31, 'key' => "sv-SE", 'value' => "Skriv en akademisk uppsats om:\n\n ##title## \n\nAnvänd följande nyckelord i uppsatsen:\n ##keywords## \n\nRösten i uppsatsen måste vara:\n ##tone_language## \n\n"], - - ['id' => 1118, 'template_id' => 31, 'key' => "tr-TR", 'value' => "Şunun hakkında akademik bir makale yazın:\n\n ##title## \n\nMakalede şu anahtar kelimeleri kullanın:\n ##keywords## \n\nYazının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 1119, 'template_id' => 31, 'key' => "pt-BR", 'value' => "Escreva um ensaio acadêmico sobre:\n\n ##title## \n\nUse as seguintes palavras-chave no ensaio:\n ##keywords## \n\nTom de voz da redação deve ser:\n ##tone_language## \n\n"], - - ['id' => 1120, 'template_id' => 31, 'key' => "ro-RO", 'value' => "Scrieți un eseu academic despre:\n\n ##title## \n\nFolosiți următoarele cuvinte cheie în eseu:\n ##keywords## \n\nTonul vocii al eseului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1121, 'template_id' => 31, 'key' => "vi-VN", 'value' => "Viết một bài luận học thuật về:\n\n ##title## \n\nSử dụng các từ khóa sau trong bài luận:\n ##keywords## \n\nGiọng điệu của bài luận phải:\n ##tone_language## \n\n"], - - ['id' => 1122, 'template_id' => 31, 'key' => "sw-KE", 'value' => "Andika insha ya kitaaluma kuhusu:\n\n ##title## \n\nTumia manenomsingi yafuatayo katika insha:\n ##keywords## \n\nToni ya sauti ya insha lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1123, 'template_id' => 31, 'key' => "sl-SI", 'value' => "Napišite akademski esej o:\n\n ##title## \n\nV eseju uporabite naslednje ključne besede:\n ##keywords## \n\nTon glasu eseja mora biti:\n ##tone_language## \n\n"], - - ['id' => 1124, 'template_id' => 31, 'key' => "th-TH", 'value' => "เขียนเรียงความเชิงวิชาการเกี่ยวกับ:\n\n ##title## \n\nใช้คำหลักต่อไปนี้ในเรียงความ:\n ##keywords## \n\nน้ำเสียงของเรียงความต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1125, 'template_id' => 31, 'key' => "uk-UA", 'value' => "Напишіть науковий твір про:\n\n ##title## \n\nВикористовуйте такі ключові слова в есе:\n ##keywords## \n\nТон есе має бути:\n ##tone_language## \n\n"], - - ['id' => 1126, 'template_id' => 31, 'key' => "lt-LT", 'value' => "Parašykite akademinį rašinį apie:\n\n ##title## \n\nRašinyje naudokite šiuos raktinius žodžius:\n ##keywords## \n\nEsė balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 1127, 'template_id' => 31, 'key' => "bg-BG", 'value' => "Напишете академично есе за:\n\n ##title## \n\nИзползвайте следните ключови думи в есето:\n ##keywords## \n\nТонът на есето трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1128, 'template_id' => 32, 'key' => "en-US", 'value' => "Write a welcome email about:\n\n ##description## \n\nOur company or product name is:\n ##title## \n\nTarget audience is:\n ##keywords## \n\nTone of voice of the welcome email must be:\n ##tone_language## \n\n"], - - ['id' => 1129, 'template_id' => 32, 'key' => "ar-AE", 'value' => "اكتب بريدًا إلكترونيًا ترحيبيًا عن:\n\n ##description## \n\nاسم الشركة أو المنتج هو:\n ##title## \n\nالجمهور المستهدف هو:\n ##keywords## \n\n يجب أن تكون نغمة صوت البريد الإلكتروني الترحيبي:\n ##tone_language## \n\n"], - - ['id' => 1130, 'template_id' => 32, 'key' => "cmn-CN", 'value' => "写一封关于以下内容的欢迎电子邮件:\n\n ##description## \n\n我们的公司或产品名称是:\n ##title## \n\n目标受众是:\n ##keywords## \n\n欢迎邮件的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 1131, 'template_id' => 32, 'key' => "hr-HR", 'value' => "Napišite poruku dobrodošlice o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nCiljana publika je:\n ##keywords## \n\nTon glasa e-pošte dobrodošlice mora biti:\n ##tone_language## \n\n"], - - ['id' => 1132, 'template_id' => 32, 'key' => "cs-CZ", 'value' => "Napišite poruku dobrodošlice o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nCiljana publika je:\n ##keywords## \n\nTon glasa e-pošte dobrodošlice mora biti:\n ##tone_language## \n\n"], - - ['id' => 1133, 'template_id' => 32, 'key' => "da-DK", 'value' => "Skriv en velkomstmail om:\n\n ##description## \n\nVores firma- eller produktnavn er:\n ##title## \n\nMålgruppe er:\n ##keywords## \n\nTone i velkomstmailen skal være:\n ##tone_language## \n\n"], - - ['id' => 1134, 'template_id' => 32, 'key' => "nl-NL", 'value' => "Schrijf een welkomstmail over:\n\n ##description## \n\nOnze bedrijfs- of productnaam is:\n ##title## \n\nDoelgroep is:\n ##keywords## \n\nDe toon van de welkomstmail moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1135, 'template_id' => 32, 'key' => "et-EE", 'value' => "Kirjutage tervitusmeil teemal:\n\n ##description## \n\nMeie ettevõtte või toote nimi on:\n ##title## \n\nSihtpublik on:\n ##keywords## \n\nTervitusmeili hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1136, 'template_id' => 32, 'key' => "fi-FI", 'value' => "Kirjoita tervetuloa sähköposti aiheesta:\n\n ##description## \n\nYrityksemme tai tuotteemme nimi on:\n ##title## \n\nKohdeyleisö on:\n ##keywords## \n\nTervetuloviestin äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 1137, 'template_id' => 32, 'key' => "fr-FR", 'value' => "Écrivez un e-mail de bienvenue à propos de :\n\n ##description## \n\nLe nom de notre entreprise ou de notre produit est :\n ##title## \n\nLe public cible est :\n ##keywords## \n\nLe ton de la voix de l'e-mail de bienvenue doit être :\n ##tone_language## \n\n"], - - ['id' => 1138, 'template_id' => 32, 'key' => "de-DE", 'value' => "Willkommens-E-Mail schreiben über:\n\n ##description## \n\nUnser Firmen- oder Produktname lautet:\n ##title## \n\nZielpublikum ist:\n ##keywords## \n\nTonfall der Willkommens-E-Mail muss sein:\n ##tone_language## \n\n"], - - ['id' => 1139, 'template_id' => 32, 'key' => "el-GR", 'value' => "Γράψτε ένα email καλωσορίσματος σχετικά με:\n\n ##description## \n\nΗ εταιρεία ή το όνομα του προϊόντος μας είναι:\n ##title## \n\nΤο κοινό-στόχος είναι:\n ##keywords## \n\nΟ τόνος της φωνής του email καλωσορίσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1140, 'template_id' => 32, 'key' => "he-IL", 'value' => "כתוב הודעת קבלת פנים על:\n\n ##description## \n\nשם החברה או המוצר שלנו הוא:\n ##title## \n\nקהל היעד הוא:\n ##keywords## \n\nנימת הקול של הודעת קבלת הפנים חייבת להיות:\n ##tone_language## \n\n"], - - ['id' => 1141, 'template_id' => 32, 'key' => "hi-IN", 'value' => "इस बारे में एक स्वागत योग्य ईमेल लिखें:\n\n ##description## \n\nहमारी कंपनी या उत्पाद का नाम है:\n ##title## \n\nलक्षित दर्शक हैं:\n ##keywords## \n\nस्वागत ईमेल का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1142, 'template_id' => 32, 'key' => "hu-HU", 'value' => "Írjon üdvözlő e-mailt erről:\n\n ##description## \n\nCégünk vagy termékünk neve:\n ##title## \n\nA célközönség:\n ##keywords## \n\nAz üdvözlő e-mail hangjának a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1143, 'template_id' => 32, 'key' => "is-IS", 'value' => "Skrifaðu velkominn tölvupóst um:\n\n ##description## \n\nFyrirtækis eða vöruheiti okkar er:\n ##title## \n\nMarkhópur er:\n ##keywords## \n\nTónn í móttökupóstinum verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1144, 'template_id' => 32, 'key' => "id-ID", 'value' => "Tulis email selamat datang tentang:\n\n ##description## \n\nNama perusahaan atau produk kami adalah:\n ##title## \n\nTarget audiens adalah:\n ##keywords## \n\nNada suara email selamat datang harus:\n ##tone_language## \n\n"], - - ['id' => 1145, 'template_id' => 32, 'key' => "it-IT", 'value' => "Scrivi un'e-mail di benvenuto su:\n\n ##description## \n\nIl nome della nostra azienda o prodotto è:\n ##title## \n\nIl pubblico di destinazione è:\n ##keywords## \n\nIl tono della mail di benvenuto deve essere:\n ##tone_language## \n\n"], - - ['id' => 1146, 'template_id' => 32, 'key' => "ja-JP", 'value' => "ウェルカム メールを書いてください:\n\n ##description## \n\n当社または製品名は次のとおりです:\n ##title## \n\n対象者:\n ##keywords## \n\nウェルカム メールのトーンは次のようにする必要があります:\n ##tone_language## \n\n"], - - ['id' => 1147, 'template_id' => 32, 'key' => "ko-KR", 'value' => "다음에 대한 환영 이메일 작성:\n\n ##description## \n\n저희 회사 또는 제품 이름은:\n ##title## \n\n대상은:\n ##keywords## \n\n환영 이메일의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 1148, 'template_id' => 32, 'key' => "ms-MY", 'value' => "Tulis e-mel alu-aluan tentang:\n\n ##description## \n\nNama syarikat atau produk kami ialah:\n ##title## \n\nKhalayak sasaran ialah:\n ##keywords## \n\nNada suara e-mel alu-aluan mestilah:\n ##tone_language## \n\n"], - - ['id' => 1149, 'template_id' => 32, 'key' => "nb-NO", 'value' => "Skriv en velkomst-e-post om:\n\n ##description## \n\nVårt firma eller produktnavn er:\n ##title## \n\nMålgruppen er:\n ##keywords## \n\nStemmetonen i velkomst-e-posten må være:\n ##tone_language## \n\n"], - - ['id' => 1150, 'template_id' => 32, 'key' => "pl-PL", 'value' => "Napisz powitalną wiadomość e-mail na temat:\n\n ##description## \n\nNazwa naszej firmy lub produktu to:\n ##title## \n\nDocelowi odbiorcy to:\n ##keywords## \n\nTon powitalnego e-maila musi być:\n ##tone_language## \n\n"], - - ['id' => 1151, 'template_id' => 32, 'key' => "pt-PT", 'value' => "Escreva um e-mail de boas-vindas sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de boas-vindas deve ser:\n ##tone_language## \n\n"], - - ['id' => 1152, 'template_id' => 32, 'key' => "ru-RU", 'value' => "Напишите приветственное письмо о:\n\n ##description## \n\nНазвание нашей компании или продукта:\n ##title## \n\nЦелевая аудитория:\n ##keywords## \n\nТон приветственного письма должен быть:\n ##tone_language## \n\n"], - - ['id' => 1153, 'template_id' => 32, 'key' => "es-ES", 'value' => "Escribe un correo electrónico de bienvenida sobre:\n\n ##description## \n\nEl nombre de nuestra empresa o producto es:\n ##title## \n\nEl público objetivo es:\n ##keywords## \n\nEl tono de voz del email de bienvenida debe ser:\n ##tone_language## \n\n"], - - ['id' => 1154, 'template_id' => 32, 'key' => "sv-SE", 'value' => "Skriv ett välkomstmail om:\n\n ##description## \n\nVårt företag eller produktnamn är:\n ##title## \n\nMålgruppen är:\n ##keywords## \n\nRösten i välkomstmeddelandet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1155, 'template_id' => 32, 'key' => "tr-TR", 'value' => "Şunun hakkında bir karşılama e-postası yazın:\n\n ##description## \n\nŞirketimizin veya ürünümüzün adı:\n ##title## \n\nHedef kitle:\n ##keywords## \n\nKarşılama e-postasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 1156, 'template_id' => 32, 'key' => "pt-BR", 'value' => "Escreva um e-mail de boas-vindas sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de boas-vindas deve ser:\n ##tone_language## \n\n"], - - ['id' => 1157, 'template_id' => 32, 'key' => "ro-RO", 'value' => "Scrieți un e-mail de bun venit despre:\n\n ##description## \n\nNumele companiei sau al produsului nostru este:\n ##title## \n\nPublicul țintă este:\n ##keywords## \n\nTonul vocii al e-mailului de bun venit trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1158, 'template_id' => 32, 'key' => "vi-VN", 'value' => "Viết email chào mừng về:\n\n ##description## \n\nTên sản phẩm hoặc công ty của chúng tôi là:\n ##title## \n\nĐối tượng mục tiêu là:\n ##keywords## \n\nGiọng điệu của email chào mừng phải là:\n ##tone_language## \n\n"], - - ['id' => 1159, 'template_id' => 32, 'key' => "sw-KE", 'value' => "Andika barua pepe ya kukaribisha kuhusu:\n\n ##description## \n\nJina la kampuni au bidhaa yetu ni:\n ##title## \n\nHadhira inayolengwa ni:\n ##keywords## \n\nToni ya sauti ya barua pepe ya kukaribisha lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1160, 'template_id' => 32, 'key' => "sl-SI", 'value' => "Napišite pozdravno e-pošto o:\n\n ##description## \n\nIme našega podjetja ali izdelka je:\n ##title## \n\nCiljna publika je:\n ##keywords## \n\nTon glasu pozdravnega e-poštnega sporočila mora biti:\n ##tone_language## \n\n"], - - ['id' => 1161, 'template_id' => 32, 'key' => "th-TH", 'value' => "เขียนอีเมลต้อนรับเกี่ยวกับ:\n\n ##description## \n\nชื่อบริษัทหรือผลิตภัณฑ์ของเราคือ:\n ##title## \n\nกลุ่มเป้าหมายคือ:\n ##keywords## \n\nเสียงของอีเมลต้อนรับต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1162, 'template_id' => 32, 'key' => "uk-UA", 'value' => "Напишіть вітальний лист про:\n\n ##description## \n\nНазва нашої компанії або продукту:\n ##title## \n\nЦільова аудиторія:\n ##keywords## \n\nТон привітального листа має бути:\n ##tone_language## \n\n"], - - ['id' => 1163, 'template_id' => 32, 'key' => "lt-LT", 'value' => "Parašykite sveikinimo laišką apie:\n\n ##description## \n\nMūsų įmonės arba produkto pavadinimas yra:\n ##title## \n\nTikslinė auditorija yra:\n ##keywords## \n\nPasveikinimo el. laiško balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 1164, 'template_id' => 32, 'key' => "bg-BG", 'value' => "Напишете приветствен имейл за:\n\n ##description## \n\nИмето на нашата компания или продукт е:\n ##title## \n\nЦелевата аудитория е:\n ##keywords## \n\nТонът на приветствения имейл трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1165, 'template_id' => 33, 'key' => "en-US", 'value' => "Write a cold email about:\n\n ##description## \n\nOur company or product name is:\n ##title## \n\nContext to include in the cold email:\n ##keywords## \n\nTone of voice of the cold email must be:\n ##tone_language## \n\n"], - - ['id' => 1166, 'template_id' => 33, 'key' => "ar-AE", 'value' => "اكتب بريدًا إلكترونيًا باردًا حول:\n\n ##description## \n\nاسم الشركة أو المنتج هو:\n ##title## \n\nالسياق المراد تضمينه في البريد الإلكتروني البارد:\n ##keywords## \n\nيجب أن تكون نغمة صوت البريد الإلكتروني البارد:\n ##tone_language## \n\n"], - - ['id' => 1167, 'template_id' => 33, 'key' => "cmn-CN", 'value' => "写一封冷电子邮件:\n\n ##description## \n\n我们的公司或产品名称是:\n ##title## \n\n要包含在冷电子邮件中的上下文:\n ##keywords## \n\n冷邮件的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 1168, 'template_id' => 33, 'key' => "hr-HR", 'value' => "Napišite hladnu e-poštu o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nKontekst za uključivanje u hladnu e-poštu:\n ##keywords## \n\nTon glasa hladne e-pošte mora biti:\n ##tone_language## \n\n"], - - ['id' => 1169, 'template_id' => 33, 'key' => "cs-CZ", 'value' => "Napište chladný e-mail o:\n\n ##description## \n\nNázev naší společnosti nebo produktu je:\n ##title## \n\nKontext, který se má zahrnout do studeného e-mailu:\n ##keywords## \n\nTón hlasu chladného e-mailu musí být:\n ##tone_language## \n\n"], - - ['id' => 1170, 'template_id' => 33, 'key' => "da-DK", 'value' => "Skriv en kold e-mail om:\n\n ##description## \n\nVores firma- eller produktnavn er:\n ##title## \n\nKontekst, der skal inkluderes i den kolde e-mail:\n ##keywords## \n\nTone i den kolde e-mail skal være:\n ##tone_language## \n\n"], - - ['id' => 1171, 'template_id' => 33, 'key' => "nl-NL", 'value' => "Schrijf een koude e-mail over:\n\n ##description## \n\nOnze bedrijfs- of productnaam is:\n ##title## \n\nContext om op te nemen in de koude e-mail:\n ##keywords## \n\nDe toon van de koude e-mail moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1172, 'template_id' => 33, 'key' => "et-EE", 'value' => "Kirjutage külma meili teemal:\n\n ##description## \n\nMeie ettevõtte või toote nimi on:\n ##title## \n\nKülmasse meili lisatav kontekst:\n ##keywords## \n\nKülma meili hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1173, 'template_id' => 33, 'key' => "fi-FI", 'value' => "Kirjoita kylmä sähköposti aiheesta:\n\n ##description## \n\nYrityksemme tai tuotteemme nimi on:\n ##title## \n\nKonteksti sisällytettäväksi kylmään sähköpostiin:\n ##keywords## \n\nKylmän sähköpostin äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 1174, 'template_id' => 33, 'key' => "fr-FR", 'value' => "Écrivez un e-mail froid à propos de :\n\n ##description## \n\nLe nom de notre entreprise ou de notre produit est :\n ##title## \n\nContexte à inclure dans le cold email :\n ##keywords## \n\nLe ton de la voix de l'e-mail froid doit être :\n ##tone_language## \n\n"], - - ['id' => 1175, 'template_id' => 33, 'key' => "de-DE", 'value' => "Schreiben Sie eine kalte E-Mail über:\n\n ##description## \n\nUnser Firmen- oder Produktname lautet:\n ##title## \n\nIn die Cold-E-Mail aufzunehmender Kontext:\n ##keywords## \n\nTonfall der kalten E-Mail muss sein:\n ##tone_language## \n\n"], - - ['id' => 1176, 'template_id' => 33, 'key' => "el-GR", 'value' => "Γράψτε ένα κρύο email για:\n\n ##description## \n\nΗ εταιρεία ή το όνομα του προϊόντος μας είναι:\n 117title## \n\nΠλαίσιο που θα συμπεριληφθεί στο κρύο email:\n ##keywords## \n\nΟ τόνος της φωνής του κρύου email πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1177, 'template_id' => 33, 'key' => "he-IL", 'value' => "כתוב אימייל קר על:\n\n ##description## \n\nשם החברה או המוצר שלנו הוא:\n ##title## \n\nהקשר לכלול בדוא הקר:\n ##keywords## \n\nטון הדיבור של האימייל הקר חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1178, 'template_id' => 33, 'key' => "hi-IN", 'value' => "इस बारे में एक ठंडा ईमेल लिखें:\n\n ##description## \n\nहमारी कंपनी या उत्पाद का नाम है:\n ##title## \n\nकोल्ड ईमेल में शामिल करने के लिए प्रसंग:\n ##keywords## \n\nठंडे ईमेल की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1179, 'template_id' => 33, 'key' => "hu-HU", 'value' => "Írjon hideg e-mailt erről:\n\n ##description## \n\nCégünk vagy termékünk neve:\n ##title## \n\nA hideg e-mailben szereplő kontextus:\n ##keywords## \n\nA hideg e-mail hangszínének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1180, 'template_id' => 33, 'key' => "is-IS", 'value' => "Skrifaðu kalt tölvupóst um:\n\n ##description## \n\nFyrirtækis eða vöruheiti okkar er:\n ##title## \n\nSamhengi til að hafa með í kalda tölvupóstinum:\n ##keywords## \n\nTónn í kalda tölvupóstinum verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1181, 'template_id' => 33, 'key' => "id-ID", 'value' => "Tulis email dingin tentang:\n\n ##description## \n\nNama perusahaan atau produk kami adalah:\n ##title## \n\nKonteks untuk disertakan dalam email dingin:\n ##keywords## \n\nNada suara email dingin harus:\n ##tone_language## \n\n"], - - ['id' => 1182, 'template_id' => 33, 'key' => "it-IT", 'value' => "Scrivi una fredda email su:\n\n ##description## \n\nIl nome della nostra azienda o prodotto è:\n ##title## \n\nContesto da includere nell'email fredda:\n ##keywords## \n\nIl tono di voce dell'email fredda deve essere:\n ##tone_language## \n\n"], - - ['id' => 1183, 'template_id' => 33, 'key' => "ja-JP", 'value' => "以下についての冷たいメールを書いてください:\n\n ##description## \n\n当社または製品名は次のとおりです:\n ##title## \n\nコールド メールに含めるコンテキスト:\n ##keywords## \n\nコールド メールのトーンは次のとおりです:\n ##tone_language## \n\n"], - - ['id' => 1184, 'template_id' => 33, 'key' => "ko-KR", 'value' => "다음에 대한 콜드 이메일 작성:\n\n ##description## \n\n저희 회사 또는 제품 이름은:\n ##title## \n\n콜드 이메일에 포함할 컨텍스트:\n ##keywords## \n\n콜드 이메일의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 1185, 'template_id' => 33, 'key' => "ms-MY", 'value' => "Tulis e-mel sejuk tentang:\n\n ##description## \n\nNama syarikat atau produk kami ialah:\n ##title## \n\nKonteks untuk disertakan dalam e-mel sejuk:\n ##keywords## \n\nNada suara e-mel sejuk mestilah:\n ##tone_language## \n\n"], - - ['id' => 1186, 'template_id' => 33, 'key' => "nb-NO", 'value' => "Skriv en kald e-post om:\n\n ##description## \n\nVårt firma eller produktnavn er:\n ##title## \n\nKontekst som skal inkluderes i den kalde e-posten:\n ##keywords## \n\nStemmetonen til den kalde e-posten må være:\n ##tone_language## \n\n"], - - ['id' => 1187, 'template_id' => 33, 'key' => "pl-PL", 'value' => "Napisz zimny e-mail na temat:\n\n ##description## \n\nNazwa naszej firmy lub produktu to:\n ##title## \n\nKontekst do uwzględnienia w zimnej wiadomości e-mail:\n ##keywords## \n\nTon zimnej wiadomości e-mail musi być:\n ##tone_language## \n\n"], - - ['id' => 1188, 'template_id' => 33, 'key' => "pt-PT", 'value' => "Escreva um e-mail frio sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nContexto para incluir no e-mail frio:\n ##keywords## \n\nTom de voz do e-mail frio deve ser:\n ##tone_language## \n\n"], - - ['id' => 1189, 'template_id' => 33, 'key' => "ru-RU", 'value' => "Напишите холодное электронное письмо о:\n\n ##description## \n\nНазвание нашей компании или продукта:\n ##title## \n\nКонтекст для включения в холодное электронное письмо:\n ##keywords## \n\nТон голоса холодного письма должен быть:\n ##tone_language## \n\n"], - - ['id' => 1190, 'template_id' => 33, 'key' => "es-ES", 'value' => "Escribe un correo electrónico frío sobre:\n\n ##description## \n\nEl nombre de nuestra empresa o producto es:\n ##title## \n\nContexto para incluir en el correo electrónico frío:\n ##keywords## \n\nEl tono de voz del correo frío debe ser:\n ##tone_language## \n\n"], - - ['id' => 1191, 'template_id' => 33, 'key' => "sv-SE", 'value' => "Skriv ett kallt e-postmeddelande om:\n\n ##description## \n\nVårt företag eller produktnamn är:\n ##title## \n\nKontext att inkludera i det kalla e-postmeddelandet:\n ##keywords## \n\nTonfallet för det kalla e-postmeddelandet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1192, 'template_id' => 33, 'key' => "tr-TR", 'value' => "10 akılda kalıcı blog başlığı oluşturun:\n\n ##description## \n\n'Şirketimizin veya ürünümüzün adı:\n ##title## \n\nSoğuk e-postaya eklenecek içerik:\n ##keywords## \n\nSoğuk e-postanın ses tonu şöyle olmalı:\n ##tone_language## \n\n"], - - ['id' => 1193, 'template_id' => 33, 'key' => "pt-BR", 'value' => "Escreva um e-mail frio sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nContexto para incluir no e-mail frio:\n ##keywords## \n\nTom de voz do e-mail frio deve ser:\n ##tone_language## \n\n"], - - ['id' => 1194, 'template_id' => 33, 'key' => "ro-RO", 'value' => "Scrieți un e-mail rece despre:\n\n ##description## \n\nNumele companiei sau al produsului nostru este:\n ##title## \n\nContext de inclus în e-mailul rece:\n ##keywords## \n\nTonul de voce al e-mailului rece trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1195, 'template_id' => 33, 'key' => "vi-VN", 'value' => "Viết một email lạnh nhạt về:\n\n ##description## \n\nTên sản phẩm hoặc công ty của chúng tôi là:\n ##title## \n\nBối cảnh bao gồm trong email lạnh:\n ##keywords## \n\nGiọng nói của email lạnh phải là:\n ##tone_language## \n\n"], - - ['id' => 1196, 'template_id' => 33, 'key' => "sw-KE", 'value' => "Andika barua pepe baridi kuhusu:\n\n ##description## \n\nJina la kampuni au bidhaa yetu ni:\n ##title## \n\nMuktadha wa kujumuisha katika barua pepe baridi:\n ##keywords## \n\nToni ya sauti ya barua pepe baridi lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1197, 'template_id' => 33, 'key' => "sl-SI", 'value' => "Napišite hladno e-pošto o:\n\n ##description## \n\nIme našega podjetja ali izdelka je:\n ##title## \n\nKontekst za vključitev v hladno e-pošto:\n ##keywords## \n\nTon glasu hladnega e-poštnega sporočila mora biti:\n ##tone_language## \n\n"], - - ['id' => 1198, 'template_id' => 33, 'key' => "th-TH", 'value' => "เขียนอีเมลเกี่ยวกับ:\n\n ##description## \n\nชื่อบริษัทหรือผลิตภัณฑ์ของเราคือ:\n ##title## \n\nบริบทที่จะรวมไว้ในอีเมลเย็น:\n ##keywords## \n\nน้ำเสียงของอีเมลเย็นต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1199, 'template_id' => 33, 'key' => "uk-UA", 'value' => "Напишіть холодний електронний лист про:\n\n ##description## \n\nНазва нашої компанії або продукту:\n ##title## \n\nКонтекст для включення в холодний електронний лист:\n ##keywords## \n\nТон холодного електронного листа має бути:\n ##tone_language## \n\n"], - - ['id' => 1200, 'template_id' => 33, 'key' => "lt-LT", 'value' => "Parašykite šaltą el. laišką apie:\n\n ##description## \n\nMūsų įmonės arba produkto pavadinimas yra:\n ##title## \n\nKontekstas, kurį reikia įtraukti į šaltą el. laišką:\n ##keywords## \n\nŠalto el. laiško balso tonas turi būti:\n ##tone_language## \n\n" ], - - ['id' => 1201, 'template_id' => 33, 'key' => "bg-BG", 'value' => "Напишете студен имейл за:\n\n ##description## \n\nИмето на нашата компания или продукт е:\n ##title## \n\nКонтекст за включване в студения имейл:\n ##keywords## \n\nТонът на гласа на студения имейл трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1202, 'template_id' => 34, 'key' => "en-US", 'value' => "Write a follow up email about:\n\n ##description## \n\nOur company or product name is:\n ##title## \n\nFollowing up after:\n ##event## \n\nTarget audience is:\n ##keywords## \n\nTone of voice of the follow up email must be:\n ##tone_language## \n\n"], - - ['id' => 1203, 'template_id' => 34, 'key' => "ar-AE", 'value' => "اكتب رسالة متابعة بالبريد الإلكتروني حول:\n\n ##description## \n\nاسم الشركة أو المنتج هو:\n ##title## \n\nالمتابعة بعد:\n##event## \n\nالجمهور المستهدف هو:\n ##keywords## \n\nيجب أن تكون نغمة الصوت في رسالة البريد الإلكتروني للمتابعة:\n ##tone_language## \n\n"], - - ['id' => 1204, 'template_id' => 34, 'key' => "cmn-CN", 'value' => "写一封跟进电子邮件:\n\n ##description## \n\n我们的公司或产品名称是:\n ##title## \n\n跟进之后:\n ##event## \n\n目标受众是:\n ##keywords## \n\n跟进邮件的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 1205, 'template_id' => 34, 'key' => "hr-HR", 'value' => "Napišite naknadnu e-poruku o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nSljedeće nakon:\n ##event## \n\nCiljana publika je:\n ##keywords## \n\nTon glasa dodatne e-pošte mora biti:\n ##tone_language## \n\n"], - - ['id' => 1206, 'template_id' => 34, 'key' => "cs-CZ", 'value' => "Napište následný e-mail o:\n\n ##description## \n\nNázev naší společnosti nebo produktu je:\n ##title## \n\nSledování po:\n ##event## \n\nCílové publikum je:\n ##keywords## \n\nTón hlasu následného e-mailu musí být:\n ##tone_language## \n\n"], - - ['id' => 1207, 'template_id' => 34, 'key' => "da-DK", 'value' => "Skriv en opfølgningsmail om:\n\n ##description## \n\nVores firma- eller produktnavn er:\n ##title## \n\nOpfølgning efter:\n ##event## \n\nMålgruppe er:\n ##keywords## \n\nTone i opfølgnings-e-mailen skal være:\n ##tone_language## \n\n"], - - ['id' => 1208, 'template_id' => 34, 'key' => "nl-NL", 'value' => "Schrijf een vervolgmail over:\n\n ##description## \n\nOnze bedrijfs- of productnaam is:\n ##title## \n\nOpvolging na:\n ##event## \n\nDoelgroep is:\n ##keywords## \n\nDe toon van de vervolgmail moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1209, 'template_id' => 34, 'key' => "et-EE", 'value' => "Kirjutage järelmeil teemal:\n\n ##description## \n\nMeie ettevõtte või toote nimi on:\n ##title## \n\nJälgimine pärast:\n ##event## \n\nSihtpublik on:\n ##keywords## \n\nJärelmeili hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1210, 'template_id' => 34, 'key' => "fi-FI", 'value' => "Kirjoita seurantasähköposti aiheesta:\n\n ##description## \n\nYrityksemme tai tuotteemme nimi on:\n ##title## \n\nSeurataan tämän jälkeen:\n ##event## \n\nKohdeyleisö on:\n ##keywords## \n\nSeurantaviestin äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 1211, 'template_id' => 34, 'key' => "fr-FR", 'value' => "Rédigez un e-mail de suivi concernant :\n\n ##description## \n\nLe nom de notre entreprise ou de notre produit est :\n ##title## \n\nSuivi après :\n ##event## \n\nLe public cible est :\n ##keywords## \n\nLe ton de la voix de l'e-mail de suivi doit être :\n ##tone_language## \n\n"], - - ['id' => 1212, 'template_id' => 34, 'key' => "de-DE", 'value' => "Schreiben Sie eine Folge-E-Mail zu:\n\n ##description## \n\nUnser Firmen- oder Produktname lautet:\n ##title## \n\nNachverfolgung nach:\n ##event## \n\nZielpublikum ist:\n ##keywords## \n\nTonfall der Folge-E-Mail muss sein:\n ##tone_language## \n\n"], - - ['id' => 1213, 'template_id' => 34, 'key' => "el-GR", 'value' => "Γράψτε ένα επόμενο μήνυμα ηλεκτρονικού ταχυδρομείου σχετικά με:\n\n ##description## \n\nΗ εταιρεία ή το όνομα του προϊόντος μας είναι:\n ##title## \n\nΣυνέχεια μετά:\n ##event## \n\nΤο κοινό-στόχος είναι:\n ##keywords## \n\nΟ τόνος της φωνής του επόμενου email πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1214, 'template_id' => 34, 'key' => "he-IL", 'value' => "כתוב אימייל מעקב על:\n\n ##description## \n\nשם החברה או המוצר שלנו הוא:\n ##title## \n\nמעקב אחרי:\n ##event## \n\nקהל היעד הוא:\n ##keywords## \n\nטון הדיבור של דואל המעקב חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1215, 'template_id' => 34, 'key' => "hi-IN", 'value' => "इस बारे में एक अनुवर्ती ईमेल लिखें:\n\n ##description## \n\nहमारी कंपनी या उत्पाद का नाम है:\n ##title## \n\nइसके बाद:\n ##event## \n\nलक्षित दर्शक हैं:\n ##keywords## \n\nफ़ॉलो अप ईमेल का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1216, 'template_id' => 34, 'key' => "hu-HU", 'value' => "Írjon e-mailt a következőről:\n\n ##description## \n\nCégünk vagy termékünk neve:\n ##title## \n\nKövetés a következő után:\n ##event## \n\nA célközönség:\n ##keywords## \n\nA követő e-mail hangszínének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1217, 'template_id' => 34, 'key' => "is-IS", 'value' => "Skrifaðu eftirfylgnipóst um:\n\n ##description## \n\nFyrirtækis eða vöruheiti okkar er:\n ##title## \n\nFylgst með eftir:\n ##event## \n\nMarkhópur er:\n ##keywords## \n\nTónn í eftirfylgnipóstinum verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1218, 'template_id' => 34, 'key' => "id-ID", 'value' => "Tulis email tindak lanjut tentang:\n\n ##description## \n\nNama perusahaan atau produk kami adalah:\n ##title## \n\nMenindaklanjuti setelah:\n ##event## \n\nTarget audiens adalah:\n ##keywords## \n\nNada suara email tindak lanjut harus:\n ##tone_language## \n\n"], - - ['id' => 1219, 'template_id' => 34, 'key' => "it-IT", 'value' => "Scrivi un'email di follow-up su:\n\n ##description## \n\nIl nome della nostra azienda o prodotto è:\n ##title## \n\nFollow up dopo:\n ##event## \n\nIl pubblico di destinazione è:\n ##keywords## \n\nIl tono di voce dell'email di follow-up deve essere:\n ##tone_language## \n\n"], - - ['id' => 1220, 'template_id' => 34, 'key' => "ja-JP", 'value' => "フォローアップのメールを書いてください:\n\n ##description## \n\n当社または製品名は次のとおりです:\n ##title## \n\nフォローアップ:\n ##event## \n\n対象者:\n ##keywords## \n\nフォローアップ メールのトーンは次のとおりです:\n ##tone_language## \n\n"], - - ['id' => 1221, 'template_id' => 34, 'key' => "ko-KR", 'value' => "다음에 대한 후속 이메일 작성:\n\n ##description## \n\n저희 회사 또는 제품 이름은:\n ##title## \n\n다음 이후:\n ##event## \n\n대상은:\n ##keywords## \n\n후속 이메일의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n"], - - ['id' => 1222, 'template_id' => 34, 'key' => "ms-MY", 'value' => "Tulis e-mel susulan tentang:\n\n ##description## \n\nNama syarikat atau produk kami ialah:\n ##title## \n\nMenyusul selepas:\n ##event## \n\nKhalayak sasaran ialah:\n ##keywords## \n\nNada suara e-mel susulan mestilah:\n ##tone_language## \n\n"], - - ['id' => 1223, 'template_id' => 34, 'key' => "nb-NO", 'value' => "Skriv en oppfølgings-e-post om:\n\n ##description## \n\nVårt firma eller produktnavn er:\n ##title## \n\nOppfølging etter:\n ##event## \n\nMålgruppen er:\n ##keywords## \n\nTone i oppfølgings-e-posten må være:\n ##tone_language## \n\n"], - - ['id' => 1224, 'template_id' => 34, 'key' => "pl-PL", 'value' => "Napisz e-mail uzupełniający na temat:\n\n ##description## \n\nNazwa naszej firmy lub produktu to:\n ##title## \n\nKontynuacja po:\n ##event## \n\nDocelowi odbiorcy to:\n ##keywords## \n\nTon w e-mailu uzupełniającym musi być:\n ##tone_language## \n\n"], - - ['id' => 1225, 'template_id' => 34, 'key' => "pt-PT", 'value' => "Escreva um e-mail de acompanhamento sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nAcompanhamento após:\n ##event## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de acompanhamento deve ser:\n ##tone_language## \n\n"], - - ['id' => 1226, 'template_id' => 34, 'key' => "ru-RU", 'value' => "Напишите последующее электронное письмо о:\n\n ##description## \n\nНазвание нашей компании или продукта:\n ##title## \n\nПоследующие действия после:\n ##event## \n\nЦелевая аудитория:\n ##keywords## \n\nТон голоса в последующем электронном письме должен быть:\n ##tone_language## \n\n"], - - ['id' => 1227, 'template_id' => 34, 'key' => "es-ES", 'value' => "Escribe un correo electrónico de seguimiento sobre:\n\n ##description## \n\nEl nombre de nuestra empresa o producto es:\n ##title## \n\nSeguimiento después de:\n ##event## \n\nEl público objetivo es:\n ##keywords## \n\nEl tono de voz del correo electrónico de seguimiento debe ser:\n ##tone_language## \n\n"], - - ['id' => 1228, 'template_id' => 34, 'key' => "sv-SE", 'value' => "Skriv ett uppföljningsmeddelande om:\n\n ##description## \n\nVårt företag eller produktnamn är:\n ##title## \n\nFöljer upp efter:\n ##event## \n\nMålgruppen är:\n ##keywords## \n\nRösten i uppföljningsmeddelandet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1229, 'template_id' => 34, 'key' => "tr-TR", 'value' => "Şu konuda bir takip e-postası yazın:\n\n ##description## \n\nŞirketimizin veya ürünümüzün adı:\n ##title## \n\nSonra takip:\n ##event## \n\nHedef kitle:\n ##keywords## \n\nTakip e-postasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 1230, 'template_id' => 34, 'key' => "pt-BR", 'value' => "Escreva um e-mail de acompanhamento sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nAcompanhamento após:\n ##event## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de acompanhamento deve ser:\n ##tone_language## \n\n"], - - ['id' => 1231, 'template_id' => 34, 'key' => "ro-RO", 'value' => "Scrieți un e-mail de continuare despre:\n\n ##description## \n\nNumele companiei sau al produsului nostru este:\n ##title## \n\nUrmărire după:\n ##event## \n\nPublicul țintă este:\n ##keywords## \n\nTonul de voce al e-mailului de urmărire trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1232, 'template_id' => 34, 'key' => "vi-VN", 'value' => "Viết email tiếp theo về:\n\n ##description## \n\nTên sản phẩm hoặc công ty của chúng tôi là:\n ##title## \n\nTiếp tục sau:\n ##event## \n\nĐối tượng mục tiêu là:\n ##keywords## \n\nGiọng điệu của email tiếp theo phải là:\n ##tone_language## \n\n"], - - ['id' => 1233, 'template_id' => 34, 'key' => "sw-KE", 'value' => "Andika barua pepe ya ufuatiliaji kuhusu:\n\n ##description## \n\nJina la kampuni au bidhaa yetu ni:\n ##title## \n\nInafuata baada ya:\n ##event## \n\nHadhira inayolengwa ni:\n ##keywords## \n\nToni ya sauti ya barua pepe ya ufuatiliaji lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1234, 'template_id' => 34, 'key' => "sl-SI", 'value' => "Napišite nadaljnje e-poštno sporočilo o:\n\n ##description## \n\nIme našega podjetja ali izdelka je:\n ##title## \n\nNadaljevanje po:\n ##event## \n\nCiljna publika je:\n ##keywords## \n\nTon glasu nadaljnjega e-poštnega sporočila mora biti:\n ##tone_language## \n\n"], - - ['id' => 1235, 'template_id' => 34, 'key' => "th-TH", 'value' => "เขียนอีเมลติดตามผลเกี่ยวกับ:\n\n ##description## \n\nชื่อบริษัทหรือผลิตภัณฑ์ของเราคือ:\n ##title## \n\nติดตามผลหลังจากนี้:\n ##event## \n\nกลุ่มเป้าหมายคือ:\n ##keywords## \n\nเสียงของอีเมลติดตามจะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1236, 'template_id' => 34, 'key' => "uk-UA", 'value' => "Напишіть додатковий електронний лист про:\n\n ##description## \n\nНазва нашої компанії або продукту:\n ##title## \n\nПодальші дії після:\n ##event## \n\nЦільова аудиторія:\n ##keywords## \n\nТон голосу в електронному листі має бути:\n ##tone_language## \n\n"], - - ['id' => 1237, 'template_id' => 34, 'key' => "lt-LT", 'value' => "Parašykite tolesnius el. laišką apie:\n\n ##description## \n\nMūsų įmonės arba produkto pavadinimas yra:\n ##title## \n\nStebimas po:\n ##event## \n\nTikslinė auditorija yra:\n ##keywords## \n\nTolesnio el. laiško balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 1238, 'template_id' => 34, 'key' => "bg-BG", 'value' => "Напишете последващ имейл за:\n\n ##description## \n\nИмето на нашата компания или продукт е:\n ##title## \n\nПоследващи действия след:\n ##event## \n\nЦелевата аудитория е:\n ##keywords## \n\nТонът на последващия имейл трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1239, 'template_id' => 35, 'key' => "en-US", 'value' => "Write a creative story about:\n\n ##description## \n\nTone of voice of the story must be:\n ##tone_language## \n\n"], - - ['id' => 1240, 'template_id' => 35, 'key' => "ar-AE", 'value' => "اكتب قصة إبداعية عن:\n\n ##description## \n\nيجب أن تكون نغمة الصوت في القصة:\n ##tone_language## \n\n"], - - ['id' => 1241, 'template_id' => 35, 'key' => "cmn-CN", 'value' => "写一个有创意的故事:\n\n ##description## \n\n故事的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 1242, 'template_id' => 35, 'key' => "hr-HR", 'value' => "Napišite kreativnu priču o:\n\n ##description## \n\nTon glasa priče mora biti:\n ##tone_language## \n\n"], - - ['id' => 1243, 'template_id' => 35, 'key' => "cs-CZ", 'value' => "Napište kreativní příběh o:\n\n ##description## \n\nTón hlasu příběhu musí být:\n ##tone_language## \n\n"], - - ['id' => 1244, 'template_id' => 35, 'key' => "da-DK", 'value' => "Skriv en kreativ historie om:\n\n ##description## \n\nTone i historien skal være:\n ##tone_language## \n\n"], - - ['id' => 1245, 'template_id' => 35, 'key' => "nl-NL", 'value' => "Schrijf een creatief verhaal over:\n\n ##description## \n\nDe toon van het verhaal moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1246, 'template_id' => 35, 'key' => "et-EE", 'value' => "Kirjutage loov lugu teemal:\n\n ##description## \n\nLoo hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1247, 'template_id' => 35, 'key' => "fi-FI", 'value' => "Kirjoita luova tarina aiheesta:\n\n ##description## \n\nTarinan äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 1248, 'template_id' => 35, 'key' => "fr-FR", 'value' => "Ecrire une histoire créative sur :\n\n ##description## \n\nLe ton de la voix de l'histoire doit être :\n ##tone_language## \n\n"], - - ['id' => 1249, 'template_id' => 35, 'key' => "de-DE", 'value' => "Schreibe eine kreative Geschichte über:\n\n ##description## \n\nTonfall der Geschichte muss sein:\n ##tone_language## \n\n"], - - ['id' => 1250, 'template_id' => 35, 'key' => "el-GR", 'value' => "Γράψτε μια δημιουργική ιστορία για:\n\n ##description## \n\nΟ τόνος της φωνής της ιστορίας πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1251, 'template_id' => 35, 'key' => "he-IL", 'value' => "כתוב סיפור יצירתי על:\n\n ##description## \n\nטון הדיבור של הסיפור חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1252, 'template_id' => 35, 'key' => "hi-IN", 'value' => "के बारे में एक रचनात्मक कहानी लिखें:\n\n ##description## \n\nकहानी का स्वर ऐसा होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1253, 'template_id' => 35, 'key' => "hu-HU", 'value' => "Írjon kreatív történetet erről:\n\n ##description## \n\nA történet hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1254, 'template_id' => 35, 'key' => "is-IS", 'value' => "Skrifaðu skapandi sögu um:\n\n ##description## \n\nTónn í sögunni verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1255, 'template_id' => 35, 'key' => "id-ID", 'value' => "Tulis cerita kreatif tentang:\n\n ##description## \n\nNada suara cerita harus:\n ##tone_language## \n\n"], - - ['id' => 1256, 'template_id' => 35, 'key' => "it-IT", 'value' => "Scrivi una storia creativa su:\n\n ##description## \n\nIl tono di voce della storia deve essere:\n ##tone_language## \n\n"], - - ['id' => 1257, 'template_id' => 35, 'key' => "ja-JP", 'value' => "次のようなクリエイティブなストーリーを書きましょう:\n\n ##description## \n\nストーリーの声のトーンは次のとおりでなければなりません:\n ##tone_language## \n\n"], - - ['id' => 1258, 'template_id' => 35, 'key' => "ko-KR", 'value' => "다음에 대한 창의적인 이야기 쓰기:\n\n ##description## \n\n이야기의 목소리 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 1259, 'template_id' => 35, 'key' => "ms-MY", 'value' => "Tulis cerita kreatif tentang:\n\n ##description## \n\nNada suara cerita mestilah:\n ##tone_language## \n\n"], - - ['id' => 1260, 'template_id' => 35, 'key' => "nb-NO", 'value' => "Skriv en kreativ historie om:\n\n ##description## \n\nTone i historien må være:\n ##tone_language## \n\n"], - - ['id' => 1261, 'template_id' => 35, 'key' => "pl-PL", 'value' => "Napisz kreatywną historię na temat:\n\n ##description## \n\nTon opowieści musi być:\n ##tone_language## \n\n"], - - ['id' => 1262, 'template_id' => 35, 'key' => "pt-PT", 'value' => "Escreva uma história criativa sobre:\n\n ##description## \n\nTom de voz da história deve ser:\n ##tone_language## \n\n"], - - ['id' => 1263, 'template_id' => 35, 'key' => "ru-RU", 'value' => "Напишите творческую историю о:\n\n ##description## \n\nТон голоса истории должен быть:\n ##tone_language## \n\n"], - - ['id' => 1264, 'template_id' => 35, 'key' => "es-ES", 'value' => "Escribe una historia creativa sobre:\n\n ##description## \n\nEl tono de voz de la historia debe ser:\n ##tone_language## \n\n"], - - ['id' => 1265, 'template_id' => 35, 'key' => "sv-SE", 'value' => "Skriv en kreativ berättelse om:\n\n ##description## \n\nTonfallet i berättelsen måste vara:\n ##tone_language## \n\n"], - - ['id' => 1266, 'template_id' => 35, 'key' => "tr-TR", 'value' => "Şunun hakkında yaratıcı bir hikaye yaz:\n\n ##description## \n\nHikayenin ses tonu şöyle olmalı:\n ##tone_language## \n\n"], - - ['id' => 1267, 'template_id' => 35, 'key' => "pt-BR", 'value' => "Escreva uma história criativa sobre:\n\n ##description## \n\nTom de voz da história deve ser:\n ##tone_language## \n\n"], - - ['id' => 1268, 'template_id' => 35, 'key' => "ro-RO", 'value' => "Scrieți o poveste creativă despre:\n\n ##description## \n\nTonul vocii al poveștii trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1269, 'template_id' => 35, 'key' => "vi-VN", 'value' => "Viết một câu chuyện sáng tạo về:\n\n ##description## \n\nGiọng điệu của câu chuyện phải:\n ##tone_language## \n\n"], - - ['id' => 1270, 'template_id' => 35, 'key' => "sw-KE", 'value' => "Andika hadithi ya ubunifu kuhusu:\n\n ##description## \n\nToni ya sauti ya hadithi lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1271, 'template_id' => 35, 'key' => "sl-SI", 'value' => "Napišite ustvarjalno zgodbo o:\n\n ##description## \n\nTon glasu zgodbe mora biti:\n ##tone_language## \n\n"], - - ['id' => 1272, 'template_id' => 35, 'key' => "th-TH", 'value' => "เขียนเรื่องราวที่สร้างสรรค์เกี่ยวกับ:\n\n ##description## \n\nน้ำเสียงของเรื่องต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1273, 'template_id' => 35, 'key' => "uk-UA", 'value' => "Напишіть творчу розповідь про:\n\n ##description## \n\nТон розповіді має бути:\n ##tone_language## \n\n"], - - ['id' => 1274, 'template_id' => 35, 'key' => "lt-LT", 'value' => "Parašykite kūrybinę istoriją apie:\n\n ##description## \n\nIstorijos balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 1275, 'template_id' => 35, 'key' => "bg-BG", 'value' => "Напишете творческа история за:\n\n ##description## \n\nТонът на гласа на историята трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1276, 'template_id' => 36, 'key' => "en-US", 'value' => "Check and correct grammar of this text:\n\n ##description## \n\n"], - - ['id' => 1277, 'template_id' => 36, 'key' => "ar-AE", 'value' => "تحقق من القواعد النحوية لهذا النص وصححه:\n\n ##description## \n\n"], - - ['id' => 1278, 'template_id' => 36, 'key' => "cmn-CN", 'value' => "检查并更正此文本的语法:\n\n ##description## \n\n"], - - ['id' => 1279, 'template_id' => 36, 'key' => "hr-HR", 'value' => "Provjeri i ispravi gramatiku ovog teksta:\n\n ##description## \n\n"], - - ['id' => 1280, 'template_id' => 36, 'key' => "cs-CZ", 'value' => "Zkontrolujte a opravte gramatiku tohoto textu:\n\n ##description## \n\n"], - - ['id' => 1281, 'template_id' => 36, 'key' => "da-DK", 'value' => "Tjek og ret grammatik af denne tekst:\n\n ##description## \n\n"], - - ['id' => 1282, 'template_id' => 36, 'key' => "nl-NL", 'value' => "Controleer en corrigeer de grammatica van deze tekst:\n\n ##description## \n\n"], - - ['id' => 1283, 'template_id' => 36, 'key' => "et-EE", 'value' => "Kontrollige ja parandage selle teksti grammatikat:\n\n ##description## \n\n"], - - ['id' => 1284, 'template_id' => 36, 'key' => "fi-FI", 'value' => "Tarkista ja korjaa tämän tekstin kielioppi:\n\n ##description## \n\n"], - - ['id' => 1285, 'template_id' => 36, 'key' => "fr-FR", 'value' => "Vérifiez et corrigez la grammaire de ce texte :\n\n ##description## \n\n"], - - ['id' => 1286, 'template_id' => 36, 'key' => "de-DE", 'value' => "Prüfe und korrigiere die Grammatik dieses Textes:\n\n ##description## \n\n"], - - ['id' => 1287, 'template_id' => 36, 'key' => "el-GR", 'value' => "Ελέγξτε και διορθώστε τη γραμματική αυτού του κειμένου:\n\n ##description## \n\n"], - - ['id' => 1288, 'template_id' => 36, 'key' => "he-IL", 'value' => "בדוק ותקן את הדקדוק של הטקסט הזה:\n\n ##description## \n\n"], - - ['id' => 1289, 'template_id' => 36, 'key' => "hi-IN", 'value' => "इस पाठ का व्याकरण जांचें और सही करें:\n\n ##description## \n\n"], - - ['id' => 1290, 'template_id' => 36, 'key' => "hu-HU", 'value' => "Ellenőrizze és javítsa ki ennek a szövegnek a nyelvtanát:\n\n ##description## \n\n"], - - ['id' => 1291, 'template_id' => 36, 'key' => "is-IS", 'value' => "Athugaðu og leiðréttu málfræði þessa texta:\n\n ##description## \n\n"], - - ['id' => 1292, 'template_id' => 36, 'key' => "id-ID", 'value' => "Periksa dan perbaiki tata bahasa teks ini:\n\n ##description## \n\n"], - - ['id' => 1293, 'template_id' => 36, 'key' => "it-IT", 'value' => "Controlla e correggi la grammatica di questo testo:\n\n ##description## \n\n"], - - ['id' => 1294, 'template_id' => 36, 'key' => "ja-JP", 'value' => "このテキストの文法を確認して修正してください:\n\n ##description## \n\n"], - - ['id' => 1295, 'template_id' => 36, 'key' => "ko-KR", 'value' => "이 텍스트의 문법을 확인하고 수정하십시오:\n\n ##description## \n\n"], - - ['id' => 1296, 'template_id' => 36, 'key' => "ms-MY", 'value' => "Semak dan betulkan tatabahasa teks ini:\n\n ##description## \n\n"], - - ['id' => 1297, 'template_id' => 36, 'key' => "nb-NO", 'value' => "Sjekk og korriger grammatikken til denne teksten:\n\n ##description## \n\n"], - - ['id' => 1298, 'template_id' => 36, 'key' => "pl-PL", 'value' => "Sprawdź i popraw gramatykę tego tekstu:\n\n ##description## \n\n"], - - ['id' => 1299, 'template_id' => 36, 'key' => "pt-PT", 'value' => "Verifique e corrija a gramática deste texto:\n\n ##description## \n\n"], - - ['id' => 1300, 'template_id' => 36, 'key' => "ru-RU", 'value' => "Проверьте и исправьте грамматику этого текста:\n\n ##description## \n\n"], - - ['id' => 1301, 'template_id' => 36, 'key' => "es-ES", 'value' => "Revise y corrija la gramática de este texto:\n\n ##description## \n\n"], - - ['id' => 1302, 'template_id' => 36, 'key' => "sv-SE", 'value' => "Kontrollera och korrigera grammatiken för denna text:\n\n ##description## \n\n"], - - ['id' => 1303, 'template_id' => 36, 'key' => "tr-TR", 'value' => "Bu metnin gramerini kontrol edin ve düzeltin:\n\n ##description## \n\n"], - - ['id' => 1304, 'template_id' => 36, 'key' => "pt-BR", 'value' => "Verifique e corrija a gramática deste texto:\n\n ##description## \n\n"], - - ['id' => 1305, 'template_id' => 36, 'key' => "ro-RO", 'value' => "Verificați și corectați gramatica acestui text:\n\n ##description## \n\n"], - - ['id' => 1306, 'template_id' => 36, 'key' => "vi-VN", 'value' => "Kiểm tra và sửa ngữ pháp của văn bản này:\n\n ##description## \n\n"], - - ['id' => 1307, 'template_id' => 36, 'key' => "sw-KE", 'value' => "Angalia na urekebishe sarufi ya maandishi haya:\n\n ##description## \n\n"], - - ['id' => 1308, 'template_id' => 36, 'key' => "sl-SI", 'value' => "Preveri in popravi slovnico tega besedila:\n\n ##description## \n\n"], - - ['id' => 1309, 'template_id' => 36, 'key' => "th-TH", 'value' => "ตรวจสอบและแก้ไขไวยากรณ์ของข้อความนี้:\n\n ##description## \n\n"], - - ['id' => 1310, 'template_id' => 36, 'key' => "uk-UA", 'value' => "Перевірте та виправте граматику цього тексту:\n\n ##description## \n\n"], - - ['id' => 1311, 'template_id' => 36, 'key' => "lt-LT", 'value' => "Patikrinkite ir pataisykite šio teksto gramatiką:\n\n ##description## \n\n"], - - ['id' => 1312, 'template_id' => 36, 'key' => "bg-BG", 'value' => "Проверете и коригирайте граматиката на този текст:\n\n ##description## \n\n"], - - ['id' => 1313, 'template_id' => 37, 'key' => "en-US", 'value' => "Summarize this text for 2nd grader:\n\n ##description## \n\n"], - - ['id' => 1314, 'template_id' => 37, 'key' => "ar-AE", 'value' => "تلخيص هذا النص لطلاب الصف الثاني:\n\n ##description## \n\n"], - - ['id' => 1315, 'template_id' => 37, 'key' => "cmn-CN", 'value' => "为二年级学生总结这篇课文:\n\n ##description## \n\n"], - - ['id' => 1316, 'template_id' => 37, 'key' => "hr-HR", 'value' => "Sažmi ovaj tekst za učenika 2. razreda:\n\n ##description## \n\n"], - - ['id' => 1317, 'template_id' => 37, 'key' => "cs-CZ", 'value' => "Shrňte tento text pro žáka 2. třídy:\n\n ##description## \n\n"], - - ['id' => 1318, 'template_id' => 37, 'key' => "da-DK", 'value' => "Opsummer denne tekst for 2. klasse:\n\n ##description## \n\n"], - - ['id' => 1319, 'template_id' => 37, 'key' => "nl-NL", 'value' => "Vat deze tekst samen voor groep 2:\n\n ##description## \n\n"], - - ['id' => 1320, 'template_id' => 37, 'key' => "et-EE", 'value' => "Tee sellest tekstist kokkuvõte 2. klassi õpilasele:\n\n ##description## \n\n"], - - ['id' => 1321, 'template_id' => 37, 'key' => "fi-FI", 'value' => "Tee yhteenveto tästä tekstistä 2. luokkalaiselle:\n\n ##description## \n\n"], - - ['id' => 1322, 'template_id' => 37, 'key' => "fr-FR", 'value' => "Résumez ce texte pour un élève de 2e :\n\n ##description## \n\n"], - - ['id' => 1323, 'template_id' => 37, 'key' => "de-DE", 'value' => "Fass diesen Text für die 2. Klasse zusammen:\n\n ##description## \n\n"], - - ['id' => 1324, 'template_id' => 37, 'key' => "el-GR", 'value' => "Σύνοψτε αυτό το κείμενο για μαθητή της Β' δημοτικού:\n\n ##description## \n\n"], - - ['id' => 1325, 'template_id' => 37, 'key' => "he-IL", 'value' => "סכם את הטקסט הזה עבור כיתה ב':\n\n ##description## \n\n"], - - ['id' => 1326, 'template_id' => 37, 'key' => "hi-IN", 'value' => "इस पाठ को दूसरे ग्रेडर के लिए सारांशित करें:\n\n ##description## \n\n"], - - ['id' => 1327, 'template_id' => 37, 'key' => "hu-HU", 'value' => "Összefoglalja ezt a szöveget 2. osztályosnak:\n\n ##description## \n\n"], - - ['id' => 1328, 'template_id' => 37, 'key' => "is-IS", 'value' => "Taktu saman þennan texta fyrir 2. bekk:\n\n ##description## \n\n"], - - ['id' => 1329, 'template_id' => 37, 'key' => "id-ID", 'value' => "Ringkaskan teks ini untuk siswa kelas 2:\n\n ##description## \n\n"], - - ['id' => 1330, 'template_id' => 37, 'key' => "it-IT", 'value' => "Riassumi questo testo per la seconda elementare:\n\n ##description## \n\n"], - - ['id' => 1331, 'template_id' => 37, 'key' => "ja-JP", 'value' => "2 年生向けにこのテキストを要約してください:\n\n ##description## \n\n"], - - ['id' => 1332, 'template_id' => 37, 'key' => "ko-KR", 'value' => "2학년을 위해 이 텍스트 요약:\n\n ##description## \n\n"], - - ['id' => 1333, 'template_id' => 37, 'key' => "ms-MY", 'value' => "Ringkaskan teks ini untuk pelajar gred 2:\n\n ##description## \n\n"], - - ['id' => 1334, 'template_id' => 37, 'key' => "nb-NO", 'value' => "Oppsummer denne teksten for 2. klassing:\n\n ##description## \n\n"], - - ['id' => 1335, 'template_id' => 37, 'key' => "pl-PL", 'value' => "Podsumuj ten tekst dla uczniów drugiej klasy:\n\n ##description## \n\n"], - - ['id' => 1336, 'template_id' => 37, 'key' => "pt-PT", 'value' => "Resuma este texto para aluno da 2ª série:\n\n ##description## \n\n"], - - ['id' => 1337, 'template_id' => 37, 'key' => "ru-RU", 'value' => "Обобщите этот текст для второклассника:\n\n ##description## \n\n"], - - ['id' => 1338, 'template_id' => 37, 'key' => "es-ES", 'value' => 'Generar 10 títulos de blog pegadizos para:\n\n ##description## \n\n'], - - ['id' => 1339, 'template_id' => 37, 'key' => "sv-SE", 'value' => "Sammanfatta den här texten för klass 2:\n\n ##description## \n\n"], - - ['id' => 1340, 'template_id' => 37, 'key' => "tr-TR", 'value' => "2. sınıf öğrencisi için bu metni özetleyin:\n\n ##description## \n\n"], - - ['id' => 1341, 'template_id' => 37, 'key' => "pt-BR", 'value' => "Resuma este texto para aluno da 2ª série:\n\n ##description## \n\n"], - - ['id' => 1342, 'template_id' => 37, 'key' => "ro-RO", 'value' => "Rezumați acest text pentru elevul de clasa a II-a:\n\n ##description## \n\n"], - - ['id' => 1343, 'template_id' => 37, 'key' => "vi-VN", 'value' => "Tóm tắt văn bản này cho học sinh lớp 2:\n\n ##description## \n\n"], - - ['id' => 1344, 'template_id' => 37, 'key' => "sw-KE", 'value' => "Fanya muhtasari wa maandishi haya kwa mwanafunzi wa darasa la 2:\n\n ##description## \n\n"], - - ['id' => 1345, 'template_id' => 37, 'key' => "sl-SI", 'value' => "Povzemite to besedilo za 2. razred:\n\n ##description## \n\n"], - - ['id' => 1346, 'template_id' => 37, 'key' => "th-TH", 'value' => "สรุปข้อความนี้สำหรับนักเรียนชั้นประถมศึกษาปีที่ 2:\n\n ##description## \n\n"], - - ['id' => 1347, 'template_id' => 37, 'key' => "uk-UA", 'value' => "Підсумуйте цей текст для 2-класника:\n\n ##description## \n\n"], - - ['id' => 1348, 'template_id' => 37, 'key' => "lt-LT", 'value' => "Apibendrinkite šį tekstą 2 klasės mokiniui:\n\n ##description## \n\n"], - - ['id' => 1349, 'template_id' => 37, 'key' => "bg-BG", 'value' => "Обобщете този текст за второкласник:\n\n ##description## \n\n"], - - ['id' => 1350, 'template_id' => 38, 'key' => "en-US", 'value' => "Write an interesting video script about:\n\n ##description## \n\nTone of voice of the video script must be:\n ##tone_language## \n\n"], - - ['id' => 1351, 'template_id' => 38, 'key' => "ar-AE", 'value' => "اكتب نص فيديو مثيرًا للاهتمام حول:\n\n ##description## \n\n يجب أن تكون نغمة الصوت في نص الفيديو:\n ##tone_language## \n\n"], - - ['id' => 1352, 'template_id' => 38, 'key' => "cmn-CN", 'value' => "写一个有趣的视频脚本:\n\n ##description## \n\n视频脚本的语调必须是:\n ##tone_language## \n\n"], - - ['id' => 1353, 'template_id' => 38, 'key' => "hr-HR", 'value' => "Napišite zanimljiv video scenarij o:\n\n ##description## \n\nTon glasa video skripte mora biti:\n ##tone_language## \n\n"], - - ['id' => 1354, 'template_id' => 38, 'key' => "cs-CZ", 'value' => "Napište zajímavý video skript o:\n\n ##description## \n\nTón hlasu skriptu videa musí být:\n ##tone_language## \n\n"], - - ['id' => 1355, 'template_id' => 38, 'key' => "da-DK", 'value' => "Skriv et interessant videoscript om:\n\n ##description## \n\nTone i videoscriptet skal være:\n ##tone_language## \n\n"], - - ['id' => 1356, 'template_id' => 38, 'key' => "nl-NL", 'value' => "Schrijf een interessant videoscript over:\n\n ##description## \n\nDe toon van het videoscript moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1357, 'template_id' => 38, 'key' => "et-EE", 'value' => "Kirjutage huvitav videostsenaarium teemal:\n\n ##description## \n\nVideo skripti hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1358, 'template_id' => 38, 'key' => "fi-FI", 'value' => "Kirjoita mielenkiintoinen videokäsikirjoitus aiheesta:\n\n ##description## \n\nVideokäsikirjoituksen äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 1359, 'template_id' => 38, 'key' => "fr-FR", 'value' => "Écrivez un script vidéo intéressant sur :\n\n ##description## \n\nLe ton de la voix du script vidéo doit être :\n ##tone_language## \n\n"], - - ['id' => 1360, 'template_id' => 38, 'key' => "de-DE", 'value' => "Schreiben Sie ein interessantes Videoskript über:\n\n ##description## \n\nTonlage des Videoskripts muss sein:\n ##tone_language## \n\n"], - - ['id' => 1361, 'template_id' => 38, 'key' => "el-GR", 'value' => "Γράψτε ένα ενδιαφέρον σενάριο βίντεο για:\n\n ##description## \n\nΟ τόνος της φωνής του σεναρίου βίντεο πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1362, 'template_id' => 38, 'key' => "he-IL", 'value' => "Γράψτε ένα ενδιαφέρον σενάριο βίντεο για:\n\n ##description## \n\nΟ τόνος της φωνής του σεναρίου βίντεο πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1363, 'template_id' => 38, 'key' => "hi-IN", 'value' => "इस बारे में एक दिलचस्प वीडियो स्क्रिप्ट लिखें:\n\n ##description## \n\nवीडियो स्क्रिप्ट की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1364, 'template_id' => 38, 'key' => "hu-HU", 'value' => "Írj egy érdekes videó forgatókönyvet erről:\n\n ##description## \n\nA videó forgatókönyvének hangszínének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1365, 'template_id' => 38, 'key' => "is-IS", 'value' => "Skrifaðu áhugavert myndbandshandrit um:\n\n ##description## \n\nRaddónn myndbandshandritsins verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1366, 'template_id' => 38, 'key' => "id-ID", 'value' => "Tulis skrip video yang menarik tentang:\n\n ##description## \n\nNada suara skrip video harus:\n ##tone_language## \n\n"], - - ['id' => 1367, 'template_id' => 38, 'key' => "it-IT", 'value' => "Scrivi un copione video interessante su:\n\n ##description## \n\nIl tono di voce del copione video deve essere:\n ##tone_language## \n\n"], - - ['id' => 1368, 'template_id' => 38, 'key' => "ja-JP", 'value' => "興味深いビデオ スクリプトを作成してください:\n\n ##description## \n\nビデオ スクリプトの声の調子:\n ##tone_language## \n\n"], - - ['id' => 1369, 'template_id' => 38, 'key' => "ko-KR", 'value' => "다음에 대한 흥미로운 비디오 스크립트 작성:\n\n ##description## \n\n비디오 스크립트의 음성 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 1370, 'template_id' => 38, 'key' => "ms-MY", 'value' => "Tulis skrip video yang menarik tentang:\n\n ##description## \n\nNada suara skrip video mestilah:\n ##tone_language## \n\n"], - - ['id' => 1371, 'template_id' => 38, 'key' => "nb-NO", 'value' => "Skriv et interessant videoskript om:\n\n ##description## \n\nStemmetonen til videoskriptet må være:\n ##tone_language## \n\n"], - - ['id' => 1372, 'template_id' => 38, 'key' => "pl-PL", 'value' => "Napisz ciekawy scenariusz wideo na temat:\n\n ##description## \n\nTon głosu skryptu wideo musi być:\n ##tone_language## \n\n"], - - ['id' => 1373, 'template_id' => 38, 'key' => "pt-PT", 'value' => "Escreva um script de vídeo interessante sobre:\n\n ##description## \n\nTom de voz do roteiro do vídeo deve ser:\n ##tone_language## \n\n"], - - ['id' => 1374, 'template_id' => 38, 'key' => "ru-RU", 'value' => "Напишите интересный сценарий видео о:\n\n ##description## \n\nТон голоса видеосценария должен быть:\n ##tone_language## \n\n"], - - ['id' => 1375, 'template_id' => 38, 'key' => "es-ES", 'value' => "Escribe un guión de video interesante sobre:\n\n ##description## \n\nEl tono de voz del guión del video debe ser:\n ##tone_language## \n\n"], - - ['id' => 1376, 'template_id' => 38, 'key' => "sv-SE", 'value' => "Skriv ett intressant videomanus om:\n\n ##description## \n\nRösten i videoskriptet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1377, 'template_id' => 38, 'key' => "tr-TR", 'value' => "Şununla ilgili ilginç bir video komut dosyası yazın:\n\n ##description## \n\nVideo komut dosyasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 1378, 'template_id' => 38, 'key' => "pt-BR", 'value' => "Escreva um script de vídeo interessante sobre:\n\n ##description## \n\nTom de voz do roteiro do vídeo deve ser:\n ##tone_language## \n\n"], - - ['id' => 1379, 'template_id' => 38, 'key' => "ro-RO", 'value' => "Scrieți un script video interesant despre:\n\n ##description## \n\nTonul vocii al scriptului video trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1380, 'template_id' => 38, 'key' => "vi-VN", 'value' => "Viết kịch bản video thú vị về:\n\n ##description## \n\nGiọng nói của kịch bản video phải là:\n ##tone_language## \n\n"], - - ['id' => 1381, 'template_id' => 38, 'key' => "sw-KE", 'value' => "Andika hati ya video ya kuvutia kuhusu:\n\n ##description## \n\nToni ya sauti ya hati ya video lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1382, 'template_id' => 38, 'key' => "sl-SI", 'value' => "Napišite zanimiv video scenarij o:\n\n ##description## \n\nTon glasu video scenarija mora biti:\n ##tone_language## \n\n"], - - ['id' => 1383, 'template_id' => 38, 'key' => "th-TH", 'value' => "เขียนสคริปต์วิดีโอที่น่าสนใจเกี่ยวกับ:\n\n ##description## \n\nน้ำเสียงของสคริปต์วิดีโอต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1384, 'template_id' => 38, 'key' => "uk-UA", 'value' => "Напишіть сценарій цікавого відео про:\n\n ##description## \n\nТон голосу сценарію відео має бути:\n ##tone_language## \n\n"], - - ['id' => 1385, 'template_id' => 38, 'key' => "lt-LT", 'value' => "Parašykite įdomų vaizdo įrašo scenarijų apie:\n\n ##description## \n\nVaizdo įrašo scenarijaus balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 1386, 'template_id' => 38, 'key' => "bg-BG", 'value' => "Напишете интересен видео сценарий за:\n\n ##description## \n\nТонът на гласа на видео сценария трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1387, 'template_id' => 39, 'key' => "en-US", 'value' => "Write attention grabbing Amazon marketplace product description for:\n\n ##title## \n\nUse following keywords in the product description:\n ##keywords## \n\n"], - - ['id' => 1388, 'template_id' => 39, 'key' => "ar-AE", 'value' => "اكتب وصف منتج سوق أمازون الذي يجذب الانتباه لـ:\n\n ##title## \n\n استخدم الكلمات الأساسية التالية في وصف المنتج:\n ##keywords## \n\n"], - - ['id' => 1389, 'template_id' => 39, 'key' => "cmn-CN", 'value' => "为以下内容撰写引人注目的亚马逊市场产品说明:\n\n ##title## \n\n在产品描述中使用以下关键词:\n ##keywords## \n\n"], - - ['id' => 1390, 'template_id' => 39, 'key' => "hr-HR", 'value' => "Napišite opis proizvoda na Amazonovom tržištu koji privlači pažnju za:\n\n ##title## \n\nKoristite sljedeće ključne riječi u opisu proizvoda:\n ##keywords## \n\n"], - - ['id' => 1391, 'template_id' => 39, 'key' => "cs-CZ", 'value' => "Napište popis produktu na tržišti Amazon pro:\n\n ##title## \n\nV popisu produktu použijte následující klíčová slova:\n ##keywords## \n\n"], - - ['id' => 1392, 'template_id' => 39, 'key' => "da-DK", 'value' => "Skriv opmærksomhedsfangende Amazon-markedsplads-produktbeskrivelse for:\n\n ##title## \n\nBrug følgende søgeord i produktbeskrivelsen:\n ##keywords## \n\n"], - - ['id' => 1393, 'template_id' => 39, 'key' => "nl-NL", 'value' => "Schrijf een opvallende productbeschrijving op de Amazon-marktplaats voor:\n\n ##title## \n\nGebruik de volgende trefwoorden in de productbeschrijving:\n ##keywords## \n\n"], - - ['id' => 1394, 'template_id' => 39, 'key' => "et-EE", 'value' => "Kirjutage tähelepanu haarav Amazoni turu tootekirjeldus:\n\n ##title## \n\nKasutage tootekirjelduses järgmisi märksõnu:\n ##keywords## \n\n"], - - ['id' => 1395, 'template_id' => 39, 'key' => "fi-FI", 'value' => "Kirjoita huomiota herättävä Amazon Marketplace -tuotteen kuvaus:\n\n ##title## \n\nKäytä seuraavia avainsanoja tuotekuvauksessa:\n ##keywords## \n\n"], - - ['id' => 1396, 'template_id' => 39, 'key' => "fr-FR", 'value' => "Rédigez une description de produit accrocheuse sur la place de marché Amazon pour :\n\n ##title## \n\nUtilisez les mots clés suivants dans la description du produit :\n ##keywords## \n\n"], - - ['id' => 1397, 'template_id' => 39, 'key' => "de-DE", 'value' => "Schreiben Sie eine aufmerksamkeitsstarke Amazon Marketplace-Produktbeschreibung für:\n\n ##title## \n\nVerwenden Sie folgende Schlüsselwörter in der Produktbeschreibung:\n ##keywords## \n\n"], - - ['id' => 1398, 'template_id' => 39, 'key' => "el-GR", 'value' => "Γράψτε την προσοχή που προσελκύει την περιγραφή προϊόντος της Amazon Marketplace για:\n\n ##title## \n\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του προϊόντος:\n ##keywords## \n\n"], - - ['id' => 1399, 'template_id' => 39, 'key' => "he-IL", 'value' => "כתוב תשומת לב מושכת את תיאור המוצר של Amazon Marketplace עבור:\n\n ##title## \n\nהשתמש במילות המפתח הבאות בתיאור המוצר:\n ##keywords## \n\n"], - - ['id' => 1400, 'template_id' => 39, 'key' => "hi-IN", 'value' => "ध्यान आकर्षित करने वाले Amazon मार्केटप्लेस उत्पाद विवरण के लिए लिखें:\n\n ##title## \n\nउत्पाद विवरण में निम्नलिखित कीवर्ड का उपयोग करें:\n ##keywords## \n\n"], - - ['id' => 1401, 'template_id' => 39, 'key' => "hu-HU", 'value' => "Írjon figyelemfelkeltő Amazon Marketplace termékleírást:\n\n ##title## \n\nHasználja a következő kulcsszavakat a termékleírásban:\n ##keywords## \n\n"], - - ['id' => 1402, 'template_id' => 39, 'key' => "is-IS", 'value' => "Skrifaðu athyglisverða vörulýsingu á Amazon markaðstorginu fyrir:\n\n ##title## \n\nNotaðu eftirfarandi leitarorð í vörulýsingunni:\n ##keywords## \n\n"], - - ['id' => 1403, 'template_id' => 39, 'key' => "id-ID", 'value' => "Tulis deskripsi produk pasar Amazon yang menarik perhatian untuk:\n\n ##title## \n\nGunakan kata kunci berikut dalam deskripsi produk:\n ##keywords## \n\n"], - - ['id' => 1404, 'template_id' => 39, 'key' => "it-IT", 'value' => "Scrivi una descrizione del prodotto del marketplace Amazon che attiri l'attenzione per:\n\n ##title## \n\nUsa le seguenti parole chiave nella descrizione del prodotto:\n ##keywords## \n\n"], - - ['id' => 1405, 'template_id' => 39, 'key' => "ja-JP", 'value' => "注目を集める Amazon マーケットプレイスの商品説明を書いてください:\n\n ##title## \n\n製品説明には次のキーワードを使用してください:\n ##keywords## \n\n"], - - ['id' => 1406, 'template_id' => 39, 'key' => "ko-KR", 'value' => "다음에 대한 관심을 끄는 Amazon 마켓플레이스 제품 설명 작성:\n\n ##title## \n\n제품 설명에 다음 키워드를 사용하십시오:\n ##keywords## \n\n"], - - ['id' => 1407, 'template_id' => 39, 'key' => "ms-MY", 'value' => "Tulis penerangan produk pasaran Amazon yang menarik perhatian untuk:\n\n ##title## \n\nGunakan kata kunci berikut dalam penerangan produk:\n ##keywords## \n\n"], - - ['id' => 1408, 'template_id' => 39, 'key' => "nb-NO", 'value' => "Skriv en oppmerksomhetsfangende produktbeskrivelse for Amazon Marketplace for:\n\n ##title## \n\nBruk følgende nøkkelord i produktbeskrivelsen:\n ##keywords## \n\n"], - - ['id' => 1409, 'template_id' => 39, 'key' => "pl-PL", 'value' => "Napisz przyciągający uwagę opis produktu na rynku Amazon dla:\n\n ##title## \n\nUżyj następujących słów kluczowych w opisie produktu:\n ##keywords## \n\n"], - - ['id' => 1410, 'template_id' => 39, 'key' => "pt-PT", 'value' => "Escreva uma descrição atraente do produto Amazon marketplace para:\n\n ##title## \n\nUse as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n"], - - ['id' => 1411, 'template_id' => 39, 'key' => "ru-RU", 'value' => "Напишите привлекающее внимание описание продукта на торговой площадке Amazon для:\n\n ##title## \n\nИспользуйте следующие ключевые слова в описании продукта:\n ##keywords## \n\n"], - - ['id' => 1412, 'template_id' => 39, 'key' => "es-ES", 'value' => "Escriba la descripción del producto del mercado de Amazon que llame la atención para:\n\n ##title## \n\nUtilice las siguientes palabras clave en la descripción del producto:\n ##keywords## \n\n"], - - ['id' => 1413, 'template_id' => 39, 'key' => "sv-SE", 'value' => "Skriv uppmärksamhet fånga Amazon marknadsplats produktbeskrivning för:\n\n ##title## \n\nAnvänd följande nyckelord i produktbeskrivningen:\n ##keywords## \n\n"], - - ['id' => 1414, 'template_id' => 39, 'key' => "tr-TR", 'value' => "Şunun için dikkat çekici Amazon pazar yeri ürün açıklamasını yazın:\n\n ##title## \n\nÜrün açıklamasında aşağıdaki anahtar kelimeleri kullanın:\n ##keywords## \n\n"], - - ['id' => 1415, 'template_id' => 39, 'key' => "pt-BR", 'value' => "Escreva uma descrição atraente do produto Amazon marketplace para:\n\n ##title## \n\nUse as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n"], - - ['id' => 1416, 'template_id' => 39, 'key' => "ro-RO", 'value' => "Scrieți atenția captând descrierea produsului Amazon marketplace pentru:\n\n ##title## \n\nFolosiți următoarele cuvinte cheie în descrierea produsului:\n ##keywords## \n\n"], - - ['id' => 1417, 'template_id' => 39, 'key' => "vi-VN", 'value' => "Viết mô tả sản phẩm thu hút sự chú ý trên thị trường Amazon cho:\n\n ##title## \n\nSử dụng các từ khóa sau trong phần mô tả sản phẩm:\n ##keywords## \n\n"], - - ['id' => 1418, 'template_id' => 39, 'key' => "sw-KE", 'value' => "Andika umakini wa kunyakua maelezo ya bidhaa ya soko la Amazon kwa:\n\n ##title## \n\nTumia manenomsingi yafuatayo katika maelezo ya bidhaa:\n ##keywords## \n\n"], - - ['id' => 1419, 'template_id' => 39, 'key' => "sl-SI", 'value' => "Napišite opis izdelka Amazon Marketplace, ki pritegne pozornost za:\n\n ##title## \n\nV opisu izdelka uporabite naslednje ključne besede:\n ##keywords## \n\n"], - - ['id' => 1420, 'template_id' => 39, 'key' => "th-TH", 'value' => "เขียนคำอธิบายผลิตภัณฑ์ในตลาดกลางของ Amazon ที่ดึงดูดใจสำหรับ:\n\n ##title## \n\nใช้คำหลักต่อไปนี้ในรายละเอียดสินค้า:\n ##keywords## \n\n"], - - ['id' => 1421, 'template_id' => 39, 'key' => "uk-UA", 'value' => "Напишіть опис продукту Amazon Marketplace для:\n\n ##title## \n\nВикористовуйте такі ключові слова в описі продукту:\n ##keywords## \n\n"], - - ['id' => 1422, 'template_id' => 39, 'key' => "lt-LT", 'value' => "Parašykite dėmesį patraukiančio Amazon prekyvietės produkto aprašymą:\n\n ##title## \n\nProdukto aprašyme naudokite šiuos raktinius žodžius:\n ##keywords## \n\n"], - - ['id' => 1423, 'template_id' => 39, 'key' => "bg-BG", 'value' => "Напишете грабващо вниманието описание на продукта на пазара на Amazon за:\n\n ##title## \n\nИзползвайте следните ключови думи в описанието на продукта:\n ##keywords## \n\n"], - - ['id' => 1424, 'template_id' => 40, 'key' => "en-US", 'value' => 'please Improve and rewrite this artical in a creative and smart way:\n\n ##description## \n\n using this keywords ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 1425, 'template_id' => 40, 'key' => "ar-AE", 'value' => 'برجاء تحسين واعادة كتابة هذا الشكل من الورق بطريقة مبتكرة وذكية :\n\n ##description## \n\n استخدام هذه الكلمات المرشدة ##keywords## \n\n يجب أن يكون نبرة صوت النتيجة كما يلي :\n ##tone_language## \n\n'], - - ['id' => 1426, 'template_id' => 40, 'key' => "cmn-CN", 'value' => '请以创造性和聪明的方式改进和撰写这篇文章:\n\n ##description## \n\n 使用这个关键字 ##keywords## \n\n 结果的语气必须是:\n ##tone_language## \n\n'], - - ['id' => 1427, 'template_id' => 40, 'key' => "hr-HR", 'value' => 'molimo poboljšajte i napišite ovaj članak na kreativan i pametan način:\n\n ##description## \n\n koristeći ove ključne riječi ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 1428, 'template_id' => 40, 'key' => "cs-CZ", 'value' => 'prosím vylepšete a napište tento článek kreativním a chytrým způsobem:\n\n ##description## \n\n pomocí těchto klíčových slov ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 1429, 'template_id' => 40, 'key' => "da-DK", 'value' => 'venligst forbedre og skrive denne artikel på en kreativ og smart måde:\n\n ##description## \n\n ved at bruge disse søgeord ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 1430, 'template_id' => 40, 'key' => "nl-NL", 'value' => 'verbeter en schrijf dit artikel op een creatieve en slimme manier:\n\n ##description## \n\n met behulp van deze trefwoorden ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 1431, 'template_id' => 40, 'key' => "et-EE", 'value' => 'Täiustage ja kirjutage see artikkel loominguliselt ja nutikalt:\n\n ##description## \n\n kasutades neid märksõnu ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 1432, 'template_id' => 40, 'key' => "fi-FI", 'value' => 'Paranna ja kirjoita tämä artikkeli luovalla ja älykkäällä tavalla:\n\n ##description## \n\n käyttämällä näitä avainsanoja ##keywords## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n'], - - ['id' => 1433, 'template_id' => 40, 'key' => "fr-FR", 'value' => 'Veuillez améliorer et écrire cet article de manière créative et intelligente :\n\n ##description## \n\n en utilisant ces mots clés ##keywords## \n\n Le ton de voix du résultat doit être :\n ##tone_language## \n\n'], - - ['id' => 1434, 'template_id' => 40, 'key' => "de-DE", 'value' => 'Bitte verbessern Sie diesen Artikel und schreiben Sie ihn auf kreative und intelligente Weise:\n\n ##description## \n\n mit diesen Schlüsselwörtern ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n'], - - ['id' => 1435, 'template_id' => 40, 'key' => "el-GR", 'value' => 'Βελτιώστε και γράψτε αυτό το άρθρο με δημιουργικό και έξυπνο τρόπο:\n\n ##description## \n\n χρησιμοποιώντας αυτές τις λέξεις-κλειδιά ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 1436, 'template_id' => 40, 'key' => "he-IL", 'value' => 'אנא שפר וכתוב מאמר זה בצורה יצירתית וחכמה:\n\n ##description## \n\n באמצעות מילות מפתח אלו ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 1437, 'template_id' => 40, 'key' => "hi-IN", 'value' => 'कृपया इस लेख को रचनात्मक और स्मार्ट तरीके से सुधारें और लिखें:\n\n ##description## \n\n इस खोजशब्दों का उपयोग करना ##keywords## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n'], - - ['id' => 1438, 'template_id' => 40, 'key' => "hu-HU", 'value' => 'Kérjük, javítsa és írja meg ezt a cikket kreatív és okos módon:\n\n ##description## \n\n ezen kulcsszavak használatával ##keywords## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n'], - - ['id' => 1439, 'template_id' => 40, 'key' => "is-IS", 'value' => 'vinsamlegast bættu og skrifaðu þessa grein á skapandi og snjallan hátt:\n\n ##description## \n\n nota þessi leitarorð ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 1440, 'template_id' => 40, 'key' => "id-ID", 'value' => 'tolong Tingkatkan dan tulis artikel ini dengan cara yang kreatif dan cerdas:\n\n ##description## \n\n menggunakan kata kunci ini ##keywords## \n\n Nada suara hasil harus:\n ##tone_language## \n\n'], - - ['id' => 1441, 'template_id' => 40, 'key' => "it-IT", 'value' => 'per favore Migliora e scrivi questo articolo in modo creativo e intelligente:\n\n ##description## \n\n utilizzando queste parole chiave ##keywords## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 1442, 'template_id' => 40, 'key' => "ja-JP", 'value' => 'この記事を改善し、創造的かつ賢明な方法で書いてください:\n\n ##description## \n\n このキーワードを使って ##keywords## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n'], - - ['id' => 1443, 'template_id' => 40, 'key' => "ko-KR", 'value' => '창의적이고 현명한 방법으로 이 문서를 개선하고 작성하십시오:\n\n ##description## \n\n 이 키워드를 사용하여 ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 1444, 'template_id' => 40, 'key' => "ms-MY", 'value' => 'sila Perbaiki dan tulis artikel ini dengan cara yang kreatif dan bijak:\n\n ##description## \n\n menggunakan kata kunci ini ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n'], - - ['id' => 1445, 'template_id' => 40, 'key' => "nb-NO", 'value' => 'Vennligst forbedre og skriv denne artikkelen på en kreativ og smart måte:\n\n ##description## \n\n ved å bruke disse søkeordene ##keywords## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 1446, 'template_id' => 40, 'key' => "pl-PL", 'value' => 'proszę Popraw i napisz ten artykuł w kreatywny i inteligentny sposób:\n\n ##description## \n\n używając tych słów kluczowych ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 1447, 'template_id' => 40, 'key' => "pt-PT", 'value' => 'Por favor, melhore e escreva este artigo de forma criativa e inteligente:\n\n ##description## \n\n usando essas palavras-chave ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 1448, 'template_id' => 40, 'key' => "ru-RU", 'value' => 'пожалуйста, улучшите и напишите эту статью творчески и умно:\n\n ##description## \n\n используя эти ключевые слова ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 1449, 'template_id' => 40, 'key' => "es-ES", 'value' => 'por favor Mejorar y reescribir esta táctica de una manera creativa e inteligente:\n\n ##description## \n\n utilizando estas palabras clave ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 1450, 'template_id' => 40, 'key' => "sv-SE", 'value' => 'snälla förbättra och skriv den här artikeln på ett kreativt och smart sätt:\n\n ##description## \n\n använder dessa nyckelord ##keywords## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 1451, 'template_id' => 40, 'key' => "tr-TR", 'value' => 'lütfen bu makaleyi geliştirin ve yaratıcı ve akıllı bir şekilde yazın:\n\n ##description## \n\n bu anahtar kelimeleri kullanarak ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n'], - - ['id' => 1452, 'template_id' => 40, 'key' => "pt-BR", 'value' => 'Por favor, melhore e reescreva esse artigo de forma criativa e inteligente:\n\n ##description## \n\n usando essas palavras-chave ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 1453, 'template_id' => 40, 'key' => "ro-RO", 'value' => 'Vă rugăm să îmbunătățiți și să scrieți acest articol într-un mod creativ și inteligent:\n\n ##description## \n\n folosind aceste cuvinte cheie ##keywords## \n\n Tonul de voce al rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 1454, 'template_id' => 40, 'key' => "vi-VN", 'value' => 'vui lòng Cải thiện và viết bài viết này một cách sáng tạo và thông minh:\n\n ##description## \n\n Sử dụng từ khóa này ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 1455, 'template_id' => 40, 'key' => "sw-KE", 'value' => 'tafadhali Boresha na uandike nakala hii kwa njia ya ubunifu na busara:\n\n ##description## \n\n kwa kutumia maneno haya ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 1456, 'template_id' => 40, 'key' => "sl-SI", 'value' => 'prosimo, izboljšajte in napišite ta članek na kreativen in pameten način:\n\n ##description## \n\n z uporabo teh ključnih besed ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 1457, 'template_id' => 40, 'key' => "th-TH", 'value' => 'โปรดปรับปรุงและเขียนบทความนี้ใหม่ด้วยวิธีที่สร้างสรรค์และชาญฉลาด:\n\n ##description## \n\n โดยใช้คีย์เวิร์ดนี้ ##keywords## \n\n โทนเสียงของผลลัพธ์จะต้อง:\n ##tone_language## \n\n'], - - ['id' => 1458, 'template_id' => 40, 'key' => "uk-UA", 'value' => 'Будь ласка, вдосконаліть і перепишіть цю статтю креативно та розумно:\n\n ##description## \n\n використовуючи ці ключові слова ##keywords## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n'], - - ['id' => 1459, 'template_id' => 40, 'key' => "lt-LT", 'value' => 'Patobulinkite ir perrašykite šį straipsnį kūrybiškai ir sumaniai:\n\n ##description## \n\n naudojant šiuos raktinius žodžius ##keywords## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n'], - - ['id' => 1460, 'template_id' => 40, 'key' => "bg-BG", 'value' => 'моля, подобрете и пренапишете тази статия по креативен и интелигентен начин:\n\n ##description## \n\n използвайки тези ключови думи ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 1461, 'template_id' => 41, 'key' => "en-US", 'value' => "Rephrase this content:\n\n ##description## in a different voice and style to appeal to different readers \n\n using this keywords ##keywords## \n\n \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1462, 'template_id' => 41, 'key' => "ar-AE", 'value' => "اعادة مسح هذه المحتويات:\n\n ##description## بصوت وأسلوب مختلف للاستئناف للقراء المختلفين \n\n استخدام هذه الكلمات المرشدة ##keywords## \n\n \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n"], - - ['id' => 1463, 'template_id' => 41, 'key' => "cmn-CN", 'value' => "重新詞組此內容:\n\n ##description## 用不同的聲音和風格來吸引不同的讀者 \n\n 使用此關鍵字 ##keywords## \n\n \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n"], - - ['id' => 1464, 'template_id' => 41, 'key' => "hr-HR", 'value' => "Preformulirati ovaj sadržaj:\n\n ##description## u drukčjoj glasu i stilu da se priziva na različite čitatelje. \n\n koristeći ove ključne riječi ##keywords## \n\n \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n"], - - ['id' => 1465, 'template_id' => 41, 'key' => "cs-CZ", 'value' => "Přesousloví tento obsah:\n\n ##description## v jiném hlasu a stylu pro odvolání k různým čtenářům \n\n použití těchto klíčových slov ##keywords## \n\n \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1466, 'template_id' => 41, 'key' => "da-DK", 'value' => "Omsætning af dette indhold:\n\n ##description## i en anden stemme og typografi for at appellere til forskellige læsere \n\n bruge disse nøgleord ##keywords## \n\n \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1467, 'template_id' => 41, 'key' => "nl-NL", 'value' => "Deze content herformuleren:\n\n ##description## in een andere stem en stijl om beroep te doen op verschillende lezers \n\n met deze trefwoorden ##keywords## \n\n \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1468, 'template_id' => 41, 'key' => "et-EE", 'value' => "Väljenda seda sisu uuesti:\n\n ##description## teise hääle ja stiili, et pöörduda erinevate lugejate \n\n Kasuta sõnu ##keywords## \n\n \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1469, 'template_id' => 41, 'key' => "fi-FI", 'value' => "Korjaa tämä sisältö:\n\n ##description## Eri ääni ja tyyli valittaa eri lukijoille \n\n Käyttämällä tätä avainsanaa ##keywords## \n\n \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n"], - - ['id' => 1470, 'template_id' => 41, 'key' => "fr-FR", 'value' => "Rephrase ce contenu:\n\n ##description## D'une voix et d'un style différents pour faire appel à différents lecteurs \n\n Utilisation de ces mots clés ##keywords## \n\n \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 1471, 'template_id' => 41, 'key' => "de-DE", 'value' => "Umschreibung dieses Inhalts:\n\n ##description## in einer anderen Stimme und einem anderen Stil, um an verschiedene Leser zu appellieren \n\n Verwendung dieser Schlüsselwörter ##keywords## \n\n \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n"], - - ['id' => 1472, 'template_id' => 41, 'key' => "el-GR", 'value' => "Αναδιατύπωση αυτού του περιεχομένου.:\n\n ##description## με διαφορετική φωνή και στυλ να απευθυνόταν σε διαφορετικούς αναγνώστες \n\n χρησιμοποιώντας αυτές τις λέξεις-κλειδιά ##keywords## \n\n \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n"], - - ['id' => 1473, 'template_id' => 41, 'key' => "he-IL", 'value' => "משפט חוזר של תוכן זה:\n\n ##description## בקול וסגנון שונים כדי לפנות לקוראים שונים. \n\n שימוש במילות מפתח אלה ##keywords## \n\n \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1474, 'template_id' => 41, 'key' => "hi-IN", 'value' => "इस सामग्री को पुनः वाक्यांश करें:\n\n ##description## विभिन्न पाठकों से अपील करने के लिए एक अलग आवाज और शैली में \n\n इस कीवर्ड का उपयोग कर ##keywords## \n\n \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n"], - - ['id' => 1475, 'template_id' => 41, 'key' => "hu-HU", 'value' => "A tartalom javítása:\n\n ##description## Eltérő hangon és stílusban a különböző olvasók számára \n\n E kulcsszavak használata ##keywords## \n\n \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1476, 'template_id' => 41, 'key' => "is-IS", 'value' => "Umorðaðu þetta efni:\n\n ##description## í annarri rödd og stíl til að höfða til ólíkra lesenda \n\n nota þessi leitarorð ##keywords## \n\n \n\n Rödd í niðurstöðunni verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1477, 'template_id' => 41, 'key' => "id-ID", 'value' => "Ulangi konten ini:\n\n ##description## dengan suara dan gaya yang berbeda untuk menarik pembaca yang berbeda \n\n menggunakan kata kunci ini ##keywords## \n\n \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 1478, 'template_id' => 41, 'key' => "it-IT", 'value' => "Riformula questo contenuto:\n\n ##description## con una voce e uno stile diversi per attrarre lettori diversi \n\n utilizzando queste parole chiave ##keywords## \n\n \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 1479, 'template_id' => 41, 'key' => "ja-JP", 'value' => "この内容を言い換える:\n\n ##description## さまざまな読者にアピールするために、さまざまな声とスタイルで \n\n このキーワードを使って ##keywords## \n\n \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 1480, 'template_id' => 41, 'key' => "ko-KR", 'value' => "이 콘텐츠를 다른 말로 표현:\n\n ##description## 다른 독자들에게 어필하기 위해 다른 목소리와 스타일로 \n\n 이 키워드를 사용하여 ##keywords## \n\n \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 1481, 'template_id' => 41, 'key' => "ms-MY", 'value' => "Ungkapkan semula kandungan ini:\n\n ##description## dengan suara dan gaya yang berbeza untuk menarik minat pembaca yang berbeza \n\n menggunakan kata kunci ini ##keywords## \n\n \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 1482, 'template_id' => 41, 'key' => "nb-NO", 'value' => "Omformuler dette innholdet:\n\n ##description## i en annen stemme og stil for å appellere til forskjellige lesere \n\n ved å bruke disse søkeordene ##keywords## \n\n \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 1483, 'template_id' => 41, 'key' => "pl-PL", 'value' => "Przeformułuj tę treść:\n\n ##description## innym głosem i stylem, aby przemawiać do różnych czytelników \n\n używając tych słów kluczowych ##keywords## \n\n \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 1484, 'template_id' => 41, 'key' => "pt-PT", 'value' => "Reformule este conteúdo:\n\n ##description## em uma voz e estilo diferentes para atrair diferentes leitores \n\n usando essas palavras-chave ##keywords## \n\n \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1485, 'template_id' => 41, 'key' => "ru-RU", 'value' => "Перефразируйте этот контент:\n\n ##description## в другом голосе и стиле, чтобы обратиться к разным читателям \n\n используя эти ключевые слова ##keywords## \n\n \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 1486, 'template_id' => 41, 'key' => "es-ES", 'value' => "Reformular este contenido:\n\n ##description## en una voz y estilo diferente para atraer a diferentes lectores \n\n usando estas palabras clave ##keywords## \n\n \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 1487, 'template_id' => 41, 'key' => "sv-SE", 'value' => "Omformulera detta innehåll:\n\n ##description## med en annan röst och stil för att tilltala olika läsare \n\n använder dessa nyckelord ##keywords## \n\n \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1488, 'template_id' => 41, 'key' => "tr-TR", 'value' => "Bu içeriği yeniden ifade et:\n\n ##description## farklı okuyuculara hitap etmek için farklı bir ses ve tarzda \n\n bu anahtar kelimeleri kullanarak ##keywords## \n\n \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 1489, 'template_id' => 41, 'key' => "pt-BR", 'value' => "Reformule este conteúdo:\n\n ##description## em uma voz e estilo diferentes para atrair diferentes leitores \n\n usando essas palavras-chave ##keywords## \n\n \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1490, 'template_id' => 41, 'key' => "ro-RO", 'value' => "Reformulați acest conținut:\n\n ##description## într-o voce și stil diferit pentru a atrage diferiți cititori \n\n folosind aceste cuvinte cheie ##keywords## \n\n \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1491, 'template_id' => 41, 'key' => "vi-VN", 'value' => "Viết lại nội dung này:\n\n ##description## bằng một giọng điệu và phong cách khác để thu hút những độc giả khác nhau \n\n sử dụng từ khóa này ##keywords## \n\n \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 1492, 'template_id' => 41, 'key' => "sw-KE", 'value' => "Andika upya maudhui haya:\n\n ##description## kwa sauti na mtindo tofauti ili kuwavutia wasomaji mbalimbali \n\n kwa kutumia maneno haya ##keywords## \n\n \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1493, 'template_id' => 41, 'key' => "sl-SI", 'value' => "Preoblikujte to vsebino:\n\n ##description## z drugačnim glasom in slogom, da pritegne različne bralce \n\n z uporabo teh ključnih besed ##keywords## \n\n \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1494, 'template_id' => 41, 'key' => "th-TH", 'value' => "ใช้ถ้อยคำเนื้อหานี้ใหม่:\n\n ##description## ด้วยเสียงและสไตล์ที่แตกต่างเพื่อดึงดูดผู้อ่านที่แตกต่างกัน \n\n โดยใช้คีย์เวิร์ดนี้ ##keywords## \n\n \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1495, 'template_id' => 41, 'key' => "uk-UA", 'value' => "Перефразуйте цей зміст:\n\n ##description## іншим голосом і стилем, щоб звернутися до різних читачів \n\n використовуючи ці ключові слова ##keywords## \n\n \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 1496, 'template_id' => 41, 'key' => "lt-LT", 'value' => "Perfrazuokite šį turinį:\n\n ##description## kitu balsu ir stiliumi, kad patiktų skirtingiems skaitytojams \n\n naudojant šiuos raktinius žodžius ##keywords## \n\n \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 1497, 'template_id' => 41, 'key' => "bg-BG", 'value' => "Перифразирайте това съдържание :\n\n ##description## с различен глас и стил, за да се хареса на различни читатели \n\n използвайки тези ключови думи ##keywords## \n\n \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1498, 'template_id' => 42, 'key' => "en-US", 'value' => 'Improve and extend this content:\n\n ##description## \n\n Use following keywords in the content:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 1499, 'template_id' => 42, 'key' => "ar-AE", 'value' => 'تحسين وتوسيع هذه المحتويات:\n\n ##description## \n\n استخدام الكلمات المرشدة التالية في المحتويات:\n ##keywords## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n'], - - ['id' => 1500, 'template_id' => 42, 'key' => "cmn-CN", 'value' => '改进和扩展此内容:\n\n ##description## \n\n 在内容中使用以下关键字:\n ##keywords## \n\n T结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 1501, 'template_id' => 42, 'key' => "hr-HR", 'value' => 'Poboljsi i produži ovaj sadržaj:\n\n ##description## \n\n Koristite sljedeće ključne riječi u sadržaju:\n ##keywords## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 1502, 'template_id' => 42, 'key' => "cs-CZ", 'value' => 'Vylepšit a rozšířit tento obsah:\n\n ##description## \n\n UPoužít následující klíčová slova v obsahu:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 1503, 'template_id' => 42, 'key' => "da-DK", 'value' => 'Forbedre og udvid dette indhold:\n\n ##description## \n\n Brug følgende nøgleord i indholdet:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 1504, 'template_id' => 42, 'key' => "nl-NL", 'value' => 'Deze content verbeteren en uitbreiden:\n\n ##description## \n\n Gebruik de volgende sleutelwoorden in de inhoud:\n ##keywords## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 1505, 'template_id' => 42, 'key' => "et-EE", 'value' => 'Parandada ja laiendada seda sisu:\n\n ##description## \n\n Kasuta järgmisi võtmesõnu:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 1506, 'template_id' => 42, 'key' => "fi-FI", 'value' => 'Tämän sisällön parantaminen ja laajentaminen:\n\n ##description## \n\n Käytä sisällön avainsanoja:\n ##keywords## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 1507, 'template_id' => 42, 'key' => "fr-FR", 'value' => 'Améliorer et étendre ce contenu:\n\n ##description## \n\n Utiliser les mots clés suivants dans le contenu:\n ##keywords## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 1508, 'template_id' => 42, 'key' => "de-DE", 'value' => 'Diese Inhalte verbessern und erweitern:\n\n ##description## \n\n Verwenden Sie die folgenden Schlüsselwörter im Inhalt:\n ##keywords## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 1509, 'template_id' => 42, 'key' => "el-GR", 'value' => 'Βελτίωση και επέκταση αυτού του περιεχομένου.:\n\n ##description## \n\n Χρήση ακόλουθων λέξεων-κλειδιών στο περιεχόμενο:\n ##keywords## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n'], - - ['id' => 1510, 'template_id' => 42, 'key' => "he-IL", 'value' => 'שיפור ולהרחיב תוכן זה:\n\n ##description## \n\n שימוש במילות המפתח שלהלן בתוכן:\n ##keywords## \n\n Tone של הקול של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 1511, 'template_id' => 42, 'key' => "hi-IN", 'value' => 'इस सामग्री को सुधारता और विस्तार करें:\n\n ##description## \n\n सामग्री में निम्नलिखित कीवर्ड का प्रयोग करें:\n ##keywords## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 1512, 'template_id' => 42, 'key' => "hu-HU", 'value' => 'A tartalom javítása és kiterjesztése:\n\n ##description## \n\n Használja a következő kulcsszavakat a tartalomban:\n ##keywords## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 1513, 'template_id' => 42, 'key' => "is-IS", 'value' => 'Bættu og stækkuðu þetta efni:\n\n ##description## \n\n Notaðu eftirfarandi leitarorð í innihaldinu:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 1514, 'template_id' => 42, 'key' => "id-ID", 'value' => 'Meningkatkan dan memperluas konten ini:\n\n ##description## \n\n Gunakan kata kunci berikut dalam isi:\n ##keywords## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 1515, 'template_id' => 42, 'key' => "it-IT", 'value' => 'Migliorare ed estendere questo contenuto:\n\n ##description## \n\n Utilizzare le seguenti parole chiave nel contenuto:\n ##keywords## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 1516, 'template_id' => 42, 'key' => "ja-JP", 'value' => 'このコンテンツの改善と拡張:\n\n ##description## \n\n コンテンツ内の以下のキーワードを使用:\n ##keywords## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n'], - - ['id' => 1517, 'template_id' => 42, 'key' => "ko-KR", 'value' => '이 컨텐츠 향상 및 확장:\n\n ##description## \n\n 컨텐츠에서 다음 키워드 사용:\n ##keywords## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n'], - - ['id' => 1518, 'template_id' => 42, 'key' => "ms-MY", 'value' => 'Tingkatkan dan lanjutkan kandungan ini:\n\n ##description## \n\n Guna kata kekunci berikut dalam kandungan:\n ##keywords## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 1519, 'template_id' => 42, 'key' => "nb-NO", 'value' => 'Forbedre og utvide dette innholdet:\n\n ##description## \n\n Bruk følgende nøkkelord i innholdet:\n ##keywords## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 1520, 'template_id' => 42, 'key' => "pl-PL", 'value' => 'Ulepszanie i rozszerzanie tej treści:\n\n ##description## \n\n Użyj następujących słów kluczowych w treści:\n ##keywords## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 1521, 'template_id' => 42, 'key' => "pt-PT", 'value' => 'Melhorar e alargar este conteúdo:\n\n ##description## \n\n Utilizar as seguintes palavras-chave no conteúdo:\n ##keywords## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 1522, 'template_id' => 42, 'key' => "ru-RU", 'value' => 'Улучшить и расширить это содержимое:\n\n ##description## \n\n Использовать следующие ключевые слова в содержимом:\n ##keywords## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 1523, 'template_id' => 42, 'key' => "es-ES", 'value' => 'Mejorar y ampliar este contenido:\n\n ##description## \n\n Utilizar las palabras clave siguientes en el contenido:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 1524, 'template_id' => 42, 'key' => "sv-SE", 'value' => 'Förbättra och utöka innehållet:\n\n ##description## \n\n Använd följande nyckelord i innehållet:\n ##keywords## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 1525, 'template_id' => 42, 'key' => "tr-TR", 'value' => 'Bu içeriği iyileştirin ve genişletin:\n\n ##description## \n\n İçerikte aşağıdaki anahtar sözcükleri kullan:\n ##keywords## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 1526, 'template_id' => 42, 'key' => "pt-BR", 'value' => 'Aprimore e amplie esse conteúdo:\n\n ##description## \n\n Use as seguintes palavras-chave no conteúdo:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 1527, 'template_id' => 42, 'key' => "ro-RO", 'value' => 'Îmbunătățirea și extinderea acestui conținut:\n\n ##description## \n\n Utilizați următoarele cuvinte cheie în conținut:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 1528, 'template_id' => 42, 'key' => "vi-VN", 'value' => 'Cải thiện và mở rộng nội dung này:\n\n ##description## \n\n Sử dụng sau tư ̀ khóa trong nội dung:\n ##keywords## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 1529, 'template_id' => 42, 'key' => "sw-KE", 'value' => 'Boresha na upanue maudhui haya:\n\n ##description## \n\n Tumia maneno muhimu yafuatayo katika yaliyomo:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 1530, 'template_id' => 42, 'key' => "sl-SI", 'value' => 'Izboljjte in razširite to vsebino:\n\n ##description## \n\n Uporabi naslednje ključne besede v vsebini:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 1531, 'template_id' => 42, 'key' => "th-TH", 'value' => 'ปรับปรุงและขยายเนื้อหานี้:\n\n ##description## \n\n ใช้คีย์เวิร์ดต่อไปนี้ในเนื้อหา:\n ##keywords## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 1532, 'template_id' => 42, 'key' => "uk-UA", 'value' => 'Покращення і розширення вмісту:\n\n ##description## \n\n Використовувати наступні ключові слова у зміні:\n ##keywords## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 1533, 'template_id' => 42, 'key' => "lt-LT", 'value' => 'Pagerinti ir išplėsti šį turinį:\n\n ##description## \n\n Naudoti pagal raktažodžius turinį:\n ##keywords## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 1534, 'template_id' => 42, 'key' => "bg-BG", 'value' => 'Подобряване и разширяване на това съдържание:\n\n ##description## \n\n Използване на следните ключови думи в съдържанието:\n ##keywords## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 1535, 'template_id' => 43, 'key' => "en-US", 'value' => "Summarize this text in a short concise way:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1536, 'template_id' => 43, 'key' => "ar-AE", 'value' => "قم بتلخيص هذا النص بطريقة مختصرة قصيرة:\n\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n"], - - ['id' => 1537, 'template_id' => 43, 'key' => "cmn-CN", 'value' => "以簡短的方式彙總此文字:\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n"], - - ['id' => 1538, 'template_id' => 43, 'key' => "hr-HR", 'value' => "Sumiraj ovaj tekst na kratki koncizni način:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n"], - - ['id' => 1539, 'template_id' => 43, 'key' => "cs-CZ", 'value' => "Shrňte tento text stručným výstižným způsobem:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 1540, 'template_id' => 6, 'key' => "da-DK", 'value' => "Opsummér teksten på kort koncis måde:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 1541, 'template_id' => 43, 'key' => "nl-NL", 'value' => "Een korte samenvatting van deze tekst samenvatten:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1542, 'template_id' => 43, 'key' => "et-EE", 'value' => "Selle teksti kokkuvõtlik lühikokkuvõte:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1543, 'template_id' => 43, 'key' => "fi-FI", 'value' => "Tiivistä tämä teksti lyhyesti lyhyesti:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n"], - - ['id' => 1544, 'template_id' => 43, 'key' => "fr-FR", 'value' => "Résumez ce texte de manière concise et concise:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 1545, 'template_id' => 43, 'key' => "de-DE", 'value' => "Fassen Sie diesen Text kurz zusammen.:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n"], - - ['id' => 1546, 'template_id' => 43, 'key' => "el-GR", 'value' => "Συνοπτική παρουσίαση αυτού του κειμένου με συνοπτικές συνοπτικές:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n"], - - ['id' => 1547, 'template_id' => 43, 'key' => "he-IL", 'value' => "סיכום התמליל באופן תמציתי קצר.:\n\n ##description## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1548, 'template_id' => 43, 'key' => "hi-IN", 'value' => "संक्षिप्त सारांश में इस पाठ को सारांशित करें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n"], - - ['id' => 1549, 'template_id' => 43, 'key' => "hu-HU", 'value' => "Összegezze ezt a szöveget rövid tömör formában:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1550, 'template_id' => 43, 'key' => "is-IS", 'value' => "Dragðu saman þennan texta á stuttan hnitmiðaðan hátt:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1551, 'template_id' => 43, 'key' => "id-ID", 'value' => "Ikhtisar teks ini dengan cara ringkas singkat:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n"], - - ['id' => 1552, 'template_id' => 43, 'key' => "it-IT", 'value' => "Riepiloga questo testo in modo conciso breve:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 1553, 'template_id' => 43, 'key' => "ja-JP", 'value' => "簡潔な簡潔な方法でこのテキストを要約する:\n\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n"], - - ['id' => 1554, 'template_id' => 43, 'key' => "ko-KR", 'value' => "짧은 간결한 방식으로 이 텍스트 요약:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 1555, 'template_id' => 43, 'key' => "ms-MY", 'value' => "Panggil teks ini dalam cara concise pendek:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n"], - - ['id' => 1556, 'template_id' => 43, 'key' => "nb-NO", 'value' => "Oppsummer denne teksten på en kort og konsist måte:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 1557, 'template_id' => 43, 'key' => "pl-PL", 'value' => "Podsumuj ten tekst w krótkim zwięzonym sposobie:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 1558, 'template_id' => 43, 'key' => "pt-PT", 'value' => "Resumir este texto de uma forma concisa curta:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1559, 'template_id' => 43, 'key' => "ru-RU", 'value' => "Обобщить этот текст кратким кратким способом:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 1560, 'template_id' => 43, 'key' => "es-ES", 'value' => "Resumir este texto de una manera breve y concisa:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 1561, 'template_id' => 43, 'key' => "sv-SE", 'value' => "Sammanfatta den här texten på kort koncist sätt:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1562, 'template_id' => 43, 'key' => "tr-TR", 'value' => "Bu metni kısa kısa bir kısa yolla özetle:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n"], - - ['id' => 1563, 'template_id' => 43, 'key' => "pt-BR", 'value' => "Resumir este texto de uma forma concisa curta:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1564, 'template_id' => 43, 'key' => "ro-RO", 'value' => "Rezumă acest text într-un mod concis scurt:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1565, 'template_id' => 43, 'key' => "vi-VN", 'value' => "Tóm tắt văn bản này một cách ngắn gọn:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 1566, 'template_id' => 43, 'key' => "sw-KE", 'value' => "Fupisha maandishi haya kwa njia fupi fupi:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1567, 'template_id' => 43, 'key' => "sl-SI", 'value' => "Seštej to besedilo na kratko kratko:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1568, 'template_id' => 43, 'key' => "th-TH", 'value' => "สรุปข้อความนี้ในวิธีที่สั้นกระชับ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1569, 'template_id' => 43, 'key' => "uk-UA", 'value' => "Підсумовувати цей текст коротким шляхом:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n"], - - ['id' => 1570, 'template_id' => 43, 'key' => "lt-LT", 'value' => "Apibendrinkite šį tekstą trumpai glaustai:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n"], - - ['id' => 1571, 'template_id' => 43, 'key' => "bg-BG", 'value' => "Обобщи този текст по кратък кратък начин:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1572, 'template_id' => 44, 'key' => "en-US", 'value' => "Write a detailed answer for Quora of this question:\n\n ##title## \n\nUse this content for more information:\n ##description## \n\n Tone of voice of the answer must be:\n ##tone_language## \n\n"], - - ['id' => 1573, 'template_id' => 44, 'key' => "ar-AE", 'value' => "ككتابة جواب مفصل عن Quora من هذا السؤال:\n\n ##title## \n\nاستخدم هذه المحتويات لمزيد من المعلومات:\n ##description## \n\n نبرة صوت الإجابة يجب أن تكون:\n ##tone_language## \n\n"], - - ['id' => 1574, 'template_id' => 44, 'key' => "cmn-CN", 'value' => "為 Quora 撰寫詳細的答案:\n\n ##title## \n\n使用此內容以取得相關資訊:\n ##description## \n\n 答案的聲音一定是:\n ##tone_language## \n\n"], - - ['id' => 1575, 'template_id' => 44, 'key' => "hr-HR", 'value' => "Napišite detaljan odgovor za Quora od ovog pitanja:\n\n ##title## \n\nKoristite ovaj sadržaj za više informacija:\n ##description## \n\n Ton glasa od odgovora mora biti:\n ##tone_language## \n\n"], - - ['id' => 1576, 'template_id' => 44, 'key' => "cs-CZ", 'value' => "Napište podrobnou odpověď pro Quora této otázky:\n\n ##title## \n\nPoužijte tento obsah pro další informace:\n ##description## \n\n Tón hlasu odpovědi musí být:\n ##tone_language## \n\n"], - - ['id' => 1577, 'template_id' => 44, 'key' => "da-DK", 'value' => "Skriv et detaljeret svar for Quora af dette spørgsmål:\n\n ##title## \n\nBrug dette indhold til flere oplysninger:\n ##description## \n\n Tonen i svaret skal være:\n ##tone_language## \n\n"], - - ['id' => 1578, 'template_id' => 44, 'key' => "nl-NL", 'value' => "Schrijf een gedetailleerd antwoord voor Quora van deze vraag:\n\n ##title## \n\nDeze content gebruiken voor meer informatie:\n ##description## \n\n Toon van de stem van het antwoord moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1579, 'template_id' => 44, 'key' => "et-EE", 'value' => "Selle küsimuse Quora-i üksikasjaliku vastuse kirjutamine:\n\n ##title## \n\nKasutage seda infosisu rohkem:\n ##description## \n\n Vastuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1580, 'template_id' => 44, 'key' => "fi-FI", 'value' => "Kirjoita yksityiskohtainen vastaus Quora tämän kysymyksen:\n\n ##title## \n\nKäytä tätä sisältöä lisätietoja varten:\n ##description## \n\n Vastauksen äänen on oltava:\n ##tone_language## \n\n"], - - ['id' => 1581, 'template_id' => 44, 'key' => "fr-FR", 'value' => "Rédiger une réponse détaillée pour Quora de cette question:\n\n ##title## \n\nUtiliser ce contenu pour plus d'informations:\n ##description## \n\n Tone de la voix de la réponse doit être:\n ##tone_language## \n\n"], - - ['id' => 1582, 'template_id' => 44, 'key' => "de-DE", 'value' => "Schreiben Sie eine ausführliche Antwort für Quora von dieser Frage:\n\n ##title## \n\nVerwenden Sie diesen Inhalt für weitere Informationen.:\n ##description## \n\n Ton der Stimme der Antwort muss sein:\n ##tone_language## \n\n"], - - ['id' => 1583, 'template_id' => 44, 'key' => "el-GR", 'value' => "Γράψτε μια αναλυτική απάντηση για την Quora αυτής της ερώτησης:\n\n ##title## \n\nΧρήση αυτού του περιεχομένου για περισσότερες πληροφορίες:\n ##description## \n\n Ο τόνος της φωνής της απάντησης πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1584, 'template_id' => 44, 'key' => "he-IL", 'value' => "כתיבת תשובה מפורטת עבור Quora של שאלה זו:\n\n ##title## \n\nשימוש בתוכן זה לקבלת מידע נוסף:\n ##description## \n\n נימת הקול של התשובה חייבת להיות:\n ##tone_language## \n\n"], - - ['id' => 1585, 'template_id' => 44, 'key' => "hi-IN", 'value' => "इस प्रश्न के Quora के लिए एक विस्तृत उत्तर लिखें:\n\n ##title## \n\nअधिक जानकारी के लिए इस सामग्री का उपयोग करें:\n ##description## \n\n जवाब की आवाज का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1586, 'template_id' => 44, 'key' => "hu-HU", 'value' => "Részletes válasz írása Quora Ebből a kérdésről:\n\n ##title## \n\nUse this content for more information:\n ##description## \n\n Tone of voice of the answer must be:\n ##tone_language## \n\n"], - - ['id' => 1587, 'template_id' => 44, 'key' => "is-IS", 'value' => "Skrifaðu ítarlegt svar fyrir Quora við þessari spurningu:\n\n ##title## \n\nNotaðu þetta efni til að fá frekari upplýsingar:\n ##description## \n\n Rödd svarsins verður be:\n ##tone_language## \n\n"], - - ['id' => 1588, 'template_id' => 44, 'key' => "id-ID", 'value' => "Tulis jawaban rinci untuk Quora pertanyaan ini:\n\n ##title## \n\nGunakan konten ini untuk informasi lebih lanjut:\n ##description## \n\n Nada suara harus dijawab.:\n ##tone_language## \n\n"], - - ['id' => 1589, 'template_id' => 44, 'key' => "it-IT", 'value' => "Scrivi una risposta dettagliata per Quora di questa domanda:\n\n ##title## \n\nUsa questo contenuto per ulteriori informazioni:\n ##description## \n\n Il tono di voce della risposta deve essere:\n ##tone_language## \n\n"], - - ['id' => 1590, 'template_id' => 44, 'key' => "ja-JP", 'value' => "この質問の Quora の詳細な回答を書き込む:\n\n ##title## \n\n詳しくは、このコンテンツを使用してください:\n ##description## \n\n 解答の声のトーンは:\n ##tone_language## \n\n"], - - ['id' => 1591, 'template_id' => 44, 'key' => "ko-KR", 'value' => "이 질문의 Quora에 대한 자세한 응답 작성:\n\n ##title## \n\n자세한 정보는 이 컨텐츠를 사용하십시오.:\n ##description## \n\n 대답의 음성은 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 1592, 'template_id' => 44, 'key' => "ms-MY", 'value' => "Tulis jawapan terperinci untuk Quora soalan ini:\n\n ##title## \n\nGuna kandungan ini untuk maklumat lanjut:\n ##description## \n\n Nada suara jawabannya mesti:\n ##tone_language## \n\n"], - - ['id' => 1593, 'template_id' => 44, 'key' => "nb-NO", 'value' => "Skriv et detaljert svar for Quora på dette spørsmålet:\n\n ##title## \n\nGuna kandungan ini untuk maklumat lanjut:\n ##description## \n\n Nada suara jawabannya mesti:\n ##tone_language## \n\n"], - - ['id' => 1594, 'template_id' => 44, 'key' => "pl-PL", 'value' => "Napisz szczegółową odpowiedź dla Quora o to pytanie:\n\n ##title## \n\nUżyj tej treści, aby uzyskać więcej informacji:\n ##description## \n\n Ton głosu odpowiedzi musi być:\n ##tone_language## \n\n"], - - ['id' => 1595, 'template_id' => 44, 'key' => "pt-PT", 'value' => "Escreva uma resposta detalhada para Quora desta pergunta:\n\n ##title## \n\nUse este conteúdo para mais informações:\n ##description## \n\n Tom de voz da resposta deve ser:\n ##tone_language## \n\n"], - - ['id' => 1596, 'template_id' => 44, 'key' => "ru-RU", 'value' => "Написать подробный ответ для Quora данного вопроса:\n\n ##title## \n\nИспользуйте этот контент для получения дополнительной информации:\n ##description## \n\n Тон голоса должен быть:\n ##tone_language## \n\n"], - - ['id' => 1597, 'template_id' => 44, 'key' => "es-ES", 'value' => "Escriba una respuesta detallada para Quora de esta pregunta:\n\n ##title## \n\nUtilice este contenido para obtener más información:\n ##description## \n\n El tono de voz de la respuesta debe ser:\n ##tone_language## \n\n"], - - ['id' => 1598, 'template_id' => 44, 'key' => "sv-SE", 'value' => "Skriv ett detaljerat svar på Quora av denna fråga:\n\n ##title## \n\nAnvänd det här innehållet för mer information:\n ##description## \n\n Tone of voice of the svar must be:\n ##tone_language## \n\n"], - - ['id' => 1599, 'template_id' => 44, 'key' => "tr-TR", 'value' => "Bu sorunun Quora için ayrıntılı bir yanıt yazın:\n\n ##title## \n\nDaha fazla bilgi için bu içeriği kullanın:\n ##description## \n\n Cevabından ses tonunun sesi olmalı.:\n ##tone_language## \n\n"], - - ['id' => 1600, 'template_id' => 44, 'key' => "pt-BR", 'value' => "Escreva uma resposta detalhada para Quora desta pergunta:\n\n ##title## \n\nUse este conteúdo para mais informações:\n ##description## \n\n Tom de voz da resposta deve ser:\n ##tone_language## \n\n"], - - ['id' => 1601, 'template_id' => 44, 'key' => "ro-RO", 'value' => "Utilizați acest conținut pentru mai multe informații:\n\n ##title## \n\nUtilizați acest conținut pentru mai multe informații:\n ##description## \n\n Tonul vocii răspunsului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1602, 'template_id' => 44, 'key' => "vi-VN", 'value' => "Viết một câu trả lời chi tiết cho Quora của câu hỏi này:\n\n ##title## \n\nDùng nội dung này để biết thêm thông tin:\n ##description## \n\n Giọng nói của câu trả lời phải là:\n ##tone_language## \n\n"], - - ['id' => 1603, 'template_id' => 44, 'key' => "sw-KE", 'value' => "Andika jibu la kina kwa Quora la swali hili:\n\n ##title## \n\nUtazama yaliyomo kwa habari zaidi:\n ##description## \n\n Toni ya sauti ya jibu lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1604, 'template_id' => 44, 'key' => "sl-SI", 'value' => "Napišite podroben odgovor na vprašanje Quora o tem vprašanju:\n\n ##title## \n\nZa več informacij uporabite to vsebino:\n ##description## \n\n Ton glasu odgovora mora biti:\n ##tone_language## \n\n"], - - ['id' => 1605, 'template_id' => 44, 'key' => "th-TH", 'value' => "เขียนคำตอบโดยละเอียดสำหรับ Quora ของคำถามนี้:\n\n ##title## \n\nใช้เนื้อหานี้เพื่อดูข้อมูลเพิ่มเติม:\และ \n ##description## \n\n น้ำเสียงของคำตอบต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1606, 'template_id' => 44, 'key' => "uk-UA", 'value' => "Напишіть розгорнуту відповідь для Quora на це питання:\n\n ##title## \n\nВикористовуйте цей вміст для отримання додаткової інформації:\n ##description## \n\n Тон відповіді повинен бути:\n ##tone_language## \n\n"], - - ['id' => 1607, 'template_id' => 44, 'key' => "lt-LT", 'value' => "Parašykite išsamų atsakymą į šį klausimą Quora:\n\n ##title## \n\nNorėdami gauti daugiau informacijos, naudokite šį turinį:\n ##description## \n\n Turi būti atsakymo balso tonas:\n ##tone_language## \n\n"], - - ['id' => 1608, 'template_id' => 44, 'key' => "bg-BG", 'value' => "Напишете подробен отговор за Quora на този въпрос:\n\n ##title## \n\nИзползвайте това съдържание за повече информация:\n ##description## \n\n Тонът на гласа на отговора трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1609, 'template_id' => 45, 'key' => "en-US", 'value' => "Write a detailed answer with bullet points:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1610, 'template_id' => 45, 'key' => "ar-AE", 'value' =>"اكتب إجابة مفصلة بالنقاط :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة :\n ##tone_language## \n\n"], - - ['id' => 1611, 'template_id' => 45, 'key' => "cmn-CN", 'value' =>"用要點寫一個詳細的答案:\n\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n" ], - - ['id' => 1612, 'template_id' => 45, 'key' => "hr-HR", 'value' =>"Napišite detaljan odgovor s točkama:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n" ], - - ['id' => 1613, 'template_id' => 45, 'key' => "cs-CZ", 'value' =>"Napište podrobnou odpověď s odrážkami:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n" ], - - ['id' => 1614, 'template_id' => 45, 'key' => "da-DK", 'value' =>"Skriv et detaljeret svar med punktopstillinger:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n" ], - - ['id' => 1615, 'template_id' => 45, 'key' => "nl-NL", 'value' =>"Schrijf een gedetailleerd antwoord met opsommingstekens:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n" ], - - ['id' => 1616, 'template_id' => 45, 'key' => "et-EE", 'value' =>"Kirjutage üksikasjalik vastus täppidega:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n" ], - - ['id' => 1617, 'template_id' => 45, 'key' => "fi-FI", 'value' =>"Kirjoita yksityiskohtainen vastaus luettelomerkein:\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n" ], - - ['id' => 1618, 'template_id' => 45, 'key' => "fr-FR", 'value' =>"Rédigez une réponse détaillée avec une puce points:\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n" ], - - ['id' => 1619, 'template_id' => 45, 'key' => "de-DE", 'value' =>"Schreiben Sie eine ausführliche Antwort mit Aufzählungszeichen:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n" ], - - ['id' => 1620, 'template_id' => 45, 'key' => "el-GR", 'value' =>"Γράψτε μια λεπτομερή απάντηση με κουκκίδες:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n" ], - - ['id' => 1621, 'template_id' => 45, 'key' => "he-IL", 'value' =>"כתבו תשובה מפורטת עם תבליטים:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n" ], - - ['id' => 1622, 'template_id' => 45, 'key' => "hi-IN", 'value' =>"बुलेट प्वाइंट्स के साथ विस्तृत उत्तर लिखें:\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n" ], - - ['id' => 1623, 'template_id' => 45, 'key' => "hu-HU", 'value' =>"Írjon részletes választ pontokkal:\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n" ], - - ['id' => 1624, 'template_id' => 45, 'key' => "is-IS", 'value' =>"Skrifaðu ítarlegt svar með punktum:\n\n ##description## \n\n Rödd í niðurstöðunni verður að vera:\n ##tone_language## \n\n" ], - - ['id' => 1625, 'template_id' => 45, 'key' => "id-ID", 'value' =>"Tulis jawaban terperinci dengan poin-poin:\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n" ], - - ['id' => 1626, 'template_id' => 45, 'key' => "it-IT", 'value' =>"Scrivi una risposta dettagliata con elenchi puntati:\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n" ], - - ['id' => 1627, 'template_id' => 45, 'key' => "ja-JP", 'value' =>"箇条書きで詳細な回答を書く:\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n" ], - - ['id' => 1628, 'template_id' => 45, 'key' => "ko-KR", 'value' =>"글머리 기호로 자세한 답변을 작성하세요.:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n" ], - - ['id' => 1629, 'template_id' => 45, 'key' => "ms-MY", 'value' =>"Tulis jawapan terperinci dengan titik peluru:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n" ], - - ['id' => 1630, 'template_id' => 45, 'key' => "nb-NO", 'value' =>"Skriv et detaljert svar med punkter:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n" ], - - ['id' => 1631, 'template_id' => 45, 'key' => "pl-PL", 'value' =>"Napisz szczegółową odpowiedź z punktorami:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n" ], - - ['id' => 1632, 'template_id' => 45, 'key' => "pt-PT", 'value' =>"Escreva uma resposta detalhada com marcadores:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n" ], - - ['id' => 1633, 'template_id' => 45, 'key' => "ru-RU", 'value' =>"Напишите подробный ответ с пунктами:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n" ], - - ['id' => 1634, 'template_id' => 45, 'key' => "es-ES", 'value' =>"Escriba una respuesta detallada con viñetas:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n" ], - - ['id' => 1635, 'template_id' => 45, 'key' => "sv-SE", 'value' =>"Skriv ett utförligt svar med punkter:\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n" ], - - ['id' => 1636, 'template_id' => 45, 'key' => "tr-TR", 'value' =>"Madde işaretleri ile ayrıntılı bir cevap yazın:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n" ], - - ['id' => 1637, 'template_id' => 45, 'key' => "pt-BR", 'value' =>"Escreva uma resposta detalhada com marcadores:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n" ], - - ['id' => 1638, 'template_id' => 45, 'key' => "ro-RO", 'value' =>"Scrieți un răspuns detaliat cu puncte:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n" ], - - ['id' => 1639, 'template_id' => 45, 'key' => "vi-VN", 'value' =>"Viết một câu trả lời chi tiết với các gạch đầu dòng:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n" ], - - ['id' => 1640, 'template_id' => 45, 'key' => "sw-KE", 'value' =>"Andika jibu la kina na vidokezo vya risasi:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n" ], - - ['id' => 1641, 'template_id' => 45, 'key' => "sl-SI", 'value' =>"Napišite podroben odgovor z točkami:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n" ], - - ['id' => 1642, 'template_id' => 45, 'key' => "th-TH", 'value' =>"เขียนคำตอบโดยละเอียดพร้อมสัญลักษณ์แสดงหัวข้อย่อย:\n\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n" ], - - ['id' => 1643, 'template_id' => 45, 'key' => "uk-UA", 'value' =>"Напишіть розгорнуту відповідь, позначивши її маркерами:\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n" ], - - ['id' => 1644, 'template_id' => 45, 'key' => "lt-LT", 'value' =>"Parašykite išsamų atsakymą su taškais:\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n" ], - - ['id' => 1645, 'template_id' => 45, 'key' => "bg-BG", 'value' =>"Напишете подробен отговор с точки:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n" ], - - ['id' => 1646, 'template_id' => 46, 'key' => "en-US", 'value' => "What is the meaning of:\n\n ##keyword## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1647, 'template_id' => 46, 'key' => "ar-AE", 'value' => "ما معنى:\n\n ##keyword## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 1648, 'template_id' => 46, 'key' => "cmn-CN", 'value' => "是什么意思:\n\n ##keyword## \n\n 结果的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 1649, 'template_id' => 46, 'key' => "hr-HR", 'value' => "Što je smisao:\n\n ##keyword## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1650, 'template_id' => 46, 'key' => "cs-CZ", 'value' => "Co znamená:\n\n ##keyword## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 1651, 'template_id' => 46, 'key' => "da-DK", 'value' => "Hvad er meningen med:\n\n ##keyword## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 1652, 'template_id' => 46, 'key' => "nl-NL", 'value' => "Wat is de betekenis van:\n\n ##keyword## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1653, 'template_id' => 46, 'key' => "et-EE", 'value' => "Mida tähendab:\n\n ##keyword## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1654, 'template_id' => 46, 'key' => "fi-FI", 'value' => "Mikä on tarkoitus:\n\n ##keyword## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 1655, 'template_id' => 46, 'key' => "fr-FR", 'value' => "Quel est le sens de:\n\n ##keyword## \n\n Le ton de voix du résultat doit être :\n ##tone_language## \n\n"], - - ['id' => 1656, 'template_id' => 46, 'key' => "de-DE", 'value' => "Was ist die Bedeutung von:\n\n ##keyword## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 1657, 'template_id' => 46, 'key' => "el-GR", 'value' => "Ποια είναι η σημασία του:\n\n ##keyword## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1658, 'template_id' => 46, 'key' => "he-IL", 'value' => "מה המשמעות של:\n\n ##keyword## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1659, 'template_id' => 46, 'key' => "hi-IN", 'value' => "का अर्थ क्या है:\n\n ##keyword## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1660, 'template_id' => 46, 'key' => "hu-HU", 'value' => "Mit jelent az hogy:\n\n ##keyword## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1661, 'template_id' => 46, 'key' => "is-IS", 'value' => "Hvað þýðir:\n\n ##keyword## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1662, 'template_id' => 46, 'key' => "id-ID", 'value' => "Apa arti dari:\n\n ##keyword## \n\n Nada suara hasil harus:\n ##tone_language## \n\n"], - - ['id' => 1663, 'template_id' => 46, 'key' => "it-IT", 'value' => "Qual è il significato di:\n\n ##keyword## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 1664, 'template_id' => 46, 'key' => "ja-JP", 'value' => "意味は次のとおりです:\n\n ##keyword## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n"], - - ['id' => 1665, 'template_id' => 46, 'key' => "ko-KR", 'value' => "다음의 의미는 무엇입니까:\n\n ##keyword## \n\n 결과의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n"], - - ['id' => 1666, 'template_id' => 46, 'key' => "ms-MY", 'value' => "Apakah maksud:\n\n ##keyword## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 1667, 'template_id' => 46, 'key' => "nb-NO", 'value' => "Hva er betydningen av:\n\n ##keyword## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 1668, 'template_id' => 46, 'key' => "pl-PL", 'value' => "Jakie jest znaczenie:\n\n ##keyword## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 1669, 'template_id' => 46, 'key' => "pt-PT", 'value' => "Qual é o significado de:\n\n ##keyword## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1670, 'template_id' => 46, 'key' => "ru-RU", 'value' => "Каково значение:\n\n ##keyword## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 1671, 'template_id' => 46, 'key' => "es-ES", 'value' => "Cuál es el significado de:\n\n ##keyword## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 1672, 'template_id' => 46, 'key' => "sv-SE", 'value' => "Vad är meningen med:\n\n ##keyword## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1673, 'template_id' => 46, 'key' => "tr-TR", 'value' => "Anlamı ne:\n\n ##keyword## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 1674, 'template_id' => 46, 'key' => "pt-BR", 'value' => "Qual é o significado de:\n\n ##keyword## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1675, 'template_id' => 46, 'key' => "ro-RO", 'value' => "Ce înseamnă:\n\n ##keyword## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1676, 'template_id' => 46, 'key' => "vi-VN", 'value' => "Ý nghĩa của:\n\n ##keyword## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 1677, 'template_id' => 46, 'key' => "sw-KE", 'value' => "Nini maana ya:\n\n ##keyword## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1678, 'template_id' => 46, 'key' => "sl-SI", 'value' => "Kaj je pomen:\n\n ##keyword## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1679, 'template_id' => 46, 'key' => "th-TH", 'value' => "ความหมายของ:\n\n ##keyword## \n\n โทนเสียงของผลลัพธ์จะต้อง:\n ##tone_language## \n\n"], - - ['id' => 1680, 'template_id' => 46, 'key' => "uk-UA", 'value' => "Яке значення:\n\n ##keyword## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n"], - - ['id' => 1681, 'template_id' => 46, 'key' => "lt-LT", 'value' => "Ką reiškia:\n\n ##keyword## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 1682, 'template_id' => 46, 'key' => "bg-BG", 'value' => "Какво е значението на:\n\n ##keyword## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1683, 'template_id' => 47, 'key' => "en-US", 'value' => 'Write a long and detailed answer of:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 1684, 'template_id' => 47, 'key' => "ar-AE", 'value' => 'كتابة إجابة طويلة ومفصلة عن:\n\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n'], - - ['id' => 1685, 'template_id' => 47, 'key' => "cmn-CN", 'value' => '写长详细的答案:\n\n ##description## \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 1686, 'template_id' => 47, 'key' => "hr-HR", 'value' => 'Napišite dug i detaljan odgovor:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 1687, 'template_id' => 47, 'key' => "cs-CZ", 'value' => 'Napište dlouhou a podrobnou odpověď:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 1688, 'template_id' => 47, 'key' => "da-DK", 'value' => 'Skriv et langt og detaljeret svar på:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 1689, 'template_id' => 47, 'key' => "nl-NL", 'value' => 'Schrijf een lang en gedetailleerd antwoord van:\n\n ##description## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 1690, 'template_id' => 47, 'key' => "et-EE", 'value' => 'Kirjuta pikk ja üksikasjalik vastus:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 1691, 'template_id' => 47, 'key' => "fi-FI", 'value' => 'Kirjoita pitkä ja yksityiskohtainen vastaus:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 1692, 'template_id' => 47, 'key' => "fr-FR", 'value' => 'Rédiger une réponse longue et détaillée:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 1693, 'template_id' => 47, 'key' => "de-DE", 'value' => 'Schreiben Sie eine lange und detaillierte Antwort von:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 1694, 'template_id' => 47, 'key' => "el-GR", 'value' => 'Γράψτε μια μακρά και λεπτομερή απάντηση.:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n'], - - ['id' => 1695, 'template_id' => 47, 'key' => "he-IL", 'value' => 'כתיבת תשובה ארוכה ומפורטת של:\n\n ##description## \n\n Tone של הקול של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 1696, 'template_id' => 47, 'key' => "hi-IN", 'value' => 'के एक लंबा और विस्तृत उत्तर लिखें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 1697, 'template_id' => 47, 'key' => "hu-HU", 'value' => 'Írjon hosszú és részletes választ a:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 1698, 'template_id' => 47, 'key' => "is-IS", 'value' => 'Skrifaðu langt og ítarlegt svar af:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 1699, 'template_id' => 47, 'key' => "id-ID", 'value' => 'Tulis jawaban yang panjang dan rinci:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 1700, 'template_id' => 47, 'key' => "it-IT", 'value' => 'Scrivi una risposta lunga e dettagliata di:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 1701, 'template_id' => 47, 'key' => "ja-JP", 'value' => 'ロング・アンド・詳細な回答を書き込む:\n\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n'], - - ['id' => 1702, 'template_id' => 47, 'key' => "ko-KR", 'value' => '자세한 내용과 자세한 내용을 작성하십시오.:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n'], - - ['id' => 1703, 'template_id' => 47, 'key' => "ms-MY", 'value' => 'Tulis jawapan panjang dan terperinci terperinci:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 1704, 'template_id' => 47, 'key' => "nb-NO", 'value' => 'Skriv et langt og detaljert svar på:\n\n ##description## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 1705, 'template_id' => 47, 'key' => "pl-PL", 'value' => 'Napisz długą i szczegółową odpowiedź:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 1706, 'template_id' => 47, 'key' => "pt-PT", 'value' => 'Escrever uma resposta longa e pormenorizada sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 1707, 'template_id' => 47, 'key' => "ru-RU", 'value' => 'Напишите длинный и подробный ответ на:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 1708, 'template_id' => 47, 'key' => "es-ES", 'value' => 'Escribir una respuesta larga y detallada de:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 1709, 'template_id' => 47, 'key' => "sv-SE", 'value' => 'Skriv ett långt och detaljerat svar på:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 1710, 'template_id' => 47, 'key' => "tr-TR", 'value' => 'Uzun ve ayrıntılı bir yanıt yazın:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 1711, 'template_id' => 47, 'key' => "pt-BR", 'value' => 'Escreva uma resposta longa e detalhada sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 1712, 'template_id' => 47, 'key' => "ro-RO", 'value' => 'Scrie un răspuns lung și detaliat al:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 1713, 'template_id' => 47, 'key' => "vi-VN", 'value' => 'Viết câu trả lời dài và chi tiết:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 1714, 'template_id' => 47, 'key' => "sw-KE", 'value' => 'Andika jibu refu na la kina:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 1715, 'template_id' => 47, 'key' => "sl-SI", 'value' => 'Napišite dolg in podroben odgovor:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 1716, 'template_id' => 47, 'key' => "th-TH", 'value' => 'เขียนคำตอบยาวๆและละเอียดของ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 1717, 'template_id' => 47, 'key' => "uk-UA", 'value' => 'Написати довгу і детальну відповідь:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 1718, 'template_id' => 47, 'key' => "lt-LT", 'value' => 'Rašykite ilgą ir išsamų atsakymą:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 1719, 'template_id' => 47, 'key' => "bg-BG", 'value' => 'Напишете дълъг и подробен отговор на:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 1720, 'template_id' => 48, 'key' => "en-US", 'value' => "Create 10 engaging questions from this paragraph:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1721, 'template_id' => 48, 'key' => "ar-AE", 'value' => "قم بإنشاء 10 أسئلة جذابة من هذه الفقرة:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 1722, 'template_id' => 48, 'key' => "cmn-CN", 'value' => "根據本段提出 10 個引人入勝的問題:\n\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n"], - - ['id' => 1723, 'template_id' => 48, 'key' => "hr-HR", 'value' => "Napravite 10 zanimljivih pitanja iz ovog odlomka:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1724, 'template_id' => 48, 'key' => "cs-CZ", 'value' => "Vytvořte 10 poutavých otázek z tohoto odstavce:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 1725, 'template_id' => 48, 'key' => "da-DK", 'value' => "Lav 10 engagerende spørgsmål fra dette afsnit:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 1726, 'template_id' => 48, 'key' => "nl-NL", 'value' => "Maak 10 boeiende vragen uit deze paragraaf:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1727, 'template_id' => 48, 'key' => "et-EE", 'value' => "Looge sellest lõigust 10 köitvat küsimust:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1728, 'template_id' => 48, 'key' => "fi-FI", 'value' => "Luo 10 kiinnostavaa kysymystä tästä kappaleesta:\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 1729, 'template_id' => 48, 'key' => "fr-FR", 'value' => "Créez 10 questions engageantes à partir de ce paragraphe:\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 1730, 'template_id' => 48, 'key' => "de-DE", 'value' => "Erstellen Sie aus diesem Absatz 10 spannende Fragen:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 1731, 'template_id' => 48, 'key' => "el-GR", 'value' => "Δημιουργήστε 10 ενδιαφέρουσες ερωτήσεις από αυτήν την παράγραφο:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1732, 'template_id' => 48, 'key' => "he-IL", 'value' => "צור 10 שאלות מרתקות מפסקה זו:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1733, 'template_id' => 48, 'key' => "hi-IN", 'value' => "इस पैराग्राफ से 10 आकर्षक प्रश्न बनाएं:\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1734, 'template_id' => 48, 'key' => "hu-HU", 'value' => "Hozz létre 10 megnyerő kérdést ebből a bekezdésből:\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1735, 'template_id' => 48, 'key' => "is-IS", 'value' => "Búðu til 10 áhugaverðar spurningar úr þessari málsgrein:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1736, 'template_id' => 48, 'key' => "id-ID", 'value' => "Buat 10 pertanyaan menarik dari paragraf ini:\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 1737, 'template_id' => 48, 'key' => "it-IT", 'value' => "Crea 10 domande coinvolgenti da questo paragrafo:\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 1738, 'template_id' => 48, 'key' => "ja-JP", 'value' => "この段落から魅力的な質問を 10 個作成します:\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 1739, 'template_id' => 48, 'key' => "ko-KR", 'value' => "이 단락에서 10개의 매력적인 질문을 만드십시오.:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 1740, 'template_id' => 48, 'key' => "ms-MY", 'value' => "Cipta 10 soalan yang menarik daripada perenggan ini:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 1741, 'template_id' => 48, 'key' => "nb-NO", 'value' => "Lag 10 engasjerende spørsmål fra dette avsnittet:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 1742, 'template_id' => 48, 'key' => "pl-PL", 'value' => "Utwórz 10 interesujących pytań z tego akapitu:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 1743, 'template_id' => 48, 'key' => "pt-PT", 'value' => "Crie 10 perguntas envolventes a partir deste parágrafo:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1744, 'template_id' => 48, 'key' => "ru-RU", 'value' => "Создайте 10 увлекательных вопросов из этого абзаца:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 1745, 'template_id' => 48, 'key' => "es-ES", 'value' => "Crea 10 preguntas atractivas a partir de este párrafo:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 1746, 'template_id' => 48, 'key' => "sv-SE", 'value' => "Skapa 10 engagerande frågor från detta stycke:\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1747, 'template_id' => 48, 'key' => "tr-TR", 'value' => "Bu paragraftan 10 ilgi çekici soru oluşturun:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 1748, 'template_id' => 48, 'key' => "pt-BR", 'value' => "Crie 10 perguntas envolventes a partir deste parágrafo:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1749, 'template_id' => 48, 'key' => "ro-RO", 'value' => "Creați 10 întrebări captivante din acest paragraf:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1750, 'template_id' => 48, 'key' => "vi-VN", 'value' => "Tạo 10 câu hỏi hấp dẫn từ đoạn văn này:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 1751, 'template_id' => 48, 'key' => "sw-KE", 'value' => "Unda maswali 10 ya kuvutia kutoka kwa aya hii:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1752, 'template_id' => 48, 'key' => "sl-SI", 'value' => "Ustvarite 10 privlačnih vprašanj iz tega odstavka:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1753, 'template_id' => 48, 'key' => "th-TH", 'value' => "สร้างคำถามที่น่าสนใจ 10 ข้อจากย่อหน้านี้:\n\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1754, 'template_id' => 48, 'key' => "uk-UA", 'value' => "Створіть 10 цікавих запитань із цього абзацу:\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 1755, 'template_id' => 48, 'key' => "lt-LT", 'value' => "Sukurkite 10 patrauklių klausimų iš šios pastraipos:\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 1756, 'template_id' => 48, 'key' => "bg-BG", 'value' => "Създайте 10 ангажиращи въпроса от този параграф:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1757, 'template_id' => 49, 'key' => "en-US", 'value' => 'Convert this passive voice sentence into active voice:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 1758, 'template_id' => 49, 'key' => "ar-AE", 'value' => 'تحويل هذه الجملة الصوتية السلبية الى صوت فعال:\n\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n'], - - ['id' => 1759, 'template_id' => 49, 'key' => "cmn-CN", 'value' => '将此被动语音语句转换为活动语音:\n\n ##description## \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 1760, 'template_id' => 49, 'key' => "hr-HR", 'value' => 'Pretvori ovu pasivnu glasovnu rečenicu u aktivni glas:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 1761, 'template_id' => 49, 'key' => "cs-CZ", 'value' => 'Převést tuto pasivní hlasovou větu do aktivního hlasu:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 1762, 'template_id' => 49, 'key' => "da-DK", 'value' => 'Konvertér denne passive stemmesætning til aktiv stemme:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 1763, 'template_id' => 49, 'key' => "nl-NL", 'value' => 'Deze passieve stem omzetten in actieve stem:\n\n ##description## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 1764, 'template_id' => 49, 'key' => "et-EE", 'value' => 'Selle passiivse häälelause teisendamine aktiivsesse häälesse:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 1765, 'template_id' => 49, 'key' => "fi-FI", 'value' => 'Muunna tämä passiivinen ääni aktiiviseksi ääneksi:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 1766, 'template_id' => 49, 'key' => "fr-FR", 'value' => 'Convertir cette phrase vocale passive en voix active:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 1767, 'template_id' => 49, 'key' => "de-DE", 'value' => 'Diesen passiven Sprachsatz in aktive Stimme umwandeln:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 1768, 'template_id' => 49, 'key' => "el-GR", 'value' => 'Μετάτρεψε αυτή την παθητική φωνή σε ενεργή φωνή.:\n\n ##description## \n\n v:\n ##tone_language## \n\n'], - - ['id' => 1769, 'template_id' => 49, 'key' => "he-IL", 'value' => 'המרת משפט קול פסיבי לקול פעיל:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 1770, 'template_id' => 49, 'key' => "hi-IN", 'value' => 'इस निष्क्रिय आवाज वाक्य को सक्रिय आवाज में बदलें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 1771, 'template_id' => 49, 'key' => "hu-HU", 'value' => 'A passzív hangmondat átalakítása aktív hanggá:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 1772, 'template_id' => 49, 'key' => "is-IS", 'value' => 'Umbreyttu þessari óvirku raddsetningu í virka rödd:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 1773, 'template_id' => 49, 'key' => "id-ID", 'value' => 'Ubah kalimat suara pasif ini menjadi suara aktif:\n\n ##description## \n\n TNada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 1774, 'template_id' => 49, 'key' => "it-IT", 'value' => 'Convertire questa frase voce passivo in voce attiva:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 1775, 'template_id' => 49, 'key' => "ja-JP", 'value' => 'この受動音声文をアクティブな音声に変換します:\n\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n'], - - ['id' => 1776, 'template_id' => 49, 'key' => "ko-KR", 'value' => '이 수동 음성 문장을 활성 음성으로 변환합니다.:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n'], - - ['id' => 1777, 'template_id' => 49, 'key' => "ms-MY", 'value' => 'Tukar ayat suara pasif ini ke dalam suara aktif:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 1778, 'template_id' => 49, 'key' => "nb-NO", 'value' => 'Konverter denne passive stemmesetningen inn i aktiv stemme:\n\n ##description## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 1779, 'template_id' => 49, 'key' => "pl-PL", 'value' => 'Przekształć ten bierny głos głosowy w aktywny głos:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 1780, 'template_id' => 49, 'key' => "pt-PT", 'value' => 'Converter esta frase de voz passiva em voz activa:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 1781, 'template_id' => 49, 'key' => "ru-RU", 'value' => 'Преобразовать этот пассивный голос в активный голос:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 1782, 'template_id' => 49, 'key' => "es-ES", 'value' => 'Convertir esta frase de voz pasiva en voz activa:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 1783, 'template_id' => 49, 'key' => "sv-SE", 'value' => 'Konvertera den här passiva röstdomen till aktiv röst:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 1784, 'template_id' => 49, 'key' => "tr-TR", 'value' => 'Bu pasif sesli cümleyi etkin sese dönüştür:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 1785, 'template_id' => 49, 'key' => "pt-BR", 'value' => 'Converta essa frase de voz passiva em voz ativa:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 1786, 'template_id' => 49, 'key' => "ro-RO", 'value' => 'Convertiți această propoziție vocală pasivă în voce activă:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 1787, 'template_id' => 49, 'key' => "vi-VN", 'value' => 'Chuyển đổi câu thoại bị động này thành giọng nói hoạt động:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 1788, 'template_id' => 49, 'key' => "sw-KE", 'value' => 'Badilisha sentensi hii ya sauti tulivu kuwa sauti tendaji:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 1789, 'template_id' => 49, 'key' => "sl-SI", 'value' => 'Pretvori to pasivno glasovno kazen v aktivni glas:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 1790, 'template_id' => 49, 'key' => "th-TH", 'value' => 'แปลงประโยคเสียงพาสซีฟนี้เป็นเสียงที่แอ็คทีฟ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 1791, 'template_id' => 49, 'key' => "uk-UA", 'value' => 'Перетворити цей пасивний голосовий речення на активний голос:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 1792, 'template_id' => 49, 'key' => "lt-LT", 'value' => 'Konvertuoti šį pasyvaus balso sakinį į aktyvų balsą:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 1793, 'template_id' => 49, 'key' => "bg-BG", 'value' => 'Превръщане на това пасивно изречение в активен глас:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 1794, 'template_id' => 50, 'key' => "en-US", 'value' => "Improve and rewrite this content in a smart way:\n\n ##description## \n\nMust use following keywords in the content:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1795, 'template_id' => 50, 'key' => "ar-AE", 'value' => "تحسين واعادة كتابة هذه المحتويات بطريقة ذكية:\n\n ##description## \n\nيجب استخدام الكلمات المرشدة التالية في المحتويات:\n ##keywords## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n"], - - ['id' => 1796, 'template_id' => 50, 'key' => "cmn-CN", 'value' => "以智慧型方式改善並改寫此內容:\n\n ##description## \n\n必須在內容中使用下列關鍵字:\n ##keywords## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n"], - - ['id' => 1797, 'template_id' => 50, 'key' => "hr-HR", 'value' => "Poboljste i ponovno napišite ovaj sadržaj na pametan način:\n\n ##description## \n\nMora se koristiti sljedeće ključne riječi u sadržaju:\n ##keywords## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n"], - - ['id' => 1798, 'template_id' => 50, 'key' => "cs-CZ", 'value' => "Vylepšete a přepište tento obsah inteligentním způsobem:\n\n ##description## \n\nMusí používat následující klíčová slova v obsahu:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 1799, 'template_id' => 50, 'key' => "da-DK", 'value' => "Forbedre og reskriv dette indhold på en smart måde:\n\n ##description## \n\nMSkal bruge følgende nøgleord i indholdet:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 1800, 'template_id' => 50, 'key' => "nl-NL", 'value' => "Deze content op een slimme manier verbeteren en herschrijven:\n\n ##description## \n\nMoet gebruik maken van de volgende sleutelwoorden in de inhoud:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1801, 'template_id' => 50, 'key' => "et-EE", 'value' => "Selle sisu parandamine ja ümberkirjutamine arukalt:\n\n ##description## \n\nPeab kasutama järgmisi märksõnu sisu:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1802, 'template_id' => 50, 'key' => "fi-FI", 'value' => "Paranna ja kirjoita tämä sisältö uudelleen älykkäällä tavalla:\n\n ##description## \n\nOn käytettävä sisällön avainsanojen jälkeen:\n ##keywords## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n"], - - ['id' => 1803, 'template_id' => 50, 'key' => "fr-FR", 'value' => "Améliorer et réécrire ce contenu de manière intelligente:\n\n ##description## \n\nDoit utiliser les mots clés suivants dans le contenu:\n ##keywords## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 1804, 'template_id' => 50, 'key' => "de-DE", 'value' => "Verbessern und umschreiben Sie diese Inhalte auf intelligente Weise:\n\n ##description## \n\nSie müssen die folgenden Schlüsselwörter im Inhalt verwenden:\n ##keywords## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n"], - - ['id' => 1805, 'template_id' => 50, 'key' => "el-GR", 'value' => "Βελτίωση και επανεγγραφή αυτού του περιεχομένου με έξυπνο τρόπο:\n\n ##description## \n\nΠρέπει να χρησιμοποιήσετε λέξεις-κλειδιά στο περιεχόμενο.:\n ##keywords## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n"], - - ['id' => 1806, 'template_id' => 50, 'key' => "he-IL", 'value' => "שיפור ושכתב תוכן זה בדרך חכמה.:\n\n ##description## \n\nיש להשתמש במילות המפתח שלהלן בתוכן:\n ##keywords## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1807, 'template_id' => 50, 'key' => "hi-IN", 'value' => "इस सामग्री को एक स्मार्ट तरीका में सुधार और फिर से लिखना:\n\n ##description## \n\nसामग्री में निम्नलिखित कीशब्दों का प्रयोग करना चाहिए:\n ##keywords## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n"], - - ['id' => 1808, 'template_id' => 50, 'key' => "hu-HU", 'value' => "Tartalom javítása és újraírása intelligens módon:\n\n ##description## \n\nA következő kulcsszavakat kell használni a tartalomban:\n ##keywords## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1809, 'template_id' => 50, 'key' => "is-IS", 'value' => "Bættu og endurskrifaðu þetta efni á snjallan hátt:\n\n ##description## \n\nVerður að nota eftirfarandi leitarorð í innihaldinu:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1810, 'template_id' => 50, 'key' => "id-ID", 'value' => "Meningkatkan dan menulis ulang konten ini dengan cara yang cerdas:\n\n ##description## \n\nHarus menggunakan kata kunci berikut dalam isi:\n ##keywords## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n"], - - ['id' => 1811, 'template_id' => 50, 'key' => "it-IT", 'value' => "Migliorare e riscrivere questo contenuto in modo intelligente:\n\n ##description## \n\nDeve utilizzare le seguenti parole chiave nel contenuto:\n ##keywords## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 1812, 'template_id' => 50, 'key' => "ja-JP", 'value' => "このコンテンツをスマートな方法で改善して再書き込みする:\n\n ##description## \n\nコンテンツ内の以下のキーワードを使用する必要:\n ##keywords## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n"], - - ['id' => 1813, 'template_id' => 50, 'key' => "ko-KR", 'value' => "스마트한 방식으로 이 컨텐츠를 개선하고 다시 작성합니다.:\n\n ##description## \n\n컨텐츠에서 다음 키워드를 사용해야 합니다.:\n ##keywords## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 1814, 'template_id' => 50, 'key' => "ms-MY", 'value' => "Tingkatkan dan tulis semula kandungan ini dalam cara pintar:\n\n ##description## \n\nMesti gunakan perkataan kekunci berikut dalam kandungan:\n ##keywords## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n"], - - ['id' => 1815, 'template_id' => 50, 'key' => "nb-NO", 'value' => "Forbedre og omskriv dette innholdet på en smart måte:\n\n ##description## \n\nMå bruke følgende nøkkelord i innholdet:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 1816, 'template_id' => 50, 'key' => "pl-PL", 'value' => "Ulepszanie i przepisanie tej treści w inteligentny sposób:\n\n ##description## \n\nW treści muszą być używane następujące słowa kluczowe::\n ##keywords## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 1817, 'template_id' => 50, 'key' => "pt-PT", 'value' => "Melhore e reescreva este conteúdo de forma inteligente:\n\n ##description## \n\nDeve usar seguindo palavras-chave no conteúdo:\n ##keywords## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1818, 'template_id' => 50, 'key' => "ru-RU", 'value' => "Улучшить и переписать это содержимое в смарт-пути:\n\n ##description## \n\nНеобходимо использовать следующие ключевые слова в содержимом:\n ##keywords## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 1819, 'template_id' => 50, 'key' => "es-ES", 'value' => "Mejorar y reescribir este contenido de forma inteligente:\n\n ##description## \n\nDebe utilizar las palabras clave siguientes en el contenido:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 1820, 'template_id' => 50, 'key' => "sv-SE", 'value' => "Förbättra och skriva om det här innehållet på ett smart sätt:\n\n ##description## \n\nMåste använda följande nyckelord i innehållet:\n ##keywords## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1821, 'template_id' => 50, 'key' => "tr-TR", 'value' => "Bu içeriği geliştirin ve akıllı bir şekilde yeniden yazın.:\n\n ##description## \n\nİçerikte aşağıdaki anahtar sözcükleri kullanmak gerekir::\n ##keywords## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n"], - - ['id' => 1822, 'template_id' => 50, 'key' => "pt-BR", 'value' => "Melhore e reescreva este conteúdo de forma inteligente:\n\n ##description## \n\nDeve usar seguindo palavras-chave no conteúdo:\n ##keywords## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1823, 'template_id' => 50, 'key' => "ro-RO", 'value' => "Îmbunătățiți și rescrieți acest conținut într-un mod inteligent:\n\n ##description## \n\nTrebuie să utilizeze următoarele cuvinte cheie în conținut:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1824, 'template_id' => 50, 'key' => "vi-VN", 'value' => "Cải thiện và viết lại nội dung này theo cách thông minh:\n\n ##description## \n\nPhải dùng sau tư ̀ khóa trong nội dung:\n ##keywords## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 1825, 'template_id' => 50, 'key' => "sw-KE", 'value' => "Boresha na uandike upya maudhui haya kwa njia nzuri:\n\n ##description## \n\nLazima utumie manenomsingi yafuatayo katika maudhui:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1826, 'template_id' => 50, 'key' => "sl-SI", 'value' => "Izboljšite in znova napišite to vsebino na pameten način:\n\n ##description## \n\nUporabiti morate naslednje ključne besede v vsebini:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1827, 'template_id' => 50, 'key' => "th-TH", 'value' => "ปรับปรุงและเขียนเนื้อหานี้ใหม่ในวิธีที่ฉลาด:\n\n ##description## \n\nต้องใช้คีย์เวิร์ดต่อไปนี้ในเนื้อหา:\n ##keywords## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1828, 'template_id' => 50, 'key' => "uk-UA", 'value' => "Покращення і переписати цей вміст у розумний спосіб:\n\n ##description## \n\nМає використовувати наступні ключові слова у зміні:\n ##keywords## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n"], - - ['id' => 1829, 'template_id' => 50, 'key' => "lt-LT", 'value' => "Pagerinti ir perrašyti šį turinį protingu būdu:\n\n ##description## \n\nTuri naudoti šiuos raktažodžius turinio:\n ##keywords## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n"], - - ['id' => 1830, 'template_id' => 50, 'key' => "bg-BG", 'value' => "Подобрете и презапишете това съдържание по умен начин:\n\n ##description## \n\nТрябва да използвате следните ключови думи в съдържанието:\n ##keywords## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1831, 'template_id' => 51, 'key' => "en-US", 'value' => "please check grammar mistakes in this:\n\n ##description## and correct it"], - - ['id' => 1832, 'template_id' => 51, 'key' => "ar-AE", 'value' => "يرجى التحقق من الأخطاء النحوية في هذا:\n\n ##description## وتصحيحه"], - - ['id' => 1833, 'template_id' => 51, 'key' => "cmn-CN", 'value' => "請檢查這裡的語法錯誤:\n\n ##description## 並改正"], - - ['id' => 1834, 'template_id' => 51, 'key' => "hr-HR", 'value' => "molimo provjerite gramatičke pogreške u ovome:\n\n ##description## i ispraviti ga"], - - ['id' => 1835, 'template_id' => 51, 'key' => "cs-CZ", 'value' => "zkontrolujte prosím gramatické chyby v tomto:\n\n ##description## a opravit to"], - - ['id' => 1836, 'template_id' => 51, 'key' => "da-DK", 'value' => "tjek venligst grammatikfejl i dette:\n\n ##description## og rette det"], - - ['id' => 1837, 'template_id' => 51, 'key' => "nl-NL", 'value' => "controleer de grammaticafouten hierin:\n\n ##description## en corrigeer het"], - - ['id' => 1838, 'template_id' => 51, 'key' => "et-EE", 'value' => "palun kontrolli selles grammatikavigu:\n\n ##description## ja parandage see"], - - ['id' => 1839, 'template_id' => 51, 'key' => "fi-FI", 'value' => "tarkista kielioppivirheet tässä:\n\n ##description## ja korjaa se"], - - ['id' => 1840, 'template_id' => 51, 'key' => "fr-FR", 'value' => "s'il vous plaît vérifier les erreurs de grammaire dans ce:\n\n ##description## et corrigez-le"], - - ['id' => 1841, 'template_id' => 51, 'key' => "de-DE", 'value' => "Bitte überprüfen Sie hier die Grammatikfehler:\n\n ##description##und korrigieren Sie es"], - - ['id' => 1842, 'template_id' => 51, 'key' => "el-GR", 'value' => "ελέγξτε τα γραμματικά λάθη σε αυτό:\n\n ##description## και διορθώστε το"], - - ['id' => 1843, 'template_id' => 51, 'key' => "he-IL", 'value' => "אנא בדוק את טעויות הדקדוק בזה:\n\n ##description## ולתקן את זה"], - - ['id' => 1844, 'template_id' => 51, 'key' => "hi-IN", 'value' => "कृपया इसमें व्याकरण की गलतियों की जांच करें:\n\n ##description## और इसे ठीक करें"], - - ['id' => 1845, 'template_id' => 51, 'key' => "hu-HU", 'value' => "Kérjük, ellenőrizze a nyelvtani hibákat ebben:\n\n ##description## és javítsa ki"], - - ['id' => 1846, 'template_id' => 51, 'key' => "is-IS", 'value' => "vinsamlegast athugaðu málfræðivillur í þessu:\n\n ##description## og leiðrétta það"], - - ['id' => 1847, 'template_id' => 51, 'key' => "id-ID", 'value' => "silakan periksa kesalahan tata bahasa dalam hal ini:\n\n ##description## dan memperbaikinya"], - - ['id' => 1848, 'template_id' => 51, 'key' => "it-IT", 'value' => "per favore controlla gli errori grammaticali in questo:\n\n ##description## e correggilo"], - - ['id' => 1849, 'template_id' => 51, 'key' => "ja-JP", 'value' => "この文法の間違いを確認してください:\n\n ##description## そしてそれを修正してください"], - - ['id' => 1850, 'template_id' => 51, 'key' => "ko-KR", 'value' => "이것에서 문법 오류를 확인하십시오:\n\n ##description## 수정하고"], - - ['id' => 1851, 'template_id' => 51, 'key' => "ms-MY", 'value' => "sila semak kesalahan tatabahasa dalam ini:\n\n ##description## dan betulkan"], - - ['id' => 1852, 'template_id' => 51, 'key' => "nb-NO", 'value' => "Vennligst sjekk grammatikkfeil i dette:\n\n ##description## og korrigere det"], - - ['id' => 1853, 'template_id' => 51, 'key' => "pl-PL", 'value' => "proszę sprawdzić błędy gramatyczne w tym:\n\n ##description## i popraw to"], - - ['id' => 1854, 'template_id' => 51, 'key' => "pt-PT", 'value' => "por favor, verifique os erros gramaticais neste:\n\n ##description## e corrija"], - - ['id' => 1855, 'template_id' => 51, 'key' => "ru-RU", 'value' => "пожалуйста, проверьте грамматические ошибки в этом:\n\n ##description## и исправить это"], - - ['id' => 1856, 'template_id' => 51, 'key' => "es-ES", 'value' => "por favor revise los errores gramaticales en este:\n\n ##description## y corregirlo"], - - ['id' => 1857, 'template_id' => 51, 'key' => "sv-SE", 'value' => "kontrollera grammatikfel i detta:\n\n ##description## och rätta till det"], - - ['id' => 1858, 'template_id' => 51, 'key' => "tr-TR", 'value' => "lütfen buradaki gramer hatalarını kontrol edin:\n\n ##description## ve düzelt"], - - ['id' => 1859, 'template_id' => 51, 'key' => "pt-BR", 'value' => "por favor, verifique os erros gramaticais neste:\n\n ##description## e corrija"], - - ['id' => 1860, 'template_id' => 51, 'key' => "ro-RO", 'value' => "Vă rugăm să verificați greșelile gramaticale din aceasta:\n\n ##description## si corecteaza-l"], - - ['id' => 1861, 'template_id' => 51, 'key' => "vi-VN", 'value' => "vui lòng kiểm tra lỗi ngữ pháp trong này:\n\n ##description## và sửa nó"], - - ['id' => 1862, 'template_id' => 51, 'key' => "sw-KE", 'value' => "tafadhali angalia makosa ya sarufi katika hili:\n\n ##description## na kusahihisha"], - - ['id' => 1863, 'template_id' => 51, 'key' => "sl-SI", 'value' => "prosim preverite slovnične napake v tem:\n\n ##description## in ga popravi"], - - ['id' => 1864, 'template_id' => 51, 'key' => "th-TH", 'value' => "โปรดตรวจสอบข้อผิดพลาดทางไวยากรณ์ในเรื่องนี้:\n\n ##description## และแก้ไขให้ถูกต้อง"], - - ['id' => 1865, 'template_id' => 51, 'key' => "uk-UA", 'value' => "будь ласка, перевірте граматичні помилки в цьому:\n\n ##description## і виправте це"], - - ['id' => 1866, 'template_id' => 51, 'key' => "lt-LT", 'value' => "patikrinkite gramatikos klaidas:\n\n ##description## ir pataisyti"], - - ['id' => 1867, 'template_id' => 51, 'key' => "bg-BG", 'value' => "моля, проверете граматическите грешки в това:\n\n ##description## и го коригирайте"], - - ['id' => 1868, 'template_id' => 52, 'key' => "en-US", 'value' => "Write a vision that attracts the right people and customers. \n\nCompany Name:\n ##title## \n\nCompany Information:\n ##description## \n\nTone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1869, 'template_id' => 52, 'key' => "ar-AE", 'value' => "اكتب رؤية تجذب الأشخاص والعملاء المناسبين.\n\n اسم الشركة:\n ##title## \n\nمعلومات الشركة:\n ##description## \n\nيجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 1870, 'template_id' => 52, 'key' => "cmn-CN", 'value' => "寫下吸引合適的人和客戶的願景。 \n\n公司名稱:\n ##title## \n\n公司信息:\n ##description## \n\n結果的語氣必須是:\n ##tone_language## \n\n"], - - ['id' => 1871, 'template_id' => 52, 'key' => "hr-HR", 'value' => "Napišite viziju koja privlači prave ljude i kupce. \n\nNaziv tvrtke:\n ##title## \n\nInformacije o tvrtki:\n ##description## \n\nTon glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1872, 'template_id' => 52, 'key' => "cs-CZ", 'value' => "Napište vizi, která přiláká ty správné lidi a zákazníky. \n\nJméno společnosti:\n ##title## \n\nInformace o společnosti:\n ##description## \n\nTón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 1873, 'template_id' => 52, 'key' => "da-DK", 'value' => "Skriv en vision, der tiltrækker de rigtige mennesker og kunder. \n\nfirmanavn:\n ##title## \n\nVirksomhedsoplysninger:\n ##description## \n\nTone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 1874, 'template_id' => 52, 'key' => "nl-NL", 'value' => "Schrijf een visie die de juiste mensen en klanten aantrekt. \n\nBedrijfsnaam:\n ##title## \n\nbedrijfsinformatie:\n ##description## \n\nDe tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1875, 'template_id' => 52, 'key' => "et-EE", 'value' => "Kirjutage visioon, mis meelitab ligi õigeid inimesi ja kliente. \n\nEttevõtte nimi:\n ##title## \n\nettevõtte info:\n ##description## \n\nTulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1876, 'template_id' => 52, 'key' => "fi-FI", 'value' => "Kirjoita visio, joka houkuttelee oikeat ihmiset ja asiakkaat \n\nYrityksen nimi:\n ##title## \n\nYrityksen tiedot:\n ##description## \n\nÄänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 1877, 'template_id' => 52, 'key' => "fr-FR", 'value' => "Rédigez une vision qui attire les bonnes personnes et les bons clients. \n\nNom de l'entreprise:\n ##title## \n\nInformations sur la société:\n ##description## \n\nLe ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 1878, 'template_id' => 52, 'key' => "de-DE", 'value' => "Schreiben Sie eine Vision, die die richtigen Leute und Kunden anzieht. \n\nName der Firma:\n ##title## \n\nFirmeninformation:\n ##description## \n\nDer Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 1879, 'template_id' => 52, 'key' => "el-GR", 'value' => "Γράψτε ένα όραμα που προσελκύει τους κατάλληλους ανθρώπους και πελάτες. \n\nΌνομα εταιρείας:\n ##title## \n\nΣτοιχεία της εταιρείας:\n ##description## \n\nΟ τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1880, 'template_id' => 52, 'key' => "he-IL", 'value' => "כתוב חזון שמושך את האנשים והלקוחות הנכונים. \n\nשם החברה:\n ##title## \n\nמידע על החברה:\n ##description## \n\nטון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1881, 'template_id' => 52, 'key' => "hi-IN", 'value' => "एक दृष्टि लिखें जो सही लोगों और ग्राहकों को आकर्षित करे। \n\nकंपनी का नाम:\n ##title## \n\nकारखाना की जानकारी:\n ##description## \n\nपरिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1882, 'template_id' => 52, 'key' => "hu-HU", 'value' => "Írjon olyan jövőképet, amely vonzza a megfelelő embereket és ügyfeleket. \n\nCégnév:\n ##title## \n\ncéginformáció:\n ##description## \n\nAz eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1883, 'template_id' => 52, 'key' => "is-IS", 'value' => "Skrifaðu framtíðarsýn sem laðar að rétta fólkið og viðskiptavinina. \n\nnafn fyrirtækis:\n ##title## \n\nFyrirtækjaupplýsingar:\n ##description## \n\nRödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1884, 'template_id' => 52, 'key' => "id-ID", 'value' => "Tulis visi yang menarik orang dan pelanggan yang tepat. \n\nNama perusahaan:\n ##title## \n\ninformasi perusahaan:\n ##description## \n\nNada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 1885, 'template_id' => 52, 'key' => "it-IT", 'value' => "Scrivi una visione che attiri le persone e i clienti giusti. \n\nNome della ditta:\n ##title## \n\nInformazioni sulla società:\n ##description## \n\nTono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 1886, 'template_id' => 52, 'key' => "ja-JP", 'value' => "適切な人材や顧客を惹きつけるビジョンを書きましょう。 \n\n会社名:\n ##title## \n\n企業情報:\n ##description## \n\n結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 1887, 'template_id' => 52, 'key' => "ko-KR", 'value' => "올바른 사람과 고객을 끌어들이는 비전을 작성하십시오. \n\n회사 이름:\n ##title## \n\n회사 정보:\n ##description## \n\n결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 1888, 'template_id' => 52, 'key' => "ms-MY", 'value' => "Tulis visi yang menarik orang dan pelanggan yang betul. \n\nnama syarikat:\n ##title## \n\nMaklumat Syarikat:\n ##description## \n\nNada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 1889, 'template_id' => 52, 'key' => "nb-NO", 'value' => "Skriv en visjon som tiltrekker de rette menneskene og kundene. \n\nselskapsnavn:\n ##title## \n\nfirmainformasjon:\n ##description## \n\nTonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 1890, 'template_id' => 52, 'key' => "pl-PL", 'value' => "Napisz wizję, która przyciąga właściwych ludzi i klientów. \n\nNazwa firmy:\n ##title## \n\ninformacje o firmie:\n ##description## \n\nTon głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 1891, 'template_id' => 52, 'key' => "pt-PT", 'value' => "Escreva uma visão que atraia as pessoas e os clientes certos. \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\nO tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1892, 'template_id' => 52, 'key' => "ru-RU", 'value' => "Напишите видение, которое привлечет нужных людей и клиентов. \n\nНазвание компании:\n ##title## \n\nИнформация о компании:\n ##description## \n\nТон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 1893, 'template_id' => 52, 'key' => "es-ES", 'value' => "Escribe una visión que atraiga a las personas y clientes adecuados. \n\nnombre de empresa:\n ##title## \n\nInformación de la empresa:\n ##description## \n\nEl tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 1894, 'template_id' => 52, 'key' => "sv-SE", 'value' => "Skriv en vision som attraherar rätt personer och kunder. \n\nFöretagsnamn:\n ##title## \n\nFöretagsinformation\n ##description## \n\nTonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1895, 'template_id' => 52, 'key' => "tr-TR", 'value' => "Doğru insanları ve müşterileri çeken bir vizyon yazın. \n\nFirma Adı:\n ##title## \n\nŞirket Bilgisi:\n ##description## \n\nSonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 1896, 'template_id' => 52, 'key' => "pt-BR", 'value' => "Escreva uma visão que atraia as pessoas e os clientes certos. \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\nO tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1897, 'template_id' => 52, 'key' => "ro-RO", 'value' => "Scrieți o viziune care să atragă oamenii și clienții potriviți. \n\nNumele companiei:\n ##title## \n\nInformatiile Companiei:\n ##description## \n\nTonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1898, 'template_id' => 52, 'key' => "vi-VN", 'value' => "Viết một tầm nhìn thu hút đúng người và khách hàng. \n\nTên công ty:\n ##title## \n\nThông tin công ty:\n ##description## \n\nGiọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 1899, 'template_id' => 52, 'key' => "sw-KE", 'value' => "Andika maono yanayovutia watu na wateja sahihi. \n\njina la kampuni:\n ##title## \n\nTaarifa za Kampuni:\n ##description## \n\nToni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1900, 'template_id' => 52, 'key' => "sl-SI", 'value' => "Napišite vizijo, ki pritegne prave ljudi in stranke. \n\nime podjetja:\n ##title## \n\nInformacije o podjetju:\n ##description## \n\nTon glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1901, 'template_id' => 52, 'key' => "th-TH", 'value' => "เขียนวิสัยทัศน์ที่ดึงดูดผู้คนและลูกค้าที่เหมาะสม \n\nชื่อ บริษัท:\n ##title## \n\nข้อมูล บริษัท:\n ##description## \n\nน้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1902, 'template_id' => 52, 'key' => "uk-UA", 'value' => "Напишіть бачення, яке приверне потрібних людей і клієнтів. \n\nНазва компанії:\n ##title## \n\nінформація про компанію:\n ##description## \n\nТон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 1903, 'template_id' => 52, 'key' => "lt-LT", 'value' => "Parašykite viziją, kuri pritraukia reikiamus žmones ir klientus. \n\nĮmonės pavadinimas:\n ##title## \n\nKompanijos informacija:\n ##description## \n\nTuri būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 1904, 'template_id' => 52, 'key' => "bg-BG", 'value' => "Напишете визия, която привлича правилните хора и клиенти. \n\nИме на фирмата:\n ##title## \n\nинформация за компанията:\n ##description## \n\nТонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1905, 'template_id' => 53, 'key' => "en-US", 'value' => "Write a clear and concise statement of the company's goals and purpose, Company Name:\n ##title## \n\nCompany Information:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1906, 'template_id' => 53, 'key' => "ar-AE", 'value' => "اكتب بيانًا واضحًا وموجزًا ​​عن أهداف الشركة والغرض منها ، اسم الشركة:\n ##title## \n\nمعلومات الشركة:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 1907, 'template_id' => 53, 'key' => "cmn-CN", 'value' => "就公司的目標和宗旨寫出清晰簡潔的陳述,公司名稱:\n ##title## \n\n公司信息:\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n"], - - ['id' => 1908, 'template_id' => 53, 'key' => "hr-HR", 'value' => "Napišite jasnu i konciznu izjavu o ciljevima i svrsi tvrtke, Naziv tvrtke:\n ##title## \n\nInformacije o tvrtki:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1909, 'template_id' => 53, 'key' => "cs-CZ", 'value' => "Napište jasné a stručné prohlášení o cílech a účelu společnosti, Název společnosti:\n ##title## \n\nInformace o společnosti:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 1910, 'template_id' => 53, 'key' => "da-DK", 'value' => "Skriv en klar og kortfattet redegørelse for virksomhedens mål og formål, Firmanavn:\n ##title## \n\nVirksomhedsoplysninger:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 1911, 'template_id' => 53, 'key' => "nl-NL", 'value' => "Schrijf een duidelijke en beknopte verklaring van de doelstellingen en het doel van het bedrijf, bedrijfsnaam:\n ##title## \n\nbedrijfsinformatie:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1912, 'template_id' => 53, 'key' => "et-EE", 'value' => "Kirjutage selge ja lühidalt ettevõtte eesmärkide ja otstarbe kohta ettevõtte nimi:\n ##title## \n\nettevõtte info:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1913, 'template_id' => 53, 'key' => "fi-FI", 'value' => "Kirjoita selkeä ja ytimekäs selvitys yrityksen tavoitteista ja tarkoituksesta, Yrityksen nimi:\n ##title## \n\nYrityksen tiedot:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 1914, 'template_id' => 53, 'key' => "fr-FR", 'value' => "Rédigez une déclaration claire et concise des objectifs et du but de l'entreprise, Nom de l'entreprise:\n ##title## \n\nInformations sur la société:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 1915, 'template_id' => 53, 'key' => "de-DE", 'value' => "Schreiben Sie eine klare und prägnante Erklärung zu den Zielen und Zwecken des Unternehmens sowie zum Firmennamen:\n ##title## \n\nFirmeninformation:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 1916, 'template_id' => 53, 'key' => "el-GR", 'value' => "Γράψτε μια σαφή και συνοπτική δήλωση των στόχων και του σκοπού της εταιρείας, Όνομα εταιρείας:\n ##title## \n\nΣτοιχεία της εταιρείας:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 1917, 'template_id' => 53, 'key' => "he-IL", 'value' => "כתבו הצהרה ברורה ותמציתית של מטרות החברה ומטרתה, שם חברה:\n ##title## \n\nמידע על החברה:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1918, 'template_id' => 53, 'key' => "hi-IN", 'value' => "कंपनी के लक्ष्यों और उद्देश्य, कंपनी का नाम का स्पष्ट और संक्षिप्त विवरण लिखें:\n ##title## \n\nकारखाना की जानकारी:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 1919, 'template_id' => 53, 'key' => "hu-HU", 'value' => "Írjon világos és tömör nyilatkozatot a vállalat céljairól és céljáról, Cégnév:\n ##title## \n\ncéginformáció:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1920, 'template_id' => 53, 'key' => "is-IS", 'value' => "Skrifaðu skýra og hnitmiðaða yfirlýsingu um markmið og tilgang fyrirtækisins, Nafn fyrirtækis:\n ##title## \n\nFyrirtækjaupplýsingar:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1921, 'template_id' => 53, 'key' => "id-ID", 'value' => "Tulis pernyataan yang jelas dan ringkas tentang maksud dan tujuan perusahaan, Nama Perusahaan:\n ##title## \n\ninformasi perusahaan:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 1922, 'template_id' => 53, 'key' => "it-IT", 'value' => "Scrivi una dichiarazione chiara e concisa degli obiettivi e dello scopo dell'azienda, nome dell'azienda:\n ##title## \n\nInformazioni sulla società:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 1923, 'template_id' => 53, 'key' => "ja-JP", 'value' => "会社の目標と目的、会社名を明確かつ簡潔に記述します。:\n ##title## \n\n企業情報:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 1924, 'template_id' => 53, 'key' => "ko-KR", 'value' => "회사의 목표와 목적, 회사 이름을 명확하고 간결하게 작성하십시오.:\n ##title## \n\n회사 정보:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 1925, 'template_id' => 53, 'key' => "ms-MY", 'value' => "Tulis kenyataan yang jelas dan padat tentang matlamat dan tujuan syarikat, Nama Syarikat:\n ##title## \n\nMaklumat Syarikat:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 1926, 'template_id' => 53, 'key' => "nb-NO", 'value' => "Skriv en klar og kortfattet redegjørelse for selskapets mål og formål, Firmanavn:\n ##title## \n\nfirmainformasjon:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 1927, 'template_id' => 53, 'key' => "pl-PL", 'value' => "Napisz jasne i zwięzłe oświadczenie o celach i celu firmy, Nazwa firmy:\n ##title## \n\ninformacje o firmie:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 1928, 'template_id' => 53, 'key' => "pt-PT", 'value' => "Escreva uma declaração clara e concisa dos objetivos e propósito da empresa, Nome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1929, 'template_id' => 53, 'key' => "ru-RU", 'value' => "Напишите четкое и краткое изложение целей и задач компании, название компании:\n ##title## \n\nИнформация о компании:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 1930, 'template_id' => 53, 'key' => "es-ES", 'value' => "Escriba una declaración clara y concisa de los objetivos y el propósito de la empresa, Nombre de la empresa:\n ##title## \n\nInformación de la empresa:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 1931, 'template_id' => 53, 'key' => "sv-SE", 'value' => "Skriv en tydlig och kortfattad redogörelse för företagets mål och syfte, Företagsnamn:\n ##title## \n\nFöretagsinformation:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1932, 'template_id' => 53, 'key' => "tr-TR", 'value' => "Şirketin hedeflerini ve amacını, Şirket Adı'nı açık ve öz bir şekilde yazın:\n ##title## \n\nŞirket Bilgisi:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 1933, 'template_id' => 53, 'key' => "pt-BR", 'value' => "Escreva uma declaração clara e concisa dos objetivos e propósito da empresa, Nome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1934, 'template_id' => 53, 'key' => "ro-RO", 'value' => "Scrieți o declarație clară și concisă a obiectivelor și scopului companiei, Numele companiei:\n ##title## \n\nInformatiile Companiei:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1935, 'template_id' => 53, 'key' => "vi-VN", 'value' => "Viết một tuyên bố rõ ràng và súc tích về mục tiêu và mục đích của công ty, Tên công ty:\n ##title## \n\nThông tin công ty :\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 1936, 'template_id' => 53, 'key' => "sw-KE", 'value' => "Andika taarifa iliyo wazi na fupi ya malengo na madhumuni ya kampuni, Jina la Kampuni:\n ##title## \n\nTaarifa za Kampuni:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1937, 'template_id' => 53, 'key' => "sl-SI", 'value' => "Napišite jasno in jedrnato izjavo o ciljih in namenu podjetja, ime podjetja:\n ##title## \n\nInformacije o podjetju:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1938, 'template_id' => 53, 'key' => "th-TH", 'value' => "เขียนข้อความที่ชัดเจนและกระชับเกี่ยวกับเป้าหมายและวัตถุประสงค์ของบริษัท ชื่อบริษัท:\n ##title## \n\nข้อมูล บริษัท:\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1939, 'template_id' => 53, 'key' => "uk-UA", 'value' => "Напишіть чітке та стисле викладення цілей та мети компанії, назву компанії:\n ##title## \n\nінформація про компанію:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 1940, 'template_id' => 53, 'key' => "lt-LT", 'value' => "Aiškiai ir glaustai parašykite įmonės tikslus ir paskirtį, Įmonės pavadinimas:\n ##title## \n\nKompanijos informacija:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 1941, 'template_id' => 53, 'key' => "bg-BG", 'value' => "Напишете ясно и кратко изложение на целите и предназначението на компанията, Име на компанията:\n ##title## \n\nинформация за компанията:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1942, 'template_id' => 54, 'key' => "en-US", 'value' => "Write a short and cool bio for ##platform## \n\nCompany Name:\n ##title## \n\nCompany Information:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1943, 'template_id' => 54, 'key' => "ar-AE", 'value' => "اكتب سيرته الذاتية قصيرة وباردة ##platform## \n\nاسم الشركة:\n ##title## \n\nمعلومات الشركة:\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n"], - - ['id' => 1944, 'template_id' => 54, 'key' => "cmn-CN", 'value' => "給你寫個簡短又酷的生物 ##platform## \n\n公司名稱:\n ##title## \n\n公司資訊:\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n"], - - ['id' => 1945, 'template_id' => 54, 'key' => "hr-HR", 'value' => "Napiši kratku i cool biografije za ##platform## \n\nIme poduzeća:\n ##title## \n\nInformacije o tvrtki:\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n"], - - ['id' => 1946, 'template_id' => 54, 'key' => "cs-CZ", 'value' => "Napište krátký a cool bio pro ##platform## \n\nNázev společnosti:\n ##title## \n\nInformace o společnosti:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 1947, 'template_id' => 54, 'key' => "da-DK", 'value' => "Skrive en kort og sej biografi til ##platform## \n\nFirmanavn:\n ##title## \n\nVirksomhedsoplysninger:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 1948, 'template_id' => 54, 'key' => "nl-NL", 'value' => "Schrijf een korte en koele bio voor ##platform## \n\nBedrijfsnaam:\n ##title## \n\nbedrijfsinformatie:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1949, 'template_id' => 54, 'key' => "et-EE", 'value' => "Kirjuta lühike ja jahe bio ##platform## \n\nÄriühingu nimi:\n ##title## \n\nettevõtte info:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1950, 'template_id' => 54, 'key' => "fi-FI", 'value' => "Kirjoita lyhyt ja viileä ##platform## \n\nYrityksen nimi:\n ##title## \n\nYrityksen tiedot:\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n"], - - ['id' => 1951, 'template_id' => 54, 'key' => "fr-FR", 'value' => "Écrivez une biographie courte et fraîche pour ##platform## \n\nNom de l'entreprise:\n ##title## \n\nInformations sur la société:\n ##description## \n\n Tone de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 1952, 'template_id' => 54, 'key' => "de-DE", 'value' => "Schreiben Sie eine kurze und coole Bio für ##platform## \n\nFirmenname:\n ##title## \n\nFirmeninformation:\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n"], - - ['id' => 1953, 'template_id' => 54, 'key' => "el-GR", 'value' => "Γράψτε ένα σύντομο και δροσερό βιογραφικό για ##platform## \n\nΌνομα εταιρείας::\n ##title## \n\nΣτοιχεία της εταιρείας:\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n"], - - ['id' => 1954, 'template_id' => 54, 'key' => "he-IL", 'value' => "תכתוב קורות חיים קצרים ומגניבים. ##platform## \n\nשם חברה:\n ##title## \n\nמידע על החברה:\n ##description## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1955, 'template_id' => 54, 'key' => "hi-IN", 'value' => "के लिए एक छोटा और शांत जैव लिखें ##platform## \n\nकंपनी का नाम:\n ##title## \n\nकंपनी की जानकारी:\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n"], - - ['id' => 1956, 'template_id' => 54, 'key' => "hu-HU", 'value' => "Írj egy rövid és hűvös bioanyagot ##platform## \n\nCégnév:\n ##title## \n\ncéginformáció:\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1957, 'template_id' => 54, 'key' => "is-IS", 'value' => "Skrifaðu stutta og flotta ævisögu fyrir ##platform## \n\nnafn fyrirtækis:\n ##title## \n\nFyrirtækjaupplýsingar:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1958, 'template_id' => 54, 'key' => "id-ID", 'value' => "Tulis bio singkat dan keren untuk ##platform## \n\nNama perusahaan:\n ##title## \n\ninformasi perusahaan:\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n"], - - ['id' => 1959, 'template_id' => 54, 'key' => "it-IT", 'value' => "Scrivi un bio breve e cool per ##platform## \n\nNome della ditta:\n ##title## \n\nInformazioni sulla società:\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 1960, 'template_id' => 54, 'key' => "ja-JP", 'value' => "短く、クールな生体を書いてください ##platform## \n\n会社名:\n ##title## \n\n企業情報:\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n"], - - ['id' => 1961, 'template_id' => 54, 'key' => "ko-KR", 'value' => "짧고 멋진 약력을 작성하십시오. ##platform## \n\n회사 이름:\n ##title## \n\n회사 정보:\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 1962, 'template_id' => 54, 'key' => "ms-MY", 'value' => "Tulis bio ringkas dan keren untuk ##platform## \n\nnama syarikat:\n ##title## \n\nMaklumat Syarikat:\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n"], - - ['id' => 1963, 'template_id' => 54, 'key' => "nb-NO", 'value' => "Skriv en kort og kul bio for ##platform## \n\nselskapsnavn:\n ##title## \n\nfirmainformasjon:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 1964, 'template_id' => 54, 'key' => "pl-PL", 'value' => "Napisz krótką i fajną biografię dla ##platform## \n\nNazwa firmy:\n ##title## \n\ninformacje o firmie:\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 1965, 'template_id' => 54, 'key' => "pt-PT", 'value' => "Escreva uma biografia curta e legal para ##platform## \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1966, 'template_id' => 54, 'key' => "ru-RU", 'value' => "Напишите короткую и интересную биографию для ##platform## \n\nНазвание компании:\n ##title## \n\nИнформация о компании:\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 1967, 'template_id' => 54, 'key' => "es-ES", 'value' => "Escriba una breve y fresca biografía para ##platform## \n\nnombre de empresa:\n ##title## \n\nInformación de la empresa:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 1968, 'template_id' => 54, 'key' => "sv-SE", 'value' => "Skriv en kort och cool bio för ##platform## \n\nFöretagsnamn:\n ##title## \n\nFöretagsinformation:\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 1969, 'template_id' => 54, 'key' => "tr-TR", 'value' => "için kısa ve havalı bir biyografi yazın ##platform## \n\nFirma Adı:\n ##title## \n\nŞirket Bilgisi:\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n"], - - ['id' => 1970, 'template_id' => 54, 'key' => "pt-BR", 'value' => "Escreva uma biografia curta e legal para ##platform## \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 1971, 'template_id' => 54, 'key' => "ro-RO", 'value' => "Scrie o biografie scurtă și cool pentru ##platform## \n\nNumele companiei:\n ##title## \n\nInformatiile Companiei:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 1972, 'template_id' => 54, 'key' => "vi-VN", 'value' => "Viết một tiểu sử ngắn và thú vị cho ##platform## \n\nTên công ty:\n ##title## \n\nThông tin công ty:\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 1973, 'template_id' => 54, 'key' => "sw-KE", 'value' => "Andika wasifu mfupi na mzuri kwa ##platform## \n\njina la kampuni:\n ##title## \n\nTaarifa za Kampuni:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 1974, 'template_id' => 54, 'key' => "sl-SI", 'value' => "Napišite kratek in kul življenjepis za ##platform## \n\nime podjetja:\n ##title## \n\nInformacije o podjetju:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 1975, 'template_id' => 54, 'key' => "th-TH", 'value' => "เขียนชีวประวัติสั้น ๆ และน่าสนใจสำหรับ ##platform## \n\nชื่อ บริษัท:\n ##title## \n\nข้อมูล บริษัท:\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 1976, 'template_id' => 54, 'key' => "uk-UA", 'value' => "Напишіть коротку та круту біографію для ##platform## \n\nНазва компанії:\n ##title## \n\nінформація про компанію:\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n"], - - ['id' => 1977, 'template_id' => 54, 'key' => "lt-LT", 'value' => "Parašykite trumpą ir šaunią biografiją ##platform## \n\nĮmonės pavadinimas:\n ##title## \n\nKompanijos informacija:\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n"], - - ['id' => 1978, 'template_id' => 54, 'key' => "bg-BG", 'value' => "Напишете кратка и готина биография за ##platform## \n\nИме на фирмата:\n ##title## \n\nинформация за компанията:\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 1979, 'template_id' => 55, 'key' => "en-US", 'value' => "Write an engaging email about:\n\n ##description## \n\n Recipient:\n ##recipient## \n\n Recipient Position:\n ##recipient_position## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 1980, 'template_id' => 55, 'key' => "ar-AE", 'value' => "اكتب بريدًا إلكترونيًا جذابًا عنه:\n\n ##description## \n\n متلقي:\n ##recipient## \n\n موقف المستلم:\n ##recipient_position## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n"], - - ['id' => 1981, 'template_id' => 55, 'key' => "cmn-CN", 'value' => "撰寫關於的吸引人的電子郵件:\n\n ##description## \n\n 收件者:\n ##recipient## \n\n 收件者位置:\n ##recipient_position## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n"], - - ['id' => 1982, 'template_id' => 55, 'key' => "hr-HR", 'value' => "Napišite zanimljivu e-poruku o:\n\n ##description## \n\n Primatelj:\n ##recipient## \n\n Položaj primatelja:\n ##recipient_position## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n"], - - ['id' => 1983, 'template_id' => 55, 'key' => "cs-CZ", 'value' => "Napište zajímavý e-mail o:\n\n ##description## \n\n Příjemce:\n ##recipient## \n\n Pozice příjemce:\n ##recipient_position## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 1984, 'template_id' => 55, 'key' => "da-DK", 'value' => "Skriv en engagerende e-mail om:\n\n ##description## \n\n Modtager:\n ##recipient## \n\n Modtagerposition:\n ##recipient_position## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 1985, 'template_id' => 55, 'key' => "nl-NL", 'value' => "Schrijf een boeiende e-mail over:\n\n ##description## \n\n Ontvanger:\n ##recipient## \n\n Positie van de ontvanger:\n ##recipient_position## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 1986, 'template_id' => 55, 'key' => "et-EE", 'value' => "Kirjutage kaasahaarav e-kiri:\n\n ##description## \n\n Saaja:\n ##recipient## \n\n Saaja positsioon:\n ##recipient_position## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 1987, 'template_id' => 55, 'key' => "fi-FI", 'value' => "Kirjoita kiinnostava sähköposti aiheesta:\n\n ##description## \n\n Vastaanottaja:\n ##recipient## \n\n Vastaanottajan asema:\n ##recipient_position## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n"], - - ['id' => 1988, 'template_id' => 55, 'key' => "fr-FR", 'value' => "Rédigez un e-mail engageant à propos de:\n\n ##description## \n\n Destinataire:\n ##recipient## \n\n Poste du destinataire:\n ##recipient_position## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 1989, 'template_id' => 55, 'key' => "de-DE", 'value' => "Schreiben Sie eine ansprechende E-Mail über:\n\n ##description## \n\n Empfänger:\n ##recipient## \n\n Empfängerposition:\n ##recipient_position## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n"], - - ['id' => 1990, 'template_id' => 55, 'key' => "el-GR", 'value' => "Γράψτε ένα συναρπαστικό email για:\n\n ##description## \n\n Παραλήπτης:\n ##recipient## \n\n Θέση Παραλήπτη:\n ##recipient_position## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n"], - - ['id' => 1991, 'template_id' => 55, 'key' => "he-IL", 'value' => "כתוב אימייל מרתק על:\n\n ##description## \n\n מקבל:\n ##recipient## \n\n עמדת נמען:\n ##recipient_position## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 1992, 'template_id' => 55, 'key' => "hi-IN", 'value' => "के बारे में एक आकर्षक ईमेल लिखें:\n\n ##description## \n\n प्राप्तकर्ता:\n ##recipient## \n\n प्राप्तकर्ता स्थिति:\n ##recipient_position## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n"], - - ['id' => 1993, 'template_id' => 55, 'key' => "hu-HU", 'value' => "Írjon lebilincselő e-mailt erről:\n\n ##description## \n\n Befogadó:\n ##recipient## \n\n Címzett pozíciója:\n ##recipient_position## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n"], - - ['id' => 1994, 'template_id' => 55, 'key' => "is-IS", 'value' => "Skrifaðu grípandi tölvupóst um:\n\n ##description## \n\n Viðtakandi:\n ##recipient## \n\n Staða viðtakanda:\n ##recipient_position## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 1995, 'template_id' => 55, 'key' => "id-ID", 'value' => "Tulis email yang menarik tentang:\n\n ##description## \n\n Penerima:\n ##recipient## \n\n Posisi Penerima:\n ##recipient_position## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n"], - - ['id' => 1996, 'template_id' => 55, 'key' => "it-IT", 'value' => "Scrivi un'e-mail coinvolgente su:\n\n ##description## \n\n Destinatario:\n ##recipient## \n\n Posizione del destinatario:\n ##recipient_position## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 1997, 'template_id' => 55, 'key' => "ja-JP", 'value' => "~について魅力的なメールを書く:\n\n ##description## \n\n 受信者:\n ##recipient## \n\n 受信者の位置:\n ##recipient_position## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n"], - - ['id' => 1998, 'template_id' => 55, 'key' => "ko-KR", 'value' => "에 대한 매력적인 이메일 작성:\n\n ##description## \n\n 받는 사람:\n ##recipient## \n\n 받는 사람 위치:\n ##recipient_position## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 1999, 'template_id' => 55, 'key' => "ms-MY", 'value' => "Tulis e-mel yang menarik tentang:\n\n ##description## \n\n Penerima:\n ##recipient## \n\n Kedudukan Penerima:\n ##recipient_position## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n"], - - ['id' => 2000, 'template_id' => 55, 'key' => "nb-NO", 'value' => "Skriv en engasjerende e-post om:\n\n ##description## \n\n Mottaker:\n ##recipient## \n\n Mottakerposisjon:\n ##recipient_position## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2001, 'template_id' => 55, 'key' => "pl-PL", 'value' => "Napisz angażującego e-maila nt:\n\n ##description## \n\n Odbiorca:\n ##recipient## \n\n Pozycja odbiorcy:\n ##recipient_position## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2002, 'template_id' => 55, 'key' => "pt-PT", 'value' => "Escreva um e-mail atraente sobre:\n\n ##description## \n\n Destinatário:\n ##recipient## \n\n Posição do Destinatário:\n ##recipient_position## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2003, 'template_id' => 55, 'key' => "ru-RU", 'value' => "Напишите увлекательное письмо о:\n\n ##description## \n\n Получатель:\n ##recipient## \n\n Позиция получателя:\n ##recipient_position## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2004, 'template_id' => 55, 'key' => "es-ES", 'value' => "Escriba un correo electrónico atractivo sobre:\n\n ##description## \n\n Recipiente:\n ##recipient## \n\n Posición del destinatario:\n ##recipient_position## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2005, 'template_id' => 55, 'key' => "sv-SE", 'value' => "Skriv ett engagerande mejl om:\n\n ##description## \n\n Mottagare:\n ##recipient## \n\n Mottagarens position:\n ##recipient_position## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2006, 'template_id' => 55, 'key' => "tr-TR", 'value' => "hakkında ilgi çekici bir e-posta yazın:\n\n ##description## \n\n alıcı:\n ##recipient## \n\n Alıcı Pozisyonu:\n ##recipient_position## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n"], - - ['id' => 2007, 'template_id' => 55, 'key' => "pt-BR", 'value' => "Escreva um e-mail atraente sobre:\n\n ##description## \n\n Destinatário:\n ##recipient## \n\n Recipient Position:\n ##recipient_position## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2008, 'template_id' => 55, 'key' => "ro-RO", 'value' => "Scrieți un e-mail captivant despre:\n\n ##description## \n\n Destinatar:\n ##recipient## \n\n Poziția destinatarului:\n ##recipient_position## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2009, 'template_id' => 55, 'key' => "vi-VN", 'value' => "Viết một email hấp dẫn về:\n\n ##description## \n\n Người nhận:\n ##recipient## \n\n Vị trí người nhận:\n ##recipient_position## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2010, 'template_id' => 55, 'key' => "sw-KE", 'value' => "Andika barua pepe ya kuvutia kuhusu:\n\n ##description## \n\n Mpokeaji:\n ##recipient## \n\n Nafasi ya Mpokeaji:\n ##recipient_position## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2011, 'template_id' => 55, 'key' => "sl-SI", 'value' => "Napišite privlačno e-poštno sporočilo o:\n\n ##description## \n\n Prejemnik:\n ##recipient## \n\n Položaj prejemnika:\n ##recipient_position## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2012, 'template_id' => 55, 'key' => "th-TH", 'value' => "เขียนอีเมลที่น่าสนใจเกี่ยวกับ:\n\n ##description## \n\n ผู้รับ:\n ##recipient## \n\n ตำแหน่งผู้รับ:\n ##recipient_position## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2013, 'template_id' => 55, 'key' => "uk-UA", 'value' => "Напишіть цікавий електронний лист про:\n\n ##description## \n\n одержувач:\n ##recipient## \n\n Посада отримувача:\n ##recipient_position## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n"], - - ['id' => 2014, 'template_id' => 55, 'key' => "lt-LT", 'value' => "Parašykite patrauklų el. laišką apie:\n\n ##description## \n\n Gavėjas:\n ##recipient## \n\n Gavėjo padėtis:\n ##recipient_position## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n"], - - ['id' => 2015, 'template_id' => 55, 'key' => "bg-BG", 'value' => "Напишете увлекателен имейл за:\n\n ##description## \n\n Получател:\n ##recipient## \n\n Позиция на получател:\n ##recipient_position## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2016, 'template_id' => 56, 'key' => "en-US", 'value' => "Write an engaging email about:\n\n ##description## \n\n From:\n ##from## n\n To:\n ##to## \n\n Main Goal of this email:\n ##goal## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2017, 'template_id' => 56, 'key' => "ar-AE", 'value' => "اكتب بريدًا إلكترونيًا جذابًا حول:\n\n ##description## \n\n من:\n ##from## n\n ل:\n ##to## \n\n الهدف الرئيسي لهذا البريد الإلكتروني:\n ##goal## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 2018, 'template_id' => 56, 'key' => "cmn-CN", 'value' => "写一封引人入胜的电子邮件:\n\n ##description## \n\n 从:\n ##from## n\n 到:\n ##to## \n\n 这封电子邮件的主要目标:\n ##goal## \n\n 结果的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 2019, 'template_id' => 56, 'key' => "hr-HR", 'value' => "Napišite zanimljivu e-poruku o:\n\n ##description## \n\n Iz:\n ##from## n\n Do:\n ##to## \n\n Glavni cilj ove e-pošte:\n ##goal## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2020, 'template_id' => 56, 'key' => "cs-CZ", 'value' => "Napište zajímavý e-mail o:\n\n ##description## \n\n Z:\n ##from## n\n Na:\n ##to## \n\n Hlavní cíl tohoto e-mailu:\n ##goal## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2021, 'template_id' => 56, 'key' => "da-DK", 'value' => "Skriv en engagerende e-mail om:\n\n ##description## \n\n Fra:\n ##from## n\n Til:\n ##to## \n\n Hovedformålet med denne e-mail:\n ##goal## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2022, 'template_id' => 56, 'key' => "nl-NL", 'value' => "Schrijf een boeiende e-mail over:\n\n ##description## \n\n Van:\n ##from## n\n Naar:\n ##to## \n\n Hoofddoel van deze e-mail:\n ##goal## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2023, 'template_id' => 56, 'key' => "et-EE", 'value' => "Kirjutage kaasahaarav e-kiri teemal:\n\n ##description## \n\n Alates:\n ##from## n\n Saaja:\n ##to## \n\n Selle meili peamine eesmärk:\n ##goal## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2024, 'template_id' => 56, 'key' => "fi-FI", 'value' => "Kirjoita kiinnostava sähköposti aiheesta:\n\n ##description## \n\n Lähettäjä:\n ##from## n\n Vastaanottaja:\n ##to## \n\n Tämän sähköpostin päätavoite:\n ##goal## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 2025, 'template_id' => 56, 'key' => "fr-FR", 'value' => "Rédigez un e-mail engageant sur:\n\n ##description## \n\n Depuis:\n ##from## n\n Pour:\n ##to## \n\n Objectif principal de cet e-mail:\n ##goal## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2026, 'template_id' => 56, 'key' => "de-DE", 'value' => "Schreiben Sie eine ansprechende E-Mail über:\n\n ##description## \n\n Aus:\n ##from## n\n Zu:\n ##to## \n\n Hauptziel dieser E-Mail:\n ##goal## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 2027, 'template_id' => 56, 'key' => "el-GR", 'value' => "Γράψτε ένα συναρπαστικό email σχετικά με:\n\n ##description## \n\n Από:\n ##from## n\n Προς την:\n ##to## \n\n Κύριος στόχος αυτού του email:\n ##goal## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 2028, 'template_id' => 56, 'key' => "he-IL", 'value' => "כתוב אימייל מרתק על:\n\n ##description## \n\n מ:\n ##from## n\n ל:\n ##to## \n\n המטרה העיקרית של האימייל הזה:\n ##goal## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2029, 'template_id' => 56, 'key' => "hi-IN", 'value' => "इसके बारे में एक आकर्षक ईमेल लिखें:\n\n ##description## \n\n से:\n ##from## n\n को:\n ##to## \n\n इस ईमेल का मुख्य लक्ष्य:\n ##goal## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 2030, 'template_id' => 56, 'key' => "hu-HU", 'value' => "Írjon lebilincselő e-mailt a következőkről:\n\n ##description## \n\n Tól től:\n ##from## n\n Nak nek:\n ##to## \n\n Ennek az e-mailnek a fő célja:\n ##goal## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2031, 'template_id' => 56, 'key' => "is-IS", 'value' => "Skrifaðu grípandi tölvupóst um:\n\n ##description## \n\n Frá:\n ##from## n\n Til:\n ##to## \n\n Meginmarkmið þessa tölvupósts:\n ##goal## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2032, 'template_id' => 56, 'key' => "id-ID", 'value' => "Tulis email yang menarik tentang:\n\n ##description## \n\n Dari:\n ##from## n\n Ke:\n ##to## \n\n Tujuan Utama dari email ini:\n ##goal## \n\n Nada suara hasil harus:\n ##tone_language## \n\n"], - - ['id' => 2033, 'template_id' => 56, 'key' => "it-IT", 'value' => "Scrivi un'email coinvolgente su:\n\n ##description## \n\n Da:\n ##from## n\n A:\n ##to## \n\n Obiettivo principale di questa email:\n ##goal## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2034, 'template_id' => 56, 'key' => "ja-JP", 'value' => "以下について魅力的なメールを書きましょう:\n\n ##description## \n\n から:\n ##from## n\n に:\n ##to## \n\n このメールの主な目的:\n ##goal## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n"], - - ['id' => 2035, 'template_id' => 56, 'key' => "ko-KR", 'value' => "다음에 대해 관심을 끄는 이메일을 작성하세요:\n\n ##description## \n\n 에서:\n ##from## n\n 에게:\n ##to## \n\n 이 이메일의 주요 목표:\n ##goal## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 2036, 'template_id' => 56, 'key' => "ms-MY", 'value' => "Tulis e-mel yang menarik tentang:\n\n ##description## \n\n Daripada:\n ##from## n\n Kepada:\n ##to## \n\n Matlamat Utama e-mel ini:\n ##goal## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 2037, 'template_id' => 56, 'key' => "nb-NO", 'value' => "Skriv en engasjerende e-post om:\n\n ##description## \n\n Fra:\n ##from## n\n Til:\n ##to## \n\n Hovedmålet med denne e-posten:\n ##goal## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2038, 'template_id' => 56, 'key' => "pl-PL", 'value' => "Napisz angażującego e-maila na temat:\n\n ##description## \n\n Z:\n ##from## n\n Do:\n ##to## \n\n Główny cel tego e-maila:\n ##goal## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2039, 'template_id' => 56, 'key' => "pt-PT", 'value' => "Escreva um e-mail atraente sobre:\n\n ##description## \n\n De:\n ##from## n\n Para:\n ##to## \n\n Objetivo principal deste e-mail:\n ##goal## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2040, 'template_id' => 56, 'key' => "ru-RU", 'value' => "Напишите увлекательное письмо о:\n\n ##description## \n\n От:\n ##from## n\n К:\n ##to## \n\n Основная цель этого письма:\n ##goal## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2041, 'template_id' => 56, 'key' => "es-ES", 'value' => "Escriba un correo electrónico atractivo sobre:\n\n ##description## \n\n De:\n ##from## n\n A:\n ##to## \n\n Objetivo principal de este correo electrónico:\n ##goal## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2042, 'template_id' => 56, 'key' => "sv-SE", 'value' => "Skriv ett engagerande mejl om:\n\n ##description## \n\n Från:\n ##from## n\n Till:\n ##to## \n\n Huvudmålet med detta e-postmeddelande:\n ##goal## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2043, 'template_id' => 56, 'key' => "tr-TR", 'value' => "Şunlar hakkında ilgi çekici bir e-posta yazın:\n\n ##description## \n\n İtibaren:\n ##from## n\n İle:\n ##to## \n\n Bu e-postanın Ana Hedefi:\n ##goal## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 2044, 'template_id' => 56, 'key' => "pt-BR", 'value' => "Escreva um e-mail envolvente sobre:\n\n ##description## \n\n De:\n ##from## n\n Para:\n ##to## \n\n Objetivo principal deste e-mail:\n ##goal## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2045, 'template_id' => 56, 'key' => "ro-RO", 'value' => "Scrieți un e-mail captivant despre:\n\n ##description## \n\n Din:\n ##from## n\n La:\n ##to## \n\n Scopul principal al acestui e-mail:\n ##goal## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2046, 'template_id' => 56, 'key' => "vi-VN", 'value' => "Viết một email hấp dẫn về:\n\n ##description## \n\n Từ:\n ##from## n\n ĐẾN:\n ##to## \n\n Mục tiêu chính của email này:\n ##goal## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2047, 'template_id' => 56, 'key' => "sw-KE", 'value' => "Andika barua pepe ya kuvutia kuhusu:\n\n ##description## \n\n Kutoka:\n ##from## n\n Kwa:\n ##to## \n\n Lengo Kuu la barua pepe hii:\n ##goal## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2048, 'template_id' => 56, 'key' => "sl-SI", 'value' => "Napišite privlačno e-pošto o:\n\n ##description## \n\n Od:\n ##from## n\n Za:\n ##to## \n\n Glavni cilj tega e-poštnega sporočila:\n ##goal## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2049, 'template_id' => 56, 'key' => "th-TH", 'value' => "เขียนอีเมลที่น่าสนใจเกี่ยวกับ:\n\n ##description## \n\n จาก:\n ##from## n\n ถึง:\n ##to## \n\n เป้าหมายหลักของอีเมลนี้:\n ##goal## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2050, 'template_id' => 56, 'key' => "uk-UA", 'value' => "Напишіть цікавий електронний лист про:\n\n ##description## \n\n Від:\n ##from## n\n до:\n ##to## \n\n Основна мета цього листа:\n ##goal## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n"], - - ['id' => 2051, 'template_id' => 56, 'key' => "lt-LT", 'value' => "Parašykite patrauklų el. laišką apie:\n\n ##description## \n\n Iš:\n ##from## n\n Į: Kam:\n ##to## \n\n Pagrindinis šio el. laiško tikslas:\n ##goal## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 2052, 'template_id' => 56, 'key' => "bg-BG", 'value' => "Напишете увлекателен имейл за:\n\n ##description## \n\n От:\n ##from## n\n До:\n ##to## \n\n Основна цел на този имейл:\n ##goal## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2053, 'template_id' => 57, 'key' => "en-US", 'value' => "Write 10 catchy email subject lines for this product:\n\n ##title## \n\nProduct Description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2054, 'template_id' => 57, 'key' => "ar-AE", 'value' => "اكتب 10 سطور جذابة لموضوع البريد الإلكتروني لهذا المنتج:\n\n ##title## \n\nوصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 2055, 'template_id' => 57, 'key' => "cmn-CN", 'value' => "为该产品写 10 个醒目的电子邮件主题行:\n\n ##title## \n\n产品描述:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 2056, 'template_id' => 57, 'key' => "hr-HR", 'value' => "Napišite 10 privlačnih redaka predmeta e-pošte za ovaj proizvod:\n\n ##title## \n\nOpis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2057, 'template_id' => 57, 'key' => "cs-CZ", 'value' => "Napište 10 chytlavých předmětů e-mailu pro tento produkt:\n\n ##title## \n\nPopis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2058, 'template_id' => 57, 'key' => "da-DK", 'value' => "Skriv 10 fængende e-mail-emnelinjer for dette produkt:\n\n ##title## \n\nProdukt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2059, 'template_id' => 57, 'key' => "nl-NL", 'value' => "Schrijf 10 pakkende e-mailonderwerpregels voor dit product:\n\n ##title## \n\nProduct beschrijving:\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2060, 'template_id' => 57, 'key' => "et-EE", 'value' => "Kirjutage selle toote kohta 10 meeldejäävat meili teemarida:\n\n ##title## \n\nTootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2061, 'template_id' => 57, 'key' => "fi-FI", 'value' => "Kirjoita tälle tuotteelle 10 tarttuvaa sähköpostin aiheriviä:\n\n ##title## \n\nTuotteen Kuvaus:\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 2062, 'template_id' => 57, 'key' => "fr-FR", 'value' => "Rédigez 10 lignes d'objet accrocheuses pour ce produit:\n\n ##title## \n\nDescription du produit:\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2063, 'template_id' => 57, 'key' => "de-DE", 'value' => "Schreiben Sie 10 einprägsame E-Mail-Betreffzeilen für dieses Produkt:\n\n ##title## \n\nProduktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 2064, 'template_id' => 57, 'key' => "el-GR", 'value' => "Γράψτε 10 συναρπαστικές γραμμές θέματος email για αυτό το προϊόν:\n\n ##title## \n\nΠεριγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 2065, 'template_id' => 57, 'key' => "he-IL", 'value' => "כתוב 10 שורות נושא קליטות בדוא ל עבור מוצר זה:\n\n ##title## \n\nתיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2066, 'template_id' => 57, 'key' => "hi-IN", 'value' => "इस उत्पाद के लिए 10 आकर्षक ईमेल विषय पंक्तियाँ लिखें:\n\n ##title## \n\nउत्पाद वर्णन:\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 2067, 'template_id' => 57, 'key' => "hu-HU", 'value' => "Írjon 10 fülbemászó e-mail tárgysort ehhez a termékhez:\n\n ##title## \n\nTermékleírás:\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2068, 'template_id' => 57, 'key' => "is-IS", 'value' => "Skrifaðu 10 grípandi efnislínur í tölvupósti fyrir þessa vöru:\n\n ##title## \n\nVörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2069, 'template_id' => 57, 'key' => "id-ID", 'value' => "Tulis 10 baris subjek email yang menarik untuk produk ini:\n\n ##title## \n\nDeskripsi Produk:\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n"], - - ['id' => 2070, 'template_id' => 57, 'key' => "it-IT", 'value' => "Scrivi 10 righe dell'oggetto dell'e-mail accattivanti per questo prodotto:\n\n ##title## \n\nDescrizione del prodotto:\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2071, 'template_id' => 57, 'key' => "ja-JP", 'value' => "この製品に関するキャッチーな電子メールの件名を 10 行書きます:\n\n ##title## \n\n製品説明:\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n"], - - ['id' => 2072, 'template_id' => 57, 'key' => "ko-KR", 'value' => "이 제품에 대해 기억하기 쉬운 10개의 이메일 제목을 작성하십시오:\n\n ##title## \n\n제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 2073, 'template_id' => 57, 'key' => "ms-MY", 'value' => "Tulis 10 baris subjek e-mel yang menarik untuk produk ini:\n\n ##title## \n\nPenerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 2074, 'template_id' => 57, 'key' => "nb-NO", 'value' => "Skriv 10 fengende e-postemnelinjer for dette produktet:\n\n ##title## \n\nProduktbeskrivelse:\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2075, 'template_id' => 57, 'key' => "pl-PL", 'value' => "Napisz 10 chwytliwych tematów wiadomości e-mail dla tego produktu:\n\n ##title## \n\nOpis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2076, 'template_id' => 57, 'key' => "pt-PT", 'value' => "Escreva 10 linhas de assunto de e-mail cativantes para este produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2077, 'template_id' => 57, 'key' => "ru-RU", 'value' => "Напишите 10 броских тем письма для этого продукта:\n\n ##title## \n\nОписание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2078, 'template_id' => 57, 'key' => "es-ES", 'value' => "Escriba 10 líneas de asunto de correo electrónico pegadizas para este producto:\n\n ##title## \n\nDescripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2079, 'template_id' => 57, 'key' => "sv-SE", 'value' => "Skriv 10 catchy e-postämnesrader för denna produkt:\n\n ##title## \n\nProduktbeskrivning:\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2080, 'template_id' => 57, 'key' => "tr-TR", 'value' => "Bu ürün için akılda kalıcı 10 e-posta konu satırı yazın:\n\n ##title## \n\nÜrün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 2081, 'template_id' => 57, 'key' => "pt-BR", 'value' => "Escreva 10 linhas de assunto de e-mail atraentes para esse produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2082, 'template_id' => 57, 'key' => "ro-RO", 'value' => "Scrieți 10 subiecte captivante pentru e-mail pentru acest produs:\n\n ##title## \n\nDescriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2083, 'template_id' => 57, 'key' => "vi-VN", 'value' => "Viết 10 dòng tiêu đề email hấp dẫn cho sản phẩm này:\n\n ##title## \n\nMô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2084, 'template_id' => 57, 'key' => "sw-KE", 'value' => "Andika mada 10 za barua pepe zinazovutia za bidhaa hii:\n\n ##title## \n\nMaelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2085, 'template_id' => 57, 'key' => "sl-SI", 'value' => "Napišite 10 privlačnih vrstic z zadevo e-pošte za ta izdelek:\n\n ##title## \n\nOpis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2086, 'template_id' => 57, 'key' => "th-TH", 'value' => "เขียน 10 หัวเรื่องอีเมลที่จับใจสำหรับผลิตภัณฑ์นี้:\n\n ##title## \n\nรายละเอียดสินค้า:\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2087, 'template_id' => 57, 'key' => "uk-UA", 'value' => "Напишіть 10 яскравих тем електронних листів для цього продукту:\n\n ##title## \n\nОпис продукту:\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n"], - - ['id' => 2088, 'template_id' => 57, 'key' => "lt-LT", 'value' => "Parašykite 10 patrauklių šio produkto el. pašto temos eilučių:\n\n ##title## \n\nProdukto aprašymas:\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 2089, 'template_id' => 57, 'key' => "bg-BG", 'value' => "Напишете 10 запомнящи се теми на имейла за този продукт:\n\n ##title## \n\nОписание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2090, 'template_id' => 58, 'key' => "en-US", 'value' => 'Write an engaging email content about:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 2091, 'template_id' => 58, 'key' => "ar-AE", 'value' => 'اكتب محتوى بريد إلكتروني جذاب حول:\n\n ##description## \n\n TTالوحيدة من صوت النتيجة يجب أن تكون::\n ##tone_language## \n\n'], - - ['id' => 2092, 'template_id' => 58, 'key' => "cmn-CN", 'value' => '撰写引人入胜的电子邮件内容:\n\n ##description## \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 2093, 'template_id' => 58, 'key' => "hr-HR", 'value' => 'Napišite zanimljiv sadržaj e-pošte o tome:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 2094, 'template_id' => 58, 'key' => "cs-CZ", 'value' => 'Napište zajímavý obsah e-mailu o:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 2095, 'template_id' => 58, 'key' => "da-DK", 'value' => 'Skriv et engagerende e-mailindhold om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 2096, 'template_id' => 58, 'key' => "nl-NL", 'value' => 'Schrijf een boeiende e-mailinhoud over:\n\n ##description## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 2097, 'template_id' => 58, 'key' => "et-EE", 'value' => 'Kirjutage kaasahaarav meili sisu:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 2098, 'template_id' => 58, 'key' => "fi-FI", 'value' => 'Kirjoita kiinnostavaa sähköpostisisältöä aiheesta:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 2099, 'template_id' => 58, 'key' => "fr-FR", 'value' => 'Rédigez un contenu d e-mail engageant sur:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 2100, 'template_id' => 58, 'key' => "de-DE", 'value' => 'Schreiben Sie einen ansprechenden E-Mail-Inhalt über:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 2101, 'template_id' => 58, 'key' => "el-GR", 'value' => 'Γράψτε ένα ελκυστικό περιεχόμενο email για:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 2102, 'template_id' => 58, 'key' => "he-IL", 'value' => 'כתוב תוכן דוא"ל מרתק על:\n\n ##description## \n\n של הקול של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 2103, 'template_id' => 58, 'key' => "hi-IN", 'value' => 'के बारे में एक आकर्षक ईमेल सामग्री लिखें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 2104, 'template_id' => 58, 'key' => "hu-HU", 'value' => 'Írjon lebilincselő e-mail tartalmat erről:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 2105, 'template_id' => 58, 'key' => "is-IS", 'value' => 'Skrifaðu grípandi tölvupóstsefni um:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 2106, 'template_id' => 58, 'key' => "id-ID", 'value' => 'Tulis konten email yang menarik tentang:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 2107, 'template_id' => 58, 'key' => "it-IT", 'value' => 'Scrivi un contenuto email accattivante su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 2108, 'template_id' => 58, 'key' => "ja-JP", 'value' => '~について魅力的なメールコンテンツを作成します:\n\n ##description## \n\n 結果の声のトーンは:\n ##tone_language## \n\n'], - - ['id' => 2109, 'template_id' => 58, 'key' => "ko-KR", 'value' => '매력적인 이메일 콘텐츠를 작성하세요.:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 2110, 'template_id' => 58, 'key' => "ms-MY", 'value' => 'Tulis kandungan e-mel yang menarik tentang:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 2111, 'template_id' => 58, 'key' => "nb-NO", 'value' => 'Skriv et engasjerende e-postinnhold om:\n\n ##description## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 2112, 'template_id' => 58, 'key' => "pl-PL", 'value' => 'Napisz angażującą treść e-maila nt:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 2113, 'template_id' => 58, 'key' => "pt-PT", 'value' => 'Escreva um conteúdo de correio electrónico cativante sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 2114, 'template_id' => 58, 'key' => "ru-RU", 'value' => 'Напишите привлекательный контент по электронной почте о:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 2115, 'template_id' => 58, 'key' => "es-ES", 'value' => 'Escriba un contenido de correo electrónico atractivo sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 2116, 'template_id' => 58, 'key' => "sv-SE", 'value' => 'Skriv ett engagerande e-postinnehåll om:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 2117, 'template_id' => 58, 'key' => "tr-TR", 'value' => 'Hakkında ilgi çekici bir e-posta içeriği yazın:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 2118, 'template_id' => 58, 'key' => "pt-BR", 'value' => 'Escreva um conteúdo de e-mail envolvente sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 2119, 'template_id' => 58, 'key' => "ro-RO", 'value' => 'Scrieți un conținut de e-mail captivant despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 2120, 'template_id' => 58, 'key' => "vi-VN", 'value' => 'Viết một nội dung email hấp dẫn về:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 2121, 'template_id' => 58, 'key' => "sw-KE", 'value' => 'Andika maudhui ya barua pepe ya kuvutia kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 2122, 'template_id' => 58, 'key' => "sl-SI", 'value' => 'Napišite privlačno e-poštno vsebino o:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 2123, 'template_id' => 58, 'key' => "th-TH", 'value' => 'เขียนเนื้อหาอีเมลที่น่าสนใจเกี่ยวกับ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 2124, 'template_id' => 58, 'key' => "uk-UA", 'value' => 'Напишіть привабливий електронний лист про:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 2125, 'template_id' => 58, 'key' => "lt-LT", 'value' => 'Parašykite patrauklų el. pašto turinį:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 2126, 'template_id' => 58, 'key' => "bg-BG", 'value' => 'Напишете ангажиращо имейл съдържание за:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 2127, 'template_id' => 59, 'key' => "en-US", 'value' => "Write 10 interesting titles for Google ads of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n Title's length must be 30 characters\n\n"], - - ['id' => 2728, 'template_id' => 59, 'key' => "ar-AE", 'value' => "اكتب 10 عناوين مثيرة للاهتمام لإعلانات Google للمنتج التالي المستهدف:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n يجب أن يكون طول العنوان 30 حرفًا\n\n"], - - ['id' => 2129, 'template_id' => 59, 'key' => "cmn-CN", 'value' => "为以下产品的 Google 广告写 10 个有趣的标题,目的是:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n 标题长度必须为 30 个字符\n\n"], - - ['id' => 2130, 'template_id' => 59, 'key' => "hr-HR", 'value' => "Napišite 10 zanimljivih naslova za Google oglase sljedećeg proizvoda namijenjenog:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n Duljina naslova mora biti 30 znakova\n\n"], - - ['id' => 2131, 'template_id' => 59, 'key' => "cs-CZ", 'value' => "Napište 10 zajímavých názvů pro reklamy Google na následující produkt, na který je zaměřen:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n Délka názvu musí být 30 znaků\n\n"], - - ['id' => 2132, 'template_id' => 59, 'key' => "da-DK", 'value' => "Skriv 10 interessante titler til Google-annoncer for følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n Titlens længde skal være på 30 tegn\n\n"], - - ['id' => 2133, 'template_id' => 59, 'key' => "nl-NL", 'value' => "Schrijf 10 interessante titels voor Google-advertenties van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n TDe lengte van de titel moet 30 tekens zijn\n\n"], - - ['id' => 2134, 'template_id' => 59, 'key' => "et-EE", 'value' => "Kirjutage 10 huvitavat pealkirja järgmise toote Google'i reklaamidele:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n Pealkirja pikkus peab olema 30 tähemärki\n\n"], - - ['id' => 2135, 'template_id' => 59, 'key' => "fi-FI", 'value' => "Kirjoita 10 mielenkiintoista otsikkoa seuraavan tuotteen Google-mainoksille:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n Otsikon pituuden tulee olla 30 merkkiä\n\n"], - - ['id' => 2136, 'template_id' => 59, 'key' => "fr-FR", 'value' => "Écrivez 10 titres intéressants pour les annonces Google du produit suivant visant à:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n TLa longueur du titre doit être de 30 caractères\n\n"], - - ['id' => 2137, 'template_id' => 59, 'key' => "de-DE", 'value' => "Schreiben Sie 10 interessante Titel für Google-Anzeigen für das folgende Produkt, auf das Sie abzielen:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n Die Länge des Titels muss 30 Zeichen betragen\n\n"], - - ['id' => 2138, 'template_id' => 59, 'key' => "el-GR", 'value' => "Γράψτε 10 ενδιαφέροντες τίτλους για τις διαφημίσεις Google για το παρακάτω προϊόν:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n Το μήκος του τίτλου πρέπει να είναι 30 χαρακτήρες\n\n"], - - ['id' => 2139, 'template_id' => 59, 'key' => "he-IL", 'value' => "כתוב 10 כותרות מעניינות למודעות גוגל של המוצר הבא שמיועדות אליו:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n אורך הכותרת חייב להיות 30 תווים\n\n"], - - ['id' => 2140, 'template_id' => 59, 'key' => "hi-IN", 'value' => "निम्नलिखित उत्पाद के Google विज्ञापनों के लिए 10 दिलचस्प शीर्षक लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n शीर्षक की लंबाई 30 वर्ण होनी चाहिए\n\n"], - - ['id' => 2141, 'template_id' => 59, 'key' => "hu-HU", 'value' => "Írjon 10 érdekes címet a következő termék Google hirdetéseihez, amelyek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n A címnek 30 karakterből kell állnia\n\n"], - - ['id' => 2142, 'template_id' => 59, 'key' => "is-IS", 'value' => "Skrifaðu 10 áhugaverða titla fyrir Google auglýsingar fyrir eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru NafnVörulýsing:\n ##title## \n\n :\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n Lengd titilsins verður að vera 30 stafir\n\n"], - - ['id' => 2143, 'template_id' => 59, 'key' => "id-ID", 'value' => "Tulis 10 judul iklan Google yang menarik dari produk berikut yang dituju:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n Panjang judul harus 30 karakter\n\n"], - - ['id' => 2144, 'template_id' => 59, 'key' => "it-IT", 'value' => "Scrivi 10 titoli interessanti per gli annunci Google del seguente prodotto mirato:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n La lunghezza del titolo deve essere di 30 caratteri\n\n"], - - ['id' => 2145, 'template_id' => 59, 'key' => "ja-JP", 'value' => "次の商品の Google 広告用に、興味深いタイトルを 10 個書いてください。:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n タイトルの長さは 30 文字である必要があります\n\n"], - - ['id' => 2146, 'template_id' => 59, 'key' => "ko-KR", 'value' => "다음 제품에 대한 Google 광고의 흥미로운 제목 10개를 작성하세요.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n 제목 길이는 30자여야 합니다.\n\n"], - - ['id' => 2147, 'template_id' => 59, 'key' => "ms-MY", 'value' => "Tulis 10 tajuk menarik untuk iklan Google bagi produk berikut yang bertujuan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n Panjang tajuk mestilah 30 aksara\n\n"], - - ['id' => 2148, 'template_id' => 59, 'key' => "nb-NO", 'value' => "Skriv 10 interessante titler for Google-annonser for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n Tittelens lengde må være på 30 tegn\n\n"], - - ['id' => 2149, 'template_id' => 59, 'key' => "pl-PL", 'value' => "Napisz 10 interesujących tytułów reklam Google dla następującego produktu, do którego są skierowane:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n TDługość tytułu musi wynosić 30 znaków\n\n"], - - ['id' => 2150, 'template_id' => 59, 'key' => "pt-PT", 'value' => "Escreva 10 títulos interessantes para anúncios Google do seguinte produto destinados a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n"], - - ['id' => 2151, 'template_id' => 59, 'key' => "ru-RU", 'value' => "Напишите 10 интересных заголовков для объявлений Google следующего продукта, нацеленных на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n Длина заголовка должна быть 30 символов.\n\n"], - - ['id' => 2152, 'template_id' => 59, 'key' => "es-ES", 'value' => "Escriba 10 títulos interesantes para los anuncios de Google del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n PDescripción del Producto:\n ##description## \n\n TEl tono de voz del resultado debe ser:\n ##tone_language## \n\n La longitud del título debe ser de 30 caracteres.\n\n"], - - ['id' => 2153, 'template_id' => 59, 'key' => "sv-SE", 'value' => "Skriv 10 intressanta titlar för Google-annonser för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n Titelns längd måste vara 30 tecken\n\n"], - - ['id' => 2154, 'template_id' => 59, 'key' => "tr-TR", 'value' => "Hedeflenen aşağıdaki ürünün Google reklamları için 10 ilginç başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün AçıklamasıSonucun ses tonu şöyle olmalıdır:\n ##description## \n\n :\n ##tone_language## \n\n Başlığın uzunluğu 30 karakter olmalıdır\n\n"], - - ['id' => 2155, 'template_id' => 59, 'key' => "pt-BR", 'value' => "Escreva 10 títulos interessantes para anúncios do Google do seguinte produto destinado a:\n\n ##audience## \n\nNome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n"], - - ['id' => 2156, 'template_id' => 59, 'key' => "ro-RO", 'value' => "Scrieți 10 titluri interesante pentru reclamele Google ale următorului produs vizat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n Lungimea titlului trebuie să fie de 30 de caractere\n\n"], - - ['id' => 2157, 'template_id' => 59, 'key' => "vi-VN", 'value' => "Viết 10 tiêu đề thú vị cho quảng cáo Google của sản phẩm sau nhắm đến:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n Độ dài của tiêu đề phải là 30 ký tự\n\n"], - - ['id' => 2158, 'template_id' => 59, 'key' => "sw-KE", 'value' => "Andika mada 10 za kuvutia za matangazo ya Google za bidhaa ifuatayo inayolengaJina la bidhaa:\n\n ##audience## \n\n :\n ##title## \n\n PMaelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n Urefu wa kichwa lazima uwe na vibambo 30\n\n"], - - ['id' => 2159, 'template_id' => 59, 'key' => "sl-SI", 'value' => "Napišite 10 zanimivih naslovov za Google oglase naslednjega izdelka, namenjenegaIme izdelka:\n\n ##audience## \n\n :\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n"], - - ['id' => 2160, 'template_id' => 59, 'key' => "th-TH", 'value' => "เขียน 10 ชื่อที่น่าสนใจสำหรับโฆษณา Google ของผลิตภัณฑ์ต่อไปนี้มุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\nเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n ความยาวของชื่อเรื่องต้องมีความยาว 30 อักขระ\n\n"], - - ['id' => 2161, 'template_id' => 59, 'key' => "uk-UA", 'value' => "Напишіть 10 цікавих назв для оголошень Google наступного продукту, спрямованих на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n Довжина заголовка має бути 30 символів\n\n"], - - ['id' => 2162, 'template_id' => 59, 'key' => "lt-LT", 'value' => "Parašykite 10 įdomių šio produkto „Google“ skelbimų pavadinimų:\n\n ##audience## \n\nProdukto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n Pavadinimo ilgis turi būti 30 simbolių\n\n"], - - ['id' => 2163, 'template_id' => 59, 'key' => "bg-BG", 'value' => "Напишете 10 интересни заглавия за Google реклами на следния продукт, насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n Дължината на заглавието трябва да бъде 30 знака\n\n"], - - ['id' => 2164, 'template_id' => 60, 'key' => "en-US", 'value' => 'Write a trending tweet for a Twitter post about:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 2165, 'template_id' => 60, 'key' => "ar-AE", 'value' => 'اكتب تغريدة رائجة لمشاركة Twitter حول:\n\n ##description## \n\n TTالوحيدة من صوت النتيجة يجب أن تكون::\n ##tone_language## \n\n'], - - ['id' => 2166, 'template_id' => 60, 'key' => "cmn-CN", 'value' => '撰写引人入胜的电子邮件内容:\n\n ##description## \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 2167, 'template_id' => 60, 'key' => "hr-HR", 'value' => 'Napišite trendovski tweet za post na Twitteru o:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 2168, 'template_id' => 60, 'key' => "cs-CZ", 'value' => 'Napište trendový tweet pro příspěvek na Twitteru o:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 2169, 'template_id' => 60, 'key' => "da-DK", 'value' => 'Skriv et trending tweet til et Twitter-indlæg om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 2170, 'template_id' => 60, 'key' => "nl-NL", 'value' => 'Schrijf een trending tweet voor een Twitter-post over:\n\n ##description## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 2171, 'template_id' => 60, 'key' => "et-EE", 'value' => 'Kirjutage Twitteri postituse jaoks trendikas säuts:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 2172, 'template_id' => 60, 'key' => "fi-FI", 'value' => 'Kirjoita trendaava twiitti Twitter-postaukseen aiheesta:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 2173, 'template_id' => 60, 'key' => "fr-FR", 'value' => 'Rédigez un tweet tendance pour un post Twitter sur:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 2174, 'template_id' => 60, 'key' => "de-DE", 'value' => 'Schreiben Sie einen Trend-Tweet für einen Twitter-Beitrag darüber:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 2175, 'template_id' => 60, 'key' => "el-GR", 'value' => 'Γράψτε ένα δημοφιλές tweet για μια ανάρτηση στο Twitter σχετικά με:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 2176, 'template_id' => 60, 'key' => "he-IL", 'value' => ' כתוב ציוץ מגמתי לפוסט בטוויטר על:\n\n ##description## \n\n של הקול של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 2177, 'template_id' => 60, 'key' => "hi-IN", 'value' => 'के बारे में एक ट्विटर पोस्ट के लिए एक ट्रेंडिंग ट्वीट लिखें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 2178, 'template_id' => 60, 'key' => "hu-HU", 'value' => 'Írj egy felkapott tweetet egy Twitter-bejegyzéshez, amely erről szól:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 2179, 'template_id' => 60, 'key' => "is-IS", 'value' => 'Skrifaðu vinsælt kvak fyrir Twitter færslu um:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 2180, 'template_id' => 60, 'key' => "id-ID", 'value' => 'Tulis tweet yang sedang tren untuk posting Twitter tentang:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 2181, 'template_id' => 60, 'key' => "it-IT", 'value' => 'Scrivi un tweet di tendenza per un post su Twitter:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 2182, 'template_id' => 60, 'key' => "ja-JP", 'value' => 'についての Twitter 投稿のトレンドツイートを書く:\n\n ##description## \n\n 結果の声のトーンは:\n ##tone_language## \n\n'], - - ['id' => 2183, 'template_id' => 60, 'key' => "ko-KR", 'value' => '에 대한 Twitter 게시물에 대한 최신 트윗 작성:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 2184, 'template_id' => 60, 'key' => "ms-MY", 'value' => 'Tulis tweet sohor kini untuk siaran Twitter tentang:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 2185, 'template_id' => 60, 'key' => "nb-NO", 'value' => 'Skriv en populær tweet for et Twitter-innlegg om:\n\n ##description## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 2186, 'template_id' => 60, 'key' => "pl-PL", 'value' => 'Napisz popularny tweet do wpisu na Twitterze:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 2187, 'template_id' => 60, 'key' => "pt-PT", 'value' => 'Escrever um trending tweet para uma publicação no Twitter sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 2188, 'template_id' => 60, 'key' => "ru-RU", 'value' => 'Напишите популярный твит для поста в Твиттере о:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 2189, 'template_id' => 60, 'key' => "es-ES", 'value' => 'Escriba un tweet de tendencia para una publicación de Twitter sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 2190, 'template_id' => 60, 'key' => "sv-SE", 'value' => 'Skriv en trendig tweet för ett Twitter-inlägg om:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 2191, 'template_id' => 60, 'key' => "tr-TR", 'value' => 'Hakkında bir Twitter gönderisi için trend olan bir tweet yazın:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 2192, 'template_id' => 60, 'key' => "pt-BR", 'value' => 'Escreva um tweet de tendência para uma postagem no Twitter sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 2193, 'template_id' => 60, 'key' => "ro-RO", 'value' => 'Scrieți un tweet în tendințe pentru o postare Twitter despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 2194, 'template_id' => 60, 'key' => "vi-VN", 'value' => 'Viết một tweet xu hướng cho một bài đăng trên Twitter về:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 2195, 'template_id' => 60, 'key' => "sw-KE", 'value' => 'Andika tweet inayovuma kwa chapisho la Twitter kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 2196, 'template_id' => 60, 'key' => "sl-SI", 'value' => 'Napišite trendovski tvit za objavo na Twitterju o:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 2197, 'template_id' => 60, 'key' => "th-TH", 'value' => 'เขียนทวีตที่กำลังมาแรงสำหรับโพสต์ Twitter เกี่ยวกับ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 2198, 'template_id' => 60, 'key' => "uk-UA", 'value' => 'Напишіть популярний твіт для публікації в Twitter про:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 2199, 'template_id' => 60, 'key' => "lt-LT", 'value' => 'Parašykite patrauklų el. pašto turinį:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 2200, 'template_id' => 60, 'key' => "bg-BG", 'value' => 'Напишете актуален туит за публикация в Twitter за:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 2201, 'template_id' => 61, 'key' => "en-US", 'value' => 'Write inspiring posts for LinkedIn about:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 2202, 'template_id' => 61, 'key' => "ar-AE", 'value' => 'اكتب منشورات ملهمة على LinkedIn عنها:\n\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n'], - - ['id' => 2203, 'template_id' => 61, 'key' => "cmn-CN", 'value' => '为 LinkedIn 撰写鼓舞人心的帖子:\n\n ##description## \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 2204, 'template_id' => 61, 'key' => "hr-HR", 'value' => 'Pišite inspirativne postove za LinkedIn o tome:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 2205, 'template_id' => 61, 'key' => "cs-CZ", 'value' => 'Pište inspirativní příspěvky pro LinkedIn o:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 2206, 'template_id' => 61, 'key' => "da-DK", 'value' => 'Skriv inspirerende indlæg til LinkedIn om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 2207, 'template_id' => 61, 'key' => "nl-NL", 'value' => 'Schrijf inspirerende posts voor LinkedIn over:\n\n ##description## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 2208, 'template_id' => 61, 'key' => "et-EE", 'value' => 'Kirjutage LinkedIni jaoks inspireerivaid postitusi:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 2209, 'template_id' => 61, 'key' => "fi-FI", 'value' => 'Kirjoita inspiroivia viestejä LinkedInille aiheesta:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 2210, 'template_id' => 61, 'key' => "fr-FR", 'value' => 'Rédigez des articles inspirants pour LinkedIn à propos de:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 2211, 'template_id' => 61, 'key' => "de-DE", 'value' => 'Schreiben Sie inspirierende Beiträge für LinkedIn über:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 2212, 'template_id' => 61, 'key' => "el-GR", 'value' => 'Γράψτε εμπνευσμένες αναρτήσεις για το LinkedIn:\n\n ##description## \n\n v:\n ##tone_language## \n\n'], - - ['id' => 2213, 'template_id' => 61, 'key' => "he-IL", 'value' => 'כתוב פוסטים מעוררי השראה עבור LinkedIn על\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 2214, 'template_id' => 61, 'key' => "hi-IN", 'value' => 'लिंक्डइन के बारे में प्रेरक पोस्ट लिखें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 2215, 'template_id' => 61, 'key' => "hu-HU", 'value' => 'Írjon inspiráló bejegyzéseket a LinkedIn számára erről:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 2216, 'template_id' => 61, 'key' => "is-IS", 'value' => 'Skrifaðu hvetjandi færslur fyrir LinkedIn um:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 2217, 'template_id' => 61, 'key' => "id-ID", 'value' => 'Tulis postingan yang menginspirasi untuk LinkedIn tentang:\n\n ##description## \n\n TNada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 2218, 'template_id' => 61, 'key' => "it-IT", 'value' => 'Scrivi post stimolanti per LinkedIn su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 2219, 'template_id' => 61, 'key' => "ja-JP", 'value' => '~についてLinkedInにインスピレーションを与える投稿を書く:\n\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n'], - - ['id' => 2220, 'template_id' => 61, 'key' => "ko-KR", 'value' => 'LinkedIn에 대한 영감을 주는 게시물 작성:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n'], - - ['id' => 2221, 'template_id' => 61, 'key' => "ms-MY", 'value' => 'Tulis catatan yang memberi inspirasi untuk LinkedIn tentang:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 2222, 'template_id' => 61, 'key' => "nb-NO", 'value' => 'Skriv inspirerende innlegg for LinkedIn om:\n\n ##description## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 2223, 'template_id' => 61, 'key' => "pl-PL", 'value' => 'Pisz inspirujące posty na LinkedIn na temat:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 2224, 'template_id' => 61, 'key' => "pt-PT", 'value' => 'Escreva mensagens inspiradoras para o LinkedIn sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 2225, 'template_id' => 61, 'key' => "ru-RU", 'value' => 'Пишите вдохновляющие посты для LinkedIn о:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 2226, 'template_id' => 61, 'key' => "es-ES", 'value' => 'Escribe publicaciones inspiradoras para LinkedIn sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 2227, 'template_id' => 61, 'key' => "sv-SE", 'value' => 'Skriv inspirerande inlägg för LinkedIn om:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 2228, 'template_id' => 61, 'key' => "tr-TR", 'value' => 'hakkında LinkedIn için ilham verici yazılar yazın:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 2229, 'template_id' => 61, 'key' => "pt-BR", 'value' => 'Escreva postagens inspiradoras para o LinkedIn sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 2230, 'template_id' => 61, 'key' => "ro-RO", 'value' => 'Scrieți postări inspiratoare pentru LinkedIn despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 2231, 'template_id' => 61, 'key' => "vi-VN", 'value' => 'Viết các bài đăng đầy cảm hứng cho LinkedIn về:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 2232, 'template_id' => 61, 'key' => "sw-KE", 'value' => 'Andika machapisho ya kutia moyo kwa LinkedIn kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 2233, 'template_id' => 61, 'key' => "sl-SI", 'value' => 'Pišite navdihujoče objave za LinkedIn o:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 2234, 'template_id' => 61, 'key' => "th-TH", 'value' => 'เขียนโพสต์ที่สร้างแรงบันดาลใจสำหรับ LinkedIn เกี่ยวกับ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 2235, 'template_id' => 61, 'key' => "uk-UA", 'value' => 'Пишіть надихаючі дописи для LinkedIn про:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 2236, 'template_id' => 61, 'key' => "lt-LT", 'value' => 'Rašykite įkvepiančius „LinkedIn“ įrašus apie:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 2237, 'template_id' => 61, 'key' => "bg-BG", 'value' => 'Пишете вдъхновяващи публикации за LinkedIn за:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 2238, 'template_id' => 62, 'key' => "en-US", 'value' => 'Generate 10 eye catching notification messages about:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 2239, 'template_id' => 62, 'key' => "ar-AE", 'value' => 'إنشاء 10 رسائل إخطارات لافتة للنظر حول\n\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n'], - - ['id' => 2240, 'template_id' => 62, 'key' => "cmn-CN", 'value' => '生成 10 条引人注目的通知消息:\n\n ##description## \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 2241, 'template_id' => 62, 'key' => "hr-HR", 'value' => 'Generirajte 10 privlačnih poruka obavijesti o:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 2242, 'template_id' => 62, 'key' => "cs-CZ", 'value' => 'Vygenerujte 10 poutavých oznámení o:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 2243, 'template_id' => 62, 'key' => "da-DK", 'value' => 'Generer 10 iøjnefaldende meddelelser om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 2244, 'template_id' => 62, 'key' => "nl-NL", 'value' => 'Genereer 10 opvallende meldingsberichten over:\n\n ##description## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 2245, 'template_id' => 62, 'key' => "et-EE", 'value' => 'Looge 10 pilkupüüdvat teavitussõnumit:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 2246, 'template_id' => 62, 'key' => "fi-FI", 'value' => 'Luo 10 huomiota herättävää ilmoitusviestiä aiheesta:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 2247, 'template_id' => 62, 'key' => "fr-FR", 'value' => 'Générez 10 messages de notification accrocheurs sur:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 2248, 'template_id' => 62, 'key' => "de-DE", 'value' => 'Generieren Sie 10 auffällige Benachrichtigungen über:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 2249, 'template_id' => 62, 'key' => "el-GR", 'value' => 'Δημιουργήστε 10 εντυπωσιακά μηνύματα ειδοποίησης σχετικά με:\n\n ##description## \n\n v:\n ##tone_language## \n\n'], - - ['id' => 2250, 'template_id' => 62, 'key' => "he-IL", 'value' => 'צור 10 הודעות התראה מושכות עין על\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 2251, 'template_id' => 62, 'key' => "hi-IN", 'value' => 'के बारे में 10 आकर्षक सूचना संदेश उत्पन्न करें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 2252, 'template_id' => 62, 'key' => "hu-HU", 'value' => 'Hozzon létre 10 szemet gyönyörködtető értesítő üzenetet:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 2253, 'template_id' => 62, 'key' => "is-IS", 'value' => 'Búðu til 10 áberandi tilkynningaskilaboð um:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 2254, 'template_id' => 62, 'key' => "id-ID", 'value' => 'Hasilkan 10 pesan pemberitahuan yang menarik tentang:\n\n ##description## \n\n TNada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 2255, 'template_id' => 62, 'key' => "it-IT", 'value' => 'Genera 10 messaggi di notifica accattivanti su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 2256, 'template_id' => 62, 'key' => "ja-JP", 'value' => '~についてLinkedInにインスピレーションを与える投稿を書く:\n\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n'], - - ['id' => 2257, 'template_id' => 62, 'key' => "ko-KR", 'value' => '10개의 눈길을 끄는 알림 메시지 생성:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n'], - - ['id' => 2258, 'template_id' => 62, 'key' => "ms-MY", 'value' => 'Hasilkan 10 mesej pemberitahuan yang menarik perhatian tentang:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 2259, 'template_id' => 62, 'key' => "nb-NO", 'value' => 'Generer 10 iøynefallende varslingsmeldinger om:\n\n ##description## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 2260, 'template_id' => 62, 'key' => "pl-PL", 'value' => 'Wygeneruj 10 przyciągających wzrok powiadomień o:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 2261, 'template_id' => 62, 'key' => "pt-PT", 'value' => 'Gerar 10 mensagens de notificação atractivas sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 2262, 'template_id' => 62, 'key' => "ru-RU", 'value' => 'Создайте 10 привлекающих внимание уведомлений о:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 2263, 'template_id' => 62, 'key' => "es-ES", 'value' => 'Genere 10 mensajes de notificación llamativos sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 2264, 'template_id' => 62, 'key' => "sv-SE", 'value' => 'Generera 10 iögonfallande aviseringsmeddelanden om:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 2265, 'template_id' => 62, 'key' => "tr-TR", 'value' => 'Hakkında 10 göz alıcı bildirim mesajı oluşturun:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 2266, 'template_id' => 62, 'key' => "pt-BR", 'value' => 'Gerar 10 mensagens de notificação atraentes sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 2267, 'template_id' => 62, 'key' => "ro-RO", 'value' => 'Generați 10 mesaje de notificare atrăgătoare despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 2268, 'template_id' => 62, 'key' => "vi-VN", 'value' => 'Tạo 10 tin nhắn thông báo bắt mắt về:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 2269, 'template_id' => 62, 'key' => "sw-KE", 'value' => 'Tengeneza arifa 10 za kuvutia macho kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 2270, 'template_id' => 62, 'key' => "sl-SI", 'value' => 'Ustvarite 10 privlačnih obvestilnih sporočil o:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 2271, 'template_id' => 62, 'key' => "th-TH", 'value' => 'สร้าง 10 ข้อความแจ้งเตือนที่สะดุดตาเกี่ยวกับ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 2272, 'template_id' => 62, 'key' => "uk-UA", 'value' => 'Створіть 10 привабливих сповіщень про:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 2273, 'template_id' => 62, 'key' => "lt-LT", 'value' => 'Sukurkite 10 akį traukiančių pranešimų apie“ įrašus apie:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 2274, 'template_id' => 62, 'key' => "bg-BG", 'value' => 'Генерирайте 10 привличащи вниманието уведомителни съобщения за:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 2275, 'template_id' => 63, 'key' => "en-US", 'value' => "Write a professional and eye-catching description for the LinkedIn ads of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2276, 'template_id' => 63, 'key' => "ar-AE", 'value' => "اكتب وصفًا احترافيًا ولافت للنظر لإعلانات LinkedIn للمنتج التالي الذي يهدف إلى:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 2277, 'template_id' => 63, 'key' => "cmn-CN", 'value' => "為以下產品的 LinkedIn 廣告撰寫專業且引人注目的描述,旨在:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n"], - - ['id' => 2278, 'template_id' => 63, 'key' => "hr-HR", 'value' => "Napišite profesionalan i privlačan opis za LinkedIn oglase za sljedeći proizvod usmjeren na:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2279, 'template_id' => 63, 'key' => "cs-CZ", 'value' => "Napište profesionální a poutavý popis pro reklamy LinkedIn na následující produkt zaměřený na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2280, 'template_id' => 63, 'key' => "da-DK", 'value' => "Skriv en professionel og iøjnefaldende beskrivelse af LinkedIn-annoncerne for følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2281, 'template_id' => 63, 'key' => "nl-NL", 'value' => "Schrijf een professionele en opvallende beschrijving voor de LinkedIn-advertenties van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2282, 'template_id' => 63, 'key' => "et-EE", 'value' => "Kirjutage professionaalne ja pilkupüüdev kirjeldus järgmise toote LinkedIn reklaamidele, mis on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2283, 'template_id' => 63, 'key' => "fi-FI", 'value' => "Kirjoita ammattimainen ja huomiota herättävä kuvaus seuraavan tuotteen LinkedIn-mainoksille, jotka on tarkoitettu:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 2284, 'template_id' => 63, 'key' => "fr-FR", 'value' => "Rédigez une description professionnelle et accrocheuse pour les publicités LinkedIn du produit suivant destiné à :\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2285, 'template_id' => 63, 'key' => "de-DE", 'value' => "Verfassen Sie eine professionelle und auffällige Beschreibung für die LinkedIn-Anzeigen des folgenden Produkts mit deZielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 2286, 'template_id' => 63, 'key' => "el-GR", 'value' => "Γράψτε μια επαγγελματική και εντυπωσιακή περιγραφή για τις διαφημίσεις LinkedIn του παρακάτω προϊόντος με στόχο:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 2287, 'template_id' => 63, 'key' => "he-IL", 'value' => "כתוב תיאור מקצועי ומושך את העין למודעות הלינקדאין של המוצר הבא המכוונות ל:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2288, 'template_id' => 63, 'key' => "hi-IN", 'value' => "निम्नलिखित उत्पाद के लिंक्डइन विज्ञापनों के लिए एक पेशेवर और ध्यान आकर्षित करने वाला विवरण लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 2289, 'template_id' => 63, 'key' => "hu-HU", 'value' => "Írjon professzionális és szemet gyönyörködtető leírást az alábbi termékek LinkedIn hirdetéseihez, amelyek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2290, 'template_id' => 63, 'key' => "is-IS", 'value' => "Skrifaðu faglega og áberandi lýsingu fyrir LinkedIn auglýsingar á eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2291, 'template_id' => 63, 'key' => "id-ID", 'value' => "Tulis deskripsi profesional dan menarik untuk iklan LinkedIn dari produk berikut yang ditujukan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 2292, 'template_id' => 63, 'key' => "it-IT", 'value' => "Scrivi una descrizione professionale e accattivante per gli annunci LinkedIn del seguente prodotto mirato a:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2293, 'template_id' => 63, 'key' => "ja-JP", 'value' => "次の商品を対象とした LinkedIn 広告について、専門的で人目を引く説明を書いてください。\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 2294, 'template_id' => 63, 'key' => "ko-KR", 'value' => "다음을 목표로 하는 다음 제품의 LinkedIn 광고에 대한 전문적이고 눈길을 끄는 설명을 작성하십시오.\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 2295, 'template_id' => 63, 'key' => "ms-MY", 'value' => "Tulis penerangan profesional dan menarik perhatian untuk iklan LinkedIn produk berikut yang bertujuan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 2296, 'template_id' => 63, 'key' => "nb-NO", 'value' => "Skriv en profesjonell og iøynefallende beskrivelse for LinkedIn-annonsene for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2297, 'template_id' => 63, 'key' => "pl-PL", 'value' => "Napisz profesjonalny i przyciągający uwagę opis reklamy LinkedIn następującego produktu skierowanej do:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2298, 'template_id' => 63, 'key' => "pt-PT", 'value' => "Escreva uma descrição profissional e atraente para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2299, 'template_id' => 63, 'key' => "ru-RU", 'value' => "Напишите профессиональное и привлекательное описание для рекламы LinkedIn следующего продукта, нацеленного на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2300, 'template_id' => 63, 'key' => "es-ES", 'value' => "Escriba una descripción profesional y llamativa para los anuncios de LinkedIn del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2301, 'template_id' => 63, 'key' => "sv-SE", 'value' => "Skriv en professionell och iögonfallande beskrivning för LinkedIn-annonserna för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2302, 'template_id' => 63, 'key' => "tr-TR", 'value' => "Aşağıdaki ürünün LinkedIn reklamları için profesyonel ve dikkat çekici bir açıklama yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 2303, 'template_id' => 63, 'key' => "pt-BR", 'value' => "Escreva uma descrição profissional e atraente para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2304, 'template_id' => 63, 'key' => "ro-RO", 'value' => "Scrieți o descriere profesională și atrăgătoare pentru anunțurile LinkedIn ale următorului produs, care vizează:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2305, 'template_id' => 63, 'key' => "vi-VN", 'value' => "Viết mô tả chuyên nghiệp và bắt mắt cho quảng cáo LinkedIn của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2306, 'template_id' => 63, 'key' => "sw-KE", 'value' => "Andika maelezo ya kitaalamu na ya kuvutia macho ya matangazo ya LinkedIn ya bidhaa ifuatayo yanayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2307, 'template_id' => 63, 'key' => "sl-SI", 'value' => "Napišite profesionalen in privlačen opis za oglase LinkedIn naslednjega izdelka, namenjenega:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2308, 'template_id' => 63, 'key' => "th-TH", 'value' => "เขียนคำอธิบายที่เป็นมืออาชีพและสะดุดตาสำหรับโฆษณา LinkedIn ของผลิตภัณฑ์ต่อไปนี้ซึ่งมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2309, 'template_id' => 63, 'key' => "uk-UA", 'value' => "Напишіть професійний і привабливий опис для реклами LinkedIn наступного продукту, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 2310, 'template_id' => 63, 'key' => "lt-LT", 'value' => "Parašykite profesionalų ir akį traukiantį šio produkto „LinkedIn“ skelbimų aprašą, skirtą:\n\n ##audience## \n\nProdukto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 2311, 'template_id' => 63, 'key' => "bg-BG", 'value' => "Напишете професионално и привличащо вниманието описание за рекламите на LinkedIn на следния продукт, насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2312, 'template_id' => 64, 'key' => "en-US", 'value' => "Write 10 catchy headlines for the LinkedIn ads of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2313, 'template_id' => 64, 'key' => "ar-AE", 'value' => "اكتب 10 عناوين جذابة لإعلانات LinkedIn للمنتج التالي التي تستهدف:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 2314, 'template_id' => 64, 'key' => "cmn-CN", 'value' => "為以下產品的 LinkedIn 廣告寫 10 個吸引人的標題,目的是:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n"], - - ['id' => 2315, 'template_id' => 64, 'key' => "hr-HR", 'value' => "Napišite 10 privlačnih naslova za LinkedIn oglase sljedećeg proizvoda koji ciljaju na:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2316, 'template_id' => 64, 'key' => "cs-CZ", 'value' => "Napište 10 chytlavých titulků pro reklamy LinkedIn na následující produkt zaměřený na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2317, 'template_id' => 64, 'key' => "da-DK", 'value' => "Skriv 10 fængende overskrifter til LinkedIn-annoncerne for følgende produkt rettet mod::\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2318, 'template_id' => 64, 'key' => "nl-NL", 'value' => "Schrijf 10 pakkende koppen voor de LinkedIn-advertenties van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2319, 'template_id' => 64, 'key' => "et-EE", 'value' => "Kirjutage 10 meeldejäävat pealkirja järgmise toote LinkedIn reklaamidele, mis on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2320, 'template_id' => 64, 'key' => "fi-FI", 'value' => "Kirjoita 10 tarttuvaa otsikkoa seuraavan tuotteen LinkedIn-mainoksille, jotka on tarkoitettu:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 2321, 'template_id' => 64, 'key' => "fr-FR", 'value' => "Rédigez 10 titres accrocheurs pour les publicités LinkedIn du produit suivant destiné à :\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2322, 'template_id' => 64, 'key' => "de-DE", 'value' => "Schreiben Sie 10 einprägsame Schlagzeilen für die LinkedIn-Anzeigen des folgenden Produkts mit der Zielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 2323, 'template_id' => 64, 'key' => "el-GR", 'value' => "Γράψτε 10 εντυπωσιακούς τίτλους για τις διαφημίσεις LinkedIn του παρακάτω προϊόντος που στοχεύουν:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 2324, 'template_id' => 64, 'key' => "he-IL", 'value' => "כתוב 10 כותרות קליטות למודעות לינקדאין של המוצר הבא המיועדות ל:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2325, 'template_id' => 64, 'key' => "hi-IN", 'value' => "निम्नलिखित उत्पाद के लिंक्डइन विज्ञापनों के लिए 10 आकर्षक सुर्खियाँ लिखें जिनका उद्देश्य है:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 2326, 'template_id' => 64, 'key' => "hu-HU", 'value' => "Írjon 10 fülbemászó címet a következő termék LinkedIn-hirdetéseihez, amelyek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2327, 'template_id' => 64, 'key' => "is-IS", 'value' => "Skrifaðu 10 grípandi fyrirsagnir fyrir LinkedIn auglýsingarnar fyrir eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2328, 'template_id' => 64, 'key' => "id-ID", 'value' => "Tulis 10 tajuk utama yang menarik untuk iklan LinkedIn dari produk berikut yang ditujukan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 2329, 'template_id' => 64, 'key' => "it-IT", 'value' => "Scrivi 10 titoli accattivanti per gli annunci LinkedIn del seguente prodotto mirato a:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2330, 'template_id' => 64, 'key' => "ja-JP", 'value' => "次の製品を対象とした LinkedIn 広告のキャッチーな見出しを 10 個書いてください。\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 2331, 'template_id' => 64, 'key' => "ko-KR", 'value' => "다음을 목표로 하는 다음 제품의 LinkedIn 광고에 대한 10개의 눈길을 끄는 헤드라인을 작성하십시오.\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 2332, 'template_id' => 64, 'key' => "ms-MY", 'value' => "Tulis 10 tajuk yang menarik untuk iklan LinkedIn produk berikut bertujuan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 2333, 'template_id' => 64, 'key' => "nb-NO", 'value' => "Skriv 10 fengende overskrifter for LinkedIn-annonsene for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2334, 'template_id' => 64, 'key' => "pl-PL", 'value' => "Napisz 10 chwytliwych nagłówków do reklam LinkedIn następującego produktu, których celem jest:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2335, 'template_id' => 64, 'key' => "pt-PT", 'value' => "Escreva 10 títulos cativantes para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2336, 'template_id' => 64, 'key' => "ru-RU", 'value' => "Напишите 10 броских заголовков для рекламы LinkedIn следующего продукта, нацеленного на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2337, 'template_id' => 64, 'key' => "es-ES", 'value' => "Escriba 10 titulares atractivos para los anuncios de LinkedIn del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2338, 'template_id' => 64, 'key' => "sv-SE", 'value' => "Skriv 10 catchy rubriker för LinkedIn-annonserna för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2339, 'template_id' => 64, 'key' => "tr-TR", 'value' => "Aşağıdaki ürünün LinkedIn reklamları için akılda kalıcı 10 başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 2340, 'template_id' => 64, 'key' => "pt-BR", 'value' => "Escreva 10 títulos cativantes para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2341, 'template_id' => 64, 'key' => "ro-RO", 'value' => "Scrieți 10 titluri captivante pentru reclamele LinkedIn ale următorului produs care vizează:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2342, 'template_id' => 64, 'key' => "vi-VN", 'value' => "Viết 10 tiêu đề hấp dẫn cho quảng cáo LinkedIn của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2343, 'template_id' => 64, 'key' => "sw-KE", 'value' => "Andika vichwa 10 vya habari vya kuvutia vya matangazo ya LinkedIn vya bidhaa ifuatayo vinavyolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2344, 'template_id' => 64, 'key' => "sl-SI", 'value' => "Napišite 10 privlačnih naslovov za oglase LinkedIn naslednjega izdelka, namenjenega:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2345, 'template_id' => 64, 'key' => "th-TH", 'value' => "เขียนหัวข้อข่าว 10 หัวข้อที่น่าสนใจสำหรับโฆษณา LinkedIn ของผลิตภัณฑ์ต่อไปนี้โดยมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n เสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2346, 'template_id' => 64, 'key' => "uk-UA", 'value' => "Напишіть 10 привабливих заголовків для реклами LinkedIn наступного продукту, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 2347, 'template_id' => 64, 'key' => "lt-LT", 'value' => "Parašykite 10 patrauklių antraščių šio produkto „LinkedIn“ skelbimams, skirtiems:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 2348, 'template_id' => 64, 'key' => "bg-BG", 'value' => "Напишете 10 закачливи заглавия за рекламите на LinkedIn на следния продукт, насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2349, 'template_id' => 65, 'key' => "en-US", 'value' => "Write interesting outlines for a Youtube video about:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2350, 'template_id' => 65, 'key' => "ar-AE", 'value' => "اكتب مخططات شيقة لفيديو يوتيوب حول:\n\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n"], - - ['id' => 2351, 'template_id' => 65, 'key' => "cmn-CN", 'value' => "為 Youtube 視訊撰寫有趣的大綱:\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n"], - - ['id' => 2352, 'template_id' => 65, 'key' => "hr-HR", 'value' => "Napišite zanimljive nacrte za Youtube video o:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n"], - - ['id' => 2353, 'template_id' => 65, 'key' => "cs-CZ", 'value' => "Napište zajímavé osnovy pro video na YouTube o:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2354, 'template_id' => 65, 'key' => "da-DK", 'value' => "Skriv interessante oplæg til en Youtube-video om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2355, 'template_id' => 65, 'key' => "nl-NL", 'value' => "Schrijf interessante contouren voor een YouTube-video over:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2356, 'template_id' => 65, 'key' => "et-EE", 'value' => "Kirjutage huvitavaid konspekte Youtube'i video jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2357, 'template_id' => 65, 'key' => "fi-FI", 'value' => "Kirjoita mielenkiintoisia pääpiirteitä Youtube-videolle aiheesta:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n"], - - ['id' => 2358, 'template_id' => 65, 'key' => "fr-FR", 'value' => "Rédigez des plans intéressants pour une vidéo Youtube sur:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2359, 'template_id' => 65, 'key' => "de-DE", 'value' => "Schreiben Sie interessante Skizzen für ein YouTube-Video darüber:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n"], - - ['id' => 2360, 'template_id' => 65, 'key' => "el-GR", 'value' => "Γράψτε ενδιαφέροντα περιγράμματα για ένα βίντεο στο Youtube:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n"], - - ['id' => 2361, 'template_id' => 65, 'key' => "he-IL", 'value' => "כתוב קווי מתאר מעניינים לסרטון יוטיוב על:\n\n ##description## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2362, 'template_id' => 65, 'key' => "hi-IN", 'value' => "के बारे में एक Youtube वीडियो के लिए रोचक रूपरेखा लिखें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n"], - - ['id' => 2363, 'template_id' => 65, 'key' => "hu-HU", 'value' => "Írj érdekes vázlatokat egy Youtube-videóhoz, amelyről szól:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2364, 'template_id' => 65, 'key' => "is-IS", 'value' => "Skrifaðu áhugaverðar útlínur fyrir Youtube myndband um:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2365, 'template_id' => 65, 'key' => "id-ID", 'value' => "Tulis garis besar yang menarik untuk video Youtube tentang:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n"], - - ['id' => 2366, 'template_id' => 65, 'key' => "it-IT", 'value' => "Scrivi schemi interessanti per un video di Youtube su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2367, 'template_id' => 65, 'key' => "ja-JP", 'value' => "~についての YouTube ビデオの興味深い概要を書きます:\n\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n"], - - ['id' => 2368, 'template_id' => 65, 'key' => "ko-KR", 'value' => "YouTube 비디오에 대한 흥미로운 개요를 작성하십시오.:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 2369, 'template_id' => 65, 'key' => "ms-MY", 'value' => "Tulis garis besar yang menarik untuk video Youtube tentang:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n"], - - ['id' => 2370, 'template_id' => 65, 'key' => "nb-NO", 'value' => "Skriv interessante skisser for en Youtube-video om:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2371, 'template_id' => 65, 'key' => "pl-PL", 'value' => "Napisz ciekawe konspekty do filmu na Youtube o:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2372, 'template_id' => 65, 'key' => "pt-PT", 'value' => "Escreva esboços interessantes para um vídeo do Youtube sobre:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2373, 'template_id' => 65, 'key' => "ru-RU", 'value' => "Напишите интересные наброски для видео на Youtube о:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2374, 'template_id' => 65, 'key' => "es-ES", 'value' => "Escriba esquemas interesantes para un video de Youtube sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2375, 'template_id' => 65, 'key' => "sv-SE", 'value' => "Skriv intressanta konturer för en Youtube-video om:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2376, 'template_id' => 65, 'key' => "tr-TR", 'value' => "Hakkında bir Youtube videosu için ilginç ana hatlar yazın:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n"], - - ['id' => 2377, 'template_id' => 65, 'key' => "pt-BR", 'value' => "Escreva esboços interessantes para um vídeo do Youtube sobre:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2378, 'template_id' => 65, 'key' => "ro-RO", 'value' => "Scrieți schițe interesante pentru un videoclip YouTube despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2379, 'template_id' => 65, 'key' => "vi-VN", 'value' => "Viết dàn ý thú vị cho một video Youtube về:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2380, 'template_id' => 65, 'key' => "sw-KE", 'value' => "Andika muhtasari wa kuvutia wa video ya Youtube kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2381, 'template_id' => 65, 'key' => "sl-SI", 'value' => "Napišite zanimive osnutke za Youtube video o:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2382, 'template_id' => 65, 'key' => "th-TH", 'value' => "เขียนโครงร่างที่น่าสนใจสำหรับวิดีโอ Youtube เกี่ยวกับ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2383, 'template_id' => 65, 'key' => "uk-UA", 'value' => "Напишіть цікаві плани для відео на Youtube про:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n"], - - ['id' => 2384, 'template_id' => 65, 'key' => "lt-LT", 'value' => "Parašykite įdomius „YouTube“ vaizdo įrašo kontūrus:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n"], - - ['id' => 2385, 'template_id' => 65, 'key' => "bg-BG", 'value' => "Напишете интересни очертания за видеоклип в Youtube за:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2386, 'template_id' => 66, 'key' => "en-US", 'value' => "Generate engaging twitter threads based on a ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2387, 'template_id' => 66, 'key' => "ar-AE", 'value' => "إنشاء مواضيع تويتر جذابة على أساس أ ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 2388, 'template_id' => 66, 'key' => "cmn-CN", 'value' => "基于 ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 2389, 'template_id' => 66, 'key' => "hr-HR", 'value' => "Generirajte zanimljive teme na Twitteru na temelju a ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2390, 'template_id' => 66, 'key' => "cs-CZ", 'value' => "Generujte poutavá twitterová vlákna na základě a ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2391, 'template_id' => 66, 'key' => "da-DK", 'value' => "Generer engagerende twitter-tråde baseret på en ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2392, 'template_id' => 66, 'key' => "nl-NL", 'value' => "Genereer boeiende Twitter-threads op basis van een ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2393, 'template_id' => 66, 'key' => "et-EE", 'value' => "Looge köitvaid Twitteri lõime, mis põhinevad a ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2394, 'template_id' => 66, 'key' => "fi-FI", 'value' => "Luo kiinnostavia twitter-säikeitä a ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 2395, 'template_id' => 66, 'key' => "fr-FR", 'value' => "Générez des fils Twitter attrayants basés sur un ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2396, 'template_id' => 66, 'key' => "de-DE", 'value' => "Generieren Sie ansprechende Twitter-Threads basierend auf a ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 2397, 'template_id' => 66, 'key' => "el-GR", 'value' => "Δημιουργήστε ελκυστικά νήματα στο twitter με βάση το α ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 2398, 'template_id' => 66, 'key' => "he-IL", 'value' => "צור שרשורי טוויטר מרתקים המבוססים על א ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2399, 'template_id' => 66, 'key' => "hi-IN", 'value' => "एक के आधार पर आकर्षक ट्विटर सूत्र उत्पन्न करें ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 2400, 'template_id' => 66, 'key' => "hu-HU", 'value' => "Lebilincselő twitter-szálak létrehozása a ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2401, 'template_id' => 66, 'key' => "is-IS", 'value' => "Búðu til grípandi twitter þræði byggða á a ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2402, 'template_id' => 66, 'key' => "id-ID", 'value' => "Hasilkan utas twitter yang menarik berdasarkan a ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n"], - - ['id' => 2403, 'template_id' => 66, 'key' => "it-IT", 'value' => "Genera thread Twitter coinvolgenti basati su a ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2404, 'template_id' => 66, 'key' => "ja-JP", 'value' => "に基づいて魅力的な Twitter スレッドを生成します ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n"], - - ['id' => 2405, 'template_id' => 66, 'key' => "ko-KR", 'value' => "기반으로 매력적인 트위터 스레드 생성 ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 2406, 'template_id' => 66, 'key' => "ms-MY", 'value' => "Hasilkan benang twitter yang menarik berdasarkan a ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 2407, 'template_id' => 66, 'key' => "nb-NO", 'value' => "Generer engasjerende twitter-tråder basert på en ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2408, 'template_id' => 66, 'key' => "pl-PL", 'value' => "Generuj angażujące wątki na Twitterze w oparciu o ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2409, 'template_id' => 66, 'key' => "pt-PT", 'value' => "Gere tópicos envolventes no Twitter com base em um ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2410, 'template_id' => 66, 'key' => "ru-RU", 'value' => "Создавайте привлекательные темы в Твиттере на основе ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2411, 'template_id' => 66, 'key' => "es-ES", 'value' => "Genere hilos de twitter atractivos basados ​​en un ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2412, 'template_id' => 66, 'key' => "sv-SE", 'value' => "Skapa engagerande twittertrådar baserat på en ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2413, 'template_id' => 66, 'key' => "tr-TR", 'value' => "Bir temele dayalı ilgi çekici twitter ileti dizileri oluşturun ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 2414, 'template_id' => 66, 'key' => "pt-BR", 'value' => "Gerar tópicos envolventes no Twitter com base em um ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2415, 'template_id' => 66, 'key' => "ro-RO", 'value' => "Generați fire de twitter captivante pe baza a ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2416, 'template_id' => 66, 'key' => "vi-VN", 'value' => "Tạo chủ đề twitter hấp dẫn dựa trên ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2417, 'template_id' => 66, 'key' => "sw-KE", 'value' => "Tengeneza nyuzi zinazovutia za twitter kulingana na a ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2418, 'template_id' => 66, 'key' => "sl-SI", 'value' => "Ustvarite privlačne niti na Twitterju na podlagi a ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2419, 'template_id' => 66, 'key' => "th-TH", 'value' => "สร้างเธรด Twitter ที่น่าสนใจตาม ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2420, 'template_id' => 66, 'key' => "uk-UA", 'value' => "Створюйте захоплюючі теми Twitter на основі a ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n"], - - ['id' => 2421, 'template_id' => 66, 'key' => "lt-LT", 'value' => "Kurkite patrauklias Twitter gijas pagal a ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 2422, 'template_id' => 66, 'key' => "bg-BG", 'value' => "Генерирайте ангажиращи нишки в Twitter въз основа на a ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2423, 'template_id' => 67, 'key' => "en-US", 'value' => "Generate social post captions ready to grab attention adbout:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2424, 'template_id' => 67, 'key' => "ar-AE", 'value' => "أنشئ تعليقات منشورات اجتماعية جاهزة لجذب الانتباه حول:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 2425, 'template_id' => 67, 'key' => "cmn-CN", 'value' => "生成社交帖子标题以吸引注意力:\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 2426, 'template_id' => 67, 'key' => "hr-HR", 'value' => "Generirajte naslove postova na društvenim mrežama spremne da privuku pozornost o:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2427, 'template_id' => 67, 'key' => "cs-CZ", 'value' => "Vytvářejte titulky sociálních příspěvků připravené upoutat pozornost na:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2428, 'template_id' => 67, 'key' => "da-DK", 'value' => "Generer sociale indlægstekster klar til at fange opmærksomhed om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2429, 'template_id' => 67, 'key' => "nl-NL", 'value' => "Genereer bijschriften voor sociale berichten die klaar zijn om de aandacht te trekken over:\n\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2430, 'template_id' => 67, 'key' => "et-EE", 'value' => "Looge sotsiaalsete postituste subtiitreid, mis on valmis tähelepanu köitma järgmistel teemadel:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2431, 'template_id' => 67, 'key' => "fi-FI", 'value' => "Luo sosiaalisten viestien kuvatekstejä, jotka ovat valmiita kiinnittämään huomiota:\n\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 2432, 'template_id' => 67, 'key' => "fr-FR", 'value' => "Générez des légendes de publications sociales prêtes à attirer l'attention sur:\n\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2433, 'template_id' => 67, 'key' => "de-DE", 'value' => "Erstellen Sie Bildunterschriften für Social-Media-Beiträge, die Aufmerksamkeit erregen:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 2434, 'template_id' => 67, 'key' => "el-GR", 'value' => "Δημιουργήστε υπότιτλους αναρτήσεων κοινωνικής δικτύωσης έτοιμοι να τραβήξουν την προσοχή σχετικά με:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 2435, 'template_id' => 67, 'key' => "he-IL", 'value' => "צור כתוביות לפוסטים חברתיים מוכנים למשוך תשומת לב לגבי:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2436, 'template_id' => 67, 'key' => "hi-IN", 'value' => "इस बारे में ध्यान आकर्षित करने के लिए तैयार सामाजिक पोस्ट कैप्शन तैयार करें:\n\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 2437, 'template_id' => 67, 'key' => "hu-HU", 'value' => "Hozzon létre közösségi bejegyzések feliratait, amelyek felkelthetik a figyelmet:\n\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2438, 'template_id' => 67, 'key' => "is-IS", 'value' => "Búðu til myndatexta fyrir félagslegar færslur tilbúnar til að vekja athygli á:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2439, 'template_id' => 67, 'key' => "id-ID", 'value' => "Hasilkan teks pos sosial yang siap menarik perhatian tentang:\n\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n"], - - ['id' => 2440, 'template_id' => 67, 'key' => "it-IT", 'value' => "Genera didascalie per post social pronte ad attirare l'attenzione su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2441, 'template_id' => 67, 'key' => "ja-JP", 'value' => "以下について注目を集めるソーシャル投稿のキャプションを生成します:\n\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n"], - - ['id' => 2442, 'template_id' => 67, 'key' => "ko-KR", 'value' => "관심을 끌 준비가 된 소셜 게시물 캡션 생성:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 2443, 'template_id' => 67, 'key' => "ms-MY", 'value' => "Hasilkan kapsyen siaran sosial sedia untuk menarik perhatian tentang:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 2444, 'template_id' => 67, 'key' => "nb-NO", 'value' => "Generer sosiale innleggstekster klare til å fange oppmerksomhet om:\n\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2445, 'template_id' => 67, 'key' => "pl-PL", 'value' => "Generuj podpisy postów w mediach społecznościowych gotowe do przyciągnięcia uwagi na temat:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2446, 'template_id' => 67, 'key' => "pt-PT", 'value' => "Gere legendas de postagens sociais prontas para chamar a atenção sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2447, 'template_id' => 67, 'key' => "ru-RU", 'value' => "Создавайте подписи к постам в соцсетях, готовые привлечь внимание:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2448, 'template_id' => 67, 'key' => "es-ES", 'value' => "Genere subtítulos de publicaciones sociales listos para llamar la atención sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2449, 'template_id' => 67, 'key' => "sv-SE", 'value' => "Skapa sociala inläggstexter redo att fånga uppmärksamhet om:\n\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2450, 'template_id' => 67, 'key' => "tr-TR", 'value' => "Aşağıdaki konularda dikkat çekmeye hazır sosyal gönderi altyazıları oluşturun:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 2451, 'template_id' => 67, 'key' => "pt-BR", 'value' => "Gere legendas de publicações sociais prontas para chamar a atenção:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2452, 'template_id' => 67, 'key' => "ro-RO", 'value' => "Generați subtitrări pentru postările sociale gata să atragă atenția despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2453, 'template_id' => 67, 'key' => "vi-VN", 'value' => "Tạo chú thích bài đăng xã hội sẵn sàng thu hút sự chú ý về:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2454, 'template_id' => 67, 'key' => "sw-KE", 'value' => "Tengeneza vichwa vya machapisho ya kijamii tayari kuvutia umakini kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2455, 'template_id' => 67, 'key' => "sl-SI", 'value' => "Ustvarite napise družabnih objav, ki bodo pripravljeni pritegniti pozornost na:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2456, 'template_id' => 67, 'key' => "th-TH", 'value' => "สร้างคำอธิบายภาพโพสต์โซเชียลพร้อมที่จะดึงดูดความสนใจเกี่ยวกับ:\n\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2457, 'template_id' => 67, 'key' => "uk-UA", 'value' => "Створюйте підписи до публікацій у соціальних мережах, щоб привернути увагу до:\n\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n"], - - ['id' => 2458, 'template_id' => 67, 'key' => "lt-LT", 'value' => "Generuokite socialinių pranešimų antraštes, paruoštas atkreipti dėmesį į:\n\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 2459, 'template_id' => 67, 'key' => "bg-BG", 'value' => "Генерирайте надписи за социални публикации, готови да привлекат вниманието за:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2460, 'template_id' => 68, 'key' => "en-US", 'value' => "Generate youtube channel intro to grab attention adbout:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2461, 'template_id' => 68, 'key' => "ar-AE", 'value' => "أنشئ مقدمة لقناة youtube لجذب الانتباه حول:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 2462, 'template_id' => 68, 'key' => "cmn-CN", 'value' => "生成 youtube 频道介绍以吸引关注:\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 2463, 'template_id' => 68, 'key' => "hr-HR", 'value' => "Generirajte uvod za youtube kanal kako biste privukli pozornost na:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2464, 'template_id' => 68, 'key' => "cs-CZ", 'value' => "Vygenerujte úvod kanálu youtube, abyste upoutali pozornost na:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2465, 'template_id' => 68, 'key' => "da-DK", 'value' => "Generer YouTube-kanalintro for at fange opmærksomhed om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2466, 'template_id' => 68, 'key' => "nl-NL", 'value' => "Genereer YouTube-kanaalintro om de aandacht te trekken over:\n\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2467, 'template_id' => 68, 'key' => "et-EE", 'value' => "Looge YouTube'i kanali tutvustus, et köita tähelepanu järgmistel teemadel:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2468, 'template_id' => 68, 'key' => "fi-FI", 'value' => "Luo YouTube-kanavan esittely herättääksesi huomion:\n\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 2469, 'template_id' => 68, 'key' => "fr-FR", 'value' => "Générez une introduction de chaîne YouTube pour attirer l'attention sur :\n\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2470, 'template_id' => 68, 'key' => "de-DE", 'value' => "Erstellen Sie ein YouTube-Kanal-Intro, um Aufmerksamkeit zu erregen auf:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 2471, 'template_id' => 68, 'key' => "el-GR", 'value' => "Δημιουργήστε εισαγωγή καναλιού YouTube για να τραβήξετε την προσοχή σχετικά με:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 2472, 'template_id' => 68, 'key' => "he-IL", 'value' => "צור מבוא ערוץ יוטיוב כדי למשוך תשומת לב לגבי:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2473, 'template_id' => 68, 'key' => "hi-IN", 'value' => "इस बारे में ध्यान आकर्षित करने के लिए यूट्यूब चैनल का परिचय तैयार करें:\n\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 2474, 'template_id' => 68, 'key' => "hu-HU", 'value' => "Hozzon létre egy YouTube-csatorna bevezetőt, hogy felhívja magára a figyelmet:\n\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2475, 'template_id' => 68, 'key' => "is-IS", 'value' => "Búðu til kynningu á YouTube rás til að vekja athygli á:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2476, 'template_id' => 68, 'key' => "id-ID", 'value' => "Hasilkan intro saluran youtube untuk menarik perhatian tentang:\n\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n"], - - ['id' => 2477, 'template_id' => 68, 'key' => "it-IT", 'value' => "Genera l'introduzione del canale YouTube per attirare l'attenzione su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2478, 'template_id' => 68, 'key' => "ja-JP", 'value' => "YouTube チャンネルのイントロを生成して、次の点について注目を集めます:\n\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n"], - - ['id' => 2479, 'template_id' => 68, 'key' => "ko-KR", 'value' => "다음에 대한 관심을 끌기 위해 YouTube 채널 소개를 생성합니다:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 2480, 'template_id' => 68, 'key' => "ms-MY", 'value' => "Hasilkan pengenalan saluran youtube untuk menarik perhatian tentang:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 2481, 'template_id' => 68, 'key' => "nb-NO", 'value' => "Generer youtube-kanalintro for å fange oppmerksomhet om:\n\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2482, 'template_id' => 68, 'key' => "pl-PL", 'value' => "Wygeneruj wprowadzenie do kanału YouTube, aby zwrócić uwagę na:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2483, 'template_id' => 68, 'key' => "pt-PT", 'value' => "Gere a introdução do canal do youtube para chamar a atenção sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2484, 'template_id' => 68, 'key' => "ru-RU", 'value' => "Создайте интро для канала YouTube, чтобы привлечь внимание:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2485, 'template_id' => 68, 'key' => "es-ES", 'value' => "Genere la introducción del canal de YouTube para llamar la atención sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2486, 'template_id' => 68, 'key' => "sv-SE", 'value' => "Skapa youtube-kanalintro för att fånga uppmärksamhet om:\n\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2487, 'template_id' => 68, 'key' => "tr-TR", 'value' => "Dikkat çekmek için youtube kanalı tanıtımı oluşturun:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 2488, 'template_id' => 68, 'key' => "pt-BR", 'value' => "Gerar uma introdução de canal do YouTube para chamar a atenção:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2489, 'template_id' => 68, 'key' => "ro-RO", 'value' => "Generați introducerea canalului YouTube pentru a atrage atenția despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2490, 'template_id' => 68, 'key' => "vi-VN", 'value' => "Tạo phần giới thiệu kênh youtube để thu hút sự chú ý về:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2491, 'template_id' => 68, 'key' => "sw-KE", 'value' => "Tengeneza utangulizi wa kituo cha youtube ili kuvutia umakini kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2492, 'template_id' => 68, 'key' => "sl-SI", 'value' => "Ustvarite uvod v youtube kanal, da pritegnete pozornost na:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2493, 'template_id' => 68, 'key' => "th-TH", 'value' => "สร้างบทนำช่อง YouTube เพื่อดึงดูดความสนใจเกี่ยวกับ:\n\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2494, 'template_id' => 68, 'key' => "uk-UA", 'value' => "Створіть заставку для каналу YouTube, щоб привернути увагу до:\n\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n"], - - ['id' => 2495, 'template_id' => 68, 'key' => "lt-LT", 'value' => "Sukurkite „YouTube“ kanalo įvadą, kad patrauktumėte dėmesį:\n\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 2496, 'template_id' => 68, 'key' => "bg-BG", 'value' => "Генерирайте въведение в канал в YouTube, за да привлечете вниманието към:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2497, 'template_id' => 69, 'key' => "en-US", 'value' => "Write trendy hashtags for video about:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2498, 'template_id' => 69, 'key' => "ar-AE", 'value' => "اكتب علامات التجزئة العصرية للفيديو حول:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 2499, 'template_id' => 69, 'key' => "cmn-CN", 'value' => "撰寫有關視訊的趨勢雜湊標籤:\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n"], - - ['id' => 2500, 'template_id' => 69, 'key' => "hr-HR", 'value' => "Napišite trendi hashtagove za video o tome:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2501, 'template_id' => 69, 'key' => "cs-CZ", 'value' => "Napište trendy hashtagy pro video o:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2502, 'template_id' => 69, 'key' => "da-DK", 'value' => "Skriv trendy hashtags til video om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2503, 'template_id' => 69, 'key' => "nl-NL", 'value' => "Schrijf trendy hashtags voor video over:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2504, 'template_id' => 69, 'key' => "et-EE", 'value' => "Kirjutage trendikaid räsimärke video jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2505, 'template_id' => 69, 'key' => "fi-FI", 'value' => "Kirjoita trendikkäitä hashtageja videoon aiheesta:\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 2506, 'template_id' => 69, 'key' => "fr-FR", 'value' => "Écrivez des hashtags à la mode pour la vidéo sur:\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2507, 'template_id' => 69, 'key' => "de-DE", 'value' => "Schreiben Sie trendige Hashtags für Videos darüber:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 2508, 'template_id' => 69, 'key' => "el-GR", 'value' => "Γράψτε μοντέρνα hashtags για βίντεο:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 2509, 'template_id' => 69, 'key' => "he-IL", 'value' => "כתוב האשטאגים אופנתיים לסרטון על:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2510, 'template_id' => 69, 'key' => "hi-IN", 'value' => "वीडियो के बारे में ट्रेंडी हैशटैग लिखें:\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 2511, 'template_id' => 69, 'key' => "hu-HU", 'value' => "Írj divatos hashtageket a videóhoz:\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2512, 'template_id' => 69, 'key' => "is-IS", 'value' => "Skrifaðu töff hashtags fyrir myndband um:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2513, 'template_id' => 69, 'key' => "id-ID", 'value' => "Tulis tagar trendi untuk video tentang:\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 2514, 'template_id' => 69, 'key' => "it-IT", 'value' => "Scrivi hashtag alla moda per i video su:\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2515, 'template_id' => 69, 'key' => "ja-JP", 'value' => "についての動画に流行のハッシュタグを書きます:\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 2516, 'template_id' => 69, 'key' => "ko-KR", 'value' => "동영상에 대한 최신 해시태그를 작성하세요.:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 2517, 'template_id' => 69, 'key' => "ms-MY", 'value' => "Tulis hashtag yang bergaya untuk video tentang:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 2518, 'template_id' => 69, 'key' => "nb-NO", 'value' => "Skriv trendy hashtags for video om:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2519, 'template_id' => 69, 'key' => "pl-PL", 'value' => "Napisz modne hashtagi do filmu o:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2520, 'template_id' => 69, 'key' => "pt-PT", 'value' => "Escreva hashtags da moda para vídeos sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2521, 'template_id' => 69, 'key' => "ru-RU", 'value' => "Пишите модные хэштеги для видео о:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2522, 'template_id' => 69, 'key' => "es-ES", 'value' => "Escribe hashtags de moda para videos sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2523, 'template_id' => 69, 'key' => "sv-SE", 'value' => "Skriv trendiga hashtags för video om:\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2524, 'template_id' => 69, 'key' => "tr-TR", 'value' => "hakkında video için modaya uygun hashtag'ler yazın:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 2525, 'template_id' => 69, 'key' => "pt-BR", 'value' => "Escreva hashtags da moda para vídeos sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2526, 'template_id' => 69, 'key' => "ro-RO", 'value' => "Scrie hashtag-uri la modă pentru videoclipuri despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2527, 'template_id' => 69, 'key' => "vi-VN", 'value' => "Viết các thẻ bắt đầu bằng # hợp thời trang cho video về:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2528, 'template_id' => 69, 'key' => "sw-KE", 'value' => "Andika lebo za reli maarufu za video kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2529, 'template_id' => 69, 'key' => "sl-SI", 'value' => "Napišite trendovske hashtage za video o:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2530, 'template_id' => 69, 'key' => "th-TH", 'value' => "เขียนแฮชแท็กยอดนิยมสำหรับวิดีโอเกี่ยวกับ:\n\n ##description## \n\n เสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2531, 'template_id' => 69, 'key' => "uk-UA", 'value' => "Напишіть модні хештеги для відео про:\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 2532, 'template_id' => 69, 'key' => "lt-LT", 'value' => "Rašykite madingas žymas su grotelėmis vaizdo įrašams apie:\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 2533, 'template_id' => 69, 'key' => "bg-BG", 'value' => "Write trendy hashtags for video about:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2534, 'template_id' => 70, 'key' => "en-US", 'value' => "Write 10 short and simple article outlines about:\n\n ##description## \n\nBlog article title:\n ##title## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2535, 'template_id' => 70, 'key' => "ar-AE", 'value' => "اكتب 10 مقال موجز وبسيط الخطوط العريضة عنه:\n\n ##description## \n\nعنوان مقال المدونة:\n ##title## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n"], - - ['id' => 2536, 'template_id' => 70, 'key' => "cmn-CN", 'value' => "撰寫 10 篇簡短且簡單的文章概述:\n\n ##description## \n\n部落格文章標題:\n ##title## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n"], - - ['id' => 2537, 'template_id' => 70, 'key' => "hr-HR", 'value' => "Napišite 10 kratkih i jednostavnih nacrta članaka o:\n\n ##description## \n\nNaslov članka na blogu:\n ##title## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n"], - - ['id' => 2538, 'template_id' => 70, 'key' => "cs-CZ", 'value' => "Napište 10 krátkých a jednoduchých nástin článku o:\n\n ##description## \n\nNázev článku na blogu:\n ##title## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2539, 'template_id' => 70, 'key' => "da-DK", 'value' => "Skriv 10 korte og enkle artikeloversigter om:\n\n ##description## \n\nBlog artiklens titel:\n ##title## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2540, 'template_id' => 70, 'key' => "nl-NL", 'value' => "Schrijf 10 korte en eenvoudige artikeloverzichten over:\n\n ##description## \n\nTitel blogartikele:\n ##title## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2541, 'template_id' => 70, 'key' => "et-EE", 'value' => "Kirjutage 10 lühikest ja lihtsat artikli ülevaadet:\n\n ##description## \n\nBlogi artikli pealkiri:\n ##title## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2542, 'template_id' => 70, 'key' => "fi-FI", 'value' => "Kirjoita 10 lyhyttä ja yksinkertaista artikkelin päättelyä aiheesta:\n\n ##description## \n\nBlogin artikkelin otsikko:\n ##title## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n"], - - ['id' => 2543, 'template_id' => 70, 'key' => "fr-FR", 'value' => "Rédigez 10 résumés d'articles courts et simples sur:\n\n ##description## \n\nBTitre de l'article du blog:\n ##title## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2544, 'template_id' => 70, 'key' => "de-DE", 'value' => "Schreiben Sie 10 kurze und einfache Artikelskizzen zum Thema:\n\n ##description## \n\nTitel des Blogartikels:\n ##title## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n"], - - ['id' => 2545, 'template_id' => 70, 'key' => "el-GR", 'value' => "Γράψτε 10 σύντομες και απλές περιγραφές άρθρων για:\n\n ##description## \n\nΤίτλος άρθρου ιστολογίου:\n ##title## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n"], - - ['id' => 2546, 'template_id' => 70, 'key' => "he-IL", 'value' => "כתוב 10 קווי מתאר קצרים ופשוטים של מאמרים בנושא:\n\n ##description## \n\nכותרת המאמר בבלוג:\n ##title## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2547, 'template_id' => 70, 'key' => "hi-IN", 'value' => "के बारे में 10 छोटे और सरल लेख की रूपरेखा लिखें:\n\n ##description## \n\nब्लॉग लेख का शीर्षक:\n ##title## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n"], - - ['id' => 2548, 'template_id' => 70, 'key' => "hu-HU", 'value' => "Írj 10 rövid és egyszerű cikkvázlatot erről:\n\n ##description## \n\nBlog cikk címe:\n ##title## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2549, 'template_id' => 70, 'key' => "is-IS", 'value' => "Skrifaðu 10 stuttar og einfaldar greinar um:\n\n ##description## \n\nTitill blogggreinar:\n ##title## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2550, 'template_id' => 70, 'key' => "id-ID", 'value' => "Tulis 10 garis besar artikel pendek dan sederhana tentang:\n\n ##description## \n\nTitolo dell'articolo del blog:\n ##title## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n"], - - ['id' => 2551, 'template_id' => 70, 'key' => "it-IT", 'value' => "Scrivi 10 brevi e semplici schemi di articoli su:\n\n ##description## \n\nブログ記事タイトル:\n ##title## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2552, 'template_id' => 70, 'key' => "ja-JP", 'value' => "~についての短くて簡単な記事の概要を 10 個書きます:\n\n ##description## \n\nBlog article title:\n ##title## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n"], - - ['id' => 2553, 'template_id' => 70, 'key' => "ko-KR", 'value' => "10개의 짧고 간단한 기사 개요를 작성하십시오.:\n\n ##description## \n\n블로그 기사 제목:\n ##title## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 2554, 'template_id' => 70, 'key' => "ms-MY", 'value' => "Tulis 10 rangka artikel ringkas dan ringkas tentang:\n\n ##description## \n\nTajuk artikel blog:\n ##title## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n"], - - ['id' => 2555, 'template_id' => 70, 'key' => "nb-NO", 'value' => "Skriv 10 korte og enkle artikkelskisser om:\n\n ##description## \n\nBloggartikkeltittel:\n ##title## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2556, 'template_id' => 70, 'key' => "pl-PL", 'value' => "Napisz 10 krótkich i prostych konspektów artykułów nt:\n\n ##description## \n\nTytuł artykułu na blogu:\n ##title## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2557, 'template_id' => 70, 'key' => "pt-PT", 'value' => "Escreva 10 esboços de artigos curtos e simples sobre:\n\n ##description## \n\nTítulo do artigo do blog:\n ##title## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2558, 'template_id' => 70, 'key' => "ru-RU", 'value' => "Напишите 10 коротких и простых статей о:\n\n ##description## \n\nНазвание статьи в блоге:\n ##title## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2559, 'template_id' => 70, 'key' => "es-ES", 'value' => "Escribe 10 reseñas breves y sencillas de artículos sobre:\n\n ##description## \n\nTítulo del artículo del blog:\n ##title## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2560, 'template_id' => 70, 'key' => "sv-SE", 'value' => "Skriv 10 korta och enkla artikelskisser om:\n\n ##description## \n\nBloggartikelns titel:\n ##title## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2561, 'template_id' => 70, 'key' => "tr-TR", 'value' => "Hakkında 10 kısa ve basit makale özeti yazın:\n\n ##description## \n\nBlog makalesi başlığı:\n ##title## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n"], - - ['id' => 2562, 'template_id' => 70, 'key' => "pt-BR", 'value' => "Escreva 10 esboços de artigos curtos e simples sobre:\n\n ##description## \n\nTítulo do artigo do blog:\n ##title## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2563, 'template_id' => 70, 'key' => "ro-RO", 'value' => "Scrieți 10 contururi scurte și simple despre articole:\n\n ##description## \n\nTitlul articolului de pe blog:\n ##title## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2564, 'template_id' => 70, 'key' => "vi-VN", 'value' => "Viết 10 dàn ý bài viết ngắn và đơn giản về:\n\n ##description## \n\nTiêu đề bài viết trên blog:\n ##title## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2565, 'template_id' => 70, 'key' => "sw-KE", 'value' => "Andika muhtasari wa makala 10 fupi na rahisi kuhusu:\n\n ##description## \n\nKichwa cha makala ya blogu:\n ##title## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2566, 'template_id' => 70, 'key' => "sl-SI", 'value' => "Napišite 10 kratkih in preprostih orisov člankov o:\n\n ##description## \n\nNaslov članka v blogu:\n ##title## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2567, 'template_id' => 70, 'key' => "th-TH", 'value' => "เขียนโครงร่างบทความสั้นๆ ง่ายๆ 10 บทความเกี่ยวกับ:\n\n ##description## \n\nชื่อบทความบล็อก:\n ##title## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2568, 'template_id' => 70, 'key' => "uk-UA", 'value' => "Напишіть 10 коротких і простих нарисів статей про:\n\n ##description## \n\nНазва статті блогу:\n ##title## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n"], - - ['id' => 2569, 'template_id' => 70, 'key' => "lt-LT", 'value' => "Parašykite 10 trumpų ir paprastų straipsnio apybraižų apie:\n\n ##description## \n\nTinklaraščio straipsnio pavadinimas:\n ##title## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n"], - - ['id' => 2570, 'template_id' => 70, 'key' => "bg-BG", 'value' => "Напишете 10 кратки и прости очертания на статии за:\n\n ##description## \n\nЗаглавие на статията в блога:\n ##title## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2571, 'template_id' => 71, 'key' => "en-US", 'value' => "Write SEO meta title and description for a blog post about:\n\n ##description## \n\n Blog title:\n ##title## \n\n Seed Words:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2572, 'template_id' => 71, 'key' => "ar-AE", 'value' => "اكتب عنوان تعريف SEO ووصفًا لمنشور مدونة حول:\n\n ##description## \n\n عنوان المدونة:\n ##title## \n\n كلمات البذور:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 2573, 'template_id' => 71, 'key' => "cmn-CN", 'value' => "為有關以下內容的博客文章編寫 SEO 元標題和描述:\n\n ##description## \n\n 博客標題:\n ##title## \n\n 種子詞:\n ##keywords## \n\n 結果的語氣必須是:\n ##tone_language## \n\n"], - - ['id' => 2574, 'template_id' => 71, 'key' => "hr-HR", 'value' => "Napišite SEO meta naslov i opis za blog post o:\n\n ##description## \n\n Naslov bloga:\n ##title## \n\n Riječi sjemena:\n ##keywords## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2575, 'template_id' => 71, 'key' => "cs-CZ", 'value' => "Napište SEO meta název a popis pro blogový příspěvek o:\n\n ##description## \n\n Název blogu:\n ##title## \n\n Seed Slova:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2576, 'template_id' => 71, 'key' => "da-DK", 'value' => "Skriv SEO meta titel og beskrivelse til et blogindlæg om:\n\n ##description## \n\n Blog titel:\n ##title## \n\n Frøord:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2577, 'template_id' => 71, 'key' => "nl-NL", 'value' => "Schrijf een SEO-metatitel en -beschrijving voor een blogpost over:\n\n ##description## \n\n Blog Titel:\n ##title## \n\n Zaad woorden:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2578, 'template_id' => 71, 'key' => "et-EE", 'value' => "Kirjutage SEO metapealkiri ja kirjeldus blogipostituse jaoks, mis käsitleb:\n\n ##description## \n\n Blogi pealkiri:\n ##title## \n\n Seemne sõnad:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2579, 'template_id' => 71, 'key' => "fi-FI", 'value' => "Kirjoita SEO-sisällönkuvausotsikko ja kuvaus blogitekstille aiheesta:\n\n ##description## \n\n Blogin otsikko:\n ##title## \n\n Siemensanat:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 2580, 'template_id' => 71, 'key' => "fr-FR", 'value' => "Rédigez un méta-titre et une description SEO pour un article de blog sur :\n\n ##description## \n\n Titre du Blog:\n ##title## \n\n Mots de départ:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2581, 'template_id' => 71, 'key' => "de-DE", 'value' => "Schreiben Sie einen SEO-Metatitel und eine Beschreibung für einen Blogbeitrag über:\n\n ##description## \n\n Blog Titel:\n ##title## \n\n Samenwörter:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 2582, 'template_id' => 71, 'key' => "el-GR", 'value' => "Γράψτε τον μετα-τίτλο SEO και την περιγραφή για μια ανάρτηση ιστολογίου σχετικά με:\n\n ##description## \n\n Τίτλος Ιστολογίου:\n ##title## \n\n Σπόροι Λέξεις:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 2583, 'template_id' => 71, 'key' => "he-IL", 'value' => "כתוב מטא כותרת ותיאור של SEO עבור פוסט בבלוג על:\n\n ##description## \n\n כותרת הבלוג:\n ##title## \n\n מילות זרעים:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2584, 'template_id' => 71, 'key' => "hi-IN", 'value' => "निम्नलिखित के बारे में ब्लॉग पोस्ट के लिए SEO मेटा शीर्षक और विवरण लिखें:\n\n ##description## \n\n ब्लॉग का शीर्षक:\n ##title## \n\n बीज शब्द:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 2585, 'template_id' => 71, 'key' => "hu-HU", 'value' => "Írjon SEO metacímet és leírást egy blogbejegyzéshez:\n\n ##description## \n\n Blog cím:\n ##title## \n\n Magszavak:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2586, 'template_id' => 71, 'key' => "is-IS", 'value' => "Skrifaðu SEO meta titil og lýsingu fyrir bloggfærslu um:\n\n ##description## \n\n Titill bloggsins:\n ##title## \n\n Fræorð:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2587, 'template_id' => 71, 'key' => "id-ID", 'value' => "Tulis judul dan deskripsi meta SEO untuk posting blog tentang:\n\n ##description## \n\n Judul blog:\n ##title## \n\n Kata Benih:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 2588, 'template_id' => 71, 'key' => "it-IT", 'value' => "Scrivi il meta titolo e la descrizione SEO per un post sul blog su:\n\n ##description## \n\n Titolo del Blog:\n ##title## \n\n Parole seme:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2589, 'template_id' => 71, 'key' => "ja-JP", 'value' => "以下に関するブログ投稿の SEO メタ タイトルと説明を作成します。\n\n ##description## \n\n ブログのタイトル:\n ##title## \n\n シードワード:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 2590, 'template_id' => 71, 'key' => "ko-KR", 'value' => "다음에 대한 블로그 게시물의 SEO 메타 제목 및 설명 작성:\n\n ##description## \n\n 블로그 제목:\n ##title## \n\n 시드 단어:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 2591, 'template_id' => 71, 'key' => "ms-MY", 'value' => "Tulis tajuk dan penerangan meta SEO untuk catatan blog tentang:\n\n ##description## \n\n Tajuk blog:\n ##title## \n\n Kata Benih:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 2592, 'template_id' => 71, 'key' => "nb-NO", 'value' => "Skriv SEO-metatittel og beskrivelse for et blogginnlegg om:\n\n ##description## \n\n Bloggtittel:\n ##title## \n\n Frøord:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2593, 'template_id' => 71, 'key' => "pl-PL", 'value' => "Napisz meta tytuł i opis SEO dla posta na blogu na temat:\n\n ##description## \n\n Tytuł bloga:\n ##title## \n\n Słowa nasion:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2594, 'template_id' => 71, 'key' => "pt-PT", 'value' => "Escreva meta título e descrição de SEO para um post de blog sobre:\n\n ##description## \n\n Título do Blog:\n ##title## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2595, 'template_id' => 71, 'key' => "ru-RU", 'value' => "Напишите SEO мета-заголовок и описание для сообщения в блоге о:\n\n ##description## \n\n Название блога:\n ##title## \n\n Исходные слова:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2596, 'template_id' => 71, 'key' => "es-ES", 'value' => "Escriba el metatítulo y la descripción de SEO para una publicación de blog sobre:\n\n ##description## \n\n Titulo de Blog:\n ##title## \n\n Palabras semilla:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2597, 'template_id' => 71, 'key' => "sv-SE", 'value' => "Skriv SEO-metatitel och beskrivning för ett blogginlägg om:\n\n ##description## \n\n Bloggtitel:\n ##title## \n\n Frö ord:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2598, 'template_id' => 71, 'key' => "tr-TR", 'value' => "Aşağıdakilerle ilgili bir blog yazısı için SEO meta başlığı ve açıklaması yazın:\n\n ##description## \n\n Blog başlığı:\n ##title## \n\n tohum kelimeler:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 2599, 'template_id' => 71, 'key' => "pt-BR", 'value' => "Escreva meta título e descrição de SEO para um post de blog sobre:\n\n ##description## \n\n Título do Blog:\n ##title## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2600, 'template_id' => 71, 'key' => "ro-RO", 'value' => "Scrieți meta titlul și descrierea SEO pentru o postare de blog despre:\n\n ##description## \n\n Titlu de Blog:\n ##title## \n\n Cuvinte sămânță:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2601, 'template_id' => 71, 'key' => "vi-VN", 'value' => "Viết tiêu đề và mô tả meta SEO cho một bài đăng trên blog về:\n\n ##description## \n\n Tiêu đề Blog:\n ##title## \n\n từ hạt giống:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2602, 'template_id' => 71, 'key' => "sw-KE", 'value' => "Andika kichwa cha meta cha SEO na maelezo ya chapisho la blogi kuhusu:\n\n ##description## \n\n Jina la blogi:\n ##title## \n\n Maneno ya mbegu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2603, 'template_id' => 71, 'key' => "sl-SI", 'value' => "Napišite meta naslov in opis SEO za objavo v spletnem dnevniku o:\n\n ##description## \n\n Naslov bloga:\n ##title## \n\n Seed Words:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2604, 'template_id' => 71, 'key' => "th-TH", 'value' => "เขียนชื่อเมตา SEO และคำอธิบายสำหรับโพสต์บล็อกเกี่ยวกับ:\n\n ##description## \n\n ชื่อบล็อก:\n ##title## \n\n คำเมล็ด:\n ##keywords## \n\n เสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2605, 'template_id' => 71, 'key' => "uk-UA", 'value' => "Напишіть метазаголовок і опис SEO для публікації в блозі про:\n\n ##description## \n\n Назва блогу:\n ##title## \n\n Насіннєві слова:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 2606, 'template_id' => 71, 'key' => "lt-LT", 'value' => "Parašykite SEO meta pavadinimą ir aprašą tinklaraščio įrašui apie:\n\n ##description## \n\n Tinklaraščio pavadinimas:\n ##title## \n\n Sėklų žodžiai:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 2607, 'template_id' => 71, 'key' => "bg-BG", 'value' => "Напишете мета заглавие и описание на SEO за публикация в блог за:\n\n ##description## \n\n Заглавие на блога:\n ##title## \n\n Семенни думи:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2608, 'template_id' => 72, 'key' => "en-US", 'value' => "Write SEO meta title and description for a website about:\n ##description## \n\nWebsite Name:\n ##title## \n\nSeed Words:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2609, 'template_id' => 72, 'key' => "ar-AE", 'value' => "اكتب عنوان تعريف SEO ووصفًا لموقع ويب حول:\n ##description## \n\nاسم الموقع:\n ##title## \n\nكلمات البذور:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 2610, 'template_id' => 72, 'key' => "cmn-CN", 'value' => "為網站編寫 SEO 元標題和描述:\n ##description## \n\n網站名稱:\n ##title## \n\n種子詞:\n ##keywords## \n\n 結果的語氣必須是:\n ##tone_language## \n\n"], - - ['id' => 2611, 'template_id' => 72, 'key' => "hr-HR", 'value' => "Napišite SEO meta naslov i opis za web stranicu o:\n ##description## \n\nNaziv web stranice:\n ##title## \n\nRiječi sjemena:\n ##keywords## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2612, 'template_id' => 72, 'key' => "cs-CZ", 'value' => "Napište SEO meta název a popis pro web o:\n ##description## \n\nNázev webu:\n ##title## \n\nSeed Slova:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2613, 'template_id' => 72, 'key' => "da-DK", 'value' => "Skriv SEO meta titel og beskrivelse til en hjemmeside om:\n ##description## \n\nHjemmesidenavn:\n ##title## \n\nFrøord:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2614, 'template_id' => 72, 'key' => "nl-NL", 'value' => "Schrijf een SEO-metatitel en -beschrijving voor een website over:\n ##description## \n\nwebsite naam:\n ##title## \n\nZaad woorden:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2615, 'template_id' => 72, 'key' => "et-EE", 'value' => "Kirjutage SEO metapealkiri ja kirjeldus veebisaidile, mis käsitleb:\n ##description## \n\nVeebisaidi nimi:\n ##title## \n\nSeemne sõnad:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2616, 'template_id' => 72, 'key' => "fi-FI", 'value' => "Kirjoita SEO-sisällönkuvausotsikko ja kuvaus verkkosivustolle aiheesta:\n ##description## \n\nVerkkosivuston nimi:\n ##title## \n\nSiemensanat:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 2617, 'template_id' => 72, 'key' => "fr-FR", 'value' => "Rédigez un méta-titre et une description SEO pour un site Web sur :\n ##description## \n\nNom du site Web:\n ##title## \n\nMots de départ:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2618, 'template_id' => 72, 'key' => "de-DE", 'value' => "Schreiben Sie einen SEO-Metatitel und eine Beschreibung für eine Website über:\n ##description## \n\nWebseiten-Name:\n ##title## \n\nSamenwörter:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 2619, 'template_id' => 72, 'key' => "el-GR", 'value' => "Γράψτε μετα-τίτλο SEO και περιγραφή για έναν ιστότοπο σχετικά με:\n ##description## \n\nΌνομα ιστότοπου:\n ##title## \n\nΣπόροι Λέξεις:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 2620, 'template_id' => 72, 'key' => "he-IL", 'value' => "כתוב מטא כותרת ותיאור של SEO עבור אתר אינטרנט על:\n ##description## \n\nשם האתר:\n ##title## \n\nמילות זרעים:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2621, 'template_id' => 72, 'key' => "hi-IN", 'value' => "किसी वेबसाइट के लिए SEO मेटा शीर्षक और विवरण लिखें:\n ##description## \n\nवेबसाइट का नाम:\n ##title## \n\nबीज शब्द:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 2622, 'template_id' => 72, 'key' => "hu-HU", 'value' => "Írjon SEO metacímet és leírást egy webhelyhez:\n ##description## \n\nWebhely neve:\n ##title## \n\nMagszavak:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2623, 'template_id' => 72, 'key' => "is-IS", 'value' => "Skrifaðu SEO meta titil og lýsingu fyrir vefsíðu um:\n ##description## \n\nHeiti vefsíðu:\n ##title## \n\nFræorð:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2624, 'template_id' => 72, 'key' => "id-ID", 'value' => "Tulis judul dan deskripsi meta SEO untuk situs web tentang:\n ##description## \n\nNama Situs Web:\n ##title## \n\nKata Benih:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 2625, 'template_id' => 72, 'key' => "it-IT", 'value' => "Scrivi meta titolo e descrizione SEO per un sito web su:\n ##description## \n\nNome del sito web:\n ##title## \n\nParole seme:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2626, 'template_id' => 72, 'key' => "ja-JP", 'value' => "Web サイトの SEO メタ タイトルと説明を以下について書きます。\n ##description## \n\nウェブサイト名:\n ##title## \n\nシードワード:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 2627, 'template_id' => 72, 'key' => "ko-KR", 'value' => "다음에 대한 웹사이트의 SEO 메타 제목 및 설명 작성:\n ##description## \n\n웹사이트 이름:\n ##title## \n\n시드 단어:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 2628, 'template_id' => 72, 'key' => "ms-MY", 'value' => "Tulis tajuk dan penerangan meta SEO untuk tapak web tentang:\n ##description## \n\nNama Laman Web:\n ##title## \n\nKata Benih:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 2629, 'template_id' => 72, 'key' => "nb-NO", 'value' => "Skriv SEO-metatittel og beskrivelse for et nettsted om:\n ##description## \n\nNettstedets navn:\n ##title## \n\nFrøord:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2630, 'template_id' => 72, 'key' => "pl-PL", 'value' => "Napisz meta tytuł i opis SEO dla strony internetowej o:\n ##description## \n\nNazwa strony:\n ##title## \n\n Słowa nasion:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2631, 'template_id' => 72, 'key' => "pt-PT", 'value' => "Escreva meta título e descrição de SEO para um site sobre:\n ##description## \n\nNome do site:\n ##title## \n\npalavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2632, 'template_id' => 72, 'key' => "ru-RU", 'value' => "Напишите мета-заголовок и описание SEO для веб-сайта о:\n ##description## \n\nНазвание веб-сайта:\n ##title## \n\nИсходные слова:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2633, 'template_id' => 72, 'key' => "es-ES", 'value' => "Escriba el metatítulo y la descripción de SEO para un sitio web sobre:\n ##description## \n\nNombre del Sitio Web:\n ##title## \n\nPalabras semilla:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2634, 'template_id' => 72, 'key' => "sv-SE", 'value' => "Skriv SEO-metatitel och beskrivning för en webbplats om:\n ##description## \n\nWebbplatsens namn:\n ##title## \n\nFrö ord:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2635, 'template_id' => 72, 'key' => "tr-TR", 'value' => "Aşağıdakilerle ilgili bir web sitesi için SEO meta başlığı ve açıklaması yazın:\n ##description## \n\nWeb Sitesi Adı:\n ##title## \n\ntohum kelimeler:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 2636, 'template_id' => 72, 'key' => "pt-BR", 'value' => "Escreva meta título e descrição de SEO para um site sobre:\n ##description## \n\nNome do site:\n ##title## \n\npalavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2637, 'template_id' => 72, 'key' => "ro-RO", 'value' => "Scrieți meta titlul și descrierea SEO pentru un site web despre:\n ##description## \n\nNumele site-ului:\n ##title## \n\nCuvinte sămânță:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2638, 'template_id' => 72, 'key' => "vi-VN", 'value' => "Viết tiêu đề và mô tả meta SEO cho một trang web về:\n ##description## \n\nTên trang web:\n ##title## \n\n từ hạt giống:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2639, 'template_id' => 72, 'key' => "sw-KE", 'value' => "Andika kichwa cha meta cha SEO na maelezo ya tovuti kuhusu:\n ##description## \n\nJina la Tovuti:\n ##title## \n\nManeno ya mbegu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2640, 'template_id' => 72, 'key' => "sl-SI", 'value' => "Napišite meta naslov in opis SEO za spletno mesto o:\n ##description## \n\nIme spletnega mesta:\n ##title## \n\n Seed Words:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2641, 'template_id' => 72, 'key' => "th-TH", 'value' => "เขียนชื่อเมตา SEO และคำอธิบายสำหรับเว็บไซต์เกี่ยวกับ:\n ##description## \n\nชื่อเว็บไซต์:\n ##title## \n\nคำเมล็ด:\n ##keywords## \n\n โทนเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2642, 'template_id' => 72, 'key' => "uk-UA", 'value' => "Напишіть мета-заголовок і опис SEO для веб-сайту про:\n ##description## \n\n Назва сайту:\n ##title## \n\nНасіннєві слова:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 2643, 'template_id' => 72, 'key' => "lt-LT", 'value' => "Parašykite svetainės SEO metapavadinimą ir aprašą apie:\n ##description## \n\nSvetainės pavadinimas:\n ##title## \n\nSėklų žodžiai:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 2644, 'template_id' => 72, 'key' => "bg-BG", 'value' => "Напишете SEO мета заглавие и описание за уебсайт за:\n ##description## \n\nИме на уебсайт:\n ##title## \n\nСеменни думи:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2645, 'template_id' => 73, 'key' => "en-US", 'value' => "Write SEO meta title and description for a product page about:\n\n ##description## \n\n Product Title:\n ##title## \n\n Company Name:\n ##company_name## \n\n Seed Words:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 2646, 'template_id' => 73, 'key' => "ar-AE", 'value' => "اكتب عنوان تعريف SEO ووصفًا لصفحة منتج عنه:\n\n ##description## \n\n Product Title:\n ##title## \n\n اسم الشركة:\n ##company_name## \n\n كلمات البذور:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 2647, 'template_id' => 73, 'key' => "cmn-CN", 'value' => "為產品頁面編寫 SEO 元標題和描述:\n\n ##description## \n\n Product Title:\n ##title## \n\n 公司名稱:\n ##company_name## \n\n 種子詞:\n ##keywords## \n\n 結果的語氣必須是:\n ##tone_language## \n\n"], - - ['id' => 2648, 'template_id' => 73, 'key' => "hr-HR", 'value' => "Napišite SEO meta naslov i opis za stranicu proizvoda o:\n\n ##description## \n\n Product Title:\n ##title## \n\n Naziv tvrtke:\n ##company_name## \n\n Riječi sjemena:\n ##keywords## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2649, 'template_id' => 73, 'key' => "cs-CZ", 'value' => "Napište SEO meta název a popis pro stránku produktu o:\n\n ##description## \n\n Product Title:\n ##title## \n\n Jméno společnosti:\n ##company_name## \n\n Seed Slova:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 2650, 'template_id' => 73, 'key' => "da-DK", 'value' => "Skriv SEO meta titel og beskrivelse til en produktside om:\n\n ##description## \n\n Product Title:\n ##title## \n\n firmanavn:\n ##company_name## \n\n Frøord:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 2651, 'template_id' => 73, 'key' => "nl-NL", 'value' => "Schrijf een SEO-metatitel en -beschrijving voor een productpagina over:\n\n ##description## \n\n Product Title:\n ##title## \n\n Bedrijfsnaam:\n ##company_name## \n\n Zaad woorden:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 2652, 'template_id' => 73, 'key' => "et-EE", 'value' => "Kirjutage SEO metapealkiri ja kirjeldus tootelehele:\n\n ##description## \n\n Product Title:\n ##title## \n\n Ettevõtte nimi:\n ##company_name## \n\n Seemne sõnad:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 2653, 'template_id' => 73, 'key' => "fi-FI", 'value' => "Kirjoita SEO-sisällönkuvausotsikko ja kuvaus tuotesivulle:\n\n ##description## \n\n Product Title:\n ##title## \n\n Yrityksen nimi:\n ##company_name## \n\n Siemensanat:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 2654, 'template_id' => 73, 'key' => "fr-FR", 'value' => "Rédigez un méta-titre et une description SEO pour une page de produit sur:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nom de l'entreprise:\n ##company_name## \n\n Mots de départ:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 2655, 'template_id' => 73, 'key' => "de-DE", 'value' => "Schreiben Sie einen SEO-Metatitel und eine Beschreibung für eine Produktseite:\n\n ##description## \n\n Product Title:\n ##title## \n\n Name der Firma:\n ##company_name## \n\n Samenwörter:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 2656, 'template_id' => 73, 'key' => "el-GR", 'value' => "Γράψτε τον μετα-τίτλο SEO και την περιγραφή για μια σελίδα προϊόντος σχετικά με:\n\n ##description## \n\n Product Title:\n ##title## \n\n Όνομα εταιρείας:\n ##company_name## \n\n Σπόροι Λέξεις:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 2657, 'template_id' => 73, 'key' => "he-IL", 'value' => "כתוב SEO מטא כותרת ותיאור עבור דף מוצר על:\n\n ##description## \n\n Product Title:\n ##title## \n\n שם החברה:\n ##company_name## \n\n מילות זרעים:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 2658, 'template_id' => 73, 'key' => "hi-IN", 'value' => "किसी उत्पाद पृष्ठ के बारे में SEO मेटा शीर्षक और विवरण लिखें:\n\n ##description## \n\n Product Title:\n ##title## \n\n कंपनी का नाम:\n ##company_name## \n\n बीज शब्द:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 2659, 'template_id' => 73, 'key' => "hu-HU", 'value' => "Írjon SEO metacímet és leírást egy termékoldalhoz:\n\n ##description## \n\n Product Title:\n ##title## \n\n Cégnév:\n ##company_name## \n\n Magszavak:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 2660, 'template_id' => 73, 'key' => "is-IS", 'value' => "Skrifaðu SEO meta titil og lýsingu fyrir vörusíðu um:\n\n ##description## \n\n Product Title:\n ##title## \n\n nafn fyrirtækis:\n ##company_name## \n\n Fræorð:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 2661, 'template_id' => 73, 'key' => "id-ID", 'value' => "Tulis judul dan deskripsi meta SEO untuk halaman produk tentang:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nama perusahaan:\n ##company_name## \n\n Kata Benih:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 2662, 'template_id' => 73, 'key' => "it-IT", 'value' => "Scrivi il meta titolo e la descrizione SEO per una pagina di prodotto:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nome della ditta:\n ##company_name## \n\n Parole seme:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 2663, 'template_id' => 73, 'key' => "ja-JP", 'value' => "製品ページの SEO メタ タイトルと説明を書きます。:\n\n ##description## \n\n Product Title:\n ##title## \n\n 会社名:\n ##company_name## \n\n シードワード:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 2664, 'template_id' => 73, 'key' => "ko-KR", 'value' => "제품 페이지에 대한 SEO 메타 제목 및 설명 작성:\n\n ##description## \n\n Product Title:\n ##title## \n\n 회사 이름:\n ##company_name## \n\n 시드 단어:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 2665, 'template_id' => 73, 'key' => "ms-MY", 'value' => "Tulis tajuk dan penerangan meta SEO untuk halaman produk tentang:\n\n ##description## \n\n Product Title:\n ##title## \n\n nama syarikat:\n ##company_name## \n\n Kata Benih:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 2666, 'template_id' => 73, 'key' => "nb-NO", 'value' => "Skriv SEO meta tittel og beskrivelse for en produktside om:\n\n ##description## \n\n Product Title:\n ##title## \n\n selskapsnavn:\n ##company_name## \n\n Frøord:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 2667, 'template_id' => 73, 'key' => "pl-PL", 'value' => "Napisz tytuł i opis meta SEO dla strony produktu:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nazwa firmy:\n ##company_name## \n\n Słowa nasion:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 2668, 'template_id' => 73, 'key' => "pt-PT", 'value' => "Escreva meta título e descrição de SEO para uma página de produto sobre:\n\n ##description## \n\n Product Title:\n ##title## \n\n nome da empresa:\n ##company_name## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2669, 'template_id' => 73, 'key' => "ru-RU", 'value' => "Напишите SEO-мета-заголовок и описание для страницы продукта о:\n\n ##description## \n\n Product Title:\n ##title## \n\n Название компании:\n ##company_name## \n\n Исходные слова:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 2670, 'template_id' => 73, 'key' => "es-ES", 'value' => "Escriba el metatítulo y la descripción de SEO para una página de producto sobre:\n\n ##description## \n\n Product Title:\n ##title## \n\n nombre de empresa:\n ##company_name## \n\n Palabras semilla:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 2671, 'template_id' => 73, 'key' => "sv-SE", 'value' => "Skriv SEO-metatitel och beskrivning för en produktsida om:\n\n ##description## \n\n Product Title:\n ##title## \n\n Företagsnamn:\n ##company_name## \n\n Frö ord:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 2672, 'template_id' => 73, 'key' => "tr-TR", 'value' => "Hakkında bir ürün sayfası için SEO meta başlığı ve açıklaması yazın:\n\n ##description## \n\n Product Title:\n ##title## \n\n Firma Adı:\n ##company_name## \n\n tohum kelimeler:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 2673, 'template_id' => 73, 'key' => "pt-BR", 'value' => "Escreva meta título e descrição de SEO para uma página de produto sobre:\n\n ##description## \n\n Product Title:\n ##title## \n\n nome da empresa:\n ##company_name## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 2674, 'template_id' => 73, 'key' => "ro-RO", 'value' => "Scrieți meta titlu SEO și descriere pentru o pagină de produs despre:\n\n ##description## \n\n Product Title:\n ##title## \n\n Numele companiei:\n ##company_name## \n\n Cuvinte sămânță:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 2675, 'template_id' => 73, 'key' => "vi-VN", 'value' => "Viết tiêu đề và mô tả meta SEO cho trang sản phẩm về:\n\n ##description## \n\n Product Title:\n ##title## \n\n Tên công ty:\n ##company_name## \n\n từ hạt giống:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 2676, 'template_id' => 73, 'key' => "sw-KE", 'value' => "Andika kichwa cha meta cha SEO na maelezo ya ukurasa wa bidhaa kuhusu:\n\n ##description## \n\n Product Title:\n ##title## \n\n jina la kampuni:\n ##company_name## \n\n Maneno ya mbegu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 2677, 'template_id' => 73, 'key' => "sl-SI", 'value' => "Napišite metanaslov SEO in opis za stran izdelka o:\n\n ##description## \n\n Product Title:\n ##title## \n\n ime podjetja:\n ##company_name## \n\n Seed Words:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 2678, 'template_id' => 73, 'key' => "th-TH", 'value' => "เขียนชื่อเมตา SEO และคำอธิบายสำหรับหน้าผลิตภัณฑ์เกี่ยวกับ:\n\n ##description## \n\n Product Title:\n ##title## \n\n ชื่อ บริษัท:\n ##company_name## \n\n คำเมล็ด:\n ##keywords## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 2679, 'template_id' => 73, 'key' => "uk-UA", 'value' => "Напишіть мета-заголовок і опис SEO для сторінки продукту:\n\n ##description## \n\n Product Title:\n ##title## \n\n Назва компанії:\n ##company_name## \n\n Насіннєві слова:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 2680, 'template_id' => 73, 'key' => "lt-LT", 'value' => "Parašykite produkto puslapio SEO meta pavadinimą ir aprašą:\n\n ##description## \n\n Product Title:\n ##title## \n\n Įmonės pavadinimas:\n ##company_name## \n\n Sėklų žodžiai:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 2681, 'template_id' => 73, 'key' => "bg-BG", 'value' => "Напишете SEO мета заглавие и описание за продуктова страница за:\n\n ##description## \n\n Product Title:\n ##title## \n\n Име на фирмата:\n ##company_name## \n\n Семенни думи:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 2682, 'template_id' => 74, 'key' => "en-US", 'value' => "Write 10 unique product titles to gain more sells on Amazon of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the article must be:\n ##tone_language## \n\n" ], - - ['id' => 2683, 'template_id' => 74, 'key' => "ar-AE", 'value' => "اكتب 10 عناوين منتجات فريدة لكسب المزيد من عمليات البيع على أمازون للمنتج التالي الذي يستهدفه:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت المقال:\n ##tone_language## \n\n" ], - - ['id' => 2684, 'template_id' => 74, 'key' => "cmn-CN", 'value' => "寫 10 個獨特的產品標題,以在亞馬遜上獲得更多針對以下產品的銷售:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 文章的語氣必須是:\n ##tone_language## \n\n" ], - - ['id' => 2685, 'template_id' => 74, 'key' => "hr-HR", 'value' => "Napišite 10 jedinstvenih naslova proizvoda kako biste ostvarili veću prodaju na Amazonu za sljedeći ciljni proizvod:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa članka mora biti:\n ##tone_language## \n\n" ], - - ['id' => 2686, 'template_id' => 74, 'key' => "cs-CZ", 'value' => "Napište 10 jedinečných názvů produktů, abyste získali více prodejů na Amazonu následujícího produktu, na který je zaměřen:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu článku musí být:\n ##tone_language## \n\n" ], - - ['id' => 2687, 'template_id' => 74, 'key' => "da-DK", 'value' => "Skriv 10 unikke produkttitler for at få flere salg på Amazon af følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tonen i artiklen skal være:\n ##tone_language## \n\n" ], - - ['id' => 2688, 'template_id' => 74, 'key' => "nl-NL", 'value' => "Schrijf 10 unieke producttitels om meer verkopen op Amazon te krijgen van het volgende beoogde product:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De toon van het artikel moet zijn:\n ##tone_language## \n\n" ], - - ['id' => 2689, 'template_id' => 74, 'key' => "et-EE", 'value' => "Kirjutage 10 ainulaadset tootenimetust, et saada Amazonis rohkem müüki järgmistest toodetest, millele on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Artikli hääletoon peab olema:\n ##tone_language## \n\n" ], - - ['id' => 2690, 'template_id' => 74, 'key' => "fi-FI", 'value' => "Kirjoita 10 ainutlaatuista tuotenimikettä saadaksesi enemmän myyntiä Amazonissa seuraavista tuotteista:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Artikkelin äänensävyn on oltava:\n ##tone_language## \n\n" ], - - ['id' => 2691, 'template_id' => 74, 'key' => "fr-FR", 'value' => "Écrivez 10 titres de produits uniques pour obtenir plus de ventes sur Amazon du produit suivant destiné à:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix de l'article doit être:\n ##tone_language## \n\n" ], - - ['id' => 2692, 'template_id' => 74, 'key' => "de-DE", 'value' => "Schreiben Sie 10 einzigartige Produkttitel, um bei Amazon mehr Verkäufe des folgenden Produkts zu erzielen:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Artikels muss sein:\n ##tone_language## \n\n" ], - - ['id' => 2693, 'template_id' => 74, 'key' => "el-GR", 'value' => "Γράψτε 10 μοναδικούς τίτλους προϊόντων για να κερδίσετε περισσότερες πωλήσεις στο Amazon για το παρακάτω προϊόν που στοχεύει:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του άρθρου πρέπει να είναι:\n ##tone_language## \n\n" ], - - ['id' => 2694, 'template_id' => 74, 'key' => "he-IL", 'value' => "כתוב 10 כותרות מוצר ייחודיות כדי להשיג יותר מכירות באמזון של המוצר הבא שמיועד אליו:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של המאמר חייב להיות:\n ##tone_language## \n\n" ], - - ['id' => 2695, 'template_id' => 74, 'key' => "hi-IN", 'value' => "निम्नलिखित उत्पाद के Amazon पर अधिक बिक्री हासिल करने के लिए 10 अद्वितीय उत्पाद शीर्षक लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n लेख का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n" ], - - ['id' => 2696, 'template_id' => 74, 'key' => "hu-HU", 'value' => "Írjon 10 egyedi termékcímet, hogy több eladást szerezzen az Amazonon a következő, megcélzott termékből:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n A cikk hangnemének kell lennie:\n ##tone_language## \n\n" ], - - ['id' => 2697, 'template_id' => 74, 'key' => "is-IS", 'value' => "Skrifaðu 10 einstaka vörutitla til að ná meiri sölu á Amazon af eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í greininni verður að vera:\n ##tone_language## \n\n" ], - - ['id' => 2698, 'template_id' => 74, 'key' => "id-ID", 'value' => "Tulis 10 judul produk unik untuk mendapatkan lebih banyak penjualan di Amazon dari produk berikut yang dituju:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara artikel harus:\n ##tone_language## \n\n" ], - - ['id' => 2699, 'template_id' => 74, 'key' => "it-IT", 'value' => "Scrivi 10 titoli di prodotti unici per ottenere più vendite su Amazon del seguente prodotto mirato:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell'articolo deve essere:\n ##tone_language## \n\n" ], - - ['id' => 2700, 'template_id' => 74, 'key' => "ja-JP", 'value' => "ユニークな製品タイトルを 10 個書いて、次の製品を Amazon でより多く販売してください。:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 記事の口調は次のようにする必要があります。:\n ##tone_language## \n\n" ], - - ['id' => 2701, 'template_id' => 74, 'key' => "ko-KR", 'value' => "아마존에서 목표로 하는 다음 제품의 더 많은 판매를 얻기 위해 10개의 고유한 제품 제목을 작성하십시오.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 기사의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n" ], - - ['id' => 2702, 'template_id' => 74, 'key' => "ms-MY", 'value' => "Tulis 10 tajuk produk unik untuk mendapatkan lebih banyak jualan di Amazon untuk produk berikut yang disasarkan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara artikel mestilah:\n ##tone_language## \n\n" ], - - ['id' => 2703, 'template_id' => 74, 'key' => "nb-NO", 'value' => "Skriv 10 unike produkttitler for å få flere salg på Amazon av følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i artikkelen må være:\n ##tone_language## \n\n" ], - - ['id' => 2704, 'template_id' => 74, 'key' => "pl-PL", 'value' => "Napisz 10 unikalnych tytułów produktów, aby uzyskać więcej sprzedaży na Amazon następującego produktu, do którego jest skierowany:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton artykułu musi być:\n ##tone_language## \n\n" ], - - ['id' => 2705, 'template_id' => 74, 'key' => "pt-PT", 'value' => "Escreva 10 títulos de produtos exclusivos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n" ], - - ['id' => 2706, 'template_id' => 74, 'key' => "ru-RU", 'value' => "Напишите 10 уникальных названий продуктов, чтобы увеличить продажи на Amazon следующего продукта, предназначенного для:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон статьи должен быть:\n ##tone_language## \n\n" ], - - ['id' => 2707, 'template_id' => 74, 'key' => "es-ES", 'value' => "Escriba 10 títulos de productos únicos para obtener más ventas en Amazon del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del artículo debe ser:\n ##tone_language## \n\n" ], - - ['id' => 2708, 'template_id' => 74, 'key' => "sv-SE", 'value' => "Skriv 10 unika produkttitlar för att få fler försäljningar på Amazon av följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i artikeln måste vara:\n ##tone_language## \n\n" ], - - ['id' => 2709, 'template_id' => 74, 'key' => "tr-TR", 'value' => "Hedeflenen aşağıdaki üründen Amazon'da daha fazla satış elde etmek için 10 benzersiz ürün başlığı yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Makalenin ses tonu şu şekilde olmalıdır::\n ##tone_language## \n\n" ], - - ['id' => 2710, 'template_id' => 74, 'key' => "pt-BR", 'value' => "Escreva 10 títulos de produtos exclusivos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n" ], - - ['id' => 2711, 'template_id' => 74, 'key' => "ro-RO", 'value' => "Scrieți 10 titluri de produse unice pentru a câștiga mai multe vânzări pe Amazon pentru următorul produs vizat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii articolului trebuie să fie:\n ##tone_language## \n\n" ], - - ['id' => 2712, 'template_id' => 74, 'key' => "vi-VN", 'value' => "Viết 10 tiêu đề sản phẩm độc đáo để bán được nhiều hơn trên Amazon cho sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của bài viết phải:\n ##tone_language## \n\n" ], - - ['id' => 2713, 'template_id' => 74, 'key' => "sw-KE", 'value' => "Andika majina 10 ya kipekee ya bidhaa ili kupata mauzo zaidi kwenye Amazon ya bidhaa zifuatazo zinazolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya makala lazima iwe:\n ##tone_language## \n\n" ], - - ['id' => 2714, 'template_id' => 74, 'key' => "sl-SI", 'value' => "Napišite 10 edinstvenih naslovov izdelkov, da pridobite večjo prodajo na Amazonu za naslednji izdelek, ki je namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu članka mora biti:\n ##tone_language## \n\n" ], - - ['id' => 2715, 'template_id' => 74, 'key' => "th-TH", 'value' => "เขียนชื่อผลิตภัณฑ์ที่ไม่ซ้ำกัน 10 รายการเพื่อเพิ่มยอดขายใน Amazon ของผลิตภัณฑ์ต่อไปนี้:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของบทความต้องเป็น:\n ##tone_language## \n\n" ], - - ['id' => 2716, 'template_id' => 74, 'key' => "uk-UA", 'value' => "Напишіть 10 унікальних назв продукту, щоб отримати більше продажів на Amazon наступного продукту, на який націлено:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу статті повинен бути:\n ##tone_language## \n\n" ], - - ['id' => 2717, 'template_id' => 74, 'key' => "lt-LT", 'value' => "Parašykite 10 unikalių produktų pavadinimų, kad „Amazon“ daugiau parduotų toliau nurodytų produktų:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Straipsnio balso tonas turi būti:\n ##tone_language## \n\n" ], - - ['id' => 2718, 'template_id' => 74, 'key' => "bg-BG", 'value' => "Напишете 10 уникални продуктови заглавия, за да спечелите повече продажби в Amazon на следния целеви продукт:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на статията трябва да бъде:\n ##tone_language## \n\n" ], - - ['id' => 2719, 'template_id' => 75, 'key' => "en-US", 'value' => "Write 10 advantages and features to gain more sells on Amazon of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the article must be:\n ##tone_language## \n\n" ], - - ['id' => 2720, 'template_id' => 75, 'key' => "ar-AE", 'value' => "اكتب 10 مزايا وميزات لكسب المزيد من عمليات البيع على Amazon للمنتج التالي المستهدف:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت المقال:\n ##tone_language## \n\n" ], - - ['id' => 2721, 'template_id' => 75, 'key' => "cmn-CN", 'value' => "寫下 10 個優勢和特點,以在亞馬遜上獲得更多針對以下產品的銷售:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 文章的語氣應該是:\n ##tone_language## \n\n" ], - - ['id' => 2722, 'template_id' => 75, 'key' => "hr-HR", 'value' => "Napišite 10 prednosti i značajki kako biste ostvarili veću prodaju na Amazonu sljedećeg ciljanog proizvoda:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa članka mora biti:\n ##tone_language## \n\n" ], - - ['id' => 2723, 'template_id' => 75, 'key' => "cs-CZ", 'value' => "Napište 10 výhod a funkcí, abyste získali více prodejů na Amazonu následujícího produktu:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu článku musí být:\n ##tone_language## \n\n" ], - - ['id' => 2724, 'template_id' => 75, 'key' => "da-DK", 'value' => "Skriv 10 fordele og funktioner for at få flere salg på Amazon af følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tonen i artiklen skal være:\n ##tone_language## \n\n" ], - - ['id' => 2725, 'template_id' => 75, 'key' => "nl-NL", 'value' => "Schrijf 10 voordelen en functies op om meer verkopen op Amazon te krijgen van het volgende beoogde product:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De toon van het artikel moet zijn:\n ##tone_language## \n\n" ], - - ['id' => 2726, 'template_id' => 75, 'key' => "et-EE", 'value' => "Kirjutage 10 eelist ja funktsiooni, et saada Amazonis rohkem müüki järgmistele mõeldud toodetele:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Artikli hääletoon peab olema:\n ##tone_language## \n\n" ], - - ['id' => 2727, 'template_id' => 75, 'key' => "fi-FI", 'value' => "Kirjoita 10 etua ja ominaisuutta saadaksesi enemmän myyntiä Amazonissa seuraavista tuotteista:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Artikkelin äänensävyn on oltava:\n ##tone_language## \n\n" ], - - ['id' => 2728, 'template_id' => 75, 'key' => "fr-FR", 'value' => "Rédigez 10 avantages et fonctionnalités pour obtenir plus de ventes sur Amazon du produit suivant destiné à:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix de l'article doit être:\n ##tone_language## \n\n" ], - - ['id' => 2729, 'template_id' => 75, 'key' => "de-DE", 'value' => "Schreiben Sie 10 Vorteile und Funktionen auf, um bei Amazon mehr Verkäufe des folgenden Produkts zu erzielen:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Artikels muss sein:\n ##tone_language## \n\n" ], - - ['id' => 2730, 'template_id' => 75, 'key' => "el-GR", 'value' => "Γράψτε 10 πλεονεκτήματα και χαρακτηριστικά για να κερδίσετε περισσότερες πωλήσεις στο Amazon του παρακάτω προϊόντος στο οποίο στοχεύουν:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του άρθρου πρέπει να είναι:\n ##tone_language## \n\n" ], - - ['id' => 2731, 'template_id' => 75, 'key' => "he-IL", 'value' => "כתוב 10 יתרונות ותכונות כדי להשיג יותר מכירות באמזון של המוצר הבא שמיועד אליו:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של המאמר חייב להיות:\n ##tone_language## \n\n" ], - - ['id' => 2732, 'template_id' => 75, 'key' => "hi-IN", 'value' => "निम्नलिखित उत्पाद के Amazon पर अधिक बिक्री हासिल करने के लिए 10 फायदे और विशेषताएं लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n लेख का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n" ], - - ['id' => 2733, 'template_id' => 75, 'key' => "hu-HU", 'value' => "Írjon 10 előnyt és funkciót, amelyekkel több eladást érhet el az Amazonon a következő, megcélzott termékből:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n A cikk hangnemének kell lennie:\n ##tone_language## \n\n" ], - - ['id' => 2734, 'template_id' => 75, 'key' => "is-IS", 'value' => "Skrifaðu 10 kosti og eiginleika til að ná meiri sölu á Amazon á eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í greininni verður að vera:\n ##tone_language## \n\n" ], - - ['id' => 2735, 'template_id' => 75, 'key' => "id-ID", 'value' => "Tulis 10 keunggulan dan fitur untuk mendapatkan lebih banyak penjualan di Amazon dari produk berikut yang ditujukan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara artikel harus:\n ##tone_language## \n\n" ], - - ['id' => 2736, 'template_id' => 75, 'key' => "it-IT", 'value' => "Scrivi 10 vantaggi e caratteristiche per ottenere più vendite su Amazon del seguente prodotto mirato:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell'articolo deve essere:\n ##tone_language## \n\n" ], - - ['id' => 2737, 'template_id' => 75, 'key' => "ja-JP", 'value' => "次の商品を Amazon でより多く売るための 10 の利点と特徴を書いてください。:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 記事の口調は次のようにする必要があります。:\n ##tone_language## \n\n" ], - - ['id' => 2738, 'template_id' => 75, 'key' => "ko-KR", 'value' => "아마존에서 다음 제품을 더 많이 판매할 수 있는 10가지 장점과 기능을 작성하십시오.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 기사의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n" ], - - ['id' => 2739, 'template_id' => 75, 'key' => "ms-MY", 'value' => "Tulis 10 kelebihan dan ciri untuk mendapatkan lebih banyak jualan di Amazon bagi produk berikut yang disasarkan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara artikel mestilah:\n ##tone_language## \n\n" ], - - ['id' => 2740, 'template_id' => 75, 'key' => "nb-NO", 'value' => "Skriv 10 fordeler og funksjoner for å få flere salg på Amazon av følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i artikkelen må være:\n ##tone_language## \n\n" ], - - ['id' => 2741, 'template_id' => 75, 'key' => "pl-PL", 'value' => "Napisz 10 zalet i funkcji, aby uzyskać więcej sprzedaży na Amazon następującego produktu, do którego jest skierowany:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton artykułu musi być:\n ##tone_language## \n\n" ], - - ['id' => 2742, 'template_id' => 75, 'key' => "pt-PT", 'value' => "Escreva 10 vantagens e recursos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n" ], - - ['id' => 2743, 'template_id' => 75, 'key' => "ru-RU", 'value' => "Напишите 10 преимуществ и функций, чтобы увеличить продажи на Amazon следующего продукта, предназначенного для:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон статьи должен быть:\n ##tone_language## \n\n" ], - - ['id' => 2744, 'template_id' => 75, 'key' => "es-ES", 'value' => "Escriba 10 ventajas y características para ganar más ventas en Amazon del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del artículo debe ser:\n ##tone_language## \n\n" ], - - ['id' => 2745, 'template_id' => 75, 'key' => "sv-SE", 'value' => "Skriv 10 fördelar och funktioner för att få fler försäljningar på Amazon av följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i artikeln måste vara:\n ##tone_language## \n\n" ], - - ['id' => 2746, 'template_id' => 75, 'key' => "tr-TR", 'value' => "Hedeflenen aşağıdaki üründen Amazon'da daha fazla satış elde etmek için 10 avantaj ve özellik yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Makalenin ses tonu şu şekilde olmalıdır::\n ##tone_language## \n\n" ], - - ['id' => 2747, 'template_id' => 75, 'key' => "pt-BR", 'value' => "Escreva 10 vantagens e recursos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n" ], - - ['id' => 2748, 'template_id' => 75, 'key' => "ro-RO", 'value' => "Scrieți 10 avantaje și caracteristici pentru a obține mai multe vânzări pe Amazon pentru următorul produs vizat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii articolului trebuie să fie:\n ##tone_language## \n\n" ], - - ['id' => 2749, 'template_id' => 75, 'key' => "vi-VN", 'value' => "Viết 10 ưu điểm và tính năng để bán được nhiều hơn trên Amazon của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của bài viết phải:\n ##tone_language## \n\n" ], - - ['id' => 2750, 'template_id' => 75, 'key' => "sw-KE", 'value' => "Andika faida na vipengele 10 ili kupata mauzo zaidi kwenye Amazon ya bidhaa zifuatazo zinazolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya makala lazima iwe:\n ##tone_language## \n\n" ], - - ['id' => 2751, 'template_id' => 75, 'key' => "sl-SI", 'value' => "Napišite 10 prednosti in lastnosti, s katerimi boste dosegli večjo prodajo na Amazonu za naslednji izdelek, ki je namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu članka mora biti:\n ##tone_language## \n\n" ], - - ['id' => 2752, 'template_id' => 75, 'key' => "th-TH", 'value' => "เขียนข้อดีและคุณสมบัติ 10 ข้อเพื่อเพิ่มยอดขายใน Amazon ของผลิตภัณฑ์ต่อไปนี้:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของบทความต้องเป็น:\n ##tone_language## \n\n" ], - - ['id' => 2753, 'template_id' => 75, 'key' => "uk-UA", 'value' => "Напишіть 10 переваг і особливостей, щоб отримати більше продажів на Amazon наступного продукту, націленого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу статті повинен бути:\n ##tone_language## \n\n" ], - - ['id' => 2754, 'template_id' => 75, 'key' => "lt-LT", 'value' => "Parašykite 10 pranašumų ir savybių, kad „Amazon“ būtų daugiau parduota toliau nurodytas produktas:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Straipsnio balso tonas turi būti:\n ##tone_language## \n\n" ], - - ['id' => 2755, 'template_id' => 75, 'key' => "bg-BG", 'value' => "Напишете 10 предимства и функции, за да спечелите повече продажби в Amazon на следния продукт, към който сте насочени:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на статията трябва да бъде:\n ##tone_language## \n\n" ], - - ['id' => 2756, 'template_id' => 76, 'key' => "en-US", 'value' => "Write a creative advertisement idea at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the article must be:\n ##tone_language## \n\n" ] , - - ['id' => 2757, 'template_id' => 76, 'key' => "ar-AE", 'value' => "اكتب فكرة إعلان إبداعي في:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت المقال:\n ##tone_language## \n\n" ] , - - ['id' => 2758, 'template_id' => 76, 'key' => "cmn-CN", 'value' => "撰寫創意廣告創意:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品說明:\n ##description## \n\n 這篇文章的聲音一定是:\n ##tone_language## \n\n" ] , - - ['id' => 2759, 'template_id' => 76, 'key' => "hr-HR", 'value' => "Napišite kreativnu ideju za oglas na:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa članka mora biti:\n ##tone_language## \n\n" ] , - - ['id' => 2760, 'template_id' => 76, 'key' => "cs-CZ", 'value' => "Napište nápad na kreativní reklamu na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu článku musí být:\n ##tone_language## \n\n" ] , - - ['id' => 2761, 'template_id' => 76, 'key' => "da-DK", 'value' => "Skriv en kreativ annonceidé på:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tonen i artiklen skal være:\n ##tone_language## \n\n" ] , - - ['id' => 2762, 'template_id' => 76, 'key' => "nl-NL", 'value' => "Schrijf een creatief advertentie-idee op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De toon van het artikel moet zijn:\n ##tone_language## \n\n" ] , - - ['id' => 2763, 'template_id' => 76, 'key' => "et-EE", 'value' => "Kirjutage loominguline reklaamiidee aadressil:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Artikli hääletoon peab olema:\n ##tone_language## \n\n" ] , - - ['id' => 2764, 'template_id' => 76, 'key' => "fi-FI", 'value' => "Kirjoita luova mainosidea osoitteessa:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Artikkelin äänensävyn on oltava:\n ##tone_language## \n\n" ] , - - ['id' => 2765, 'template_id' => 76, 'key' => "fr-FR", 'value' => "Rédigez une idée de publicité créative sur:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix de l'article doit être:\n ##tone_language## \n\n" ] , - - ['id' => 2766, 'template_id' => 76, 'key' => "de-DE", 'value' => "Schreiben Sie eine kreative Werbeidee unter:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Artikels muss sein:\n ##tone_language## \n\n" ] , - - ['id' => 2767, 'template_id' => 76, 'key' => "el-GR", 'value' => "Γράψτε μια δημιουργική ιδέα διαφήμισης στο:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του άρθρου πρέπει να είναι:\n ##tone_language## \n\n" ] , - - ['id' => 2768, 'template_id' => 76, 'key' => "he-IL", 'value' => "כתוב רעיון פרסומת יצירתי ב:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של המאמר חייב להיות:\n ##tone_language## \n\n" ] , - - ['id' => 2769, 'template_id' => 76, 'key' => "hi-IN", 'value' => "पर एक रचनात्मक विज्ञापन विचार लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n Product description:\n ##description## \n\n लेख का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n" ] , - - ['id' => 2770, 'template_id' => 76, 'key' => "hu-HU", 'value' => "Írjon kreatív hirdetési ötletet a címen:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n A cikk hangnemének kell lennie:\n ##tone_language## \n\n" ] , - - ['id' => 2771, 'template_id' => 76, 'key' => "is-IS", 'value' => "Skrifaðu skapandi auglýsingahugmynd á:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í greininni verður að vera:\n ##tone_language## \n\n" ] , - - ['id' => 2772, 'template_id' => 76, 'key' => "id-ID", 'value' => "Tulis ide iklan kreatif di:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara artikel harus:\n ##tone_language## \n\n" ] , - - ['id' => 2773, 'template_id' => 76, 'key' => "it-IT", 'value' => "Scrivi un'idea pubblicitaria creativa su:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell'articolo deve essere:\n ##tone_language## \n\n" ] , - - ['id' => 2774, 'template_id' => 76, 'key' => "ja-JP", 'value' => "創造的な広告のアイデアを次の場所に書いてください:\n\n ##audience## \n\n 商品名:\n ##title## \n\n Product description:\n ##description## \n\n 記事の口調は次のようにする必要があります。:\n ##tone_language## \n\n" ] , - - ['id' => 2775, 'template_id' => 76, 'key' => "ko-KR", 'value' => "창의적인 광고 아이디어를 작성하세요.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 製品説明:\n ##description## \n\n 기사의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n" ] , - - ['id' => 2776, 'template_id' => 76, 'key' => "ms-MY", 'value' => "Tulis idea iklan kreatif di:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara artikel mestilah:\n ##tone_language## \n\n" ] , - - ['id' => 2777, 'template_id' => 76, 'key' => "nb-NO", 'value' => "Skriv en kreativ annonseidé på:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i artikkelen må være:\n ##tone_language## \n\n" ] , - - ['id' => 2778, 'template_id' => 76, 'key' => "pl-PL", 'value' => "Napisz kreatywny pomysł na reklamę na:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton artykułu musi być:\n ##tone_language## \n\n" ] , - - ['id' => 2779, 'template_id' => 76, 'key' => "pt-PT", 'value' => "Escreva uma ideia de anúncio criativo em:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n" ] , - - ['id' => 2780, 'template_id' => 76, 'key' => "ru-RU", 'value' => "Напишите креативную рекламную идею на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон статьи должен быть:\n ##tone_language## \n\n" ] , - - ['id' => 2781, 'template_id' => 76, 'key' => "es-ES", 'value' => "Escribe una idea publicitaria creativa en:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del artículo debe ser:\n ##tone_language## \n\n" ] , - - ['id' => 2782, 'template_id' => 76, 'key' => "sv-SE", 'value' => "Skriv en kreativ annonsidé på:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i artikeln måste vara:\n ##tone_language## \n\n" ] , - - ['id' => 2783, 'template_id' => 76, 'key' => "tr-TR", 'value' => "yaratıcı bir reklam fikri yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Makalenin ses tonu şu şekilde olmalıdır::\n ##tone_language## \n\n" ] , - - ['id' => 2784, 'template_id' => 76, 'key' => "pt-BR", 'value' => "Escreva uma ideia de anúncio criativo em:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n" ] , - - ['id' => 2785, 'template_id' => 76, 'key' => "ro-RO", 'value' => "Scrie o idee de publicitate creativă la:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii articolului trebuie să fie:\n ##tone_language## \n\n" ] , - - ['id' => 2786, 'template_id' => 76, 'key' => "vi-VN", 'value' => "Viết ý tưởng quảng cáo sáng tạo tại:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của bài viết phải:\n ##tone_language## \n\n" ] , - - ['id' => 2787, 'template_id' => 76, 'key' => "sw-KE", 'value' => "Andika wazo la tangazo la ubunifu kwenye:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya makala lazima iwe:\n ##tone_language## \n\n" ] , - - ['id' => 2788, 'template_id' => 76, 'key' => "sl-SI", 'value' => "Napišite kreativno oglasno idejo na:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu članka mora biti:\n ##tone_language## \n\n" ] , - - ['id' => 2789, 'template_id' => 76, 'key' => "th-TH", 'value' => "เขียนไอเดียโฆษณาสร้างสรรค์ได้ที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของบทความต้องเป็น:\n ##tone_language## \n\n" ] , - - ['id' => 2790, 'template_id' => 76, 'key' => "uk-UA", 'value' => "Напишіть креативну рекламну ідею на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу статті повинен бути:\n ##tone_language## \n\n" ] , - - ['id' => 2791, 'template_id' => 76, 'key' => "lt-LT", 'value' => "Parašykite kūrybinę reklamos idėją adresu:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Straipsnio balso tonas turi būti:\n ##tone_language## \n\n" ] , - - ['id' => 2792, 'template_id' => 76, 'key' => "bg-BG", 'value' => "Напишете креативна идея за реклама на:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на статията трябва да бъде:\n ##tone_language## \n\n" ] , - - ['id' => 2793, 'template_id' => 77, 'key' => "en-US", 'value' => "Write creative start up idea for the following:\n\n ##description##"], - - ['id' => 2794, 'template_id' => 77, 'key' => "ar-AE", 'value' => "اكتب فكرة بدء إبداعية لما يلي:\n\n ##description##"], - - ['id' => 2795, 'template_id' => 77, 'key' => "cmn-CN", 'value' => "撰寫創意起始構想,以取得下列項目:\n\n ##description##"], - - ['id' => 2796, 'template_id' => 77, 'key' => "hr-HR", 'value' => "Napišite kreativnu početnu ideju za sljedeće:\n\n ##description##"], - - ['id' => 2797, 'template_id' => 77, 'key' => "cs-CZ", 'value' => "Napište kreativní počáteční nápad pro následující:\n\n ##description##"], - - ['id' => 2798, 'template_id' => 77, 'key' => "da-DK", 'value' => "Skriv kreativ start-up idé til følgende:\n\n ##description##"], - - ['id' => 2799, 'template_id' => 77, 'key' => "nl-NL", 'value' => "Schrijf een creatief opstartidee voor het volgende:\n\n ##description##"], - - ['id' => 2800, 'template_id' => 77, 'key' => "et-EE", 'value' => "Kirjutage loov käivitamise idee järgmiseks:\n\n ##description##"], - - ['id' => 2801, 'template_id' => 77, 'key' => "fi-FI", 'value' => "Kirjoita luova aloitusidea seuraavaa varten:\n\n ##description##"], - - ['id' => 2802, 'template_id' => 77, 'key' => "fr-FR", 'value' => "Rédigez une idée de démarrage créative pour les éléments suivants:\n\n ##description##"], - - ['id' => 2803, 'template_id' => 77, 'key' => "de-DE", 'value' => "Schreiben Sie eine kreative Startup-Idee für Folgendes:\n\n ##description##"], - - ['id' => 2804, 'template_id' => 77, 'key' => "el-GR", 'value' => "Γράψτε μια δημιουργική ιδέα εκκίνησης για τα παρακάτω:\n\n ##description##"], - - ['id' => 2805, 'template_id' => 77, 'key' => "he-IL", 'value' => "כתוב רעיון התחלה יצירתי עבור הדברים הבאים:\n\n ##description##"], - - ['id' => 2806, 'template_id' => 77, 'key' => "hi-IN", 'value' => "निम्नलिखित के लिए रचनात्मक स्टार्ट अप विचार लिखें:\n\n ##description##"], - - ['id' => 2807, 'template_id' => 77, 'key' => "hu-HU", 'value' => "Írjon kreatív indulási ötletet a következőkhöz:\n\n ##description##"], - - ['id' => 2808, 'template_id' => 77, 'key' => "is-IS", 'value' => "Skrifaðu skapandi upphafshugmynd fyrir eftirfarandi:\n\n ##description##"], - - ['id' => 2809, 'template_id' => 77, 'key' => "id-ID", 'value' => "Tulis ide awal kreatif untuk berikut:\n\n ##description##"], - - ['id' => 2810, 'template_id' => 77, 'key' => "it-IT", 'value' => "Scrivi un'idea di avvio creativa per quanto segue:\n\n ##description##"], - - ['id' => 2811, 'template_id' => 77, 'key' => "ja-JP", 'value' => "次のクリエイティブなスタートアップのアイデアを書いてください:\n\n ##description##"], - - ['id' => 2812, 'template_id' => 77, 'key' => "ko-KR", 'value' => "다음에 대한 창의적인 시작 아이디어를 작성하십시오.:\n\n ##description##"], - - ['id' => 2813, 'template_id' => 77, 'key' => "ms-MY", 'value' => "Tulis idea permulaan kreatif untuk perkara berikut:\n\n ##description##"], - - ['id' => 2814, 'template_id' => 77, 'key' => "nb-NO", 'value' => "Skriv kreativ oppstartside for følgende:\n\n ##description##"], - - ['id' => 2815, 'template_id' => 77, 'key' => "pl-PL", 'value' => "Napisz kreatywny pomysł na rozpoczęcie działalności w następujący sposób:\n\n ##description##"], - - ['id' => 2816, 'template_id' => 77, 'key' => "pt-PT", 'value' => "Escreva uma ideia criativa de inicialização para o seguinte:\n\n ##description##"], - - ['id' => 2817, 'template_id' => 77, 'key' => "ru-RU", 'value' => "Напишите творческую идею стартапа для следующего:\n\n ##description##"], - - ['id' => 2818, 'template_id' => 77, 'key' => "es-ES", 'value' => "Escriba una idea creativa de puesta en marcha para lo siguiente:\n\n ##description##"], - - ['id' => 2819, 'template_id' => 77, 'key' => "sv-SE", 'value' => "Skriv en kreativ startidé för följande:\n\n ##description##"], - - ['id' => 2820, 'template_id' => 77, 'key' => "tr-TR", 'value' => "Aşağıdakiler için yaratıcı başlangıç fikri yazın:\n\n ##description##"], - - ['id' => 2821, 'template_id' => 77, 'key' => "pt-BR", 'value' => "Escreva uma ideia criativa de inicialização para o seguinte:\n\n ##description##"], - - ['id' => 2822, 'template_id' => 77, 'key' => "ro-RO", 'value' => "Scrieți o idee creativă de pornire pentru următoarele:\n\n ##description##"], - - ['id' => 2823, 'template_id' => 77, 'key' => "vi-VN", 'value' => "Viết ý tưởng khởi nghiệp sáng tạo cho phần sau:\n\n ##description##"], - - ['id' => 2824, 'template_id' => 77, 'key' => "sw-KE", 'value' => "Andika wazo bunifu la kuanzisha kwa yafuatayo:\n\n ##description##"], - - ['id' => 2825, 'template_id' => 77, 'key' => "sl-SI", 'value' => "Napišite kreativno začetno idejo za naslednje:\n\n ##description##"], - - ['id' => 2826, 'template_id' => 77, 'key' => "th-TH", 'value' => "เขียนแนวคิดเริ่มต้นที่สร้างสรรค์สำหรับสิ่งต่อไปนี้:\n\n ##description##"], - - ['id' => 2827, 'template_id' => 77, 'key' => "uk-UA", 'value' => "Напишіть творчу ідею запуску для наступного:\n\n ##description##"], - - ['id' => 2828, 'template_id' => 77, 'key' => "lt-LT", 'value' => "Parašykite kūrybinės pradžios idėją šiam tikslui:\n\n ##description##"], - - ['id' => 2829, 'template_id' => 77, 'key' => "bg-BG", 'value' => "Напишете творческа стартова идея за следното:\n\n ##description##"], - - ['id' => 2830, 'template_id' => 78, 'key' => "en-US", 'value' => "generator job post description for the following position : \n ##description## "], - - ['id' => 2831, 'template_id' => 78, 'key' => "ar-AE", 'value' => "وصف وظيفة المولد للوظيفة التالية : \n ##description## "], - - ['id' => 2832, 'template_id' => 78, 'key' => "cmn-CN", 'value' => "下列位置的產生器工作後置說明 : \n ##description## "], - - ['id' => 2833, 'template_id' => 78, 'key' => "hr-HR", 'value' => "generator opis radnog mjesta za sljedeću poziciju : \n ##description## "], - - ['id' => 2834, 'template_id' => 78, 'key' => "cs-CZ", 'value' => "generátor popisu pracovní pozice pro následující pozici : \n ##description## "], - - ['id' => 2835, 'template_id' => 78, 'key' => "da-DK", 'value' => "generator stillingsbeskrivelse for følgende stilling : \n ##description## "], - - ['id' => 2836, 'template_id' => 78, 'key' => "nl-NL", 'value' => "generator functiebeschrijving voor de volgende functie : \n ##description## "], - - ['id' => 2837, 'template_id' => 78, 'key' => "et-EE", 'value' => "generaatori tööpostituse kirjeldus järgmise ametikoha jaoks : \n ##description## "], - - ['id' => 2838, 'template_id' => 78, 'key' => "fi-FI", 'value' => "generaattorin työpaikan kuvaus seuraavalle työlle : \n ##description## "], - - ['id' => 2839, 'template_id' => 78, 'key' => "fr-FR", 'value' => "générateur de description de poste pour le poste suivant : \n ##description## "], - - ['id' => 2840, 'template_id' => 78, 'key' => "de-DE", 'value' => "Beschreibung des Generatorjobs für die folgende Position : \n ##description## "], - - ['id' => 2841, 'template_id' => 78, 'key' => "el-GR", 'value' => "περιγραφή θέσης εργασίας γεννήτριας για την παρακάτω θέση : \n ##description## "], - - ['id' => 2842, 'template_id' => 78, 'key' => "he-IL", 'value' => "תיאור פוסט המשרה של מחולל עבור התפקיד הבא : \n ##description## "], - - ['id' => 2843, 'template_id' => 78, 'key' => "hi-IN", 'value' => "निम्नलिखित पद के लिए जेनरेटर जॉब पोस्ट विवरण : \n ##description## "], - - ['id' => 2844, 'template_id' => 78, 'key' => "hu-HU", 'value' => "generátor állásleírás a következő pozícióhoz : \n ##description## "], - - ['id' => 2845, 'template_id' => 78, 'key' => "is-IS", 'value' => "lýsing á starfspósti fyrir eftirfarandi stöðu : \n ##description## "], - - ['id' => 2846, 'template_id' => 78, 'key' => "id-ID", 'value' => "deskripsi lowongan pekerjaan generator untuk posisi berikut : \n ##description## "], - - ['id' => 2847, 'template_id' => 78, 'key' => "it-IT", 'value' => "descrizione dell'annuncio di lavoro del generatore per la seguente posizione : \n ##description## "], - - ['id' => 2848, 'template_id' => 78, 'key' => "ja-JP", 'value' => "次のポジションのジェネレーターの求人説明 : \n ##description## "], - - ['id' => 2849, 'template_id' => 78, 'key' => "ko-KR", 'value' => "다음 위치에 대한 생성기 작업 게시물 설명 : \n ##description## "], - - ['id' => 2850, 'template_id' => 78, 'key' => "ms-MY", 'value' => "penerangan jawatan penjana untuk jawatan berikut : \n ##description## "], - - ['id' => 2851, 'template_id' => 78, 'key' => "nb-NO", 'value' => "generator stillingsbeskrivelse for følgende stilling : \n ##description## "], - - ['id' => 2852, 'template_id' => 78, 'key' => "pl-PL", 'value' => "generator opis stanowiska pracy dla następującego stanowiska : \n ##description## "], - - ['id' => 2853, 'template_id' => 78, 'key' => "pt-PT", 'value' => "descrição do posto de trabalho do gerador para a seguinte posição : \n ##description## "], - - ['id' => 2854, 'template_id' => 78, 'key' => "ru-RU", 'value' => "описание должности генератора для следующей должности : \n ##description## "], - - ['id' => 2855, 'template_id' => 78, 'key' => "es-ES", 'value' => "descripción del puesto de trabajo del generador para el siguiente puesto : \n ##description## "], - - ['id' => 2856, 'template_id' => 78, 'key' => "sv-SE", 'value' => "generator arbetsinläggsbeskrivning för följande position : \n ##description## "], - - ['id' => 2857, 'template_id' => 78, 'key' => "tr-TR", 'value' => "Aşağıdaki pozisyon için jeneratör iş ilanı açıklaması : \n ##description## "], - - ['id' => 2858, 'template_id' => 78, 'key' => "pt-BR", 'value' => "descrição do posto de trabalho do gerador para a seguinte posição : \n ##description## "], - - ['id' => 2859, 'template_id' => 78, 'key' => "ro-RO", 'value' => "descrierea postului de generator pentru următorul post : \n ##description## "], - - ['id' => 2860, 'template_id' => 78, 'key' => "vi-VN", 'value' => "mô tả bài đăng công việc máy phát điện cho vị trí sau : \n ##description## "], - - ['id' => 2861, 'template_id' => 78, 'key' => "sw-KE", 'value' => "maelezo ya chapisho la kazi ya jenereta kwa nafasi ifuatayo : \n ##description## "], - - ['id' => 2862, 'template_id' => 78, 'key' => "sl-SI", 'value' => "generator opis delovnega mesta za naslednje delovno mesto : \n ##description## "], - - ['id' => 2863, 'template_id' => 78, 'key' => "th-TH", 'value' => "รายละเอียดประกาศรับสมัครงานสำหรับตำแหน่งต่อไปนี้ : \n ##description## "], - - ['id' => 2864, 'template_id' => 78, 'key' => "uk-UA", 'value' => "генератор опис посади для наступної посади : \n ##description## "], - - ['id' => 2865, 'template_id' => 78, 'key' => "lt-LT", 'value' => "generatoriaus darbo etato aprašymas šiai pozicijai : \n ##description## "], - - ['id' => 2866, 'template_id' => 78, 'key' => "bg-BG", 'value' => "генератор описание на длъжността за следната позиция : \n ##description## "], - - ['id' => 2867, 'template_id' => 79, 'key' => "en-US", 'value' => "generator Resume for the following position : \n ##description## "], - - ['id' => 2868, 'template_id' => 79, 'key' => "ar-AE", 'value' => "مولد يستأنف للوظيفة التالية : \n ##description## "], - - ['id' => 2869, 'template_id' => 79, 'key' => "cmn-CN", 'value' => "產生器回復下列位置 : \n ##description## "], - - ['id' => 2870, 'template_id' => 79, 'key' => "hr-HR", 'value' => "generator Životopis za sljedeću poziciju : \n ##description## "], - - ['id' => 2871, 'template_id' => 79, 'key' => "cs-CZ", 'value' => "generátor Obnovit pro následující pozici : \n ##description## "], - - ['id' => 2872, 'template_id' => 79, 'key' => "da-DK", 'value' => "generator Genoptag for følgende position : \n ##description## "], - - ['id' => 2873, 'template_id' => 79, 'key' => "nl-NL", 'value' => "generator CV voor de volgende functie : \n ##description## "], - - ['id' => 2874, 'template_id' => 79, 'key' => "et-EE", 'value' => "generaator Jätka järgmisel ametikohal : \n ##description## "], - - ['id' => 2875, 'template_id' => 79, 'key' => "fi-FI", 'value' => "generaattori Jatka seuraavaan kohtaan : \n ##description## "], - - ['id' => 2876, 'template_id' => 79, 'key' => "fr-FR", 'value' => "générateur CV pour le poste suivant : \n ##description## "], - - ['id' => 2877, 'template_id' => 79, 'key' => "de-DE", 'value' => "Generator Lebenslauf für die folgende Position : \n ##description## "], - - ['id' => 2878, 'template_id' => 79, 'key' => "el-GR", 'value' => "γεννήτρια Συνεχίστε για την παρακάτω θέση : \n ##description## "], - - ['id' => 2879, 'template_id' => 79, 'key' => "he-IL", 'value' => "גנרטור קורות חיים לתפקיד הבא : \n ##description## "], - - ['id' => 2880, 'template_id' => 79, 'key' => "hi-IN", 'value' => "जनरेटर निम्नलिखित स्थिति के लिए फिर से शुरू करें : \n ##description## "], - - ['id' => 2881, 'template_id' => 79, 'key' => "hu-HU", 'value' => "generátor Folytatás a következő pozícióhoz : \n ##description## "], - - ['id' => 2882, 'template_id' => 79, 'key' => "is-IS", 'value' => "rafall Haltu áfram fyrir eftirfarandi stöðu : \n ##description## "], - - ['id' => 2883, 'template_id' => 79, 'key' => "id-ID", 'value' => "generator Lanjutkan untuk posisi berikut : \n ##description## "], - - ['id' => 2884, 'template_id' => 79, 'key' => "it-IT", 'value' => "generatore Riprendi per la posizione successiva : \n ##description## "], - - ['id' => 2885, 'template_id' => 79, 'key' => "ja-JP", 'value' => "発電機次のポジションの再開 : \n ##description## "], - - ['id' => 2886, 'template_id' => 79, 'key' => "ko-KR", 'value' => "다음 위치에 대한 발전기 이력서 : \n ##description## "], - - ['id' => 2887, 'template_id' => 79, 'key' => "ms-MY", 'value' => "generator Resume untuk kedudukan berikut : \n ##description## "], - - ['id' => 2888, 'template_id' => 79, 'key' => "nb-NO", 'value' => "generator Fortsett for følgende posisjon : \n ##description## "], - - ['id' => 2889, 'template_id' => 79, 'key' => "pl-PL", 'value' => "generator Wznów dla następującego stanowiska : \n ##description## "], - - ['id' => 2890, 'template_id' => 79, 'key' => "pt-PT", 'value' => "gerador Currículo para a seguinte posição : \n ##description## "], - - ['id' => 2891, 'template_id' => 79, 'key' => "ru-RU", 'value' => "генератор Резюме на следующую позицию : \n ##description## "], - - ['id' => 2892, 'template_id' => 79, 'key' => "es-ES", 'value' => "curriculum vitae del generador para la siguiente posición : \n ##description## "], - - ['id' => 2893, 'template_id' => 79, 'key' => "sv-SE", 'value' => "generator Återuppta för följande position : \n ##description## "], - - ['id' => 2894, 'template_id' => 79, 'key' => "tr-TR", 'value' => "Jeneratör Aşağıdaki konum için devam ettirin : \n ##description## "], - - ['id' => 2895, 'template_id' => 79, 'key' => "pt-BR", 'value' => "gerador Currículo para a seguinte posição : \n ##description## "], - - ['id' => 2896, 'template_id' => 79, 'key' => "ro-RO", 'value' => "generator Reluați pentru următoarea poziție : \n ##description## "], - - ['id' => 2897, 'template_id' => 79, 'key' => "vi-VN", 'value' => "Trình tạo Tiếp tục cho vị trí sau : \n ##description## "], - - ['id' => 2898, 'template_id' => 79, 'key' => "sw-KE", 'value' => "Jenereta Rejea kwa nafasi ifuatayo : \n ##description## "], - - ['id' => 2899, 'template_id' => 79, 'key' => "sl-SI", 'value' => "generator Življenjepis za naslednje delovno mesto : \n ##description## "], - - ['id' => 2900, 'template_id' => 79, 'key' => "th-TH", 'value' => "เครื่องกำเนิด Resume สำหรับตำแหน่งต่อไปนี้ : \n ##description## "], - - ['id' => 2901, 'template_id' => 79, 'key' => "uk-UA", 'value' => "generator Резюме на наступну посаду : \n ##description## "], - - ['id' => 2902, 'template_id' => 79, 'key' => "lt-LT", 'value' => "generatorius Tęskite šią poziciją : \n ##description## "], - - ['id' => 2903, 'template_id' => 79, 'key' => "bg-BG", 'value' => "генератор Резюме за следната позиция : \n ##description## "], - - ['id' => 2904, 'template_id' => 80, 'key' => "en-US", 'value' => "Write creative recipe for the following dish :\n\n ##description###"], - - ['id' => 2905, 'template_id' => 80, 'key' => "ar-AE", 'value' => "اكتب وصفة إبداعية للطبق التالي:\n\n ##description##"], - - ['id' => 2906, 'template_id' => 80, 'key' => "cmn-CN", 'value' => "为下列菜肴写出创意食谱:\n\n ##description##"], - - ['id' => 2907, 'template_id' => 80, 'key' => "hr-HR", 'value' => "Napiši kreativni recept za sljedeće jelo:\n\n ##description##" ], - - ['id' => 2908, 'template_id' => 80, 'key' => "cs-CZ", 'value' => "Napište kreativní recept na následující jídlo:\n\n ##description##"], - - ['id' => 2909, 'template_id' => 80, 'key' => "da-DK", 'value' => 'Skriv kreativ opskrift på følgende ret:\n\n ##description##' ], - - ['id' => 2910, 'template_id' => 80, 'key' => "nl-NL", 'value' => 'Schrijf creatief recept voor het volgende gerecht:\n\n ##description##' ], - - ['id' => 2911, 'template_id' => 80, 'key' => "et-EE", 'value' => 'Kirjutage järgmise roa loominguline retsept:\n\n ##description## '], - - ['id' => 2912, 'template_id' => 80, 'key' => "fi-FI", 'value' => 'Kirjoita luova resepti seuraavaan ruokalajiin:\n\n ##description## '], - - ['id' => 2913, 'template_id' => 80, 'key' => "fr-FR", 'value' => 'Écrivez une recette créative pour le plat suivant:\n\n ##description## '], - - ['id' => 2914, 'template_id' => 80, 'key' => "de-DE", 'value' => 'Schreiben Sie ein kreatives Rezept für das folgende Gericht:\n\n ##description## '], - - ['id' => 2915, 'template_id' => 80, 'key' => "el-GR", 'value' => 'Γράψε δημιουργική συνταγή για το παρακάτω πιάτο:\n\n ##description## '], - - ['id' => 2916, 'template_id' => 80, 'key' => "he-IL", 'value' => 'כתבו מתכון יצירתי למנה הבאה:\n\n ##description## '], - - ['id' => 2917, 'template_id' => 80, 'key' => "hi-IN", 'value' => 'निम्नलिखित व्यंजन के लिए रचनात्मक व्यंजन विधि लिखिए:\n\n ##description## '], - - ['id' => 2918, 'template_id' => 80, 'key' => "hu-HU", 'value' => 'Írj kreatív receptet a következő ételhez!:\n\n ##description## '], - - ['id' => 2919, 'template_id' => 80, 'key' => "is-IS", 'value' => 'Skrifaðu skapandi uppskrift að eftirfarandi rétti:\n\n ##description## '], - - ['id' => 2920, 'template_id' => 80, 'key' => "id-ID", 'value' => 'Tulis resep kreatif untuk hidangan berikut:\n\n ##description##'], - - ['id' => 2921, 'template_id' => 80, 'key' => "it-IT", 'value' => 'Scrivi una ricetta creativa per il seguente piatto:\n\n ##description## '], - - ['id' => 2922, 'template_id' => 80, 'key' => "ja-JP", 'value' => '次の料理の独創的なレシピを書いてください:\n\n ##description## '], - - ['id' => 2923, 'template_id' => 80, 'key' => "ko-KR", 'value' => '다음 요리에 대한 독창적인 레시피 작성:\n\n ##description##' ], - - ['id' => 2924, 'template_id' => 80, 'key' => "ms-MY", 'value' => 'Tulis resipi kreatif untuk hidangan berikut:\n\n ##description## '], - - ['id' => 2925, 'template_id' => 80, 'key' => "nb-NO", 'value' => 'Skriv kreativ oppskrift på følgende rett:\n\n ##description## '], - - ['id' => 2926, 'template_id' => 80, 'key' => "pl-PL", 'value' => 'Napisz kreatywny przepis na poniższe danie:\n\n ##description## '], - - ['id' => 2927, 'template_id' => 80, 'key' => "pt-PT", 'value' => 'Escreva uma receita criativa para o seguinte prato:\n\n ##description## '], - - ['id' => 2928, 'template_id' => 80, 'key' => "ru-RU", 'value' => 'Напишите креативный рецепт следующего блюда:\n\n ##description## '], - - ['id' => 2929, 'template_id' => 80, 'key' => "es-ES", 'value' => 'Escribe una receta creativa para el siguiente plato.:\n\n ##description## '], - - ['id' => 2930, 'template_id' => 80, 'key' => "sv-SE", 'value' => 'Skriv kreativt recept för följande maträtt:\n\n ##description##' ], - - ['id' => 2931, 'template_id' => 80, 'key' => "tr-TR", 'value' => 'Aşağıdaki yemek için yaratıcı bir tarif yazın:\n\n ##description## '], - - ['id' => 2932, 'template_id' => 80, 'key' => "pt-BR", 'value' => 'Escreve uma receita criativa para o seguinte prato:\n\n ##description## '], - - ['id' => 2933, 'template_id' => 80, 'key' => "ro-RO", 'value' => 'Scrieți o rețetă creativă pentru următorul fel de mâncare:\n\n ##description## '], - - ['id' => 2934, 'template_id' => 80, 'key' => "vi-VN", 'value' => 'Viết công thức sáng tạo cho món ăn sau:\n\n ##description##' ], - - ['id' => 2935, 'template_id' => 80, 'key' => "sw-KE", 'value' => 'Andika kichocheo cha ubunifu kwa sahani ifuatayo:\n\n ##description## '], - - ['id' => 2936, 'template_id' => 80, 'key' => "sl-SI", 'value' => 'Napišite kreativen recept za naslednjo jed:\n\n ##description##' ], - - ['id' => 2937, 'template_id' => 80, 'key' => "th-TH", 'value' => 'เขียนสูตรสร้างสรรค์สำหรับอาหารจานต่อไปนี้:\n\n ##description## '], - - ['id' => 2938, 'template_id' => 80, 'key' => "uk-UA", 'value' => 'Напишіть творчий рецепт наступної страви:\n\n ##description## '], - - ['id' => 2939, 'template_id' => 80, 'key' => "lt-LT", 'value' => 'Parašykite kūrybinį šio patiekalo receptą:\n\n ##description## '], - - ['id' => 2940, 'template_id' => 80, 'key' => "bg-BG", 'value' => 'Напишете творческа рецепта за следното ястие:\n\n ##description## '], - - ['id' => 2941, 'template_id' => 81, 'key' => "en-US", 'value' => 'Write creative poetry for the following:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 2942, 'template_id' => 81, 'key' => "ar-AE", 'value' => 'اكتب شعرًا إبداعيًا لما يلي:\n\n ##description## \n\n TTالوحيدة من صوت النتيجة يجب أن تكون::\n ##tone_language## \n\n'], - - ['id' => 2943, 'template_id' => 81, 'key' => "cmn-CN", 'value' => '为以下创作诗歌:\n\n ##description## \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 2944, 'template_id' => 81, 'key' => "hr-HR", 'value' => 'Napišite kreativnu poeziju za sljedeće:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 2945, 'template_id' => 81, 'key' => "cs-CZ", 'value' => 'Napište kreativní poezii pro následující:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 2946, 'template_id' => 81, 'key' => "da-DK", 'value' => 'Skriv kreativ poesi til følgende:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 2947, 'template_id' => 81, 'key' => "nl-NL", 'value' => 'Schrijf creatieve poëzie voor het volgende:\n\n ##description## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 2948, 'template_id' => 81, 'key' => "et-EE", 'value' => 'Kirjutage loomingulist luulet järgmiste jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 2949, 'template_id' => 81, 'key' => "fi-FI", 'value' => 'Kirjoita luovaa runoutta seuraavaa varten:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 2950, 'template_id' => 81, 'key' => "fr-FR", 'value' => 'Écrivez de la poésie créative pour les éléments suivants:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 2951, 'template_id' => 81, 'key' => "de-DE", 'value' => 'Schreiben Sie kreative Gedichte für Folgendes:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 2952, 'template_id' => 81, 'key' => "el-GR", 'value' => 'Γράψε δημιουργική ποίηση για τα παρακάτω:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 2953, 'template_id' => 81, 'key' => "he-IL", 'value' => ' כתבו שירה יצירתית עבור הבאים:\n\n ##description## \n\n של הקול של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 2954, 'template_id' => 81, 'key' => "hi-IN", 'value' => 'निम्नलिखित के लिए रचनात्मक कविताएँ लिखिए:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 2955, 'template_id' => 81, 'key' => "hu-HU", 'value' => 'Írj kreatív verset a következőkhöz!:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 2956, 'template_id' => 81, 'key' => "is-IS", 'value' => 'Skrifaðu skapandi ljóð fyrir eftirfarandi:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 2957, 'template_id' => 81, 'key' => "id-ID", 'value' => 'Tulis puisi kreatif untuk berikut ini:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 2958, 'template_id' => 81, 'key' => "it-IT", 'value' => 'Scrivi poesie creative per quanto segue:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 2959, 'template_id' => 81, 'key' => "ja-JP", 'value' => '以下のために創造的な詩を書いてください:\n\n ##description## \n\n 結果の声のトーンは:\n ##tone_language## \n\n'], - - ['id' => 2960, 'template_id' => 81, 'key' => "ko-KR", 'value' => '다음을 위해 창의적인 시를 쓰세요.:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 2961, 'template_id' => 81, 'key' => "ms-MY", 'value' => 'Tulis puisi kreatif untuk perkara berikut:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 2962, 'template_id' => 81, 'key' => "nb-NO", 'value' => 'Skriv kreativ poesi for følgende:\n\n ##description## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 2963, 'template_id' => 81, 'key' => "pl-PL", 'value' => 'Napisz twórczą poezję dla następujących:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 2964, 'template_id' => 81, 'key' => "pt-PT", 'value' => 'Escrever poesia criativa para os seguintes temas:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 2965, 'template_id' => 81, 'key' => "ru-RU", 'value' => 'Пишите творческие стихи для следующих:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 2966, 'template_id' => 81, 'key' => "es-ES", 'value' => 'Escribe poesía creativa para los siguientes:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 2967, 'template_id' => 81, 'key' => "sv-SE", 'value' => 'Skriv kreativ poesi för följande:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 2968, 'template_id' => 81, 'key' => "tr-TR", 'value' => 'Aşağıdakiler için yaratıcı şiir yazın:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 2969, 'template_id' => 81, 'key' => "pt-BR", 'value' => 'Escreva poesia criativa para o seguinte:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 2970, 'template_id' => 81, 'key' => "ro-RO", 'value' => 'Scrie poezie creativă pentru următoarele:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 2971, 'template_id' => 81, 'key' => "vi-VN", 'value' => 'Viết thơ sáng tạo cho những điều sau đây:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 2972, 'template_id' => 81, 'key' => "sw-KE", 'value' => 'Andika mashairi ya ubunifu kwa yafuatayo:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 2973, 'template_id' => 81, 'key' => "sl-SI", 'value' => 'Napišite ustvarjalno poezijo za naslednje:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 2974, 'template_id' => 81, 'key' => "th-TH", 'value' => 'เขียนบทกวีสร้างสรรค์ต่อไปนี้:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 2975, 'template_id' => 81, 'key' => "uk-UA", 'value' => 'Напишіть творчі вірші для наступного:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 2976, 'template_id' => 81, 'key' => "lt-LT", 'value' => 'Rašykite kūrybinę poeziją šiems dalykams:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 2977, 'template_id' => 81, 'key' => "bg-BG", 'value' => 'Напишете творческа поезия за следното:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 2978, 'template_id' => 82, 'key' => "en-US", 'value' => 'Write progress Report for the following :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 2979, 'template_id' => 82, 'key' => "ar-AE", 'value' => 'اكتب تقرير التقدم لما يلي:\n\n ##description## \n\n TTالوحيدة من صوت النتيجة يجب أن تكون::\n ##tone_language## \n\n'], - - ['id' => 2980, 'template_id' => 82, 'key' => "cmn-CN", 'value' => '为以下项目撰写进度报告:\n\n ##description## \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 2981, 'template_id' => 82, 'key' => "hr-HR", 'value' => 'Napišite izvješće o napretku za sljedeće:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 2982, 'template_id' => 82, 'key' => "cs-CZ", 'value' => 'Napište zprávu o pokroku pro následující:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 2983, 'template_id' => 82, 'key' => "da-DK", 'value' => 'Skriv statusrapport for følgende:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 2984, 'template_id' => 82, 'key' => "nl-NL", 'value' => 'Voortgangsrapport schrijven voor het volgende:\n\n ##description## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 2985, 'template_id' => 82, 'key' => "et-EE", 'value' => 'Kirjutage edenemisaruanne järgmiste asjade jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 2986, 'template_id' => 82, 'key' => "fi-FI", 'value' => 'Kirjoita edistymisraportti seuraavista asioista:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 2987, 'template_id' => 82, 'key' => "fr-FR", 'value' => 'Rédiger un rapport d avancement pour les éléments suivants:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 2988, 'template_id' => 82, 'key' => "de-DE", 'value' => 'Schreiben Sie einen Fortschrittsbericht für Folgendes:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 2989, 'template_id' => 82, 'key' => "el-GR", 'value' => 'Γράψτε αναφορά προόδου για τα ακόλουθα:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 2990, 'template_id' => 82, 'key' => "he-IL", 'value' => 'כתוב דוח התקדמות עבור הדברים הבאים:\n\n ##description## \n\n של הקול של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 2991, 'template_id' => 82, 'key' => "hi-IN", 'value' => 'निम्नलिखित के लिए प्रगति रिपोर्ट लिखें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 2992, 'template_id' => 82, 'key' => "hu-HU", 'value' => 'Írjon előrehaladási jelentést a következőkhöz:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 2993, 'template_id' => 82, 'key' => "is-IS", 'value' => 'Skrifaðu framvinduskýrslu fyrir eftirfarandi:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 2994, 'template_id' => 82, 'key' => "id-ID", 'value' => 'Tulis laporan kemajuan untuk hal-hal berikut:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 2995, 'template_id' => 82, 'key' => "it-IT", 'value' => 'Scrivi un rapporto sui progressi per quanto segue:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 2996, 'template_id' => 82, 'key' => "ja-JP", 'value' => '以下の進捗レポートを作成します:\n\n ##description## \n\n 結果の声のトーンは:\n ##tone_language## \n\n'], - - ['id' => 2997, 'template_id' => 82, 'key' => "ko-KR", 'value' => '다음에 대한 진행 보고서 작성:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 2998, 'template_id' => 82, 'key' => "ms-MY", 'value' => 'Tulis Laporan kemajuan untuk perkara berikut:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 2999, 'template_id' => 82, 'key' => "nb-NO", 'value' => 'Skriv fremdriftsrapport for følgende:\n\n ##description## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 3000, 'template_id' => 82, 'key' => "pl-PL", 'value' => 'Napisz raport z postępów dla następujących:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 3001, 'template_id' => 82, 'key' => "pt-PT", 'value' => 'Redigir um relatório de progresso para o seguinte:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3002, 'template_id' => 82, 'key' => "ru-RU", 'value' => 'Напишите отчет о проделанной работе для следующего:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 3003, 'template_id' => 82, 'key' => "es-ES", 'value' => 'Escriba el informe de progreso para lo siguiente:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 3004, 'template_id' => 82, 'key' => "sv-SE", 'value' => 'Skriv lägesrapport för följande:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 3005, 'template_id' => 82, 'key' => "tr-TR", 'value' => 'Aşağıdakiler için ilerleme raporu yaz:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 3006, 'template_id' => 82, 'key' => "pt-BR", 'value' => 'Escreva um relatório de progresso para o seguinte:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3007, 'template_id' => 82, 'key' => "ro-RO", 'value' => 'Scrieți un raport de progres pentru următoarele:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 3008, 'template_id' => 82, 'key' => "vi-VN", 'value' => 'Viết báo cáo tiến độ cho phần sau:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 3009, 'template_id' => 82, 'key' => "sw-KE", 'value' => 'Andika Ripoti ya maendeleo kwa yafuatayo:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 3010, 'template_id' => 82, 'key' => "sl-SI", 'value' => 'Napišite poročilo o napredku za naslednje:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 3011, 'template_id' => 82, 'key' => "th-TH", 'value' => 'เขียนรายงานความคืบหน้าต่อไปนี้ : \n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 3012, 'template_id' => 82, 'key' => "uk-UA", 'value' => 'Напишіть звіт про прогрес для наступного:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 3013, 'template_id' => 82, 'key' => "lt-LT", 'value' => 'Parašykite pažangos ataskaitą dėl šių dalykų:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 3014, 'template_id' => 82, 'key' => "bg-BG", 'value' => 'Напишете отчет за напредъка за следното:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 3015, 'template_id' => 83, 'key' => "en-US", 'value' => 'Write fictional story idea for the following:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 3016, 'template_id' => 83, 'key' => "ar-AE", 'value' => 'اكتب فكرة قصة خيالية لما يلي:\n\n ##description## \n\n TTالوحيدة من صوت النتيجة يجب أن تكون::\n ##tone_language## \n\n'], - - ['id' => 3017, 'template_id' => 83, 'key' => "cmn-CN", 'value' => '为以下内容写虚构的故事构想:\n\n ##description## \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 3018, 'template_id' => 83, 'key' => "hr-HR", 'value' => 'Napišite ideju izmišljene priče za sljedeće:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 3019, 'template_id' => 83, 'key' => "cs-CZ", 'value' => 'Napište myšlenku na fiktivní příběh pro následující:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 3020, 'template_id' => 83, 'key' => "da-DK", 'value' => 'Skriv en fiktiv historieidé til følgende:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 3021, 'template_id' => 83, 'key' => "nl-NL", 'value' => 'Schrijf een fictief verhaalidee voor het volgende:\n\n ##description## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 3022, 'template_id' => 83, 'key' => "et-EE", 'value' => 'Kirjutage väljamõeldud loo idee järgmise jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 3023, 'template_id' => 83, 'key' => "fi-FI", 'value' => 'Kirjoita kuvitteellinen tarinaidea seuraavaa varten:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 3024, 'template_id' => 83, 'key' => "fr-FR", 'value' => 'Écrivez une idée d histoire fictive pour ce qui suit:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 3025, 'template_id' => 83, 'key' => "de-DE", 'value' => 'Schreiben Sie eine fiktive Story-Idee für Folgendes:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 3026, 'template_id' => 83, 'key' => "el-GR", 'value' => 'Γράψτε μια ιδέα φανταστικής ιστορίας για τα παρακάτω:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 3027, 'template_id' => 83, 'key' => "he-IL", 'value' => 'כתוב רעיון לסיפור בדיוני עבור הדברים הבאים :\n\n ##description## \n\n של הקול של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 3028, 'template_id' => 83, 'key' => "hi-IN", 'value' => 'निम्नलिखित के लिए काल्पनिक कहानी विचार लिखें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 3029, 'template_id' => 83, 'key' => "hu-HU", 'value' => 'Írj kitalált történetötletet a következőkhöz!:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 3030, 'template_id' => 83, 'key' => "is-IS", 'value' => 'Skrifaðu skáldaða söguhugmynd fyrir eftirfarandi:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 3031, 'template_id' => 83, 'key' => "id-ID", 'value' => 'Tuliskan ide cerita fiksi untuk berikut ini:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 3032, 'template_id' => 83, 'key' => "it-IT", 'value' => 'Scrivi un idea per una storia immaginaria per quanto segue:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 3033, 'template_id' => 83, 'key' => "ja-JP", 'value' => '以下の架空の物語のアイデアを書いてください:\n\n ##description## \n\n 結果の声のトーンは:\n ##tone_language## \n\n'], - - ['id' => 3034, 'template_id' => 83, 'key' => "ko-KR", 'value' => '다음에 대한 허구의 이야기 아이디어 쓰기:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 3035, 'template_id' => 83, 'key' => "ms-MY", 'value' => 'Tulis idea cerita fiksyen untuk yang berikut:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 3036, 'template_id' => 83, 'key' => "nb-NO", 'value' => 'Skriv en fiktiv historieidé for følgende:\n\n ##description## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 3037, 'template_id' => 83, 'key' => "pl-PL", 'value' => 'Napisz pomysł na fabułę opowiadania pt:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 3038, 'template_id' => 83, 'key' => "pt-PT", 'value' => 'Escreve uma ideia de história de ficção para o seguinte:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3039, 'template_id' => 83, 'key' => "ru-RU", 'value' => 'Напишите идею вымышленного рассказа для следующего:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 3040, 'template_id' => 83, 'key' => "es-ES", 'value' => 'Escribe una idea de historia ficticia para lo siguiente:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 3041, 'template_id' => 83, 'key' => "sv-SE", 'value' => 'Skriv en fiktiv berättelseidé för följande:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 3042, 'template_id' => 83, 'key' => "tr-TR", 'value' => 'Aşağıdakiler için kurgusal hikaye fikri yazın:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 3043, 'template_id' => 83, 'key' => "pt-BR", 'value' => 'Escreva uma ideia de história fictícia para o seguinte:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3044, 'template_id' => 83, 'key' => "ro-RO", 'value' => 'Scrieți o idee de poveste fictivă pentru următoarele:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 3045, 'template_id' => 83, 'key' => "vi-VN", 'value' => 'Viết ý tưởng câu chuyện hư cấu cho những điều sau đây:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 3046, 'template_id' => 83, 'key' => "sw-KE", 'value' => 'Andika wazo la hadithi ya kubuni kwa zifuatazo:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 3047, 'template_id' => 83, 'key' => "sl-SI", 'value' => 'Napišite idejo izmišljene zgodbe za naslednje:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 3048, 'template_id' => 83, 'key' => "th-TH", 'value' => 'เขียนแนวคิดเรื่องสมมติต่อไปนี้ : \n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 3049, 'template_id' => 83, 'key' => "uk-UA", 'value' => 'Напишіть ідею художньої історії для наступного:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 3050, 'template_id' => 83, 'key' => "lt-LT", 'value' => 'Parašykite išgalvotos istorijos idėją šiai temai:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 3051, 'template_id' => 83, 'key' => "bg-BG", 'value' => 'Напишете идея за измислена история за следното:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 3052, 'template_id' => 84, 'key' => "en-US", 'value' => "Write 10 catchy webinar title ideas for the following :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 3053, 'template_id' => 84, 'key' => "ar-AE", 'value' => "اكتب 10 أفكار جذابة لعنوان ندوة عبر الإنترنت لما يلي:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 3054, 'template_id' => 84, 'key' => "cmn-CN", 'value' => "为以下内容编写 10 个引人入胜的网络研讨会标题创意:\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 3055, 'template_id' => 84, 'key' => "hr-HR", 'value' => "Napišite 10 zanimljivih ideja za naslov webinara za sljedeće:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3056, 'template_id' => 84, 'key' => "cs-CZ", 'value' => "Napište 10 chytlavých nápadů na název webináře pro následující:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 3057, 'template_id' => 84, 'key' => "da-DK", 'value' => "Skriv 10 iørefaldende webinartitelideer til følgende:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 3058, 'template_id' => 84, 'key' => "nl-NL", 'value' => "Schrijf 10 pakkende titelideeën voor webinars voor het volgende:\n\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 3059, 'template_id' => 84, 'key' => "et-EE", 'value' => "Kirjutage 10 meeldejäävat veebiseminari pealkirjaideed järgmiste asjade jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 3060, 'template_id' => 84, 'key' => "fi-FI", 'value' => "Kirjoita 10 tarttuvaa webinaarin otsikkoideaa seuraavista aiheista:\n\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 3061, 'template_id' => 84, 'key' => "fr-FR", 'value' => "Rédigez 10 idées de titres de webinaires accrocheurs pour les éléments suivants :\n\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 3062, 'template_id' => 84, 'key' => "de-DE", 'value' => "Schreiben Sie 10 einprägsame Webinar-Titelideen für Folgendes:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 3063, 'template_id' => 84, 'key' => "el-GR", 'value' => "Γράψτε 10 ελκυστικές ιδέες τίτλου διαδικτυακού σεμιναρίου για τα ακόλουθα:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 3064, 'template_id' => 84, 'key' => "he-IL", 'value' => "כתוב 10 רעיונות לכותרות סמינרים מקוונים עבור הדברים הבאים:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 3065, 'template_id' => 84, 'key' => "hi-IN", 'value' => "निम्नलिखित के लिए 10 आकर्षक वेबिनार शीर्षक विचार लिखें:\n\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 3066, 'template_id' => 84, 'key' => "hu-HU", 'value' => "Írj 10 fülbemászó webinárium címötletet a következőkhöz:\n\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 3067, 'template_id' => 84, 'key' => "is-IS", 'value' => "Skrifaðu 10 grípandi titilhugmyndir fyrir vefnámskeið fyrir eftirfarandi:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 3068, 'template_id' => 84, 'key' => "id-ID", 'value' => "Tulis 10 ide judul webinar yang menarik sebagai berikut :\n\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n"], - - ['id' => 3069, 'template_id' => 84, 'key' => "it-IT", 'value' => "Scrivi 10 accattivanti idee per titoli di webinar per quanto segue:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 3070, 'template_id' => 84, 'key' => "ja-JP", 'value' => "以下について、キャッチーなウェビナー タイトルのアイデアを 10 個書いてください:\n\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n"], - - ['id' => 3071, 'template_id' => 84, 'key' => "ko-KR", 'value' => "다음에 대한 10가지 흥미로운 웨비나 제목 아이디어를 작성하십시오:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 3072, 'template_id' => 84, 'key' => "ms-MY", 'value' => "Tulis 10 idea tajuk webinar yang menarik untuk perkara berikut:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 3073, 'template_id' => 84, 'key' => "nb-NO", 'value' => "Skriv 10 fengende webinartittelideer for følgende:\n\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 3074, 'template_id' => 84, 'key' => "pl-PL", 'value' => "Napisz 10 chwytliwych pomysłów na tytuły webinarów:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 3075, 'template_id' => 84, 'key' => "pt-PT", 'value' => "Escreva 10 ideias atraentes de títulos de webinar para o seguinte:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3076, 'template_id' => 84, 'key' => "ru-RU", 'value' => "Напишите 10 броских идей названия вебинара для следующего:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 3077, 'template_id' => 84, 'key' => "es-ES", 'value' => "Escriba 10 ideas pegadizas para títulos de seminarios web para lo siguiente:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 3078, 'template_id' => 84, 'key' => "sv-SE", 'value' => "Skriv 10 fängslande webbinariumtitelidéer för följande:\n\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 3079, 'template_id' => 84, 'key' => "tr-TR", 'value' => "Aşağıdakiler için akılda kalıcı 10 web semineri başlığı fikri yazın:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 3080, 'template_id' => 84, 'key' => "pt-BR", 'value' => "Escreva 10 ideias de títulos de webinar atraentes para os seguintes itens:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3081, 'template_id' => 84, 'key' => "ro-RO", 'value' => "Scrieți 10 idei captivante pentru titluri de webinar pentru următoarele:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 3082, 'template_id' => 84, 'key' => "vi-VN", 'value' => "Viết 10 ý tưởng tiêu đề hội thảo trên web hấp dẫn cho những nội dung sau:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 3083, 'template_id' => 84, 'key' => "sw-KE", 'value' => "Andika mawazo 10 ya kuvutia ya mada ya wavuti kwa yafuatayo:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 3084, 'template_id' => 84, 'key' => "sl-SI", 'value' => "Napišite 10 idej za privlačne naslove spletnih seminarjev za naslednje:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3085, 'template_id' => 84, 'key' => "th-TH", 'value' => "เขียน 10 แนวคิดเกี่ยวกับหัวข้อการสัมมนาผ่านเว็บที่จับใจสำหรับสิ่งต่อไปนี้:\n\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 3086, 'template_id' => 84, 'key' => "uk-UA", 'value' => "Напишіть 10 цікавих ідей назви вебінару для наступного:\n\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n"], - - ['id' => 3087, 'template_id' => 84, 'key' => "lt-LT", 'value' => "Parašykite 10 patrauklių internetinio seminaro pavadinimo idėjų, skirtų šiems dalykams:\n\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 3088, 'template_id' => 84, 'key' => "bg-BG", 'value' => "Напишете 10 закачливи идеи за заглавия на уебинара за следното:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 3089, 'template_id' => 85, 'key' => "en-US", 'value' => "Write 10 interesting titles for snapchat ad of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n Title's length must be 30 characters\n\n"], - - ['id' => 3090, 'template_id' => 85, 'key' => "ar-AE", 'value' => "اكتب 10 عناوين مثيرة للاهتمام لإعلان سناب شات للمنتج التالي الذي يهدف إلى:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n يجب أن يكون طول العنوان 30 حرفًا\n\n"], - - ['id' => 3091, 'template_id' => 85, 'key' => "cmn-CN", 'value' => "为以下产品的 snapchat 广告写 10 个有趣的标题,目的是:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n 标题长度必须为 30 个字符\n\n"], - - ['id' => 3092, 'template_id' => 85, 'key' => "hr-HR", 'value' => "Napišite 10 zanimljivih naslova za snapchat oglas sljedećeg proizvoda namijenjenog:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n Duljina naslova mora biti 30 znakova\n\n"], - - ['id' => 3093, 'template_id' => 85, 'key' => "cs-CZ", 'value' => "Napište 10 zajímavých titulků pro snapchat reklamu následujícího produktu zaměřeného na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n Délka názvu musí být 30 znaků\n\n"], - - ['id' => 3094, 'template_id' => 85, 'key' => "da-DK", 'value' => "Skriv 10 interessante titler til snapchat-annoncer for følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n Titlens længde skal være på 30 tegn\n\n"], - - ['id' => 3095, 'template_id' => 85, 'key' => "nl-NL", 'value' => "Schrijf 10 interessante titels voor Snapchat-advertentie van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n De lengte van de titel moet 30 tekens zijn\n\n"], - - ['id' => 3096, 'template_id' => 85, 'key' => "et-EE", 'value' => "Kirjutage 10 huvitavat pealkirja järgmise toote snapchati reklaamile, mis on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n Pealkirja pikkus peab olema 30 tähemärki\n\n"], - - ['id' => 3097, 'template_id' => 85, 'key' => "fi-FI", 'value' => "Kirjoita 10 mielenkiintoista otsikkoa seuraavan tuotteen snapchat-mainokseen, joka on tarkoitettu:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n Otsikon pituuden tulee olla 30 merkkiä\n\n"], - - ['id' => 3098, 'template_id' => 85, 'key' => "fr-FR", 'value' => "Écrivez 10 titres intéressants pour l'annonce Snapchat du produit suivant destiné à :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de voix du résultat doit être :\n ##tone_language## \n\n La longueur du titre doit être de 30 caractères\n\n"], - - ['id' => 3099, 'template_id' => 85, 'key' => "de-DE", 'value' => "Schreiben Sie 10 interessante Titel für die Snapchat-Anzeige des folgenden Produkts mit der Zielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n Die Länge des Titels muss 30 Zeichen betragen\n\n"], - - ['id' => 3100, 'template_id' => 85, 'key' => "el-GR", 'value' => "Γράψτε 10 ενδιαφέροντες τίτλους για τη διαφήμιση snapchat του παρακάτω προϊόντος με στόχο:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n Το μήκος του τίτλου πρέπει να είναι 30 χαρακτήρες\n\n"], - - ['id' => 3101, 'template_id' => 85, 'key' => "he-IL", 'value' => "כתוב 10 כותרות מעניינות עבור מודעת Snapchat של המוצר הבא המיועדת ל:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n אורך הכותרת חייב להיות 30 תווים\n\n"], - - ['id' => 3102, 'template_id' => 85, 'key' => "hi-IN", 'value' => "निम्नलिखित उत्पाद के स्नैपचैट विज्ञापन के लिए 10 दिलचस्प शीर्षक लिखें जिनका उद्देश्य है:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n शीर्षक की लंबाई 30 वर्ण होनी चाहिए\n\n"], - - ['id' => 3103, 'template_id' => 85, 'key' => "hu-HU", 'value' => "Írjon 10 érdekes címet a következő termék snapchat-hirdetéséhez, amelynek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n A címnek 30 karakterből kell állnia\n\n"], - - ['id' => 3104, 'template_id' => 85, 'key' => "is-IS", 'value' => "Skrifaðu 10 áhugaverða titla fyrir snapchat auglýsingu fyrir eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n Lengd titilsins verður að vera 30 stafir\n\n"], - - ['id' => 3105, 'template_id' => 85, 'key' => "id-ID", 'value' => "Tulis 10 judul menarik untuk iklan snapchat produk berikut yang ditujukan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n Panjang judul harus 30 karakter\n\n"], - - ['id' => 3106, 'template_id' => 85, 'key' => "it-IT", 'value' => "Scrivi 10 titoli interessanti per l'annuncio snapchat del seguente prodotto mirato a:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n La lunghezza del titolo deve essere di 30 caratteri\n\n"], - - ['id' => 3107, 'template_id' => 85, 'key' => "ja-JP", 'value' => "次の製品のスナップチャット広告の興味深いタイトルを 10 個書いてください:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n タイトルの長さは 30 文字である必要があります\n\n"], - - ['id' => 3108, 'template_id' => 85, 'key' => "ko-KR", 'value' => "다음을 대상으로 하는 스냅챗 광고의 흥미로운 제목 10개를 작성하세요:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n 제목 길이는 30자여야 합니다\n\n"], - - ['id' => 3109, 'template_id' => 85, 'key' => "ms-MY", 'value' => "Tulis 10 tajuk menarik untuk iklan snapchat produk berikut bertujuan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n Panjang tajuk mestilah 30 aksara\n\n"], - - ['id' => 3110, 'template_id' => 85, 'key' => "nb-NO", 'value' => "Skriv 10 interessante titler for snapchat-annonsen for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n Tittelens lengde må være på 30 tegn\n\n"], - - ['id' => 3111, 'template_id' => 85, 'key' => "pl-PL", 'value' => "Napisz 10 ciekawych tytułów reklamy snapchat następującego produktu skierowanej do:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n Długość tytułu musi wynosić 30 znaków\n\n"], - - ['id' => 3112, 'template_id' => 85, 'key' => "pt-PT", 'value' => "Escreva 10 títulos interessantes para o anúncio do Snapchat do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n"], - - ['id' => 3113, 'template_id' => 85, 'key' => "ru-RU", 'value' => "Напишите 10 интересных заголовков для рекламы в Snapchat следующего продукта, нацеленного на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n Длина заголовка должна быть 30 символов\n\n"], - - ['id' => 3114, 'template_id' => 85, 'key' => "es-ES", 'value' => "Escriba 10 títulos interesantes para el anuncio de Snapchat del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n La longitud del título debe ser de 30 caracteres\n\n"], - - ['id' => 3115, 'template_id' => 85, 'key' => "sv-SE", 'value' => "Skriv 10 intressanta titlar för snapchat-annons för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n Titelns längd måste vara 30 tecken\n\n"], - - ['id' => 3116, 'template_id' => 85, 'key' => "tr-TR", 'value' => "Aşağıdaki ürünün Snapchat reklamı için 10 ilginç başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n Başlığın uzunluğu 30 karakter olmalıdır\n\n"], - - ['id' => 3117, 'template_id' => 85, 'key' => "pt-BR", 'value' => "Escreva 10 títulos interessantes para o anúncio do snapchat do seguinte produto destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n"], - - ['id' => 3118, 'template_id' => 85, 'key' => "ro-RO", 'value' => "Scrieți 10 titluri interesante pentru reclame snapchat ale următorului produs destinat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n Lungimea titlului trebuie să fie de 30 de caractere\n\n"], - - ['id' => 3119, 'template_id' => 85, 'key' => "vi-VN", 'value' => "Viết 10 tiêu đề thú vị cho quảng cáo snapchat của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n Độ dài của tiêu đề phải là 30 ký tự\n\n"], - - ['id' => 3120, 'template_id' => 85, 'key' => "sw-KE", 'value' => "Andika mada 10 za kuvutia za tangazo la snapchat la bidhaa ifuatayo inayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n Urefu wa kichwa lazima uwe na vibambo 30\n\n"], - - ['id' => 3121, 'template_id' => 85, 'key' => "sl-SI", 'value' => "Napišite 10 zanimivih naslovov za snapchat oglas naslednjega izdelka, ki je namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n"], - - ['id' => 3122, 'template_id' => 85, 'key' => "th-TH", 'value' => "เขียน 10 ชื่อที่น่าสนใจสำหรับโฆษณา snapchat ของผลิตภัณฑ์ต่อไปนี้ซึ่งมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n ความยาวของชื่อเรื่องต้องมีความยาว 30 อักขระ\n\n"], - - ['id' => 3123, 'template_id' => 85, 'key' => "uk-UA", 'value' => "Напишіть 10 цікавих назв для реклами snapchat наступного продукту, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n Довжина заголовка має бути 30 символів\n\n"], - - ['id' => 3124, 'template_id' => 85, 'key' => "lt-LT", 'value' => "Parašykite 10 įdomių pavadinimų šio produkto „snapchat“ reklamai, skirtai:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n Pavadinimo ilgis turi būti 30 simbolių\n\n"], - - ['id' => 3125, 'template_id' => 85, 'key' => "bg-BG", 'value' => "Напишете 10 интересни заглавия за snapchat реклама на следния продукт, насочен към::\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n Дължината на заглавието трябва да бъде 30 знака\n\n"], - - ['id' => 3126, 'template_id' => 86, 'key' => "en-US", 'value' => "Write attention grabbing Shopify marketplace product description for:\n\n ##title## \n\nUse following keywords in the product description:\n ##keywords## \n\n"], - - ['id' => 3127, 'template_id' => 86, 'key' => "ar-AE", 'value' => "اكتب وصفًا لجذب الانتباه Shopify Marketplace وصف المنتج لـ:\n\n ##title## \n\n استخدم الكلمات الرئيسية التالية في وصف المنتج:\n ##keywords## \n\n"], - - ['id' => 3128, 'template_id' => 86, 'key' => "cmn-CN", 'value' => "写下引人注目的 Shopify 市场产品描述:\n\n ##title## \n\n 在产品描述中使用以下关键字:\n ##keywords## \n\n"], - - ['id' => 3129, 'template_id' => 86, 'key' => "hr-HR", 'value' => "Napišite opis proizvoda Shopify marketplace koji privlači pažnju za:\n\n ##title## \n\n Koristite sljedeće ključne riječi u opisu proizvoda:\n ##keywords## \n\n"], - - ['id' => 3130, 'template_id' => 86, 'key' => "cs-CZ", 'value' => "Napište popis produktu na tržišti Shopify pro:\n\n ##title## \n\n V popisu produktu použijte následující klíčová slova:\n ##keywords## \n\n"], - - ['id' => 3131, 'template_id' => 86, 'key' => "da-DK", 'value' => "Skriv opmærksomhedsfangende Shopify markedsplads produktbeskrivelse for:\n\n ##title## \n\n Brug følgende nøgleord i produktbeskrivelsen:\n ##keywords## \n\n"], - - ['id' => 3132, 'template_id' => 86, 'key' => "nl-NL", 'value' => "Schrijf de aandacht trekkende Shopify marktplaats productbeschrijving voor:\n\n ##title## \n\n Gebruik de volgende trefwoorden in de productbeschrijving:\n ##keywords## \n\n"], - - ['id' => 3133, 'template_id' => 86, 'key' => "et-EE", 'value' => "Kirjutage tähelepanu äratav Shopify turuplatsi tootekirjeldus:\n\n ##title## \n\n Kasutage tootekirjelduses järgmisi märksõnu:\n ##keywords## \n\n"], - - ['id' => 3134, 'template_id' => 86, 'key' => "fi-FI", 'value' => "Kirjoita huomiota herättävä Shopify Marketplace -tuotteen kuvaus:\n\n ##title## \n\n Käytä tuotekuvauksessa seuraavia avainsanoja:\n ##keywords## \n\n"], - - ['id' => 3135, 'template_id' => 86, 'key' => "fr-FR", 'value' => "Rédigez une description de produit accrocheuse sur le marché Shopify pour :\n\n ##title## \n\n Utilisez les mots clés suivants dans la description du produit :\n ##keywords## \n\n"], - - ['id' => 3136, 'template_id' => 86, 'key' => "de-DE", 'value' => "Schreiben Sie eine aufmerksamkeitsstarke Produktbeschreibung für den Shopify-Marktplatz für:\n\n ##title## \n\n Verwenden Sie in der Produktbeschreibung folgende Schlüsselwörter:\n ##keywords## \n\n"], - - ['id' => 3137, 'template_id' => 86, 'key' => "el-GR", 'value' => "Γράψτε την περιγραφή προϊόντος της αγοράς Shopify για:\n\n ##title## \n\n Χρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του προϊόντος:\n ##keywords## \n\n"], - - ['id' => 3138, 'template_id' => 86, 'key' => "he-IL", 'value' => "כתוב תיאור המוצר של Shopify Marketplace למשוך תשומת לב עבור:\n\n ##title## \n\n השתמש במילות המפתח הבאות בתיאור המוצר:\n ##keywords## \n\n"], - - ['id' => 3139, 'template_id' => 86, 'key' => "hi-IN", 'value' => "ध्यान आकर्षित करने वाले लिखें Shopify मार्केटप्लेस के लिए उत्पाद विवरण:\n\n ##title## \n\n उत्पाद विवरण में निम्नलिखित कीवर्ड का प्रयोग करें:\n ##keywords## \n\n"], - - ['id' => 3140, 'template_id' => 86, 'key' => "hu-HU", 'value' => "Írjon figyelemfelkeltő Shopify piactér termékleírást a következőhöz:\n\n ##title## \n\n Használja a következő kulcsszavakat a termékleírásban:\n ##keywords## \n\n"], - - ['id' => 3141, 'template_id' => 86, 'key' => "is-IS", 'value' => "Skrifaðu athyglisverða vörulýsingu á Shopify markaðstorginu fyrir:\n\n ##title## \n\n Notaðu eftirfarandi lykilorð í vörulýsingunni:\n ##keywords## \n\n"], - - ['id' => 3142, 'template_id' => 86, 'key' => "id-ID", 'value' => "Tulis deskripsi produk pasar Shopify yang menarik perhatian untuk:\n\n ##title## \n\n Gunakan kata kunci berikut dalam deskripsi produk:\n ##keywords## \n\n"], - - ['id' => 3143, 'template_id' => 86, 'key' => "it-IT", 'value' => "Scrivi una descrizione del prodotto del marketplace Shopify che attiri l'attenzione per:\n\n ##title## \n\n Usa le seguenti parole chiave nella descrizione del prodotto:\n ##keywords## \n\n"], - - ['id' => 3144, 'template_id' => 86, 'key' => "ja-JP", 'value' => "注目を集める Shopify マーケットプレイス製品の説明を次のように書きます:\n\n ##title## \n\n 製品説明には次のキーワードを使用します:\n ##keywords## \n\n"], - - ['id' => 3145, 'template_id' => 86, 'key' => "ko-KR", 'value' => "관심을 끄는 Shopify 마켓플레이스 제품 설명 작성:\n\n ##title## \n\n 제품 설명에 다음 키워드를 사용하십시오:\n ##keywords## \n\n"], - - ['id' => 3146, 'template_id' => 86, 'key' => "ms-MY", 'value' => "Tulis penerangan produk pasaran Shopify yang menarik perhatian untuk:\n\n ##title## \n\n Gunakan kata kunci berikut dalam penerangan produk:\n ##keywords## \n\n"], - - ['id' => 3147, 'template_id' => 86, 'key' => "nb-NO", 'value' => "Skriv oppmerksomhetsfangende Shopify markedsplass produktbeskrivelse for:\n\n ##title## \n\n Bruk følgende nøkkelord i produktbeskrivelsen:\n ##keywords## \n\n"], - - ['id' => 3148, 'template_id' => 86, 'key' => "pl-PL", 'value' => "Napisz przyciągający uwagę opis produktu Shopify marketplace dla:\n\n ##title## \n\n Użyj następujących słów kluczowych w opisie produktu:\n ##keywords## \n\n"], - - ['id' => 3149, 'template_id' => 86, 'key' => "pt-PT", 'value' => "Escreva uma descrição atraente do produto Shopify marketplace para:\n\n ##title## \n\n Use as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n"], - - ['id' => 3150, 'template_id' => 86, 'key' => "ru-RU", 'value' => "Напишите привлекающее внимание описание продукта торговой площадки Shopify для:\n\n ##title## \n\n В описании товара используйте следующие ключевые слова:\n ##keywords## \n\n"], - - ['id' => 3151, 'template_id' => 86, 'key' => "es-ES", 'value' => "Escriba una descripción del producto del mercado de Shopify que llame la atención para:\n\n ##title## \n\n Utilice las siguientes palabras clave en la descripción del producto:\n ##keywords## \n\n"], - - ['id' => 3152, 'template_id' => 86, 'key' => "sv-SE", 'value' => "Skriv en uppmärksammad produktbeskrivning för Shopify marknadsplats för:\n\n ##title## \n\nAnvänd följande nyckelord i produktbeskrivningen:\n ##keywords## \n\n"], - - ['id' => 3153, 'template_id' => 86, 'key' => "tr-TR", 'value' => "Aşağıdakiler için dikkat çekici Shopify ticaret sitesi ürün açıklamasını yazın:\n\n ##title## \n\n Ürün açıklamasında aşağıdaki anahtar kelimeleri kullanın:\n ##keywords## \n\n"], - - ['id' => 3154, 'template_id' => 86, 'key' => "pt-BR", 'value' => "Escreva uma descrição de produto do Shopify Marketplace que chame a atenção:\n\n ##title## \n\n Use as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n"], - - ['id' => 3155, 'template_id' => 86, 'key' => "ro-RO", 'value' => "Scrieți descrierea produsului Shopify marketplace pentru:\n\n ##title## \n\n Utilizați următoarele cuvinte cheie în descrierea produsului:\n ##keywords## \n\n"], - - ['id' => 3156, 'template_id' => 86, 'key' => "vi-VN", 'value' => "Viết mô tả sản phẩm thị trường Shopify thu hút sự chú ý cho:\n\n ##title## \n\n Sử dụng các từ khóa sau trong mô tả sản phẩm:\n ##keywords## \n\n"], - - ['id' => 3157, 'template_id' => 86, 'key' => "sw-KE", 'value' => "Andika umakini wa kuvutia maelezo ya bidhaa ya soko la Shopify kwa:\n\n ##title## \n\n Tumia maneno muhimu yafuatayo katika maelezo ya bidhaa:\n ##keywords## \n\n"], - - ['id' => 3158, 'template_id' => 86, 'key' => "sl-SI", 'value' => "Napišite opis izdelka Shopify marketplace, ki pritegne pozornost za:\n\n ##title## \n\n V opisu izdelka uporabite naslednje ključne besede:\n ##keywords## \n\n"], - - ['id' => 3159, 'template_id' => 86, 'key' => "th-TH", 'value' => "เขียนคำอธิบายผลิตภัณฑ์ตลาด Shopify ที่ดึงดูดความสนใจสำหรับ:\n\n ##title## \n\n ใช้คำหลักต่อไปนี้ในรายละเอียดสินค้า:\n ##keywords## \n\n"], - - ['id' => 3160, 'template_id' => 86, 'key' => "uk-UA", 'value' => "Напишіть опис продукту Shopify Marketplace, який приверне увагу:\n\n ##title## \n\n Використовуйте наступні ключові слова в описі товару:\n ##keywords## \n\n"], - - ['id' => 3161, 'template_id' => 86, 'key' => "lt-LT", 'value' => "Parašykite dėmesį patraukiantį Shopify prekyvietės produkto aprašymą:\n\n ##title## \n\n Produkto aprašyme naudokite šiuos raktinius žodžius:\n ##keywords## \n\n"], - - ['id' => 3162, 'template_id' => 86, 'key' => "bg-BG", 'value' => "Напишете грабващо вниманието описание на продукта на Shopify marketplace за:\n\n ##title## \n\n Използвайте следните ключови думи в описанието на продукта:\n ##keywords## \n\n"], - - ['id' => 3163, 'template_id' => 87, 'key' => "en-US", 'value' => "Write a personal bio which i can used at ##description## for myself \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 3164, 'template_id' => 87, 'key' => "ar-AE", 'value' => "اكتب سيرة ذاتية شخصية يمكنني استخدامها فيها ##description## لنفسي \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 3165, 'template_id' => 87, 'key' => "cmn-CN", 'value' => "写一个我可以使用的个人简历 ##description## 为了我自己 \n\n 结果的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 3166, 'template_id' => 87, 'key' => "hr-HR", 'value' => "Napiši osobnu biografiju koju mogu koristiti ##description## Za sebe \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3167, 'template_id' => 87, 'key' => "cs-CZ", 'value' => "Napište osobní životopis, který mohu použít ##description## pro mě \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 3168, 'template_id' => 87, 'key' => "da-DK", 'value' => "Skriv en personlig biografi, som jeg kan bruge på ##description## for mig selv \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 3169, 'template_id' => 87, 'key' => "nl-NL", 'value' => "Schrijf een persoonlijke bio die ik kan gebruiken ##description## voor mezelf \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 3170, 'template_id' => 87, 'key' => "et-EE", 'value' => "Kirjutage isiklik biograafia, mida saan kasutada ##description## enda jaoks \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 3171, 'template_id' => 87, 'key' => "fi-FI", 'value' => "Kirjoita henkilökohtainen bio, jota voin käyttää ##description## itselleni \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 3172, 'template_id' => 87, 'key' => "fr-FR", 'value' => "Écrivez une biographie personnelle que je peux utiliser à ##description## pour moi-même \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 3173, 'template_id' => 87, 'key' => "de-DE", 'value' => "Schreiben Sie eine persönliche Biografie, die ich verwenden kann ##description## für mich \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 3174, 'template_id' => 87, 'key' => "el-GR", 'value' => "Γράψτε ένα προσωπικό βιογραφικό στο οποίο μπορώ να χρησιμοποιήσω ##description## για τον εαυτό μου \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 3175, 'template_id' => 87, 'key' => "he-IL", 'value' => "כתוב ביו אישי שבו אני יכול להשתמש: ##description## בשבילי \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 3176, 'template_id' => 87, 'key' => "hi-IN", 'value' => "एक व्यक्तिगत परिचय लिखें जिसका मैं उपयोग कर सकता हूं ##description## अपने आप के लिए \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 3177, 'template_id' => 87, 'key' => "hu-HU", 'value' => "Írj személyes életrajzot, amit fel tudok használni ##description## magamnak \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 3178, 'template_id' => 87, 'key' => "is-IS", 'value' => "Skrifaðu persónulega ævisögu sem ég get notað á ##description## fyrir mig \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 3179, 'template_id' => 87, 'key' => "id-ID", 'value' => "Tulis bio pribadi yang bisa saya gunakan ##description## untuk diriku \n\n Nada suara hasil harus:\n ##tone_language## \n\n"], - - ['id' => 3180, 'template_id' => 87, 'key' => "it-IT", 'value' => "Scrivi una biografia personale che posso usare su ##description## per me \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 3181, 'template_id' => 87, 'key' => "ja-JP", 'value' => "で使用できる個人的な経歴を書きます ##description## 自分のため \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n"], - - ['id' => 3182, 'template_id' => 87, 'key' => "ko-KR", 'value' => "내가 사용할 수있는 개인 약력 쓰기: ##description## 나 자신을 위해 \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 3183, 'template_id' => 87, 'key' => "ms-MY", 'value' => "Tulis bio peribadi yang boleh saya gunakan ##description## untuk diri saya sendiri \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 3184, 'template_id' => 87, 'key' => "nb-NO", 'value' => "Skriv en personlig biografi som jeg kan bruke på ##description## for meg selv \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 3185, 'template_id' => 87, 'key' => "pl-PL", 'value' => "Napisz osobistą biografię, z której będę mógł korzystać ##description## dla siebie \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 3186, 'template_id' => 87, 'key' => "pt-PT", 'value' => "Escreva uma biografia pessoal que eu possa usar em ##description## para mim \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3187, 'template_id' => 87, 'key' => "ru-RU", 'value' => "Напишите личную биографию, которую я могу использовать в ##description## для меня \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 3188, 'template_id' => 87, 'key' => "es-ES", 'value' => "Escribe una biografía personal que pueda usar en ##description## para mí \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 3189, 'template_id' => 87, 'key' => "sv-SE", 'value' => "Skriv en personlig bio som jag kan använda på ##description## för mig själv \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 3190, 'template_id' => 87, 'key' => "tr-TR", 'value' => "Kullanabileceğim kişisel bir biyografi yaz ##description## kendim için \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 3191, 'template_id' => 87, 'key' => "pt-BR", 'value' => "Escreva uma biografia pessoal que eu possa usar em ##description## para mim mesmo \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3192, 'template_id' => 87, 'key' => "ro-RO", 'value' => "Scrie o biografie personală pe care să o pot folosi ##description## pentru mine \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 3193, 'template_id' => 87, 'key' => "vi-VN", 'value' => "Viết tiểu sử cá nhân mà tôi có thể sử dụng tại ##description## cho bản thân mình \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 3194, 'template_id' => 87, 'key' => "sw-KE", 'value' => "Andika wasifu wa kibinafsi ambao ninaweza kutumia ##description## kwa ajili yangu mwenyewe \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 3195, 'template_id' => 87, 'key' => "sl-SI", 'value' => "Napišite osebni življenjepis, ki ga lahko uporabim ##description## zame \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3196, 'template_id' => 87, 'key' => "th-TH", 'value' => "เขียนประวัติส่วนตัวที่ฉันสามารถใช้ได้ ##description## สำหรับตัวฉันเอง \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 3197, 'template_id' => 87, 'key' => "uk-UA", 'value' => "Напишіть особисту біографію, яку я можу використати ##description## для мене \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n"], - - ['id' => 3198, 'template_id' => 87, 'key' => "lt-LT", 'value' => "Parašykite asmeninę biografiją, kurią galėčiau panaudoti ##description## sau pačiam \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 3199, 'template_id' => 87, 'key' => "bg-BG", 'value' => "Напишете лична биография, която мога да използвам ##description## за мен \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 3200, 'template_id' => 88, 'key' => "en-US", 'value' => "Grab attention with catchy captions for this Pinterest post:\n\n ##description## \n\nTone of voice of the captions must be:\n ##tone_language## \n\n"], - - ['id' => 3201, 'template_id' => 88, 'key' => "ar-AE", 'value' => "اجذب الانتباه من خلال التسميات التوضيحية الجذابة لمشاركة Pinterest هذه:\n\n ##description## \n\nيجب أن تكون نبرة صوت التعليقات:\n ##tone_language## \n\n"], - - ['id' => 3202, 'template_id' => 88, 'key' => "cmn-CN", 'value' => "用醒目的标题吸引注意力:\n\n ##description## \n\n字幕的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 3203, 'template_id' => 88, 'key' => "hr-HR", 'value' => "Privucite pozornost privlačnim opisima za ovu objavu na Pinterestu:\n\n ##description## \n\nTon glasa titlova mora biti:\n ##tone_language## \n\n"], - - ['id' => 3204, 'template_id' => 88, 'key' => "cs-CZ", 'value' => "Upoutejte pozornost chytlavými titulky k tomuto příspěvku na Pinterestu:\n\n ##description## \n\nTón hlasu titulků musí být:\n ##tone_language## \n\n"], - - ['id' => 3205, 'template_id' => 88, 'key' => "da-DK", 'value' => "Fang opmærksomhed med fængende billedtekster til dette Pinterest-indlæg:\n\n ##description## \n\nTone of voice af billedteksterne skal være:\n ##tone_language## \n\n"], - - ['id' => 3206, 'template_id' => 88, 'key' => "nl-NL", 'value' => "Trek de aandacht met pakkende bijschriften voor dit Pinterest-bericht:\n\n ##description## \n\nDe tone-of-voice van de onderschriften moet zijn:\n ##tone_language## \n\n"], - - ['id' => 3207, 'template_id' => 88, 'key' => "et-EE", 'value' => "Pöörake tähelepanu selle Pinteresti postituse meeldejäävate pealkirjadega:\n\n ##description## \n\nPealkirjade hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 3208, 'template_id' => 88, 'key' => "fi-FI", 'value' => "Herätä huomiota tämän Pinterest-julkaisun tarttuvilla kuvateksteillä:\n\n ##description## \n\nTekstityksen äänensävyn on oltava:\n ##tone_language## \n\n"], - - ['id' => 3209, 'template_id' => 88, 'key' => "fr-FR", 'value' => "Attirez l'attention avec des légendes accrocheuses pour ce post Pinterest:\n\n ##description## \n\nLe ton de la voix des sous-titres doit être:\n ##tone_language## \n\n"], - - ['id' => 3210, 'template_id' => 88, 'key' => "de-DE", 'value' => "Machen Sie mit einprägsamen Bildunterschriften für diesen Pinterest-Beitrag auf sich aufmerksam:\n\n ##description## \n\nDer Tonfall der Untertitel muss sein:\n ##tone_language## \n\n"], - - ['id' => 3211, 'template_id' => 88, 'key' => "el-GR", 'value' => "Τραβήξτε την προσοχή με συναρπαστικές λεζάντες για αυτήν την ανάρτηση στο Pinterest:\n\n ##description## \n\nΟ τόνος της φωνής των λεζάντων πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 3212, 'template_id' => 88, 'key' => "he-IL", 'value' => "למשוך תשומת לב עם כיתובים קליטים לפוסט הזה בפינטרסט:\n\n ##description## \n\nטון הדיבור של הכתוביות חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 3213, 'template_id' => 88, 'key' => "hi-IN", 'value' => "इस Pinterest पोस्ट के लिए आकर्षक कैप्शन के साथ ध्यान आकर्षित करें:\n\n ##description## \n\nकैप्शन की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 3214, 'template_id' => 88, 'key' => "hu-HU", 'value' => "Vedd fel a figyelmet fülbemászó feliratokkal ehhez a Pinterest-bejegyzéshez:\n\n ##description## \n\nA feliratok hangszínének ilyennek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 3215, 'template_id' => 88, 'key' => "is-IS", 'value' => "Gríptu athygli með grípandi myndatexta fyrir þessa Pinterest færslu:\n\n ##description## \n\nRöddtónn skjátextanna verður að vera:\n ##tone_language## \n\n"], - - ['id' => 3216, 'template_id' => 88, 'key' => "id-ID", 'value' => "Tarik perhatian dengan teks yang menarik untuk postingan Pinterest ini:\n\n ##description## \n\nNada suara teks harus:\n ##tone_language## \n\n"], - - ['id' => 3217, 'template_id' => 88, 'key' => "it-IT", 'value' => "Attira l'attenzione con didascalie accattivanti per questo post di Pinterest:\n\n ##description## \n\nIl tono di voce delle didascalie deve essere:\n ##tone_language## \n\n"], - - ['id' => 3218, 'template_id' => 88, 'key' => "ja-JP", 'value' => "この Pinterest の投稿にキャッチーなキャプションを付けて注目を集めましょう:\n\n ##description## \n\nキャプションの声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 3219, 'template_id' => 88, 'key' => "ko-KR", 'value' => "이 Pinterest 게시물에 대한 눈길을 끄는 캡션으로 관심 끌기:\n\n ##description## \n\n자막의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 3220, 'template_id' => 88, 'key' => "ms-MY", 'value' => "Tarik perhatian dengan kapsyen menarik untuk siaran Pinterest ini:\n\n ##description## \n\nNada suara kapsyen mestilah:\n ##tone_language## \n\n"], - - ['id' => 3221, 'template_id' => 88, 'key' => "nb-NO", 'value' => "Fang oppmerksomhet med fengende bildetekster for dette Pinterest-innlegget:\n\n ##description## \n\nTonefallet til bildetekstene må være:\n ##tone_language## \n\n"], - - ['id' => 3222, 'template_id' => 88, 'key' => "pl-PL", 'value' => "Przyciągnij uwagę chwytliwymi napisami do tego posta na Pintereście:\n\n ##description## \n\nTon głosu napisów musi być:\n ##tone_language## \n\n"], - - ['id' => 3223, 'template_id' => 88, 'key' => "pt-PT", 'value' => "Chame a atenção com legendas cativantes para esta postagem do Pinterest:\n\n ##description## \n\nO tom de voz das legendas deve ser:\n ##tone_language## \n\n"], - - ['id' => 3224, 'template_id' => 88, 'key' => "ru-RU", 'value' => "Привлеките внимание броскими подписями к этому посту в Pinterest:\n\n ##description## \n\nТон голоса титров должен быть:\n ##tone_language## \n\n"], - - ['id' => 3225, 'template_id' => 88, 'key' => "es-ES", 'value' => "Llame la atención con leyendas pegadizas para esta publicación de Pinterest:\n\n ##description## \n\nEl tono de voz de los subtítulos debe ser:\n ##tone_language## \n\n"], - - ['id' => 3226, 'template_id' => 88, 'key' => "sv-SE", 'value' => "Fånga uppmärksamheten med catchy bildtexter för detta Pinterest-inlägg:\n\n ##description## \n\nTonen i rösten för bildtexterna måste vara:\n ##tone_language## \n\n"], - - ['id' => 3227, 'template_id' => 88, 'key' => "tr-TR", 'value' => "Bu Pinterest gönderisi için akılda kalıcı altyazılarla dikkat çekin:\n\n ##description## \n\nAltyazıların ses tonu:\n ##tone_language## \n\n"], - - ['id' => 3228, 'template_id' => 88, 'key' => "pt-BR", 'value' => "Grab attention with catchy captions for this Pinterest post:\n\n ##description## \n\nTone of voice of the captions must be:\n ##tone_language## \n\n"], - - ['id' => 3229, 'template_id' => 88, 'key' => "ro-RO", 'value' => "Atrageți atenția cu subtitrări captivante pentru această postare pe Pinterest:\n\n ##description## \n\nTonul vocii subtitrărilor trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 3230, 'template_id' => 88, 'key' => "vi-VN", 'value' => "Thu hút sự chú ý với chú thích hấp dẫn cho bài đăng trên Pinterest này:\n\n ##description## \n\nGiọng điệu của phụ đề phải được:\n ##tone_language## \n\n"], - - ['id' => 3231, 'template_id' => 88, 'key' => "sw-KE", 'value' => "Chukua tahadhari kwa manukuu ya kuvutia ya chapisho hili la Pinterest:\n\n ##description## \n\nToni ya sauti ya manukuu lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 3232, 'template_id' => 88, 'key' => "sl-SI", 'value' => "Pritegnite pozornost s privlačnimi napisi za to objavo na Pinterestu:\n\n ##description## \n\nTon glasu napisov mora biti:\n ##tone_language## \n\n"], - - ['id' => 3233, 'template_id' => 88, 'key' => "th-TH", 'value' => "ดึงดูดความสนใจด้วยคำบรรยายที่จับใจสำหรับโพสต์ Pinterest นี้:\n\n ##description## \n\nน้ำเสียงของคำบรรยายต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 3234, 'template_id' => 88, 'key' => "uk-UA", 'value' => "Привертайте увагу привабливими підписами до цієї публікації на Pinterest:\n\n ##description## \n\nТон голосу титрів повинен бути:\n ##tone_language## \n\n"], - - ['id' => 3235, 'template_id' => 88, 'key' => "lt-LT", 'value' => "Patraukite dėmesį patraukliais šio Pinterest įrašo antraštėmis:\n\n ##description## \n\nSubtitrų balso tonas turi būti toks:\n ##tone_language## \n\n"], - - ['id' => 3236, 'template_id' => 88, 'key' => "bg-BG", 'value' => "Грабнете вниманието със закачливи надписи за тази публикация в Pinterest:\n\n ##description## \n\nТонът на гласа на надписите трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 3237, 'template_id' => 89, 'key' => "en-US", 'value' => "Write 10 interesting titles for Pinterest post of the following:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n Title's length must be 30 characters\n\n"], - - ['id' => 3238, 'template_id' => 89, 'key' => "ar-AE", 'value' => "اكتب 10 عناوين مثيرة للاهتمام لنشر Pinterest مما يلي:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n يجب أن يكون طول العنوان 30 حرفًا\n\n"], - - ['id' => 3239, 'template_id' => 89, 'key' => "cmn-CN", 'value' => "为以下 Pinterest 帖子写 10 个有趣的标题:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n 标题长度必须为 30 个字符\n\n"], - - ['id' => 3240, 'template_id' => 89, 'key' => "hr-HR", 'value' => "Napišite 10 zanimivih naslovov za objavo na Pinterestu od naslednjih:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n"], - - ['id' => 3241, 'template_id' => 89, 'key' => "cs-CZ", 'value' => "Napište 10 zajímavých titulů pro následující příspěvek na Pinterestu:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n Délka názvu musí být 30 znaků\n\n"], - - ['id' => 3242, 'template_id' => 89, 'key' => "da-DK", 'value' => "Skriv 10 interessante titler til Pinterest-indlæg af følgende:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n Titlens længde skal være på 30 tegn\n\n"], - - ['id' => 3243, 'template_id' => 89, 'key' => "nl-NL", 'value' => "Schrijf 10 interessante titels voor Pinterest post van het volgende:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n De lengte van de titel moet 30 tekens zijn\n\n"], - - ['id' => 3244, 'template_id' => 89, 'key' => "et-EE", 'value' => "Kirjutage järgmise Pinteresti postituse jaoks 10 huvitavat pealkirja:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n Pealkirja pikkus peab olema 30 tähemärki\n\n"], - - ['id' => 3245, 'template_id' => 89, 'key' => "fi-FI", 'value' => "Kirjoita 10 mielenkiintoista otsikkoa seuraavista Pinterest-julkaisuista:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n Otsikon pituuden tulee olla 30 merkkiä\n\n"], - - ['id' => 3246, 'template_id' => 89, 'key' => "fr-FR", 'value' => "Écrivez 10 titres intéressants pour la publication Pinterest des éléments suivants:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n La longueur du titre doit être de 30 caractères\n\n"], - - ['id' => 3247, 'template_id' => 89, 'key' => "de-DE", 'value' => "Schreiben Sie 10 interessante Titel für den folgenden Pinterest-Beitrag:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n Die Länge des Titels muss 30 Zeichen betragen\n\n"], - - ['id' => 3248, 'template_id' => 89, 'key' => "el-GR", 'value' => "Γράψε 10 ενδιαφέροντες τίτλους για την ανάρτηση στο Pinterest των παρακάτω:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n Το μήκος του τίτλου πρέπει να είναι 30 χαρακτήρες\n\n"], - - ['id' => 3249, 'template_id' => 89, 'key' => "he-IL", 'value' => "כתוב 10 כותרות מעניינות לפוסט Pinterest של הבאים:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n אורך הכותרת חייב להיות 30 תווים\n\n"], - - ['id' => 3250, 'template_id' => 89, 'key' => "hi-IN", 'value' => "निम्नलिखित में से Pinterest पोस्ट के लिए 10 रोचक शीर्षक लिखें:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n शीर्षक की लंबाई 30 वर्ण होनी चाहिए\n\n"], - - ['id' => 3251, 'template_id' => 89, 'key' => "hu-HU", 'value' => "Írj 10 érdekes címet a következő Pinterest-bejegyzéshez:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n A címnek 30 karakterből kell állnia\n\n"], - - ['id' => 3252, 'template_id' => 89, 'key' => "is-IS", 'value' => "Skrifaðu 10 áhugaverða titla fyrir Pinterest færslu af eftirfarandi:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n Lengd titilsins verður að vera 30 stafir\n\n"], - - ['id' => 3253, 'template_id' => 89, 'key' => "id-ID", 'value' => "Tulis 10 judul menarik untuk postingan Pinterest berikut ini:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n Panjang judul harus 30 karakter\n\n"], - - ['id' => 3254, 'template_id' => 89, 'key' => "it-IT", 'value' => "Scrivi 10 titoli interessanti per il post Pinterest di quanto segue:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n La lunghezza del titolo deve essere di 30 caratteri\n\n"], - - ['id' => 3255, 'template_id' => 89, 'key' => "ja-JP", 'value' => "Pinterest の投稿に次の興味深いタイトルを 10 件書いてください:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n タイトルの長さは 30 文字である必要があります\n\n"], - - ['id' => 3256, 'template_id' => 89, 'key' => "ko-KR", 'value' => "Pinterest 게시물에 다음과 같은 흥미로운 제목 10개를 작성하세요.:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n 제목 길이는 30자여야 합니다.\n\n"], - - ['id' => 3257, 'template_id' => 89, 'key' => "ms-MY", 'value' => "Tulis 10 tajuk menarik untuk siaran Pinterest berikut:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n Panjang tajuk mestilah 30 aksara\n\n"], - - ['id' => 3258, 'template_id' => 89, 'key' => "nb-NO", 'value' => "Skriv 10 interessante titler for Pinterest-innlegg av følgende:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n Tittelens lengde må være på 30 tegn\n\n"], - - ['id' => 3259, 'template_id' => 89, 'key' => "pl-PL", 'value' => "Napisz 10 interesujących tytułów dla posta na Pintereście z poniższych:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n Długość tytułu musi wynosić 30 znaków\n\n"], - - ['id' => 3260, 'template_id' => 89, 'key' => "pt-PT", 'value' => "Escreva 10 títulos interessantes para a postagem no Pinterest do seguinte:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n"], - - ['id' => 3261, 'template_id' => 89, 'key' => "ru-RU", 'value' => "Напишите 10 интересных заголовков для публикации в Pinterest из следующих:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n Длина заголовка должна быть 30 символов.\n\n"], - - ['id' => 3262, 'template_id' => 89, 'key' => "es-ES", 'value' => "Escriba 10 títulos interesantes para la publicación de Pinterest de lo siguiente:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n La longitud del título debe ser de 30 caracteres.\n\n"], - - ['id' => 3263, 'template_id' => 89, 'key' => "sv-SE", 'value' => "Skriv 10 intressanta titlar för Pinterest-inlägg av följande:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n Titelns längd måste vara 30 tecken\n\n"], - - ['id' => 3264, 'template_id' => 89, 'key' => "tr-TR", 'value' => "Aşağıdakilerden Pinterest gönderisi için 10 ilginç başlık yazın:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n Başlığın uzunluğu 30 karakter olmalıdır\n\n"], - - ['id' => 3265, 'template_id' => 89, 'key' => "pt-BR", 'value' => "Escreva 10 títulos interessantes para a postagem no Pinterest do seguinte:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n"], - - ['id' => 3266, 'template_id' => 89, 'key' => "ro-RO", 'value' => "Scrie 10 titluri interesante pentru postarea Pinterest din următoarele:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n Lungimea titlului trebuie să fie de 30 de caractere\n\n"], - - ['id' => 3267, 'template_id' => 89, 'key' => "vi-VN", 'value' => "Viết 10 tiêu đề thú vị cho bài đăng trên Pinterest sau đây:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n Độ dài của tiêu đề phải là 30 ký tự\n\n"], - - ['id' => 3268, 'template_id' => 89, 'key' => "sw-KE", 'value' => "Andika majina 10 ya kuvutia kwa chapisho la Pinterest la yafuatayo:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n Urefu wa kichwa lazima uwe na vibambo 30\n\n"], - - ['id' => 3269, 'template_id' => 89, 'key' => "sl-SI", 'value' => "Napišite 10 zanimivih naslovov za objavo na Pinterestu od naslednjih:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n"], - - ['id' => 3270, 'template_id' => 89, 'key' => "th-TH", 'value' => "เขียน 10 ชื่อเรื่องที่น่าสนใจสำหรับโพสต์ Pinterest ต่อไปนี้:\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n ความยาวของชื่อเรื่องต้องมีความยาว 30 อักขระ\n\n"], - - ['id' => 3271, 'template_id' => 89, 'key' => "uk-UA", 'value' => "Напишіть 10 цікавих заголовків для публікації Pinterest з наступного:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n Довжина заголовка має бути 30 символів\n\n"], - - ['id' => 3272, 'template_id' => 89, 'key' => "lt-LT", 'value' => "Parašykite 10 įdomių pavadinimų toliau pateiktiems Pinterest įrašams:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n Pavadinimo ilgis turi būti 30 simbolių\n\n"], - - ['id' => 3273, 'template_id' => 89, 'key' => "bg-BG", 'value' => "Напишете 10 интересни заглавия за публикация в Pinterest от следните:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n Дължината на заглавието трябва да бъде 30 знака\n\n"], - - ['id' => 3274, 'template_id' => 90, 'key' => "en-US", 'value' => "Write creative Pinterest bio Using following keywords in the bio description:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 3275, 'template_id' => 90, 'key' => "ar-AE", 'value' => "اكتب السيرة الذاتية الإبداعية Pinterest باستخدام الكلمات الرئيسية التالية في وصف السيرة الذاتية:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 3276, 'template_id' => 90, 'key' => "cmn-CN", 'value' => "写有创意的 Pinterest bio 在 bio 描述中使用以下关键字:\n ##keywords## \n\n 结果的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 3277, 'template_id' => 90, 'key' => "hr-HR", 'value' => "Napišite ustvarjalni življenjepis na Pinterestu. V opisu biografije uporabite naslednje ključne besede:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3278, 'template_id' => 90, 'key' => "cs-CZ", 'value' => "Napište kreativní životopis na Pinterest Pomocí následujících klíčových slov v popisu životopisu:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 3279, 'template_id' => 90, 'key' => "da-DK", 'value' => "Skriv kreativ Pinterest bio Brug følgende nøgleord i biobeskrivelsen:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 3280, 'template_id' => 90, 'key' => "nl-NL", 'value' => "Schrijf creatieve Pinterest-bio Gebruik de volgende trefwoorden in de biobeschrijving:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 3281, 'template_id' => 90, 'key' => "et-EE", 'value' => "Kirjutage loominguline Pinteresti biograafia Kasutades biokirjelduses järgmisi märksõnu:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 3282, 'template_id' => 90, 'key' => "fi-FI", 'value' => "Kirjoita luova Pinterest bio käyttämällä seuraavia avainsanoja bion kuvauksessa:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 3283, 'template_id' => 90, 'key' => "fr-FR", 'value' => "Rédigez une bio Pinterest créative en utilisant les mots-clés suivants dans la description de la bio:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 3284, 'template_id' => 90, 'key' => "de-DE", 'value' => "Schreiben Sie eine kreative Pinterest-Biografie und verwenden Sie die folgenden Schlüsselwörter in der Biografiebeschreibung:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 3285, 'template_id' => 90, 'key' => "el-GR", 'value' => "Γράψτε δημιουργικό βιογραφικό Pinterest Χρησιμοποιώντας τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του βιογραφικού:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 3286, 'template_id' => 90, 'key' => "he-IL", 'value' => "כתוב ביוגרפיה יצירתית של Pinterest באמצעות מילות מפתח הבאות בתיאור הביוגרפיה:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 3287, 'template_id' => 90, 'key' => "hi-IN", 'value' => "बायो विवरण में निम्नलिखित कीवर्ड्स का उपयोग करके रचनात्मक Pinterest बायो लिखें:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 3288, 'template_id' => 90, 'key' => "hu-HU", 'value' => "Írjon kreatív Pinterest életrajzot Az alábbi kulcsszavak használatával az életrajz leírásában:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 3289, 'template_id' => 90, 'key' => "is-IS", 'value' => "Skrifaðu skapandi líffræði á Pinterest með því að nota eftirfarandi lykilorð í líflýsingunni:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 3290, 'template_id' => 90, 'key' => "id-ID", 'value' => "Tulis bio Pinterest yang kreatif Menggunakan kata kunci berikut dalam deskripsi bio:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 3291, 'template_id' => 90, 'key' => "it-IT", 'value' => "Scrivi una biografia Pinterest creativa utilizzando le seguenti parole chiave nella descrizione della biografia:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 3292, 'template_id' => 90, 'key' => "ja-JP", 'value' => "Pinterest のクリエイティブな自己紹介を作成します。自己紹介の説明に次のキーワードを使用します。:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 3293, 'template_id' => 90, 'key' => "ko-KR", 'value' => "창의적인 Pinterest 약력 작성 약력 설명에 다음 키워드 사용:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 3294, 'template_id' => 90, 'key' => "ms-MY", 'value' => "Tulis bio Pinterest kreatif Menggunakan kata kunci berikut dalam penerangan bio:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 3295, 'template_id' => 90, 'key' => "nb-NO", 'value' => "Skriv kreativ Pinterest-biografi ved å bruke følgende nøkkelord i biobeskrivelsen:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 3296, 'template_id' => 90, 'key' => "pl-PL", 'value' => "Napisz kreatywną biografię na Pintereście, używając następujących słów kluczowych w opisie biografii:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 3297, 'template_id' => 90, 'key' => "pt-PT", 'value' => "Escreva uma biografia criativa no Pinterest usando as seguintes palavras-chave na descrição da biografia:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3298, 'template_id' => 90, 'key' => "ru-RU", 'value' => "Напишите креативную биографию Pinterest, используя следующие ключевые слова в описании биографии:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 3299, 'template_id' => 90, 'key' => "es-ES", 'value' => "Escriba una biografía creativa de Pinterest usando las siguientes palabras clave en la descripción de la biografía:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 3300, 'template_id' => 90, 'key' => "sv-SE", 'value' => "Skriv kreativ Pinterest-bio Använd följande nyckelord i biobeskrivningen:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 3301, 'template_id' => 90, 'key' => "tr-TR", 'value' => "Biyo açıklamasında aşağıdaki anahtar kelimeleri kullanarak yaratıcı Pinterest biyografisi yazın:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 3302, 'template_id' => 90, 'key' => "pt-BR", 'value' => "Escreva uma biografia criativa no Pinterest usando as seguintes palavras-chave na descrição da biografia:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3303, 'template_id' => 90, 'key' => "ro-RO", 'value' => "Scrieți o biografie creativă pentru Pinterest Folosind următoarele cuvinte cheie în descrierea biografiei:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 3304, 'template_id' => 90, 'key' => "vi-VN", 'value' => "Viết tiểu sử Pinterest sáng tạo Sử dụng các từ khóa sau trong mô tả sinh học:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 3305, 'template_id' => 90, 'key' => "sw-KE", 'value' => "Andika wasifu wa ubunifu wa Pinterest Kwa kutumia maneno muhimu yafuatayo katika maelezo ya wasifu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 3306, 'template_id' => 90, 'key' => "sl-SI", 'value' => "Napišite ustvarjalni življenjepis na Pinterestu. V opisu biografije uporabite naslednje ključne besede:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3307, 'template_id' => 90, 'key' => "th-TH", 'value' => "เขียนชีวประวัติของ Pinterest อย่างสร้างสรรค์ โดยใช้คำหลักต่อไปนี้ในคำอธิบายชีวประวัติ:\n ##keywords## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 3308, 'template_id' => 90, 'key' => "uk-UA", 'value' => "Напишіть креативну біографію Pinterest, використовуючи наступні ключові слова в описі біографії:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 3309, 'template_id' => 90, 'key' => "lt-LT", 'value' => "Parašykite kūrybingą Pinterest biografiją Naudodami šiuos raktinius žodžius biografijos aprašyme:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 3310, 'template_id' => 90, 'key' => "bg-BG", 'value' => "Напишете творческа биография в Pinterest, като използвате следните ключови думи в описанието на биографията:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 3311, 'template_id' => 91, 'key' => "en-US", 'value' => "Write creative replay for the following review :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 3312, 'template_id' => 91, 'key' => "ar-AE", 'value' => "اكتب إعادة إبداعية للمراجعة التالية :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 3313, 'template_id' => 91, 'key' => "cmn-CN", 'value' => "为以下评论撰写创意重播 :\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 3314, 'template_id' => 91, 'key' => "hr-HR", 'value' => "Napišite kreativno ponovitev za naslednji pregled :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3315, 'template_id' => 91, 'key' => "cs-CZ", 'value' => "Napište kreativní záznam pro následující recenzi :\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 3316, 'template_id' => 91, 'key' => "da-DK", 'value' => "Skriv kreativ gentagelse til den følgende anmeldelse :\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 3317, 'template_id' => 91, 'key' => "nl-NL", 'value' => "Schrijf een creatieve herhaling voor de volgende recensie :\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 3318, 'template_id' => 91, 'key' => "et-EE", 'value' => "Kirjutage järgmise ülevaate jaoks loominguline kordus :\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 3319, 'template_id' => 91, 'key' => "fi-FI", 'value' => "Kirjoita luova uusinta seuraavaa arvostelua varten :\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 3320, 'template_id' => 91, 'key' => "fr-FR", 'value' => "Rédiger une rediffusion créative pour l'examen suivant :\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 3321, 'template_id' => 91, 'key' => "de-DE", 'value' => "Schreiben Sie eine kreative Wiederholung für die folgende Rezension :\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 3322, 'template_id' => 91, 'key' => "el-GR", 'value' => "Γράψτε επανάληψη δημιουργικού για την ακόλουθη κριτική :\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 3323, 'template_id' => 91, 'key' => "he-IL", 'value' => "כתוב שידור חוזר יצירתי עבור הסקירה הבאה :\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 3324, 'template_id' => 91, 'key' => "hi-IN", 'value' => "निम्नलिखित समीक्षा के लिए क्रिएटिव रिप्ले लिखें :\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 3325, 'template_id' => 91, 'key' => "hu-HU", 'value' => "Írjon kreatív újrajátszást a következő áttekintéshez :\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 3326, 'template_id' => 91, 'key' => "is-IS", 'value' => "Skrifaðu skapandi endursýningu fyrir eftirfarandi umsögn :\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 3327, 'template_id' => 91, 'key' => "id-ID", 'value' => "Tulis tayangan ulang kreatif untuk ulasan berikut :\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 3328, 'template_id' => 91, 'key' => "it-IT", 'value' => "Scrivi un replay creativo per la seguente recensione :\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 3329, 'template_id' => 91, 'key' => "ja-JP", 'value' => "次のレビュー用にクリエイティブ リプレイを作成します :\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 3330, 'template_id' => 91, 'key' => "ko-KR", 'value' => "다음 리뷰를 위한 크리에이티브 리플레이 작성 :\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 3331, 'template_id' => 91, 'key' => "ms-MY", 'value' => "Tulis ulang tayang kreatif untuk ulasan berikut :\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 3332, 'template_id' => 91, 'key' => "nb-NO", 'value' => "Skriv kreativ reprise for følgende anmeldelse :\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 3333, 'template_id' => 91, 'key' => "pl-PL", 'value' => "Napisz twórczą powtórkę do następnej recenzji :\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 3334, 'template_id' => 91, 'key' => "pt-PT", 'value' => "Escrever replay criativo para a seguinte revisão :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3335, 'template_id' => 91, 'key' => "ru-RU", 'value' => "Напишите творческий повтор для следующего обзора :\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 3336, 'template_id' => 91, 'key' => "es-ES", 'value' => "Escriba una repetición creativa para la siguiente reseña :\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 3337, 'template_id' => 91, 'key' => "sv-SE", 'value' => "Skriv kreativ repris för följande recension :\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 3338, 'template_id' => 91, 'key' => "tr-TR", 'value' => "Bir sonraki inceleme için reklam öğesi tekrarını yazın :\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 3339, 'template_id' => 91, 'key' => "pt-BR", 'value' => "Escrever replay criativo para a seguinte revisão :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3340, 'template_id' => 91, 'key' => "ro-RO", 'value' => "Scrieți reluare creativă pentru următoarea recenzie :\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 3341, 'template_id' => 91, 'key' => "vi-VN", 'value' => "Viết phát lại sáng tạo cho đánh giá sau :\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 3342, 'template_id' => 91, 'key' => "sw-KE", 'value' => "Andika ubunifu wa kurudia kwa ukaguzi ufuatao :\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 3343, 'template_id' => 91, 'key' => "sl-SI", 'value' => "Napišite kreativno ponovitev za naslednji pregled :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3344, 'template_id' => 91, 'key' => "th-TH", 'value' => "เขียนรีเพลย์เชิงสร้างสรรค์สำหรับบทวิจารณ์ต่อไปนี้ :\n\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 3345, 'template_id' => 91, 'key' => "uk-UA", 'value' => "Напишіть творчий повтор для наступного огляду :\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 3346, 'template_id' => 91, 'key' => "lt-LT", 'value' => "Parašykite kūrybinį pakartojimą kitai peržiūrai :\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 3347, 'template_id' => 91, 'key' => "bg-BG", 'value' => "Напишете творческо повторение за следния преглед :\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 3348, 'template_id' => 92, 'key' => "en-US", 'value' => 'Write 10 catchy Slogan for the following:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 3349, 'template_id' => 92, 'key' => "ar-AE", 'value' => 'اكتب 10 شعارات جذابة لما يلي:\n\n ##description## \n\n TTالوحيدة من صوت النتيجة يجب أن تكون::\n ##tone_language## \n\n'], - - ['id' => 3350, 'template_id' => 92, 'key' => "cmn-CN", 'value' => '为以下内容写10个朗朗上口的Slogan:\n\n ##description## \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 3351, 'template_id' => 92, 'key' => "hr-HR", 'value' => 'Napišite 10 privlačnih slogana za sljedeće:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 3352, 'template_id' => 92, 'key' => "cs-CZ", 'value' => 'Napište 10 chytlavých sloganů pro následující:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 3353, 'template_id' => 92, 'key' => "da-DK", 'value' => 'Skriv 10 fængende slogan til følgende:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 3354, 'template_id' => 92, 'key' => "nl-NL", 'value' => 'Schrijf 10 pakkende Slogan voor het volgende:\n\n ##description## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 3355, 'template_id' => 92, 'key' => "et-EE", 'value' => 'Kirjutage 10 meeldejäävat loosungit järgmise jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 3356, 'template_id' => 92, 'key' => "fi-FI", 'value' => 'Kirjoita 10 tarttuvaa iskulausetta seuraavalle:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 3357, 'template_id' => 92, 'key' => "fr-FR", 'value' => 'Rédigez 10 slogans accrocheurs pour les éléments suivants:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 3358, 'template_id' => 92, 'key' => "de-DE", 'value' => 'Schreiben Sie 10 einprägsame Slogans für Folgendes:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 3359, 'template_id' => 92, 'key' => "el-GR", 'value' => 'Γράψτε 10 πιασάρικα σύνθημα για τα παρακάτω:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 3360, 'template_id' => 92, 'key' => "he-IL", 'value' => 'כתוב 10 סלוגן קליט עבור הדברים הבאים:\n\n ##description## \n\n של הקול של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 3361, 'template_id' => 92, 'key' => "hi-IN", 'value' => 'निम्नलिखित के लिए 10 आकर्षक स्लोगन लिखिए:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 3362, 'template_id' => 92, 'key' => "hu-HU", 'value' => 'Írj 10 fülbemászó szlogent a következőkhöz:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 3363, 'template_id' => 92, 'key' => "is-IS", 'value' => 'Skrifaðu 10 grípandi slagorð fyrir eftirfarandi:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 3364, 'template_id' => 92, 'key' => "id-ID", 'value' => 'Tuliskan 10 Slogan yang menarik berikut ini:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 3365, 'template_id' => 92, 'key' => "it-IT", 'value' => 'Scrivi 10 slogan accattivanti per quanto segue:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 3366, 'template_id' => 92, 'key' => "ja-JP", 'value' => '以下のキャッチーなスローガンを 10 個書いてください:\n\n ##description## \n\n 結果の声のトーンは:\n ##tone_language## \n\n'], - - ['id' => 3367, 'template_id' => 92, 'key' => "ko-KR", 'value' => '다음과 같은 10가지 눈에 띄는 슬로건 작성:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 3368, 'template_id' => 92, 'key' => "ms-MY", 'value' => 'Tulis 10 Slogan yang menarik untuk yang berikut:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 3369, 'template_id' => 92, 'key' => "nb-NO", 'value' => 'Skriv 10 fengende slagord for følgende:\n\n ##description## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 3370, 'template_id' => 92, 'key' => "pl-PL", 'value' => 'Napisz 10 chwytliwych sloganów dla następujących osób:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 3371, 'template_id' => 92, 'key' => "pt-PT", 'value' => 'Escreva 10 slogans apelativos para o seguinte:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3372, 'template_id' => 92, 'key' => "ru-RU", 'value' => 'Напишите 10 броских слоганов для следующих:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 3373, 'template_id' => 92, 'key' => "es-ES", 'value' => 'Escriba 10 lemas pegadizos para lo siguiente:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 3374, 'template_id' => 92, 'key' => "sv-SE", 'value' => 'Skriv 10 catchy slogan för följande:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 3375, 'template_id' => 92, 'key' => "tr-TR", 'value' => 'Aşağıdakiler için akılda kalıcı 10 Slogan yazın:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 3376, 'template_id' => 92, 'key' => "pt-BR", 'value' => 'Escreva 10 slogans atraentes para o seguinte:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3377, 'template_id' => 92, 'key' => "ro-RO", 'value' => 'Scrieți 10 sloganuri captivante pentru următoarele:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 3378, 'template_id' => 92, 'key' => "vi-VN", 'value' => 'Viết 10 Slogan hấp dẫn cho những điều sau đây:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 3379, 'template_id' => 92, 'key' => "sw-KE", 'value' => 'Andika Kauli mbi 10 ya kuvutia kwa yafuatayo:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 3380, 'template_id' => 92, 'key' => "sl-SI", 'value' => 'Napišite 10 privlačnih sloganov za naslednje:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 3381, 'template_id' => 92, 'key' => "th-TH", 'value' => 'เขียน 10 สโลแกนติดหูต่อไปนี้: \n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 3382, 'template_id' => 92, 'key' => "uk-UA", 'value' => 'Напишіть 10 яскравих слоганів для наступного:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 3383, 'template_id' => 92, 'key' => "lt-LT", 'value' => 'Parašykite 10 intriguojančių šūkių:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 3384, 'template_id' => 92, 'key' => "bg-BG", 'value' => 'Напишете 10 закачливи лозунга за следното:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 3385, 'template_id' => 93, 'key' => "en-US", 'value' => 'Write creative TikTok bio Using following keywords in the bio description:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 3386, 'template_id' => 93, 'key' => "ar-AE", 'value' => 'اكتب السيرة الذاتية الإبداعية لـ TikTok باستخدام الكلمات الرئيسية التالية في وصف السيرة الذاتية:\n ##keywords## \n\n TTالوحيدة من صوت النتيجة يجب أن تكون::\n ##tone_language## \n\n'], - - ['id' => 3387, 'template_id' => 93, 'key' => "cmn-CN", 'value' => '撰写有创意的 TikTok bio 在 bio 描述中使用以下关键字:\n ##keywords## \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 3388, 'template_id' => 93, 'key' => "hr-HR", 'value' => 'Napišite kreativnu TikTok biografiju koristeći sljedeće ključne riječi u opisu biografije:\n ##keywords## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 3389, 'template_id' => 93, 'key' => "cs-CZ", 'value' => 'Napište kreativní TikTok bio Pomocí následujících klíčových slov v popisu bio:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 3390, 'template_id' => 93, 'key' => "da-DK", 'value' => 'Skriv kreativ TikTok-bio ved at bruge følgende nøgleord i biobeskrivelsen:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 3391, 'template_id' => 93, 'key' => "nl-NL", 'value' => 'Schrijf creatieve TikTok-bio Gebruik de volgende trefwoorden in de biobeschrijving:\n ##keywords## \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 3392, 'template_id' => 93, 'key' => "et-EE", 'value' => 'Kirjutage loominguline TikToki biograafia, kasutades biokirjelduses järgmisi märksõnu:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 3393, 'template_id' => 93, 'key' => "fi-FI", 'value' => 'Kirjoita luova TikTok bio käyttämällä seuraavia avainsanoja biokuvauksessa:\n ##keywords## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 3394, 'template_id' => 93, 'key' => "fr-FR", 'value' => 'Rédigez une bio TikTok créative en utilisant les mots-clés suivants dans la description de la bio:\n ##keywords## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 3395, 'template_id' => 93, 'key' => "de-DE", 'value' => 'Schreiben Sie eine kreative TikTok-Biografie und verwenden Sie dabei die folgenden Schlüsselwörter in der Biografiebeschreibung:\n ##keywords## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 3396, 'template_id' => 93, 'key' => "el-GR", 'value' => 'Γράψτε δημιουργικό TikTok bio Χρησιμοποιώντας τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του βιογραφικού:\n ##keywords## \n\n Η φωνή του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 3397, 'template_id' => 93, 'key' => "he-IL", 'value' => 'כתוב ביוגרפיה יצירתית של TikTok באמצעות מילות מפתח הבאות בתיאור הביולוגי:\n ##keywords## \n\n של הקול של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 3398, 'template_id' => 93, 'key' => "hi-IN", 'value' => 'बायो डिस्क्रिप्शन में निम्नलिखित कीवर्ड्स का उपयोग करके क्रिएटिव टिकटॉक बायो लिखें:\n ##keywords## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 3399, 'template_id' => 93, 'key' => "hu-HU", 'value' => 'Írjon kreatív TikTok életrajzot Az alábbi kulcsszavak használatával az életrajz leírásában:\n ##keywords## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 3400, 'template_id' => 93, 'key' => "is-IS", 'value' => 'Skrifaðu skapandi TikTok líf með því að nota eftirfarandi leitarorð í líflýsingunni:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 3401, 'template_id' => 93, 'key' => "id-ID", 'value' => 'Tulis bio TikTok yang kreatif Menggunakan kata kunci berikut dalam deskripsi bio:\n ##keywords## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 3402, 'template_id' => 93, 'key' => "it-IT", 'value' => 'Scrivi una biografia TikTok creativa utilizzando le seguenti parole chiave nella descrizione della biografia:\n ##keywords## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 3403, 'template_id' => 93, 'key' => "ja-JP", 'value' => 'クリエイティブな TikTok プロフィールを作成します。プロフィールの説明に次のキーワードを使用します。:\n ##keywords## \n\n 結果の声のトーンは:\n ##tone_language## \n\n'], - - ['id' => 3404, 'template_id' => 93, 'key' => "ko-KR", 'value' => '약력 설명에 다음 키워드를 사용하여 창의적인 TikTok 약력 작성:\n ##keywords## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 3405, 'template_id' => 93, 'key' => "ms-MY", 'value' => 'Tulis bio TikTok kreatif Menggunakan kata kunci berikut dalam huraian bio:\n ##keywords## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 3406, 'template_id' => 93, 'key' => "nb-NO", 'value' => 'Skriv kreativ TikTok-bio ved å bruke følgende nøkkelord i biobeskrivelsen:\n ##keywords## \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 3407, 'template_id' => 93, 'key' => "pl-PL", 'value' => 'Napisz kreatywną biografię TikTok, używając następujących słów kluczowych w opisie biografii:\n ##keywords## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 3408, 'template_id' => 93, 'key' => "pt-PT", 'value' => 'Escrever uma biografia criativa para o TikTok Utilizar as seguintes palavras-chave na descrição da biografia:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3409, 'template_id' => 93, 'key' => "ru-RU", 'value' => 'Напишите креативную биографию TikTok, используя следующие ключевые слова в описании биографии:\n ##keywords## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 3410, 'template_id' => 93, 'key' => "es-ES", 'value' => 'Escriba una biografía creativa de TikTok usando las siguientes palabras clave en la descripción de la biografía:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 3411, 'template_id' => 93, 'key' => "sv-SE", 'value' => 'Skriv kreativa TikTok-bio Använd följande nyckelord i biobeskrivningen:\n ##keywords## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 3412, 'template_id' => 93, 'key' => "tr-TR", 'value' => 'Biyo açıklamasında aşağıdaki anahtar kelimeleri kullanarak yaratıcı TikTok biyografisi yazın:\n ##keywords## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 3413, 'template_id' => 93, 'key' => "pt-BR", 'value' => 'Escreva uma biografia criativa no TikTok Usando as seguintes palavras-chave na descrição da biografia:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3414, 'template_id' => 93, 'key' => "ro-RO", 'value' => 'Scrieți o biografie creativa TikTok Folosind următoarele cuvinte cheie în descrierea biografiei:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 3415, 'template_id' => 93, 'key' => "vi-VN", 'value' => 'Viết tiểu sử TikTok sáng tạo Sử dụng các từ khóa sau trong mô tả sinh học:\n ##keywords## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 3416, 'template_id' => 93, 'key' => "sw-KE", 'value' => 'Andika wasifu wa ubunifu wa TikTok Kwa kutumia maneno muhimu yafuatayo kwenye maelezo ya wasifu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 3417, 'template_id' => 93, 'key' => "sl-SI", 'value' => 'Napišite ustvarjalni TikTok življenjepis z uporabo naslednjih ključnih besed v opisu biografije:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 3418, 'template_id' => 93, 'key' => "th-TH", 'value' => 'เขียนชีวประวัติของ TikTok อย่างสร้างสรรค์โดยใช้คำหลักต่อไปนี้ในคำอธิบายชีวประวัติ: \n ##keywords## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 3419, 'template_id' => 93, 'key' => "uk-UA", 'value' => 'Напишіть творчу біографію TikTok, використовуючи наступні ключові слова в описі біографії:\n ##keywords## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 3420, 'template_id' => 93, 'key' => "lt-LT", 'value' => 'Parašykite kūrybišką TikTok biografiją Naudodami šiuos raktinius žodžius biografijos aprašyme:\n ##keywords## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 3421, 'template_id' => 93, 'key' => "bg-BG", 'value' => 'Напишете творческа биография на TikTok, като използвате следните ключови думи в описанието на биографията:\n ##keywords## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 3422, 'template_id' => 94, 'key' => "en-US", 'value' => 'Write a cover letter for ##description## email \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 3423, 'template_id' => 94, 'key' => "ar-AE", 'value' => 'اكتب خطاب تغطية ##description## بريد إلكتروني \n\n TTالوحيدة من صوت النتيجة يجب أن تكون::\n ##tone_language## \n\n'], - - ['id' => 3424, 'template_id' => 94, 'key' => "cmn-CN", 'value' => '写求职信 ##description## 电子邮件 \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 3425, 'template_id' => 94, 'key' => "hr-HR", 'value' => 'Napišite propratno pismo ##description## elektronička pošta \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 3426, 'template_id' => 94, 'key' => "cs-CZ", 'value' => 'Napište motivační dopis ##description## e-mailem \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 3427, 'template_id' => 94, 'key' => "da-DK", 'value' => 'Skriv et følgebrev ##description## e-mail \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 3428, 'template_id' => 94, 'key' => "nl-NL", 'value' => 'Schrijf een begeleidende brief ##description## e-mailen \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 3429, 'template_id' => 94, 'key' => "et-EE", 'value' => 'Kirjutage kaaskiri ##description## meili \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 3430, 'template_id' => 94, 'key' => "fi-FI", 'value' => 'Kirjoita saatekirje ##description## sähköposti \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 3431, 'template_id' => 94, 'key' => "fr-FR", 'value' => 'Rédiger une lettre de motivation ##description## e-Courrier électronique \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 3432, 'template_id' => 94, 'key' => "de-DE", 'value' => 'Schreiben Sie ein Anschreiben ##description## Email\n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 3433, 'template_id' => 94, 'key' => "el-GR", 'value' => 'Γράψτε μια συνοδευτική επιστολή ##description## ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ \n\n Η φωνή του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 3434, 'template_id' => 94, 'key' => "he-IL", 'value' => 'כתוב מכתב מקדים ##description## אימייל \n\n של הקול של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 3435, 'template_id' => 94, 'key' => "hi-IN", 'value' => 'एक कवर लेटर लिखें ##description## ईमेल\n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 3436, 'template_id' => 94, 'key' => "hu-HU", 'value' => 'Írj kísérőlevelet ##description## email \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 3437, 'template_id' => 94, 'key' => "is-IS", 'value' => 'Skrifaðu kynningarbréf ##description## tölvupósti \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 3438, 'template_id' => 94, 'key' => "id-ID", 'value' => 'Tulis surat pengantar ##description## surel \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 3439, 'template_id' => 94, 'key' => "it-IT", 'value' => 'Scrivi una lettera di presentazione ##description## e-mail \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n'], - - ['id' => 3440, 'template_id' => 94, 'key' => "ja-JP", 'value' => 'カバーレターを書く ##description## Eメール \n\n 結果の声のトーンは:\n ##tone_language## \n\n'], - - ['id' => 3441, 'template_id' => 94, 'key' => "ko-KR", 'value' => '커버 레터 작성 ##description## 이메일 \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 3442, 'template_id' => 94, 'key' => "ms-MY", 'value' => 'Tulis surat iringan ##description## emel \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 3443, 'template_id' => 94, 'key' => "nb-NO", 'value' => 'Skriv et følgebrev ##description## e-post \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 3444, 'template_id' => 94, 'key' => "pl-PL", 'value' => 'Napisz list motywacyjny ##description## wiadomość e-mail \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 3445, 'template_id' => 94, 'key' => "pt-PT", 'value' => 'Escrever uma carta de apresentação para ##description## e-mail \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3446, 'template_id' => 94, 'key' => "ru-RU", 'value' => 'Написать сопроводительное письмо ##description## электронная почта \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 3447, 'template_id' => 94, 'key' => "es-ES", 'value' => 'Escribe una carta de presentación ##description## correo electrónico \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 3448, 'template_id' => 94, 'key' => "sv-SE", 'value' => 'Skriv ett följebrev ##description## e-post \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 3449, 'template_id' => 94, 'key' => "tr-TR", 'value' => 'Bir ön yazı yaz ##description## e-posta \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 3450, 'template_id' => 94, 'key' => "pt-BR", 'value' => 'Escreva uma carta de apresentação para ##description## e-mail \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3451, 'template_id' => 94, 'key' => "ro-RO", 'value' => 'Scrieți o scrisoare de intenție ##description## e-mail \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 3452, 'template_id' => 94, 'key' => "vi-VN", 'value' => 'Viết thư xin việc ##description## e-mail \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 3453, 'template_id' => 94, 'key' => "sw-KE", 'value' => 'Andika barua ya kazi ##description## barua pepe \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 3454, 'template_id' => 94, 'key' => "sl-SI", 'value' => 'Napišite spremno pismo ##description## E-naslov \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 3455, 'template_id' => 94, 'key' => "th-TH", 'value' => 'เขียนจดหมายปะหน้า ##description## อีเมล \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 3456, 'template_id' => 94, 'key' => "uk-UA", 'value' => 'Напишіть супровідний лист ##description## електронною поштою \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 3457, 'template_id' => 94, 'key' => "lt-LT", 'value' => 'Parašykite motyvacinį laišką ##description## paštu \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 3458, 'template_id' => 94, 'key' => "bg-BG", 'value' => 'Напишете мотивационно писмо ##description## електронна поща \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 3459, 'template_id' => 95, 'key' => "en-US", 'value' => 'Write a personal intro which i can used at ##description## for myself \n\n Tone of voice of the result must be:\n ##tone_language## \n\n'], - - ['id' => 3460, 'template_id' => 95, 'key' => "ar-AE", 'value' => 'اكتب مقدمة شخصية يمكنني استخدامها في ##description## لنفسي \n\n TTالوحيدة من صوت النتيجة يجب أن تكون::\n ##tone_language## \n\n'], - - ['id' => 3461, 'template_id' => 95, 'key' => "cmn-CN", 'value' => '写一个我可以使用的个人介绍 ##description## 为了我自己 \n\n 结果的声音必须是:\n ##tone_language## \n\n'], - - ['id' => 3462, 'template_id' => 95, 'key' => "hr-HR", 'value' => 'Napišite osobni intro koji mogu koristiti ##description## Za sebe \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n'], - - ['id' => 3463, 'template_id' => 95, 'key' => "cs-CZ", 'value' => 'Napište osobní intro, které mohu použít ##description## pro mě \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n'], - - ['id' => 3464, 'template_id' => 95, 'key' => "da-DK", 'value' => 'Skriv en personlig intro, som jeg kan bruge på ##description## v \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n'], - - ['id' => 3465, 'template_id' => 95, 'key' => "nl-NL", 'value' => 'Schrijf een persoonlijke intro waar ik bij kan gebruiken ##description## voor mezelf \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n'], - - ['id' => 3466, 'template_id' => 95, 'key' => "et-EE", 'value' => 'Kirjutage isiklik tutvustus, mida saan kasutada ##description## enda jaoks \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n'], - - ['id' => 3467, 'template_id' => 95, 'key' => "fi-FI", 'value' => 'Kirjoita henkilökohtainen esittely, jota voin käyttää ##description## itselleni \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n'], - - ['id' => 3468, 'template_id' => 95, 'key' => "fr-FR", 'value' => 'Écrivez une introduction personnelle que je peux utiliser à ##description## pour moi-même \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n'], - - ['id' => 3469, 'template_id' => 95, 'key' => "de-DE", 'value' => 'Schreiben Sie ein persönliches Intro, das ich verwenden kann ##description## für mich\n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n'], - - ['id' => 3470, 'template_id' => 95, 'key' => "el-GR", 'value' => 'Γράψτε μια προσωπική εισαγωγή στην οποία μπορώ να χρησιμοποιήσω ##description## για τον εαυτό μου \n\n Η φωνή του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n'], - - ['id' => 3471, 'template_id' => 95, 'key' => "he-IL", 'value' => 'כתוב מבוא אישי שבו אני יכול להשתמש ##description## בשבילי \n\n של הקול של התוצאה חייב להיות:\n ##tone_language## \n\n'], - - ['id' => 3472, 'template_id' => 95, 'key' => "hi-IN", 'value' => 'एक व्यक्तिगत परिचय लिखें जिसका मैं उपयोग कर सकता हूं ##description## अपने आप के लिए \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n'], - - ['id' => 3773, 'template_id' => 95, 'key' => "hu-HU", 'value' => 'Írj egy személyes bemutatkozást, amit felhasználhatok ##description## magamnak \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n'], - - ['id' => 3774, 'template_id' => 95, 'key' => "is-IS", 'value' => 'Skrifaðu persónulegt kynningu sem ég get notað á ##description## fyrir mig \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n'], - - ['id' => 3475, 'template_id' => 95, 'key' => "id-ID", 'value' => 'Tulis intro pribadi yang bisa saya gunakan ##description## untuk diriku \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n'], - - ['id' => 3476, 'template_id' => 95, 'key' => "it-IT", 'value' => "Scrivi unintroduzione personale che posso usare su ##description## per me \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 3477, 'template_id' => 95, 'key' => "ja-JP", 'value' => 'で使用できる個人的な紹介文を書きます ##description## 自分のため \n\n 結果の声のトーンは:\n ##tone_language## \n\n'], - - ['id' => 3778, 'template_id' => 95, 'key' => "ko-KR", 'value' => '내가 사용할 수있는 개인 소개 쓰기 ##description## 나 자신을 위해 \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\n ##tone_language## \n\n'], - - ['id' => 3479, 'template_id' => 95, 'key' => "ms-MY", 'value' => 'Tulis intro peribadi yang boleh saya gunakan ##description## untuk diri saya sendiri \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n'], - - ['id' => 3780, 'template_id' => 95, 'key' => "nb-NO", 'value' => 'Skriv en personlig intro som jeg kan bruke på ##description## for meg selv \n\n Tone av stemmen til resultatet må være:\n ##tone_language## \n\n'], - - ['id' => 3481, 'template_id' => 95, 'key' => "pl-PL", 'value' => 'Napisz osobiste wprowadzenie, którego będę mógł użyć ##description## dla siebie \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n'], - - ['id' => 3482, 'template_id' => 95, 'key' => "pt-PT", 'value' => 'Escrever uma introdução pessoal que possa ser utilizada em ##description## para mim próprio \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3483, 'template_id' => 95, 'key' => "ru-RU", 'value' => 'Напишите личное введение, которое я могу использовать на ##description## для меня \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n'], - - ['id' => 3484, 'template_id' => 95, 'key' => "es-ES", 'value' => 'Escribe una introducción personal que pueda usar en ##description## para mí \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n'], - - ['id' => 3485, 'template_id' => 95, 'key' => "sv-SE", 'value' => 'Skriv ett personligt intro som jag kan använda vid ##description## för mig själv \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n'], - - ['id' => 3486, 'template_id' => 95, 'key' => "tr-TR", 'value' => 'Kullanabileceğim kişisel bir giriş yaz ##description## kendim için \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n'], - - ['id' => 3487, 'template_id' => 95, 'key' => "pt-BR", 'value' => 'Escreva uma introdução pessoal que eu possa usar em ##description## para mim mesmo \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n'], - - ['id' => 3488, 'template_id' => 95, 'key' => "ro-RO", 'value' => 'Scrie o introducere personală pe care să o pot folosi ##description## pentru mine \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n'], - - ['id' => 3489, 'template_id' => 95, 'key' => "vi-VN", 'value' => 'Viết phần giới thiệu cá nhân mà tôi có thể sử dụng tại ##description## cho bản thân mình \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n'], - - ['id' => 3490, 'template_id' => 95, 'key' => "sw-KE", 'value' => 'Andika utangulizi wa kibinafsi ambao ninaweza kutumia ##description## kwa ajili yangu mwenyewe \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n'], - - ['id' => 3491, 'template_id' => 95, 'key' => "sl-SI", 'value' => 'Napišite osebni uvod, ki ga lahko uporabim pri ##description## zame \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n'], - - ['id' => 3492, 'template_id' => 95, 'key' => "th-TH", 'value' => 'เขียนคำนำส่วนตัวที่ฉันสามารถใช้ได้ ##description## สำหรับตัวฉันเอง \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n'], - - ['id' => 3493, 'template_id' => 95, 'key' => "uk-UA", 'value' => 'Напишіть особисте інтро, яке я можу використати ##description## v \n\n Тон голосу результату має бути:\n ##tone_language## \n\n'], - - ['id' => 3494, 'template_id' => 95, 'key' => "lt-LT", 'value' => 'Parašykite asmeninį įvadą, kurį galėčiau panaudoti ##description## sau pačiam \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n'], - - ['id' => 3495, 'template_id' => 95, 'key' => "bg-BG", 'value' => 'Напишете лично въведение, което мога да използвам ##description## за мен \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n'], - - ['id' => 3496, 'template_id' => 96, 'key' => "en-US", 'value' => "Write 10 catchy motivation quote for the following :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 3497, 'template_id' => 96, 'key' => "ar-AE", 'value' => "اكتب 10 اقتباسات دافعة جذابة لما يلي :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 3498, 'template_id' => 96, 'key' => "cmn-CN", 'value' => "為下列項目撰寫 10 個朗朗文動機報價 :\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n"], - - ['id' => 3499, 'template_id' => 96, 'key' => "hr-HR", 'value' => "Napišite 10 privlačnih motivacijskih citata za sljedeće :\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3500, 'template_id' => 96, 'key' => "cs-CZ", 'value' => "Napište 10 chytlavých motivačních citátů pro následující :\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 3501, 'template_id' => 96, 'key' => "da-DK", 'value' => "Skriv 10 fængende motivationscitater til følgende :\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 3502, 'template_id' => 96, 'key' => "nl-NL", 'value' => "Schrijf 10 pakkende motivatiecitaten voor het volgende :\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 3503, 'template_id' => 96, 'key' => "et-EE", 'value' => "Kirjutage 10 meeldejäävat motivatsioonitsitaati järgmise jaoks :\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 3504, 'template_id' => 96, 'key' => "fi-FI", 'value' => "Kirjoita 10 tarttuvaa motivaatiolainausta seuraavaan :\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 3505, 'template_id' => 96, 'key' => "fr-FR", 'value' => "Rédigez 10 citations de motivation accrocheuses pour les éléments suivants :\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 3506, 'template_id' => 96, 'key' => "de-DE", 'value' => "Schreiben Sie 10 einprägsame Motivationszitate für Folgendes :\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 3507, 'template_id' => 96, 'key' => "el-GR", 'value' => "Γράψτε 10 συναρπαστικά κίνητρα για τα παρακάτω :\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 3508, 'template_id' => 96, 'key' => "he-IL", 'value' => "כתוב 10 ציטוטי מוטיבציה קליטים עבור הדברים הבאים :\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 3509, 'template_id' => 96, 'key' => "hi-IN", 'value' => "निम्नलिखित के लिए 10 आकर्षक प्रेरक उद्धरण लिखिए :\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 3510, 'template_id' => 96, 'key' => "hu-HU", 'value' => "Írj 10 fülbemászó motivációs idézetet a következőkhöz! :\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 3511, 'template_id' => 96, 'key' => "is-IS", 'value' => "Skrifaðu 10 grípandi hvatningartilvitnanir fyrir eftirfarandi :\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 3512, 'template_id' => 96, 'key' => "id-ID", 'value' => "Tulis 10 kutipan motivasi yang menarik untuk yang berikut ini :\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 3513, 'template_id' => 96, 'key' => "it-IT", 'value' => "Scrivi 10 citazioni motivazionali accattivanti per quanto segue :\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 3514, 'template_id' => 96, 'key' => "ja-JP", 'value' => "以下のキャッチーな動機付けの引用を 10 個書いてください :\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 3515, 'template_id' => 96, 'key' => "ko-KR", 'value' => "다음에 대해 기억하기 쉬운 동기 부여 인용문 10개를 작성하십시오. :\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 3516, 'template_id' => 96, 'key' => "ms-MY", 'value' => "Tulis 10 petikan motivasi yang menarik untuk yang berikut :\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 3517, 'template_id' => 96, 'key' => "nb-NO", 'value' => "Skriv 10 fengende motivasjonssitat for følgende :\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 3518, 'template_id' => 96, 'key' => "pl-PL", 'value' => "Napisz 10 chwytliwych cytatów motywacyjnych dla następujących osób :\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 3519, 'template_id' => 96, 'key' => "pt-PT", 'value' => "Escreva 10 citações cativantes de motivação para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3520, 'template_id' => 96, 'key' => "ru-RU", 'value' => "Напишите 10 броских мотивационных цитат для следующего :\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 3521, 'template_id' => 96, 'key' => "es-ES", 'value' => "Escriba 10 citas de motivación pegadizas para lo siguiente :\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 3522, 'template_id' => 96, 'key' => "sv-SE", 'value' => "Skriv 10 catchy motivationscitat för följande :\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 3523, 'template_id' => 96, 'key' => "tr-TR", 'value' => "Aşağıdakiler için 10 akılda kalıcı motivasyon teklifi yazın :\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 3524, 'template_id' => 96, 'key' => "pt-BR", 'value' => "Escreva 10 citações cativantes de motivação para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3525, 'template_id' => 96, 'key' => "ro-RO", 'value' => "Scrieți 10 citate de motivație captivante pentru următoarele :\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 3526, 'template_id' => 96, 'key' => "vi-VN", 'value' => "Viết 10 trích dẫn động lực hấp dẫn cho những điều sau đây :\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 3527, 'template_id' => 96, 'key' => "sw-KE", 'value' => "Andika nukuu 10 za motisha kwa zifuatazo :\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 3528, 'template_id' => 96, 'key' => "sl-SI", 'value' => "Napišite 10 privlačnih motivacijskih citatov za naslednje :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3529, 'template_id' => 96, 'key' => "th-TH", 'value' => "เขียน 10 คำพูดสร้างแรงบันดาลใจลวงต่อไปนี้ :\n\n ##description## \n\n โทนเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 3530, 'template_id' => 96, 'key' => "uk-UA", 'value' => "Напишіть 10 привабливих мотиваційних цитат для наступного :\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 3531, 'template_id' => 96, 'key' => "lt-LT", 'value' => "Parašykite 10 patrauklių motyvacijos citatų toliau nurodytam klausimui :\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 3532, 'template_id' => 96, 'key' => "bg-BG", 'value' => "Напишете 10 закачливи мотивационни цитата за следното :\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 3533, 'template_id' => 97, 'key' => "en-US", 'value' => "Write a descriptive motivation speech for the following :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 3534, 'template_id' => 97, 'key' => "ar-AE", 'value' => "اكتب خطاب دافع وصفي لما يلي :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 3535, 'template_id' => 97, 'key' => "cmn-CN", 'value' => "為下列項目撰寫敘述性動機語音 :\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n"], - - ['id' => 3536, 'template_id' => 97, 'key' => "hr-HR", 'value' => "Napišite opisni motivacijski govor za sljedeće :\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3537, 'template_id' => 97, 'key' => "cs-CZ", 'value' => "Napište popisný motivační projev pro následující :\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 3538, 'template_id' => 97, 'key' => "da-DK", 'value' => "Skriv en beskrivende motivationstale til følgende :\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 3539, 'template_id' => 97, 'key' => "nl-NL", 'value' => "Schrijf een beschrijvende motivatietoespraak voor het volgende :\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 3540, 'template_id' => 97, 'key' => "et-EE", 'value' => "Kirjutage kirjeldav motivatsioonikõne järgneva jaoks :\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 3541, 'template_id' => 97, 'key' => "fi-FI", 'value' => "Kirjoita kuvaava motivaatiopuhe seuraavaa varten :\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n"], - - ['id' => 3542, 'template_id' => 97, 'key' => "fr-FR", 'value' => "Rédigez un discours de motivation descriptif pour les éléments suivants :\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 3543, 'template_id' => 97, 'key' => "de-DE", 'value' => "Schreiben Sie eine beschreibende Motivationsrede für Folgendes :\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 3544, 'template_id' => 97, 'key' => "el-GR", 'value' => "Γράψτε μια περιγραφική ομιλία κινήτρων για τα παρακάτω :\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 3545, 'template_id' => 97, 'key' => "he-IL", 'value' => "כתוב נאום מוטיבציה תיאורי עבור הדברים הבאים :\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 3546, 'template_id' => 97, 'key' => "hi-IN", 'value' => "निम्नलिखित के लिए वर्णनात्मक प्रेरक भाषण लिखिए :\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 3547, 'template_id' => 97, 'key' => "hu-HU", 'value' => "Írjon leíró motivációs beszédet a következőkhöz! :\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n"], - - ['id' => 3548, 'template_id' => 97, 'key' => "is-IS", 'value' => "Skrifaðu lýsandi hvatningarræðu fyrir eftirfarandi :\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 3549, 'template_id' => 97, 'key' => "id-ID", 'value' => "Tulis pidato motivasi deskriptif untuk yang berikut ini :\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n"], - - ['id' => 3550, 'template_id' => 97, 'key' => "it-IT", 'value' => "Scrivi un discorso motivazionale descrittivo per quanto segue :\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 3551, 'template_id' => 97, 'key' => "ja-JP", 'value' => "次のような動機を説明するスピーチを書いてください。 :\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n"], - - ['id' => 3552, 'template_id' => 97, 'key' => "ko-KR", 'value' => "다음에 대한 설명적인 동기 연설을 작성하십시오. :\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n"], - - ['id' => 3553, 'template_id' => 97, 'key' => "ms-MY", 'value' => "Tulis ucapan motivasi deskriptif untuk perkara berikut :\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 3554, 'template_id' => 97, 'key' => "nb-NO", 'value' => "Skriv en beskrivende motivasjonstale for følgende :\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 3555, 'template_id' => 97, 'key' => "pl-PL", 'value' => "Napisz opisowe przemówienie motywacyjne dla poniższych osób :\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 3556, 'template_id' => 97, 'key' => "pt-PT", 'value' => "Escreva um discurso de motivação descritivo para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3557, 'template_id' => 97, 'key' => "ru-RU", 'value' => "Напишите описательную мотивационную речь для следующего :\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 3558, 'template_id' => 97, 'key' => "es-ES", 'value' => "Escriba un discurso de motivación descriptivo para los siguientes :\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 3559, 'template_id' => 97, 'key' => "sv-SE", 'value' => "Skriv ett beskrivande motivationstal för följande :\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 3560, 'template_id' => 97, 'key' => "tr-TR", 'value' => "Aşağıdakiler için açıklayıcı bir motivasyon konuşması yazın :\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n"], - - ['id' => 3561, 'template_id' => 97, 'key' => "pt-BR", 'value' => "Escreva um discurso de motivação descritivo para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3562, 'template_id' => 97, 'key' => "ro-RO", 'value' => "Scrieți un discurs descriptiv de motivare pentru următoarele :\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 3563, 'template_id' => 97, 'key' => "vi-VN", 'value' => "Viết một bài phát biểu động cơ mô tả cho những điều sau đây :\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 3564, 'template_id' => 97, 'key' => "sw-KE", 'value' => "Andika hotuba ya maelezo ya motisha kwa yafuatayo :\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 3565, 'template_id' => 97, 'key' => "sl-SI", 'value' => "Napišite opisni motivacijski govor za naslednje :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3566, 'template_id' => 97, 'key' => "th-TH", 'value' => "เขียนบรรยายแรงจูงใจต่อไปนี้ :\n\n ##description## \n\n โทนเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 3567, 'template_id' => 97, 'key' => "uk-UA", 'value' => "Напишіть описову мотиваційну промову для наступного :\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n"], - - ['id' => 3568, 'template_id' => 97, 'key' => "lt-LT", 'value' => "Parašykite aprašomąją motyvacinę kalbą dėl šių dalykų :\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n"], - - ['id' => 3569, 'template_id' => 97, 'key' => "bg-BG", 'value' => "Напишете описателна мотивационна реч за следното :\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 3570, 'template_id' => 98, 'key' => "en-US", 'value' => "Write 10 catchy good wishes for the following occasion : ##occasion## for my : ##relation## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n"], - - ['id' => 3571, 'template_id' => 98, 'key' => "ar-AE", 'value' => "اكتب 10 تمنيات طيبة وجذابة للمناسبة التالية : ##occasion## لاجلي : ##relation## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n"], - - ['id' => 3572, 'template_id' => 98, 'key' => "cmn-CN", 'value' => "为以下场合写下 10 个朗朗上口的美好祝福 : ##occasion## 为了我的 : ##relation## \n\n 结果的语气必须是:\n ##tone_language## \n\n"], - - ['id' => 3573, 'template_id' => 98, 'key' => "hr-HR", 'value' => "Napišite 10 lijepih lijepih želja za sljedeću priliku : ##occasion## za moj : ##relation## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3574, 'template_id' => 98, 'key' => "cs-CZ", 'value' => "Napište 10 chytlavých přání všeho dobrého pro následující příležitost : ##occasion## pro mě : ##relation## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n"], - - ['id' => 3575, 'template_id' => 98, 'key' => "da-DK", 'value' => "Skriv 10 fængende gode ønsker til den følgende lejlighed : ##occasion## for min : ##relation## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n"], - - ['id' => 3576, 'template_id' => 98, 'key' => "nl-NL", 'value' => "Schrijf 10 pakkende goede wensen voor de volgende gelegenheid : ##occasion## voor mijn : ##relation## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n"], - - ['id' => 3577, 'template_id' => 98, 'key' => "et-EE", 'value' => "Kirjutage järgmiseks puhuks 10 meeldejäävat head soovi : ##occasion## minu : ##relation## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n"], - - ['id' => 3578, 'template_id' => 98, 'key' => "fi-FI", 'value' => "Kirjoita 10 tarttuvaa onnentoivotusta seuraavaan tilaisuuteen : ##occasion## minun puolestani : ##relation## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n"], - - ['id' => 3579, 'template_id' => 98, 'key' => "fr-FR", 'value' => "Écrivez 10 bons vœux accrocheurs pour l'occasion suivante : ##occasion## pour mon : ##relation## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n"], - - ['id' => 3580, 'template_id' => 98, 'key' => "de-DE", 'value' => "Schreiben Sie 10 einprägsame Glückwünsche für den folgenden Anlass : ##occasion## für mein : ##relation## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n"], - - ['id' => 3581, 'template_id' => 98, 'key' => "el-GR", 'value' => "Γράψε 10 πιασάρικες ευχές για την επόμενη περίσταση : ##occasion## για τη δικιά μου : ##relation## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n"], - - ['id' => 3582, 'template_id' => 98, 'key' => "he-IL", 'value' => "כתבו 10 איחולים קליטים לאירוע הבא : ##occasion## עבור שלי : ##relation## \n\nטון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n"], - - ['id' => 3583, 'template_id' => 98, 'key' => "hi-IN", 'value' => "निम्नलिखित अवसर के लिए 10 आकर्षक शुभकामनाएं लिखें : ##occasion## मेरे लिए : ##relation## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n"], - - ['id' => 3584, 'template_id' => 98, 'key' => "hu-HU", 'value' => "Írj 10 fülbemászó jókívánságot a következő alkalomra : ##occasion## az én : ##relation## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n"], - - ['id' => 3585, 'template_id' => 98, 'key' => "is-IS", 'value' => "Skrifaðu 10 grípandi góðar óskir fyrir næsta tilefni : ##occasion## fyrir mig : ##relation## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n"], - - ['id' => 3586, 'template_id' => 98, 'key' => "id-ID", 'value' => "Tulis 10 harapan baik yang menarik untuk kesempatan berikut : ##occasion## untuk ku : ##relation## \n\n Nada suara hasil harus:\n ##tone_language## \n\n"], - - ['id' => 3587, 'template_id' => 98, 'key' => "it-IT", 'value' => "Scrivi 10 accattivanti auguri per la prossima occasione : ##occasion## per me : ##relation## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n"], - - ['id' => 3588, 'template_id' => 98, 'key' => "ja-JP", 'value' => "次の機会に向けて、キャッチーな良い願いを 10 個書いてください : ##occasion## 私のために : ##relation## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n"], - - ['id' => 3589, 'template_id' => 98, 'key' => "ko-KR", 'value' => "다음 행사에 대한 10가지 좋은 소원을 적어보세요 : ##occasion## 나를 위해 : ##relation## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n"], - - ['id' => 3590, 'template_id' => 98, 'key' => "ms-MY", 'value' => "Tulis 10 ucapan selamat yang menarik untuk majlis berikut : ##occasion## untuk saya : ##relation## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n"], - - ['id' => 3591, 'template_id' => 98, 'key' => "nb-NO", 'value' => "Skriv 10 fengende lykkeønskninger for neste anledning : ##occasion## for min : ##relation## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n"], - - ['id' => 3592, 'template_id' => 98, 'key' => "pl-PL", 'value' => "Napisz 10 chwytliwych życzeń na następną okazję : ##occasion## dla mnie : ##relation## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n"], - - ['id' => 3593, 'template_id' => 98, 'key' => "pt-PT", 'value' => "Escreva 10 bons desejos cativantes para a seguinte ocasião : ##occasion## para o meu : ##relation## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3594, 'template_id' => 98, 'key' => "ru-RU", 'value' => "Напишите 10 запоминающихся добрых пожеланий на следующий случай : ##occasion## для меня : ##relation## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n"], - - ['id' => 3595, 'template_id' => 98, 'key' => "es-ES", 'value' => "Escribe 10 buenos deseos pegadizos para la próxima ocasión : ##occasion## para mi : ##relation## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n"], - - ['id' => 3596, 'template_id' => 98, 'key' => "sv-SE", 'value' => "Skriv 10 catchy lyckönskningar för följande tillfälle : ##occasion## för min : ##relation## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n"], - - ['id' => 3597, 'template_id' => 98, 'key' => "tr-TR", 'value' => "Bir sonraki durum için akılda kalıcı 10 iyi dilek yazın : ##occasion## benim için : ##relation## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n"], - - ['id' => 3598, 'template_id' => 98, 'key' => "pt-BR", 'value' => "Escreva 10 bons votos cativantes para a seguinte ocasião : ##occasion## para mim : ##relation## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n"], - - ['id' => 3599, 'template_id' => 98, 'key' => "ro-RO", 'value' => "Scrie 10 urări de bine atrăgătoare pentru următoarea ocazie : ##occasion## pentru a mea : ##relation## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n"], - - ['id' => 3600, 'template_id' => 98, 'key' => "vi-VN", 'value' => "Viết 10 lời chúc hấp dẫn cho dịp sau : ##occasion## cho tôi : ##relation## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n"], - - ['id' => 3601, 'template_id' => 98, 'key' => "sw-KE", 'value' => "Andika matashi 10 mazuri kwa hafla ifuatayo : ##occasion## kwa wangu : ##relation## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n"], - - ['id' => 3602, 'template_id' => 98, 'key' => "sl-SI", 'value' => "Napišite 10 privlačnih dobrih želja za naslednjo priložnost : ##occasion## za moj : ##relation## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n"], - - ['id' => 3603, 'template_id' => 98, 'key' => "th-TH", 'value' => "เขียนความปรารถนาดีลวง 10 ประการต่อไปนี้ : ##occasion## สำหรับฉัน : ##relation## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n"], - - ['id' => 3604, 'template_id' => 98, 'key' => "uk-UA", 'value' => "Напишіть 10 яскравих побажань на наступну подію : ##occasion## для мого : ##relation## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n"], - - ['id' => 3605, 'template_id' => 98, 'key' => "lt-LT", 'value' => "Parašykite 10 patrauklių linkėjimų kitai progai : ##occasion## už mano : ##relation## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n"], - - ['id' => 3606, 'template_id' => 98, 'key' => "bg-BG", 'value' => "Напишете 10 запомнящи се добри пожелания за следващия повод : ##occasion## за моя : ##relation## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n"], - - ['id' => 3607, 'template_id' => 99, 'key' => "en-US", 'value' => "Write creative & convincing bid for the following project :\n\n ##description##"], - - ['id' => 3608, 'template_id' => 99, 'key' => "ar-AE", 'value' => "اكتب محاولة إبداعية ومقنعة للمشروع التالي\n\n ##description##"], - - ['id' => 3609, 'template_id' => 99, 'key' => "cmn-CN", 'value' => "为以下项目写出有创意和有说服力的标书:\n\n ##description##"], - - ['id' => 3610, 'template_id' => 99, 'key' => "hr-HR", 'value' => "Napišite kreativnu i uvjerljivu ponudu za sljedeći projekt:\n\n ##description##"], - - ['id' => 3611, 'template_id' => 99, 'key' => "cs-CZ", 'value' => "Napište kreativní a přesvědčivou nabídku pro následující projekt:\n\n ##description##"], - - ['id' => 3612, 'template_id' => 99, 'key' => "da-DK", 'value' => "Skriv et kreativt og overbevisende bud på følgende projekt:\n\n ##description##"], - - ['id' => 3613, 'template_id' => 99, 'key' => "nl-NL", 'value' => "Schrijven van een creatief & overtuigend bod voor het volgende project:\n\n ##description##"], - - ['id' => 3614, 'template_id' => 99, 'key' => "et-EE", 'value' => "Kirjutage loov ja veenev pakkumine järgmise projekti jaoks:\n\n ##description##"], - - ['id' => 3615, 'template_id' => 99, 'key' => "fi-FI", 'value' => "Kirjoita luova ja vakuuttava tarjous seuraavaan projektiin:\n\n ##description##"], - - ['id' => 3616, 'template_id' => 99, 'key' => "fr-FR", 'value' => "Rédiger une offre créative et convaincante pour le projet suivant :\n\n ##description##"], - - ['id' => 3617, 'template_id' => 99, 'key' => "de-DE", 'value' => "Schreiben Sie ein kreatives und überzeugendes Angebot für das folgende Projekt:\n\n ##description##"], - - ['id' => 3618, 'template_id' => 99, 'key' => "el-GR", 'value' => "Γράψτε δημιουργική και πειστική προσφορά για το παρακάτω έργο:\n\n ##description##"], - - ['id' => 3619, 'template_id' => 99, 'key' => "he-IL", 'value' => "כתוב הצעה יצירתית ומשכנעת עבור הפרויקט הבא:\n\n ##description##"], - - ['id' => 3620, 'template_id' => 99, 'key' => "hi-IN", 'value' => "निम्नलिखित परियोजना के लिए रचनात्मक और विश्वसनीय बोली लिखें:\n\n ##description##"], - - ['id' => 3621, 'template_id' => 99, 'key' => "hu-HU", 'value' => "Írjon kreatív és meggyőző ajánlatot a következő projektre:\n\n ##description##"], - - ['id' => 3622, 'template_id' => 99, 'key' => "is-IS", 'value' => "Skrifaðu skapandi og sannfærandi tilboð í eftirfarandi verkefni:\n\n ##description##"], - - ['id' => 3623, 'template_id' => 99, 'key' => "id-ID", 'value' => "Tulis tawaran yang kreatif & meyakinkan untuk proyek berikut :\n\n ##description##"], - - ['id' => 3624, 'template_id' => 99, 'key' => "it-IT", 'value' => "Scrivi un'offerta creativa e convincente per il seguente progetto:\n\n ##description##"], - - ['id' => 3625, 'template_id' => 99, 'key' => "ja-JP", 'value' => "次のプロジェクトに対してクリエイティブで説得力のある入札書を作成します:\n\n ##description##"], - - ['id' => 3626, 'template_id' => 99, 'key' => "ko-KR", 'value' => "다음 프로젝트에 대한 창의적이고 설득력 있는 입찰가 작성:\n\n ##description##"], - - ['id' => 3627, 'template_id' => 99, 'key' => "ms-MY", 'value' => "Tulis tawaran yang kreatif & meyakinkan untuk projek berikut:\n\n ##description##"], - - ['id' => 3628, 'template_id' => 99, 'key' => "nb-NO", 'value' => "Skriv et kreativt og overbevisende bud på følgende prosjekt:\n\n ##description##"], - - ['id' => 3629, 'template_id' => 99, 'key' => "pl-PL", 'value' => "Napisz kreatywną i przekonującą ofertę na następujący projekt:\n\n ##description##"], - - ['id' => 3630, 'template_id' => 99, 'key' => "pt-PT", 'value' => "Escreva um lance criativo e convincente para o seguinte projeto:\n\n ##description##"], - - ['id' => 3631, 'template_id' => 99, 'key' => "ru-RU", 'value' => "Напишите креативную и убедительную заявку на следующий проект:\n\n ##description##"], - - ['id' => 3632, 'template_id' => 99, 'key' => "es-ES", 'value' => "Escriba una oferta creativa y convincente para el siguiente proyecto:\n\n ##description##"], - - ['id' => 3633, 'template_id' => 99, 'key' => "sv-SE", 'value' => "Skriv ett kreativt och övertygande bud på följande projekt:\n\n ##description##"], - - ['id' => 3634, 'template_id' => 99, 'key' => "tr-TR", 'value' => "Aşağıdaki proje için yaratıcı ve ikna edici teklif yazın:\n\n ##description##"], - - ['id' => 3635, 'template_id' => 99, 'key' => "pt-BR", 'value' => "Escreva uma proposta criativa e convincente para o seguinte projeto:\n\n ##description##"], - - ['id' => 3636, 'template_id' => 99, 'key' => "ro-RO", 'value' => "Scrieți o ofertă creativă și convingătoare pentru următorul proiect:\n\n ##description##"], - - ['id' => 3637, 'template_id' => 99, 'key' => "vi-VN", 'value' => "Viết giá thầu sáng tạo & thuyết phục cho dự án sau:\n\n ##description##"], - - ['id' => 3638, 'template_id' => 99, 'key' => "sw-KE", 'value' => "Andika zabuni ya ubunifu na ya kushawishi kwa mradi ufuatao:\n\n ##description##"], - - ['id' => 3639, 'template_id' => 99, 'key' => "sl-SI", 'value' => "Napišite kreativno in prepričljivo ponudbo za naslednji projekt:\n\n ##description##"], - - ['id' => 3640, 'template_id' => 99, 'key' => "th-TH", 'value' => "เขียนการเสนอราคาที่สร้างสรรค์และน่าเชื่อถือสำหรับโครงการต่อไปนี้:\n\n ##description##"], - - ['id' => 3641, 'template_id' => 99, 'key' => "uk-UA", 'value' => "Напишіть творчу та переконливу заявку на наступний проект:\n\n ##description##"], - - ['id' => 3642, 'template_id' => 99, 'key' => "lt-LT", 'value' => "Parašykite kūrybišką ir įtikinamą pasiūlymą kitam projektui:\n\n ##description##"], - - ['id' => 3643, 'template_id' => 99, 'key' => "bg-BG", 'value' => "Напишете креативна и убедителна оферта за следния проект:\n\n ##description##"], - - ['id' => 3644, 'template_id' => 19, 'key' => "he-IL", 'value' => "כתוב מודעה יצירתית עבור המוצר הבא שיוצג בפייסבוק שמטרתה:\n\n ##audience## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n גוון הקול של המודעה חייב להיות:\n ##tone_language## \n\n"], - - ]; - foreach ($prompts as $prompt) { - AiTemplatePrompt::updateOrCreate(['id' => $prompt['id']], $prompt); - } - // $this->call("OthersTableSeeder"); - } -} diff --git a/packages/workdo/AIDocument/src/Database/Seeders/AiTemplateTableSeeder.php b/packages/workdo/AIDocument/src/Database/Seeders/AiTemplateTableSeeder.php deleted file mode 100755 index b063b88..0000000 --- a/packages/workdo/AIDocument/src/Database/Seeders/AiTemplateTableSeeder.php +++ /dev/null @@ -1,229 +0,0 @@ - 1, 'name' => 'Article Generator', 'icon' => 'article-generator.png', 'description' => 'Compose an excellent article using a given title and outline', 'template_code' => 'KPAQQ', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'article-generator', 'type' => '1','form_fields'=>'{"field":[{"label":"Article Title","placeholder":"e.g. Amazing culture of india","field_type":"text_box","field_name":"title"},{"label":"Focus Keywords (comma seperated)","placeholder":"e.g. brazil, canada, india","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 2, 'name' => 'Content Rewriter', 'icon' => 'content-rewriter.png', 'description' => 'Enhance content by rewriting it with greater creativity, interest, and engagement', 'template_code' => 'WCZGL', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'content-rewriter', 'type' => '1','form_fields'=>'{"field":[{"label":"What would you like to rewrite?","placeholder":"e.g. Enter your text to rewrite","field_type":"textarea","field_name":"title"}]}'], - - ['id' => 3, 'name' => 'Paragraph Generator', 'icon' => 'paragraph-generator.png', 'description' => 'Paragraphs that are flawlessly arranged, simple to read, and packed with words that convince', 'template_code' => 'JXRZB', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'paragraph-generator', 'type' => '1' ,'form_fields'=>'{"field":[{"label":"Paragraph Description","placeholder":"e.g. Lime or lemon what is better?","field_type":"textarea","field_name":"title"},{"label":"Focus Keywords (comma seperated)","placeholder":"e.g. fruit, lime","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 4, 'name' => 'Talking Points', 'icon' => 'talking-points.png', 'description' => 'Compose concise, straightforward, and informative subheadings for your article', 'template_code' => 'VFWSQ', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'talking-points', 'type' => '1','form_fields'=>'{"field":[{"label":"Article Title","placeholder":"e.g. 10 ways to create websites","field_type":"textarea","field_name":"title"},{"label":"Subheading Description","placeholder":"e.g. Why you should create a website","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 5, 'name' => 'Pros & Cons', 'icon' => 'pros-and-cons.png', 'description' => 'Outline the pros and cons of a product, service, or website in your blog post', 'template_code' => 'OPYAB', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'pros-and-cons', 'type' => '1','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"e.g. iPhone, Samsung","field_type":"text_box","field_name":"title"},{"label":"Product Description","placeholder":"e.g. Explain what kind of cell phone you can to compare","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 6, 'name' => 'Blog Titles', 'icon' => 'blog-titles.png', 'description' => 'With this tool, you can come up with catchy blog titles that people want to read', 'template_code' => 'WGKYP', 'status' => true, 'professional' => false, 'category_id' =>'2', 'slug' => 'blog-titles', 'type' => '1','form_fields'=>'{"field":[{"label":"What is your blog post is about?","placeholder":"e.g. Describe your blog post","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 7, 'name' => 'Blog Section', 'icon' => 'blog-section.png', 'description' => "Write a few paragraphs about one of your article's subheadings", 'template_code' => 'EEKZF', 'status' => true, 'professional' => false, 'category_id' =>'2', 'slug' => 'blog-section', 'type' => '1','form_fields'=>'{"field":[{"label":"Title of your blog article","placeholder":"e.g. 5 best places to visit in Spain","field_type":"textarea","field_name":"title"},{"label":"Subheadings","placeholder":"e.g. Barcelona, San Sebastian, Madrid","field_type":"textarea","field_name":"subheadings"}]}'], - - ['id' => 8, 'name' => 'Blog Ideas', 'icon' => 'blog-ideas.png', 'description' => 'Article/blog thoughts that you can use to create more traffic, leads, and deals for your business', 'template_code' => 'KDGOX', 'status' => true, 'professional' => false, 'category_id' =>'2', 'slug' => 'blog-ideas', 'type' => '1','form_fields'=>'{"field":[{"label":"What is your blog post is about?","placeholder":"e.g. 5 best places to visit in Spain","field_type":"textarea","field_name":"title"}]}'], - - ['id' => 9, 'name' => 'Blog Intros', 'icon' => 'blog-intros.png', 'description' => 'Introductions to articles/blogs that are appealing to the readers', 'template_code' => 'TZTYR', 'status' => true, 'professional' => false, 'category_id' =>'2', 'slug' => 'blog-intros', 'type' => '1','form_fields'=>'{"field":[{"label":"Blog Post Title","placeholder":"e.g. 5 best places to visit in Spain","field_type":"text_box","field_name":"title"},{"label":"What is your blog post is about?","placeholder":"e.g. describe your blog article","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 10, 'name' => 'Blog Conclusion', 'icon' => 'blog-conclusion.png', 'description' => 'Create powerful conclusion that will make a reader take action.', 'template_code' => 'ZGUKM', 'status' => true, 'professional' => false, 'category_id' =>'2', 'slug' => 'blog-conclusion', 'type' => '1','form_fields'=>'{"field":[{"label":"Blog Post Title","placeholder":"e.g. 5 best places to visit in Spain","field_type":"text_box","field_name":"title"},{"label":"What is your blog post is about?","placeholder":"e.g. describe your blog article","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 11, 'name' => 'Summarize Text', 'icon' => 'summarize-text.png', 'description' => 'Shorten any text into a concise and easily understandable summary', 'template_code' => 'OMMEI', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'summarize-text', 'type' => '1','form_fields'=>'{"field":[{"label":"What would you like to summarize?","placeholder":"e.g. Enter your text to summarize","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 12, 'name' => 'Product Description', 'icon' => 'product-description.png', 'description' => 'Craft a compelling product description highlighting its value and why it is worth investing in', 'template_code' => 'HXLNA', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'product-description', 'type' => '1','form_fields'=>'{"field":[{"label":"Product name","placeholder":"e.g. VR, Honda","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"e.g. Women, Aliens","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"e.g. VR is an innovative device that can allow you to be part of virtual world","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 13, 'name' => 'Startup Name Generator', 'icon' => 'startup-idea.png', 'description' => 'Generate unique, imaginative, and attention-grabbing names for your startup effortlessly and swiftly', 'template_code' => 'DJSVM', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'startup-name-generator', 'type' => '1','form_fields'=>'{"field":[{"label":"Seed words","placeholder":"e.g. flow, app, tech","field_type":"text_box","field_name":"keywords"},{"label":"Startup Description","placeholder":"e.g. Explain what your statrup idea is about","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 14, 'name' => 'Product Name Generator', 'icon' => 'product-name-generator.png', 'description' => 'Generate innovative product names using provided word examples', 'template_code' => 'IXKBE', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'product-name-generator', 'type' => '1','form_fields'=>'{"field":[{"label":"Seed words","placeholder":"e.g. fast, healthy, compact","field_type":"text_box","field_name":"keywords"},{"label":"Product Description","placeholder":"e.g. Provide product details","field_type":"textarea","field_name":"description"}]}'], - - - ['id' => 15, 'name' => 'Meta Description', 'icon' => 'meta-description.png', 'description' => 'Based on a description, create a meta description optimized for SEO', 'template_code' => 'JCDIK', 'status' => true, 'professional' => false, 'category_id'=> '3', 'slug' => 'meta-description', 'type' => '1','form_fields'=>'{"field":[{"label":"Website Name","placeholder":"e.g. Amazon, Google","field_type":"text_box","field_name":"title"},{"label":"Website Description","placeholder":"e.g. Describe what your website or business do","field_type":"textarea","field_name":"description"},{"label":"Keywords","placeholder":"e.g. cloud services, databases","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 16, 'name' => 'FAQs', 'icon' => 'questions.png', 'description' => 'Make a list of frequently asked questions based on the description of your product', 'template_code' => 'SZAUF', 'status' => true, 'professional' => false, 'category_id' => '3', 'slug' => 'faqs', 'type' => '1','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"e.g. Amazon, Google","field_type":"text_box","field_name":"title"},{"label":"Product Description","placeholder":"e.g. Describe what your website or business do","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 17, 'name' => 'FAQ Answers', 'icon' => 'questions.png', 'description' => 'Create original responses to frequently asked questions (FAQs) about your website or business', 'template_code' => 'BFENK', 'status' => true, 'professional' => false, 'category_id'=> '3', 'slug' => 'faq-answers', 'type' => '1','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"e.g. Amazon, Google","field_type":"text_box","field_name":"title"},{"label":"What is the question you are generating answers for?","placeholder":"e.g. How to use this product?","field_type":"text_box","field_name":"question"},{"label":"Product Description","placeholder":"e.g. Describe what your website or business do","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 18, 'name' => 'Testimonials / Reviews', 'icon' => 'reply-to-review.png', 'description' => 'User testimonials to be used to add social proof to your website', 'template_code' => 'XLGPP', 'status' => true, 'professional' => false, 'category_id'=> '3', 'slug' => 'testimonials', 'type' => '1','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"e.g. Amazon, Google","field_type":"text_box","field_name":"title"},{"label":"Product Description","placeholder":"e.g. Describe what your website or business do","field_type":"textarea","field_name":"description"}]}'], - - - ['id' => 19, 'name' => 'Facebook Ads', 'icon' => 'facebook.png', 'description' => 'Compose Facebook promotions that draw in your crowd and convey a high transformation rate', 'template_code' => 'CTMNI', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'facebook-ads', 'type' => '1','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"e.g. VR, Toy","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"e.g. Freelances, Developers","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"e.g. VR is an innovative device that can allow you to be part of virtual world","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 20, 'name' => 'Video Descriptions', 'icon' => 'video-tags.png', 'description' => 'Create engaging YouTube descriptions to get viewers to your video', 'template_code' => 'ZLKSP', 'status' => true, 'professional' => false, 'category_id' =>'5', 'slug' => 'video-descriptions', 'type' => '1','form_fields'=>'{"field":[{"label":"What is the title of your video?","placeholder":"e.g. start earning money online","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 21, 'name' => 'Video Titles', 'icon' => 'video-tags.png', 'description' => "Create a catchy YouTube video title to grab people's attention", 'template_code' => 'OJIOV', 'status' => true, 'professional' => false, 'category_id' =>'5', 'slug' => 'video-titles', 'type' => '1','form_fields'=>'{"field":[{"label":"What is your video about?","placeholder":"e.g. Provide description of your video, provide as many details as possible","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 22, 'name' => 'Youtube Tags Generator', 'icon' => 'youTube.png', 'description' => 'Create YouTube tags and keywords optimized for SEO for your video', 'template_code' => 'ECNVU', 'status' => true, 'professional' => false, 'category_id' =>'5', 'slug' => 'youtube-tags-generator', 'type' => '1','form_fields'=>'{"field":[{"label":"Enter your video title or keyword","placeholder":"e.g. cloud","field_type":"textarea","field_name":"title"}]}'], - - - ['id' => 23, 'name' => 'Instagram Captions', 'icon' => 'instagram.png', 'description' => 'Use eye-catching captions for your Instagram pictures to attract attention', 'template_code' => 'EOASR', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'instagram-captions', 'type' => '1','form_fields'=>'{"field":[{"label":"What is your instragram post about?","placeholder":"e.g. start earning money online","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 24, 'name' => 'Instagram Hashtags Generator', 'icon' => 'instagram.png', 'description' => 'Detect the most effective hashtags for your Instagram posts', 'template_code' => 'IEMBM', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'instagram-hashtags', 'type' => '1','form_fields'=>'{"field":[{"label":"Enter a keyword","placeholder":"e.g. makeup","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 25, 'name' => 'Social Media Post (Personal)', 'icon' => 'social-media-post-personal.png', 'description' => 'Write a personal social media post that can be shared on any platform', 'template_code' => 'CKOHL', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'social-post-personal', 'type' => '1' ,'form_fields'=>'{"field":[{"label":"What is this post about?","placeholder":"e.g. I got fluent in Spanish in 1 week","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 26, 'name' => 'Social Media Post (Business)', 'icon' => 'social-media-post-business.png', 'description' => 'Write a post about your company for any social media platform', 'template_code' => 'ABWGU', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'social-post-business', 'type' => '1','form_fields'=>'{"field":[{"label":"Company name","placeholder":"e.g. XYZ","field_type":"text_box","field_name":"title"},{"label":"Provide company description","placeholder":"e.g. XYZ is a leading toy making company","field_type":"textarea","field_name":"description"},{"label":"What is the post about?","placeholder":"e.g. we released a new version of kids favorite toy","field_type":"textarea","field_name":"post"}]}'], - - ['id' => 27, 'name' => 'Facebook Headlines', 'icon' => 'facebook.png', 'description' => 'To make your Facebook ads stand out, write headlines that are enticing and convincing', 'template_code' => 'HJYJZ', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'facebook-headlines', 'type' => '1','form_fields'=>'{"field":[{"label":"Product name","placeholder":"e.g. VR, Toy","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"e.g. Women, Parents","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"e.g. VR is an innovative device that can allow you to be part of virtual world","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 28, 'name' => 'Google Ads Headlines', 'icon' => 'google.png', 'description' => 'Using Google Ads, promote your product with catchy 30-character headlines', 'template_code' => 'SGZTW', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'google-headlines', 'type' => '1','form_fields'=>'{"field":[{"label":"Product name","placeholder":"e.g. VR, Toy","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"e.g. Women, Parents","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"e.g. VR is an innovative device that can allow you to be part of virtual world","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 29, 'name' => 'Google Ads Description', 'icon' => 'google.png', 'description' => 'Create a Google Ads description that stands out and brings in leads', 'template_code' => 'YQAFG', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'google-ads', 'type' => '1','form_fields'=>'{"field":[{"label":"Product name","placeholder":"e.g. VR, Toy","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"e.g. Women, Parents","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"e.g. VR is an innovative device that can allow you to be part of virtual world","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 30, 'name' => 'Problem-Agitate-Solution', 'icon' => 'problem-agitate-solution.png', 'description' => 'For your business, develop one of the most efficient copywriting formulas', 'template_code' => 'BGXJE', 'status' => true, 'professional' => false, 'category_id'=> '3', 'slug' => 'problem-agitate-solution', 'type' => '1','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"e.g. VR, Toy","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"e.g. Freelances, Developers","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"e.g. VR is an innovative device that can allow you to be part of virtual world","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 31, 'name' => 'Academic Essay', 'icon' => 'academic-essay.png', 'description' => 'Generate well-crafted academic essays for a wide range of subjects in mere seconds', 'template_code' => 'SXQBT', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'academic-essay', 'type' => '1','form_fields'=>'{"field":[{"label":"Essay Title","placeholder":"e.g. Amazing cuisine culture of Mexico","field_type":"text_box","field_name":"title"},{"label":"Focus Keywords (comma seperated)","placeholder":"e.g. taco, sangria, paella","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 32, 'name' => 'Welcome Email', 'icon' => 'welcome-email.png', 'description' => 'Make welcome emails for your customers', 'template_code' => 'RLXGB', 'status' => true, 'professional' => false, 'category_id' =>'6', 'slug' => 'email-welcome', 'type' => '1','form_fields'=>'{"field":[{"label":"Your Company/Product Name","placeholder":"e.g. Creative Minds","field_type":"text_box","field_name":"title"},{"label":"Describe your product or company","placeholder":"","field_type":"textarea","field_name":"description"},{"label":"Audience","placeholder":"","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 33, 'name' => 'Cold Email', 'icon' => 'cold-email.png', 'description' => 'Using AI, create professional cold emails', 'template_code' => 'RDJEZ', 'status' => true, 'professional' => false, 'category_id' =>'6', 'slug' => 'email-cold', 'type' => '1','form_fields'=>'{"field":[{"label":"Your Company/Product Name","placeholder":"e.g. Creative Minds","field_type":"text_box","field_name":"title"},{"label":"Describe your product or company","placeholder":"","field_type":"textarea","field_name":"description"},{"label":"Audience","placeholder":"","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 34, 'name' => 'Follow-Up Email', 'icon' => 'follow-up-email.png', 'description' => 'With only a few clicks, you can create a professional email follow-up', 'template_code' => 'XVNNQ', 'status' => true, 'professional' => false, 'category_id' =>'6', 'slug' => 'email-follow-up', 'type' => '1','form_fields'=>'{"field":[{"label":"Your Company/Product Name","placeholder":"e.g. Creative Minds","field_type":"text_box","field_name":"title"},{"label":"Describe your product or company","placeholder":"","field_type":"textarea","field_name":"description"},{"label":"Following up after","placeholder":"","field_type":"text_box","field_name":"event"},{"label":"Audience","placeholder":"","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 35, 'name' => 'Creative Stories', 'icon' => 'creative-stories.png', 'description' => 'Utilize AI to generate imaginative stories based on input text', 'template_code' => 'PAKMF', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'creative-stories', 'type' => '1','form_fields'=>'{"field":[{"label":"What is your story is about?","placeholder":"Provide as much details as possible for creating a story tale","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 36, 'name' => 'Grammar Checker', 'icon' => 'grammar-checker.png', 'description' => 'Ensure the content is error-free and lacks any mistakes', 'template_code' => 'OORHD', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'grammar-checker', 'type' => '1','form_fields'=>'{"field":[{"label":"Include your text here to check","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 37, 'name' => 'Summarize for 2nd Grader', 'icon' => 'summarize-for-2nd-grader.png', 'description' => 'Simplify complex content into a summary suitable for a 2nd grade child', 'template_code' => 'SGJLU', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => '2nd-grader', 'type' => '1','form_fields'=>'{"field":[{"label":"Include your text to summarize","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 38, 'name' => 'Video Scripts', 'icon' => 'video-tags.png', 'description' => 'Create scripts for your videos quickly and begin filming', 'template_code' => 'WISHV', 'status' => true, 'professional' => false, 'category_id' =>'5', 'slug' => 'video-scripts', 'type' => '1','form_fields'=>'{"field":[{"label":"What is your video about?","placeholder":"Provide description of what your video is about, provide all details","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 39, 'name' => 'Amazon Product Description', 'icon' => 'amazon.png', 'description' => 'Amazon product descriptions that appear on the first page of search results', 'template_code' => 'WISTT', 'status' => true, 'professional' => false, 'category_id' =>'7', 'slug' => 'amazon-product', 'type' => '1','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"e.g. Amazing cuisine culture of Mexico","field_type":"text_box","field_name":"title"},{"label":"Focus Keywords (comma seperated)","placeholder":"e.g. taco, sangria, paella","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 40, 'name' => 'Article Rewriter ', 'icon' => 'article-rewriter.png', 'description' => "Copy an article, paste it in to the program, and with just one click you'll have an entirely different article to read.", 'template_code' => 'ABCDE', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'article-rewriter', 'type' => '1','form_fields'=>'{"field":[{"label":"what is your artical about?","placeholder":"what is your artical about?","field_type":"textarea","field_name":"description"},{"label":"Keywords","placeholder":"Keywords","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 41, 'name' => 'Content Rephrase ', 'icon' => 'content-rephrase.png', 'description' => "Rewrite your content in a different tone and manner to appeal to diverse readers", 'template_code' => 'ABCDF', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Content-Rephrase', 'type' => '1','form_fields'=>'{"field":[{"label":"What would you like to rewrite?","placeholder":"What would you like to rewrite?","field_type":"textarea","field_name":"description"},{"label":"Keywords","placeholder":"Keywords","field_type":"text_box","field_name":"keywords"}]}'], - - - ['id' => 42, 'name' => 'Text Extender', 'icon' => 'text-extender.png', 'description' => "Make shorter sentences more interesting and descriptive", 'template_code' => 'ABCDG', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Text-Extender', 'type' => '1','form_fields'=>'{"field":[{"label":"Description","placeholder":"Describe your content here...","field_type":"textarea","field_name":"description"},{"label":"Keywords","placeholder":"Keywords","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 43, 'name' => 'Content Shorten', 'icon' => 'content-shorten.png', 'description' => "To appeal to various readers, condense your content in a distinct tone and manner", 'template_code' => 'ABCDH', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Content-Shorten', 'type' => '1','form_fields'=>'{"field":[{"label":"Content","placeholder":"Describe your content here...","field_type":"textarea","field_name":"description"},{"label":"Keywords","placeholder":"Keywords","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 44, 'name' => 'Quora Answers', 'icon' => 'quora-answers.png', 'description' => "Answers to Quora questions that will establish you as an expert", 'template_code' => 'ABCDI', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Quora-Answers', 'type' => '1','form_fields'=>'{"field":[{"label":"Question","placeholder":"Question","field_type":"text_box","field_name":"title"},{"label":"Information","placeholder":"Information","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 45, 'name' => 'Bullet Point Answers', 'icon' => 'bullet-point-answers.png', 'description' => "Precise and detailed bullet points that answer your consumers' questions in a timely and helpful manner.", 'template_code' => 'ABCDJ', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Bullet-Point', 'type' => '1','form_fields'=>'{"field":[{"label":"Question","placeholder":"Question","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 46, 'name' => 'Definition', 'icon' => 'definition.png', 'description' => "A definition for a term, phrase, or acronym that your target customers frequently use", 'template_code' => 'ABCDK', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Keyword","placeholder":"Keyword","field_type":"text_box","field_name":"keyword"}]}'], - - ['id' => 47, 'name' => 'Answers', 'icon' => 'answers.png', 'description' => "Quick, high-quality responses to your audience's questions and concerns", 'template_code' => 'ABCDL', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Question","placeholder":"Question","field_type":"textarea","field_name":"description"}]}'], - - - ['id' => 48, 'name' => 'Questions', 'icon' => 'questions.png', 'description' => "A tool for generating polls and inquiries that involve and involve the audience", 'template_code' => 'ABCDM', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Content","placeholder":"Content","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 49, 'name' => 'Passive to Active Voice', 'icon' => 'passive-to-active-voice.png', 'description' => "Simple and easy method for changing passive statements into active sentences", 'template_code' => 'ABCDN', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Content","placeholder":"Content","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 50, 'name' => 'Rewrite With Keywords', 'icon' => 'rewrite-with-keywords.png', 'description' => "Improve your search engine rankings by rewriting your existing content with more keywords", 'template_code' => 'ABCDO', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"What would you like to rewrite?","placeholder":"Enter your content to rewrite","field_type":"textarea","field_name":"description"},{"label":"Keywords","placeholder":"e.g lemon,fruit","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 51, 'name' => 'Grammar Correction', 'icon' => 'Grammar Correction.png', 'description' => "Check the grammar and correct the sentences with the AI tool", 'template_code' => 'ABCDP', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Text","placeholder":"Enter your content","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 52, 'name' => 'Company Vision', 'icon' => 'company-vision.png', 'description' => "A vision that attracts the right people, clients, and employees.", 'template_code' => 'ABCDQ', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Company Name","placeholder":"Company Name","field_type":"text_box","field_name":"title"},{"label":"Company Information","placeholder":"Company Information","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 53, 'name' => 'Company Mission', 'icon' => 'company-mission.png', 'description' => "a statement of your company's goals and purpose that is both precise and brief", 'template_code' => 'ABCDR', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Company Name","placeholder":"Company Name","field_type":"text_box","field_name":"title"},{"label":"Company Information","placeholder":"Company Information","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 54, 'name' => 'Company Bios', 'icon' => 'company-bios.png', 'description' => "A concise company bio that will assist you in connecting with your intended audience", 'template_code' => 'ABCDS', 'status' => true, 'professional' => false, 'category_id' =>'1', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Company Name","placeholder":"Company Name","field_type":"text_box","field_name":"title"},{"label":"Company Information","placeholder":"Company Information","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 55, 'name' => 'Emails', 'icon' => 'emails.png', 'description' => "Emails with a polished appearance that helps you engage leads and customers", 'template_code' => 'ABCDT', 'status' => true, 'professional' => false, 'category_id' =>'6', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Recipient","placeholder":"Recipient","field_type":"text_box","field_name":"recipient"},{"label":"Recipient Position","placeholder":"Recipient Position","field_type":"text_box","field_name":"recipient_position"},{"label":"Description","placeholder":"Description","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 56, 'name' => 'Emails V2', 'icon' => 'emails-v2.png', 'description' => "Better results through personalised email outreach to your target prospects", 'template_code' => 'ABCDU', 'status' => true, 'professional' => false, 'category_id' =>'6', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"From","placeholder":"","field_type":"text_box","field_name":"from"},{"label":"To","placeholder":"","field_type":"text_box","field_name":"to"},{"label":"Goal","placeholder":"","field_type":"text_box","field_name":"goal"},{"label":"Description","placeholder":"Description","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 57, 'name' => 'Email Subject Lines', 'icon' => 'email-subject-lines.png', 'description' => "Effective email subject lines that boost open rates", 'template_code' => 'ABCDU', 'status' => true, 'professional' => false, 'category_id' =>'6', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"","field_type":"text_box","field_name":"title"},{"label":"Email Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 58, 'name' => 'Email Content', 'icon' => 'email-content.png', 'description' => "Effective email content for crafting a polished email body", 'template_code' => 'ABCDV', 'status' => true, 'professional' => false, 'category_id' =>'6', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Email Content Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 59, 'name' => 'Google Ad Titles', 'icon' => 'google.png', 'description' => "Creating advertisements with catchy and distinctive titles that encourage people to click on your ads and make purchases from your website", 'template_code' => 'ABCDW', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '1','form_fields'=>'{"field":[{"label":"Product name","placeholder":"","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"Product Description","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 60, 'name' => 'Twitter Tweets', 'icon' => 'twitter.png', 'description' => "Create relevant and trending tweets with AI", 'template_code' => 'ABCDX', 'status' => true, 'professional' => false, 'category_id' =>'6', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Topic","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 61, 'name' => 'LinkedIn Posts', 'icon' => 'linkedIn.png', 'description' => "Inspiring posts for LinkedIn that will help you establish authority and trust in your industry", 'template_code' => 'ABCDY', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Topic","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 62, 'name' => 'App and SMS Notifications', 'icon' => 'app-and-SMS-notifications.png', 'description' => "Notifications that keep users coming back to your apps, websites, and mobile devices for more", 'template_code' => 'ABCDZ', 'status' => true, 'professional' => false, 'category_id' =>'3', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 63, 'name' => 'LinkedIn Ad Descriptions', 'icon' => 'linkedIn.png', 'description' => "Ad descriptions that highlight your product with professionalism and impact", 'template_code' => 'ABCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Product name","placeholder":"e.g. VR, Honda","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"e.g. Women, Aliens","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"e.g. VR is an innovative device that can allow you to be part of virtual world","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 64, 'name' => 'LinkedIn Ad Headlines', 'icon' => 'linkedIn.png', 'description' => "High-converting, click-worthy, and attention-grabbing headlines for LinkedIn ads", 'template_code' => 'ABCDB', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Product name","placeholder":"e.g. VR, Honda","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"e.g. Women, Aliens","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"e.g. VR is an innovative device that can allow you to be part of virtual world","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 65, 'name' => 'YouTube Outlines', 'icon' => 'youTube.png', 'description' => "Video outlines that are extremely engaging and simple to create", 'template_code' => 'ABCDC', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"What is your video about?","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 66, 'name' => 'Twitter thread', 'icon' => 'twitter.png', 'description' => "Create interesting Twitter threads from a description", 'template_code' => 'ABCDD', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 67, 'name' => 'Social post caption', 'icon' => 'social-post-caption.png', 'description' => "Create attention-grabbing captions for social media posts", 'template_code' => 'EBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 68, 'name' => 'you tube intro', 'icon' => 'youTube.png', 'description' => "Make a speedy and infectious short clasp for your YouTube video" , 'template_code'=> 'FBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 69, 'name' => 'Video tags', 'icon' => 'video-tags.png', 'description' => "Based on the title of the video, create video tags for it", 'template_code' => 'GBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 70, 'name' => 'Article outlines', 'icon' => 'article-outlines.png', 'description' => "Decide on the subject of your essay or thesis", 'template_code' => 'HBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"What is your blog is artical? ","placeholder":"","field_type":"text_box","field_name":"title"},{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 71, 'name' => 'SEO Meta Tags (Blog Post)', 'icon' => 'meta-description.png', 'description' => "A set of meta titles and meta description tags that are optimized to improve your blog's search engine rankings", 'template_code' => 'IBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Blog Title","placeholder":"","field_type":"text_box","field_name":"title"},{"label":"Blog Description","placeholder":"","field_type":"textarea","field_name":"description"},{"label":"Search Term","placeholder":"","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 72, 'name' => 'SEO Meta Tags (Homepage)', 'icon' => 'meta-description.png', 'description' => "A set of meta titles and meta description tags that are optimized to improve your home page's search rankings", 'template_code' => 'JBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Website Name","placeholder":"","field_type":"text_box","field_name":"title"},{"label":"Website Description","placeholder":"","field_type":"textarea","field_name":"description"},{"label":"Search Term/Keywords","placeholder":"","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 73, 'name' => 'SEO Meta Tags (Product Page)', 'icon' => 'meta-description.png', 'description' => "A set of meta titles and meta description tags that are optimized to improve your product page's search rankings", 'template_code' => 'KBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Company Name","placeholder":"","field_type":"text_box","field_name":"company_name"},{"label":"Product Name","placeholder":"","field_type":"text_box","field_name":"title"},{"label":"Product/Service Description","placeholder":"","field_type":"textarea","field_name":"description"},{"label":"Search Term/Keywords","placeholder":"","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 74, 'name' => 'Amazon Product Titles', 'icon' => 'amazon.png', 'description' => "Titles for your product that will help it stand out from the crowd of competitors", 'template_code' => 'LBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 75, 'name' => 'Amazon Product Features', 'icon' => 'amazon.png', 'description' => "Benefits and highlights of your items that will make them powerful to customers", 'template_code' => 'MBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 76, 'name' => 'Advertisement idea', 'icon' => 'advertisement-idea.png', 'description' => "Create imaginative ad descriptions for a service or product", 'template_code' => 'NBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"","field_type":"text_box","field_name":"audience"},{"label":"Product Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 77, 'name' => 'Startup Idea', 'icon' => 'startup-idea.png', 'description' => "Obtain thoughts on the subjects you have suggested for business startup ideas", 'template_code' => 'OBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 78, 'name' => 'Job Description Generator', 'icon' => 'Job-description-generator.png', 'description' => "Build up precise and descriptive job descriptions for the job post", 'template_code' => 'PBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 79, 'name' => 'Resume', 'icon' => 'resume.png', 'description' => "Bring a resume with AI that is well-written and strategically organised", 'template_code' => 'QBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 80, 'name' => 'Food Recipe', 'icon' => 'food-recipe.png', 'description' => "In one sitting, get ideas for quick and delicious meal recipes", 'template_code' => 'RBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 81, 'name' => 'Creative poetry', 'icon' => 'creative-poetry.png', 'description' => "Write poetry that expresses your feelings regarding", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 82, 'name' => 'Progress Report', 'icon' => 'progress-report.png', 'description' => "Get accurate and comprehensive progress reports for your business", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 83, 'name' => 'Fictional Story Idea', 'icon' => 'fictional-story-idea.png', 'description' => "Create fictitious stories with the characters based on the topics you've chosen", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 84, 'name' => 'Webinar Title ideas', 'icon' => 'webinar-title-ideas.png', 'description' => "With this tool, you can come up with catchy webinar titles that people want to listen", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 85, 'name' => 'Snapchat Ad Title', 'icon' => 'snapcha.png', 'description' => "Creating advertisements with catchy and distinctive titles that encourage people to click on your ads and make purchases from your website", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"","field_type":"text_box","field_name":"title"},{"label":"Audience","placeholder":"","field_type":"text_box","field_name":"audience"},{"label":" Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 86, 'name' => 'Shopify Product Description', 'icon' => 'shopify.png', 'description' => "Shopify product descriptions that appear on the first page of search results", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Product Name","placeholder":"","field_type":"text_box","field_name":"title"},{"label":"keywords","placeholder":"","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 87, 'name' => 'Personal Bio', 'icon' => 'personal-bio.png', 'description' => "A concise personal bio that will assist you in connecting with your intended people", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 88, 'name' => 'Pinterest caption', 'icon' => 'pinterest.png', 'description' => "Use eye-catching captions for your Pinterest pictures to attract attention", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 89, 'name' => 'Pinterest Pin Title', 'icon' => 'pinterest.png', 'description' => "With this tool, you can come up with catchy pin titles that people want to read", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 90, 'name' => 'Pinterest bio', 'icon' => 'pinterest.png', 'description' => "A concise Pinterest bio that will assist you in connecting with your intended followers", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" keywords","placeholder":"","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 91, 'name' => 'Reply to review', 'icon' => 'reply-to-review.png', 'description' => "Communicate with informative and approachable replies to the reviews", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 92, 'name' => 'Slogan Generator', 'icon' => 'slogan-generator.png', 'description' => "Generate clear, concise, and branded slogans with the help of AI", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" keywords","placeholder":"","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 93, 'name' => 'TikTok Bio', 'icon' => 'tiktok.png', 'description' => "A concise TikTok bio that will assist you in connecting with your followers", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" keywords","placeholder":"","field_type":"text_box","field_name":"keywords"}]}'], - - ['id' => 94, 'name' => 'Cover Letter', 'icon' => 'cover-letter.png', 'description' => "Create cover letters that are tailored, confident, and focused", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 95, 'name' => 'Presonal Intro', 'icon' => 'presonal-intro.png', 'description' => "Create appealing and concise personal introductions", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 96, 'name' => 'Motivational Quote', 'icon' => 'motivational-quote.png', 'description' => "Generate engaging and memorable motivational quotes on various topics", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 97, 'name' => 'Motivational Speech', 'icon' => 'motivational-speech.png', 'description' => "Generate engaging and memorable motivational speeches on various topics", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ['id' => 98, 'name' => 'Generate wishes', 'icon' => 'generate-wishes.png', 'description' => "Bring on positive compliments, and felicitations with AI", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":"Relation for whom?","placeholder":"","field_type":"text_box","field_name":"relation"},{"label":"Occasion","placeholder":"","field_type":"textarea","field_name":"occasion"}]}'], - - ['id' => 99, 'name' => 'Bid on project', 'icon' => 'bid-on-project.png', 'description' => "Quick selection of vendors for subcontracting the project, or products that are required for a project", 'template_code' => 'SBCDA', 'status' => true, 'professional' => false, 'category_id' =>'4', 'slug' => 'Definition', 'type' => '4','form_fields'=>'{"field":[{"label":" Description","placeholder":"","field_type":"textarea","field_name":"description"}]}'], - - ]; - - foreach ($templates as $template) { - AiTemplate::updateOrCreate(['id' => $template['id']], $template); - } - // $this->call("OthersTableSeeder"); - } -} diff --git a/packages/workdo/AIDocument/src/Database/Seeders/MarketPlaceSeederTableSeeder.php b/packages/workdo/AIDocument/src/Database/Seeders/MarketPlaceSeederTableSeeder.php deleted file mode 100755 index d36c121..0000000 --- a/packages/workdo/AIDocument/src/Database/Seeders/MarketPlaceSeederTableSeeder.php +++ /dev/null @@ -1,62 +0,0 @@ -AI Document harnesses the power of OpenAI AI technology to generate unique content, images, and code while ensuring it is free from plagiarism. It enhances and creates captivating content in multiple languages. Users can effortlessly generate images by providing descriptions, and the Speech to Text feature facilitates real-time conversations. The admin panel empowers administrators to customize OpenAI model access for different user groups. Unlock the potential of your business with AI Document by crafting personalized subscription plans that align with your objectives. Embrace this flexible SaaS solution and propel your business toward profitability.

'; - $data['product_main_demo_link'] = '#'; - $data['product_main_demo_button_text'] = 'View Live Demo'; - $data['dedicated_theme_heading'] = 'AI WRITING ASSISTANT AND CONTENT GENERATOR TOOL'; - $data['dedicated_theme_description'] = '

AI Document can quickly produce high-quality content, saving significant time compared to manual writing processes.

'; - $data['dedicated_theme_sections'] = '[{"dedicated_theme_section_image":"","dedicated_theme_section_heading":"Increased Productivity","dedicated_theme_section_description":"","dedicated_theme_section_cards":{"1":{"title":"Time-Saving","description":"With AI Document ability to generate content at scale, businesses can produce a large volume of articles, blog posts, social media content, and more, increasing productivity and content output."},"2":{"title":"Cost-Effective","description":"AI Document eliminates the need to hire or outsource content writers, reducing costs associated with content creation."},"3":{"title":"Consistency","description":"AI Document ensures consistency in tone, style, and brand voice throughout the generated content, maintaining a cohesive brand image."}}},{"dedicated_theme_section_image":"","dedicated_theme_section_heading":"Multilingual Capabilities & Plagiarism Prevention","dedicated_theme_section_description":"

AI Document can create content in multiple languages, facilitating global reach and localization efforts.AI Document can detect and avoid plagiarism, generating original and unique content that meets ethical standards.<\/p>","dedicated_theme_section_cards":{"1":{"title":null,"description":null},"2":{"title":null,"description":null},"3":{"title":null,"description":null}}}]'; - $data['dedicated_theme_sections_heading'] = ''; - $data['screenshots'] = '[{"screenshots":"","screenshots_heading":"AIImage"},{"screenshots":"","screenshots_heading":"AIImage"},{"screenshots":"","screenshots_heading":"AIImage"},{"screenshots":"","screenshots_heading":"AIImage"},{"screenshots":"","screenshots_heading":"AIImage"}]'; - $data['addon_heading'] = 'Why choose dedicated modulesfor Your Business?'; - $data['addon_description'] = '

With Dash, you can conveniently manage all your business functions from a single location.

'; - $data['addon_section_status'] = 'on'; - $data['whychoose_heading'] = 'Why choose dedicated modulesfor Your Business?'; - $data['whychoose_description'] = '

With Dash, you can conveniently manage all your business functions from a single location.

'; - $data['pricing_plan_heading'] = 'Empower Your Workforce with DASH'; - $data['pricing_plan_description'] = '

Access over Premium Add-ons for Accounting, HR, Payments, Leads, Communication, Management, and more, all in one place!

'; - $data['pricing_plan_demo_link'] = '#'; - $data['pricing_plan_demo_button_text'] = 'View Live Demo'; - $data['pricing_plan_text'] = '{"1":{"title":"Pay-as-you-go"},"2":{"title":"Unlimited installation"},"3":{"title":"Secure cloud storage"}}'; - $data['whychoose_sections_status'] = 'on'; - $data['dedicated_theme_section_status'] = 'on'; - - foreach($data as $key => $value){ - if(!MarketplacePageSetting::where('name', '=', $key)->where('module', '=', 'AIDocument')->exists()){ - MarketplacePageSetting::updateOrCreate( - [ - 'name' => $key, - 'module' => 'AIDocument' - - ], - [ - 'value' => $value - ]); - } - } - } -} diff --git a/packages/workdo/AIDocument/src/Database/Seeders/PermissionTableSeeder.php b/packages/workdo/AIDocument/src/Database/Seeders/PermissionTableSeeder.php deleted file mode 100755 index 95997e9..0000000 --- a/packages/workdo/AIDocument/src/Database/Seeders/PermissionTableSeeder.php +++ /dev/null @@ -1,63 +0,0 @@ -first(); - foreach ($Companypermission as $key => $value) - { - $table = Permission::where('name',$value)->where('module','AIDocument')->exists(); - if(!$table) - { - $permission =Permission::create( - [ - 'name' => $value, - 'guard_name' => 'web', - 'module' => 'AIDocument', - 'label' => ucwords(str_replace('_', ' ', $value)), - 'add_on' => 'AIDocument', - "created_at" => date('Y-m-d H:i:s'), - "updated_at" => date('Y-m-d H:i:s') - ] - ); - if(!$company_role->hasPermissionTo($value)) - { - $company_role->givePermissionTo($permission); - } - } - } - // $this->call("OthersTableSeeder"); - } -} diff --git a/packages/workdo/AIDocument/src/Entities/AIDocumentUtility.php b/packages/workdo/AIDocument/src/Entities/AIDocumentUtility.php deleted file mode 100755 index 8ff881a..0000000 --- a/packages/workdo/AIDocument/src/Entities/AIDocumentUtility.php +++ /dev/null @@ -1,67 +0,0 @@ -get(); - - foreach ($roles_v as $role) { - foreach ($staff_permission as $permission_v) { - $permission = Permission::where('name', $permission_v)->first(); - if(!$role->hasPermission($permission_v)) - { - $role->givePermission($permission); - } - - } - } - } else { - if ($rolename == 'staff') { - $roles_v = Role::where('name', 'staff')->where('id', $role_id)->first(); - foreach ($staff_permission as $permission_v) { - $permission = Permission::where('name', $permission_v)->first(); - if(!$roles_v->hasPermission($permission_v)) - { - $roles_v->givePermission($permission); - } - } - } - } - } - -} diff --git a/packages/workdo/AIDocument/src/Entities/AiPromptHistory.php b/packages/workdo/AIDocument/src/Entities/AiPromptHistory.php deleted file mode 100755 index 139306a..0000000 --- a/packages/workdo/AIDocument/src/Entities/AiPromptHistory.php +++ /dev/null @@ -1,31 +0,0 @@ -request = $request; - } - - /** - * Get the channels the event should be broadcast on. - * - * @return array - */ - public function broadcastOn() - { - return []; - } -} diff --git a/packages/workdo/AIDocument/src/Http/Controllers/AiTemplateController.php b/packages/workdo/AIDocument/src/Http/Controllers/AiTemplateController.php deleted file mode 100755 index 0a1cb53..0000000 --- a/packages/workdo/AIDocument/src/Http/Controllers/AiTemplateController.php +++ /dev/null @@ -1,488 +0,0 @@ -isAbleTo('ai document manage')) { - $template = AiTemplate::where('status', true)->orderBy('id', 'asc')->get(); - $content = AiTemplate::where('category_id', '1')->where('status', true)->get(); - $blog = AiTemplate::where('category_id', '2')->where('status', true)->get(); - $website = AiTemplate::where('category_id', '3')->where('status', true)->get(); - $social = AiTemplate::where('category_id', '4')->where('status', true)->get(); - $email = AiTemplate::where('category_id', '6')->where('status', true)->get(); - $video = AiTemplate::where('category_id', '5')->where('status', true)->get(); - $other = AiTemplate::where('category_id', '7')->where('status', true)->get(); - - return view('aidocument::document.index', compact('template', 'content', 'blog', 'website', 'social', 'email', 'video', 'other')); - } else { - return redirect()->back()->with('error', __('Permission Denied.')); - } - } - - /** - * Show the form for creating a new resource. - * @return Renderable - */ - public function create() - { - return redirect()->back()->with('error', __('Permission denied.')); - } - - /** - * Store a newly created resource in storage. - * @param Request $request - * @return Renderable - */ - public function store(Request $request) - { - if (\Auth::user()->isAbleTo('ai document create')) { - if (isset($request->template_id) && !empty($request->template_id)) { - $document_store = new AiPromptHistory(); - $document_store->template_id = $request->template_id; - $template = AiTemplate::where('id', $request->template_id)->first(); - if ($template) { - $document_store->doc_name = $template->name . "_" . time(); - $document_store->workspace = getActiveWorkSpace(); - $document_store->created_by = auth()->user()->id; - $document_store->save(); - - - return response()->json(['status' => 1, "URL" => route('aidocument.document.show', [$document_store->id, $request->template_id])]); - } else { - return response()->json(['stutas' => 0, 'error' => __('Document does not exist')]); - } - } else { - return response()->json(['stutas' => 0, 'error' => __('Please select any document')]); - } - } else { - return response()->json(['stutas' => 0, 'error' => __('Permission Denied.')]); - } - } - - /** - * Show the specified resource. - * @param int $id - * @return Renderable - */ - public function show($doc_id, $id) - { - - if (\Auth::user()->isAbleTo('ai document view')) { - $languages = AiTemplateLanguage::where('status', 1)->orderBy('id', 'asc')->get(); - - $template = AiTemplate::where('id', $id)->first(); - - - - $html = ""; - if ($template) { - - $history_data = AiPromptResponse::where("created_by", auth()->user()->id)->where("history_prompt_id", $doc_id)->orderBy('id', 'DESC')->get(); - - $field_data = json_decode($template->form_fields); - - foreach ($field_data->field as $value) { - $html .= '
- '; - if ($value->field_type == "text_box") { - - $html .= ''; - } - if ($value->field_type == "textarea") { - $html .= ''; - } - $html .= '
'; - } - $tones = $this->tone_list(); - - $document = AiPromptHistory::where('id', $doc_id)->first(); - if ($document) { - return view('aidocument::document.view', compact('languages', 'template', 'html', 'tones', 'document', 'history_data')); - } else { - return redirect()->route('aidocument.index')->with('error', __('Something went wrong..')); - } - } else { - return redirect()->back()->with('error', __('Some thing went wronge.')); - } - } else { - return redirect()->back()->with('error', __('Permission Denied.')); - } - - //return view('aidocument::show'); - } - public function tone_list() - { - $ai_tone = array('funny', 'casual', 'excited', 'professional', 'witty', 'sarcastic', 'feminine', 'masculine', 'bold', 'dramatic', 'gumpy', 'secretive'); - return $ai_tone; - } - /** - * Show the form for editing the specified resource. - * @param int $id - * @return Renderable - */ - - - /** - * Update the specified resource in storage. - * @param Request $request - * @param int $id - * @return Renderable - */ - public function update(Request $request, $id) - { - return redirect()->back()->with('error', __('Permission Denied.')); - } - /** - * Remove the specified resource from storage. - * @param int $id - * @return Renderable - */ - - public function AiGenerate(Request $request) - { - if ($request->ajax()) { - - if (\Auth::user()->isAbleTo('ai document generate')) { - $post = $request->all(); - unset($post['_token']); - unset($post['creativity']); - unset($post['max_results']); - unset($post['words']); - unset($post['document_id']); - unset($post['document_name']); - $data = array(); - $key_data = ApikeySetiings::where('is_active', true)->inRandomOrder()->limit(1)->first(); - if ($key_data) { - $gemini = new GeminiService($key_data->key); - } else { - $data['status'] = 'error'; - $data['message'] = __('Please set proper configuration for Api Key'); - return $data; - } - $prompt = ''; - $text = ''; - $counter = 1; - $template = AiTemplate::where('template_code', $request->template)->first(); - - if ($request->template) { - if ($template->template_code == $request->template) { - $required_field = array(); - $data_field = json_decode($template->form_fields); - foreach ($data_field->field as $val) { - request()->validate([$val->field_name => 'required|string']); - } - - $temp_prompt = AiTemplatePrompt::where('template_id', $template->id)->where("created_by", auth()->user()->id)->where('key', $post['language'])->first(); - if ($temp_prompt) { - $prompt = $temp_prompt->value; - } else { - $temp_prompt = AiTemplatePrompt::where('template_id', $template->id)->where("created_by", 0)->where('key', $post['language'])->first(); - - $prompt = $temp_prompt->value; - } - - foreach ($data_field->field as $field) { - - $text_rep = "##" . $field->field_name . "##"; - if (strpos($prompt, $text_rep) !== false) { - $field->value = $post[$field->field_name]; - $prompt = str_replace($text_rep, $post[$field->field_name], $prompt); - } else { - $field->value = $post[$field->field_name]; - } - if ($template->is_tone == 1) { - - $ai_tone = $post["tone_language"]; - $param = "##tone_language##"; - $prompt = str_replace($param, $ai_tone, $prompt); - } - } - } - } - $ai_token = (int)$request->words; - $ai_creativity = (float)$request->creativity; - - $response = $gemini->generateContent( - $prompt, - $ai_creativity, - $ai_token - ); - - if (isset($response['choices'])) { - - if (count($response['choices']) > 1) { - foreach ($response['choices'] as $value) { - $text .= $counter . '. ' . ltrim($value['text']) . "\r\n\r\n\r\n"; - $counter++; - } - } else { - $text = $response['choices'][0]['text']; - } - - $tokens = $response['usage']['completion_tokens']; - - $flag = AiTemplateLanguage::where('code', $request->language)->first(); - - - $data['text'] = trim($text); - - $prompt_store = AiPromptHistory::where("id", $request->document_id)->where('created_by', auth()->user()->id)->first(); - - $prompt_store->template_id = $template->id; - $prompt_store->creativity = $ai_creativity; - $prompt_store->max_tokens = $ai_token; - $prompt_store->max_results = 1; - $prompt_store->model = 'gemini-2.0-flash'; - $prompt_store->prompt = $prompt; - $prompt_store->language = $post["language"]; - $prompt_store->prompt_fields = json_encode($data_field); - $prompt_store->created_by = auth()->user()->id; - $prompt_store->save(); - - $content = new AiPromptResponse(); - $content->template_id = $template->id; - $content->history_prompt_id = $prompt_store->id; - $content->used_words = $tokens; - $content->content = $data['text']; - $content->created_by = auth()->user()->id; - $content->save(); - - $data['prompt'] = $prompt; - $data['status'] = 'success'; - $data['id'] = $content->id; - return $data; - } else { - $data['status'] = 'error'; - $data['message'] = __('Text was not generated, please try again'); - return $data; - } - } else { - $data['status'] = 'error'; - $data['message'] = __('Permission Denied.'); - return $data; - } - } - } - public function regenerate_response(Request $request) - { - if ($request->ajax()) { - if (\Auth::user()->isAbleTo('ai document generate')) { - $data = array(); - $key_data = ApikeySetiings::where('is_active', true)->inRandomOrder()->limit(1)->first(); - - if ($key_data) { - $gemini = new GeminiService($key_data->key); - } else { - $data['status'] = 'error'; - $data['message'] = __('Please set proper configuration for Api Key'); - return $data; - } - $text = ''; - $counter = 1; - $prompt = AiPromptHistory::where('id', $request->prompt_id)->where('created_by', auth()->user()->id)->first(); - $ai_token = (int)$prompt->max_tokens; - $ai_creativity = (float)$prompt->creativity; - - $response = $gemini->generateContent( - $prompt->prompt, - $ai_creativity, - $ai_token - ); - - if (isset($response['choices'])) { - - if (count($response['choices']) > 1) { - foreach ($response['choices'] as $value) { - $text .= $counter . '. ' . ltrim($value['text']) . "\r\n\r\n\r\n"; - $counter++; - } - } else { - $text = $response['choices'][0]['text']; - } - - - $tokens = $response['usage']['completion_tokens']; - - $flag = AiTemplateLanguage::where('code', $request->language)->first(); - - - $data['text'] = trim($text); - - - $content = new AiPromptResponse(); - $content->template_id = $request->template_id; - $content->history_prompt_id = $request->prompt_id; - $content->used_words = $tokens; - $content->content = $data['text']; - $content->created_by = auth()->user()->id; - $content->save(); - - $data['prompt'] = $prompt->prompt; - $data['status'] = 'success'; - $data['id'] = $content->id; - return $data; - } else { - $data['status'] = 'error'; - $data['message'] = __('Text was not generated, please try again'); - return $data; - } - } else { - $data['status'] = 'error'; - $data['message'] = __('Permission Denied.'); - return $data; - } - } - } - public function exportallresponsecontent(Request $request) - { - $template = AiPromptResponse::select('content')->where('history_prompt_id', $request->history_prompt_id)->where('created_by', Auth::user()->id)->get(); - $html = ""; - foreach ($template as $value) { - $html .= $value->content . "


"; - } - return $html; - } - public function exportresponsecontent(Request $request) - { - $template = AiPromptResponse::select('content')->where('id', $request->response_id)->where('created_by', Auth::user()->id)->get(); - $html = ""; - foreach ($template as $value) { - $html .= $value->content; - } - return $html; - } - public function edit($doc_id, $id) - { - if (\Auth::user()->isAbleTo('document history edit')) { - $languages = AiTemplateLanguage::where('status', 1)->orderBy('id', 'asc')->get(); - - $template = AiTemplate::where('id', $id)->first(); - $html = ""; - if ($template) { - $document = AiPromptHistory::where('id', $doc_id)->first(); - - $history_data = AiPromptResponse::where("created_by", auth()->user()->id)->where("history_prompt_id", $doc_id)->orderBy('id', 'DESC')->get(); - if (!empty($document->prompt_fields)) { - $field_data = json_decode($document->prompt_fields); - foreach ($field_data->field as $value) { - $html .= '
- '; - if ($value->field_type == "text_box") { - $html .= ''; - } - if ($value->field_type == "textarea") { - $html .= ''; - } - $html .= '
'; - } - } else { - $field_data = json_decode($template->form_fields); - foreach ($field_data->field as $value) { - $html .= '
- '; - if ($value->field_type == "text_box") { - - $html .= ''; - } - if ($value->field_type == "textarea") { - $html .= ''; - } - $html .= '
'; - } - } - $tones = $this->tone_list(); - - return view('aidocument::document.edit', compact('languages', 'template', 'html', 'history_data', 'tones', 'document')); - } else { - return redirect()->back()->with('error', __('Document does not exist')); - } - } else { - return redirect()->back()->with('error', __('Permission Denied.')); - } - } - public function save(Request $request) - { - $store = AiPromptHistory::where('id', $request->doc_id)->where('created_by', Auth::user()->id)->where('workspace', getActiveWorkSpace())->first(); - if ($store) { - $store->doc_name = $request->document_name; - $store->save(); - - event(new UpdateHistory($request)); - - return 1; - } else { - return 0; - } - } - public function destroy($id) - { - - if (\Auth::user()->isAbleTo('document history delete')) { - $data = AiPromptHistory::where('id', $id)->first(); - if ($data) { - $response = AiPromptResponse::where('history_prompt_id', $id)->delete(); - - $data->delete(); - return redirect()->route('aidocument.document.history')->with('success', __('Document successfully deleted .')); - } else { - return redirect()->back()->with('error', __('Something is wrong.')); - } - } else { - return redirect()->back()->with('error', __('Permission Denied.')); - } - } - public function history(Request $request) - { - if (\Auth::user()->isAbleTo('document history manage')) { - - $allTemplate = AiTemplate::get(); - $allCategories = AiTemplateCategory::get(); - - $document = AiPromptHistory::where('workspace', getActiveWorkSpace())->where('created_by', auth()->user()->id)->orderBy('id', 'desc')->get(); - foreach ($document as $value) { - $value->category = ""; - $value->category_id = ""; - $template = $allTemplate->where('id', $value->template_id)->first(); - if ($template) { - $category = $allCategories->where('id', $template->category_id)->first(); - if ($category) { - $value->category_id = $category->id; - - $value->category = $category->name; - } - } - $value->created_on = date('M j, Y H:i', strtotime($value->created_at)); - if ($value->language == '' && empty($value->language)) { - $value->language = 'en-US'; - } - if ($value->max_tokens == '' && empty($value->max_tokens)) { - $value->max_tokens = 0; - } - } - return view('aidocument::document.history', compact('document')); - } else { - return redirect()->back()->with('error', __('Permission Denied.')); - } - } -} diff --git a/packages/workdo/AIDocument/src/Http/Controllers/Company/SettingsController.php b/packages/workdo/AIDocument/src/Http/Controllers/Company/SettingsController.php deleted file mode 100755 index 922a7f1..0000000 --- a/packages/workdo/AIDocument/src/Http/Controllers/Company/SettingsController.php +++ /dev/null @@ -1,25 +0,0 @@ -menu; - if (!in_array('AIImage', $event->menu->modules)) { - $menu->add([ - 'category' => 'AI', - 'title' => __('AI'), - 'icon' => 'brand-gitlab', - 'name' => 'ai', - 'parent' => null, - 'order' => 715, - 'ignore_if' => [], - 'depend_on' => [], - 'route' => '', - 'module' => $module, - 'permission' => 'sidebar ai manage' - ]); - - $menu->add([ - 'category' => 'AI', - 'title' => __('History'), - 'icon' => '', - 'name' => 'ai-history', - 'parent' => 'ai', - 'order' => 20, - 'ignore_if' => [], - 'depend_on' => [], - 'route' => '', - 'module' => $module, - 'permission' => null - ]); - } - - $menu->add([ - 'category' => 'AI', - 'title' => __('AI Document'), - 'icon' => '', - 'name' => 'ai-document', - 'parent' => 'ai', - 'order' => 10, - 'ignore_if' => [], - 'depend_on' => [], - 'route' => 'aidocument.index', - 'module' => $module, - 'permission' => 'ai document manage' - ]); - - $menu->add([ - 'category' => 'AI', - 'title' => __('AI Document'), - 'icon' => '', - 'name' => 'history-ai-document', - 'parent' => 'ai-history', - 'order' => 10, - 'ignore_if' => [], - 'depend_on' => [], - 'route' => 'aidocument.document.history', - 'module' => $module, - 'permission' => 'document history manage' - ]); - } -} diff --git a/packages/workdo/AIDocument/src/Providers/AIDocumentServiceProvider.php b/packages/workdo/AIDocument/src/Providers/AIDocumentServiceProvider.php deleted file mode 100755 index 8db656f..0000000 --- a/packages/workdo/AIDocument/src/Providers/AIDocumentServiceProvider.php +++ /dev/null @@ -1,46 +0,0 @@ -app->register(RouteServiceProvider::class); - $this->app->register(EventServiceProvider::class); - } - - public function boot() - { - $this->loadRoutesFrom(__DIR__ . '/../Routes/web.php'); - $this->loadViewsFrom(__DIR__ . '/../Resources/views', 'aidocument'); - $this->loadMigrationsFrom(__DIR__ . '/../Database/Migrations'); - $this->registerTranslations(); - } - - /** - * Register translations. - * - * @return void - */ - public function registerTranslations() - { - $langPath = resource_path('lang/modules/' . $this->moduleNameLower); - - if (is_dir($langPath)) { - $this->loadTranslationsFrom($langPath, $this->moduleNameLower); - $this->loadJsonTranslationsFrom($langPath); - } else { - $this->loadTranslationsFrom(__DIR__.'/../Resources/lang', $this->moduleNameLower); - $this->loadJsonTranslationsFrom(__DIR__.'/../Resources/lang'); - } - } -} \ No newline at end of file diff --git a/packages/workdo/AIDocument/src/Providers/EventServiceProvider.php b/packages/workdo/AIDocument/src/Providers/EventServiceProvider.php deleted file mode 100755 index 2033cf2..0000000 --- a/packages/workdo/AIDocument/src/Providers/EventServiceProvider.php +++ /dev/null @@ -1,33 +0,0 @@ - [ - CompanyMenuListener::class, - ], - ]; - - /** - * Get the listener directories that should be used to discover events. - * - * @return array - */ - protected function discoverEventsWithin() - { - return [ - __DIR__ . '/../Listeners', - ]; - } -} diff --git a/packages/workdo/AIDocument/src/Providers/RouteServiceProvider.php b/packages/workdo/AIDocument/src/Providers/RouteServiceProvider.php deleted file mode 100755 index 76b0c83..0000000 --- a/packages/workdo/AIDocument/src/Providers/RouteServiceProvider.php +++ /dev/null @@ -1,68 +0,0 @@ -mapApiRoutes(); - $this->mapWebRoutes(); - } - - /** - * Define the "web" routes for the application. - * - * These routes all receive session state, CSRF protection, etc. - * - * @return void - */ - protected function mapWebRoutes() - { - Route::middleware('web') - ->namespace($this->moduleNamespace) - ->group(__DIR__ . '/../Routes/web.php'); - } - - /** - * Define the "api" routes for the application. - * - * These routes are typically stateless. - * - * @return void - */ - protected function mapApiRoutes() - { - Route::prefix('api') - ->middleware('api') - ->namespace($this->moduleNamespace) - ->group(__DIR__ . '/../Routes/api.php'); - } -} \ No newline at end of file diff --git a/packages/workdo/AIDocument/src/Resources/assets/js/app.js b/packages/workdo/AIDocument/src/Resources/assets/js/app.js deleted file mode 100755 index e69de29..0000000 diff --git a/packages/workdo/AIDocument/src/Resources/assets/js/custom.js b/packages/workdo/AIDocument/src/Resources/assets/js/custom.js deleted file mode 100755 index a2f56c6..0000000 --- a/packages/workdo/AIDocument/src/Resources/assets/js/custom.js +++ /dev/null @@ -1,87 +0,0 @@ - function nl2br(text) { - return text.replace(/(?:\r\n|\r|\n)/g, '
'); - } - - function exportWordDocrsponse(id) { - var baseUrl =$('#route_url').val(); - var token = $('meta[name="csrf-token"]').attr('content'); - $.ajax({ - url: baseUrl + '/aidocument/exportresponsecontent', - method: "POST", - data: { - "_token": token, - "response_id": id - }, - success: function(data) { - var header = "" + - "Export HTML to Word Document with JavaScript"; - - // Assuming nl2br is a function that converts newlines to
tags - var formatted_text = nl2br(data); - - var footer = ""; - var sourceHTML = header + formatted_text + footer; - - // Create a Blob - var blob = new Blob([sourceHTML], { - type: 'application/msword' - }); - - // Create a download link - var link = document.createElement('a'); - link.href = URL.createObjectURL(blob); - link.download = 'document.doc'; - - // Trigger the download - document.body.appendChild(link); - link.click(); - document.body.removeChild(link); - - toastrs('success', 'Word document was created successfully', 'success'); - } - }); - } - - function exportWordDocallresponse(id) { - var baseUrl =$('#route_url').val(); - var token = $('meta[name="csrf-token"]').attr('content'); - $.ajax({ - url: baseUrl + '/aidocument/exportallresponsecontent', - method: "POST", - data: { - "_token": token, - "history_prompt_id": id - }, - success: function(data) { - var header = "" + - "Export HTML to Word Document with JavaScript"; - - // Assuming nl2br is a function that converts newlines to
tags - var formatted_text = nl2br(data); - - var footer = ""; - var sourceHTML = header + formatted_text + footer; - - // Create a Blob - var blob = new Blob([sourceHTML], { - type: 'application/msword' - }); - - // Create a download link - var link = document.createElement('a'); - link.href = URL.createObjectURL(blob); - link.download = 'document.doc'; - - // Trigger the download - document.body.appendChild(link); - link.click(); - document.body.removeChild(link); - - toastrs('success', 'Word document was created successfully', 'success'); - } - }); - } \ No newline at end of file diff --git a/packages/workdo/AIDocument/src/Resources/assets/js/plugins/pdf/html2canvas.min.js b/packages/workdo/AIDocument/src/Resources/assets/js/plugins/pdf/html2canvas.min.js deleted file mode 100755 index aed6bfd..0000000 --- a/packages/workdo/AIDocument/src/Resources/assets/js/plugins/pdf/html2canvas.min.js +++ /dev/null @@ -1,20 +0,0 @@ -/*! - * html2canvas 1.4.1 - * Copyright (c) 2022 Niklas von Hertzen - * Released under MIT License - */ -!function(A,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(A="undefined"!=typeof globalThis?globalThis:A||self).html2canvas=e()}(this,function(){"use strict"; -/*! ***************************************************************************** - Copyright (c) Microsoft Corporation. - - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR - OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. - ***************************************************************************** */var r=function(A,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(A,e){A.__proto__=e}||function(A,e){for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(A[t]=e[t])})(A,e)};function A(A,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function t(){this.constructor=A}r(A,e),A.prototype=null===e?Object.create(e):(t.prototype=e.prototype,new t)}var h=function(){return(h=Object.assign||function(A){for(var e,t=1,r=arguments.length;ts[0]&&e[1]>10),s%1024+56320)),(B+1===t||16384>5],this.data[e=(e<<2)+(31&A)];if(A<=65535)return e=this.index[2048+(A-55296>>5)],this.data[e=(e<<2)+(31&A)];if(A>11)],e=this.index[e+=A>>5&63],this.data[e=(e<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},l);function l(A,e,t,r,B,n){this.initialValue=A,this.errorValue=e,this.highStart=t,this.highValueIndex=r,this.index=B,this.data=n}for(var C="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",u="undefined"==typeof Uint8Array?[]:new Uint8Array(256),F=0;F>4,i[o++]=(15&t)<<4|r>>2,i[o++]=(3&r)<<6|63&B;return n}(y="KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA=="),L=Array.isArray(m)?function(A){for(var e=A.length,t=[],r=0;r=this._value.length?-1:this._value[A]},XA.prototype.consumeUnicodeRangeToken=function(){for(var A=[],e=this.consumeCodePoint();lA(e)&&A.length<6;)A.push(e),e=this.consumeCodePoint();for(var t=!1;63===e&&A.length<6;)A.push(e),e=this.consumeCodePoint(),t=!0;if(t)return{type:30,start:parseInt(g.apply(void 0,A.map(function(A){return 63===A?48:A})),16),end:parseInt(g.apply(void 0,A.map(function(A){return 63===A?70:A})),16)};var r=parseInt(g.apply(void 0,A),16);if(45===this.peekCodePoint(0)&&lA(this.peekCodePoint(1))){this.consumeCodePoint();for(var e=this.consumeCodePoint(),B=[];lA(e)&&B.length<6;)B.push(e),e=this.consumeCodePoint();return{type:30,start:r,end:parseInt(g.apply(void 0,B),16)}}return{type:30,start:r,end:r}},XA.prototype.consumeIdentLikeToken=function(){var A=this.consumeName();return"url"===A.toLowerCase()&&40===this.peekCodePoint(0)?(this.consumeCodePoint(),this.consumeUrlToken()):40===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:19,value:A}):{type:20,value:A}},XA.prototype.consumeUrlToken=function(){var A=[];if(this.consumeWhiteSpace(),-1===this.peekCodePoint(0))return{type:22,value:""};var e,t=this.peekCodePoint(0);if(39===t||34===t){t=this.consumeStringToken(this.consumeCodePoint());return 0===t.type&&(this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0))?(this.consumeCodePoint(),{type:22,value:t.value}):(this.consumeBadUrlRemnants(),xA)}for(;;){var r=this.consumeCodePoint();if(-1===r||41===r)return{type:22,value:g.apply(void 0,A)};if(CA(r))return this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:22,value:g.apply(void 0,A)}):(this.consumeBadUrlRemnants(),xA);if(34===r||39===r||40===r||(0<=(e=r)&&e<=8||11===e||14<=e&&e<=31||127===e))return this.consumeBadUrlRemnants(),xA;if(92===r){if(!hA(r,this.peekCodePoint(0)))return this.consumeBadUrlRemnants(),xA;A.push(this.consumeEscapedCodePoint())}else A.push(r)}},XA.prototype.consumeWhiteSpace=function(){for(;CA(this.peekCodePoint(0));)this.consumeCodePoint()},XA.prototype.consumeBadUrlRemnants=function(){for(;;){var A=this.consumeCodePoint();if(41===A||-1===A)return;hA(A,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}},XA.prototype.consumeStringSlice=function(A){for(var e="";0>8,r=255&A>>16,A=255&A>>24;return e<255?"rgba("+A+","+r+","+t+","+e/255+")":"rgb("+A+","+r+","+t+")"}function Qe(A,e){if(17===A.type)return A.number;if(16!==A.type)return 0;var t=3===e?1:255;return 3===e?A.number/100*t:Math.round(A.number/100*t)}var ce=function(A,e){return 11===e&&12===A.type||(28===e&&29===A.type||2===e&&3===A.type)},ae={type:17,number:0,flags:4},ge={type:16,number:50,flags:4},we={type:16,number:100,flags:4},Ue=function(A,e){if(16===A.type)return A.number/100*e;if(WA(A))switch(A.unit){case"rem":case"em":return 16*A.number;default:return A.number}return A.number},le=function(A,e){if(15===e.type)switch(e.unit){case"deg":return Math.PI*e.number/180;case"grad":return Math.PI/200*e.number;case"rad":return e.number;case"turn":return 2*Math.PI*e.number}throw new Error("Unsupported angle type")},Ce=function(A){return Math.PI*A/180},ue=function(A,e){if(18===e.type){var t=me[e.name];if(void 0===t)throw new Error('Attempting to parse an unsupported color function "'+e.name+'"');return t(A,e.values)}if(5===e.type){if(3===e.value.length){var r=e.value.substring(0,1),B=e.value.substring(1,2),n=e.value.substring(2,3);return Fe(parseInt(r+r,16),parseInt(B+B,16),parseInt(n+n,16),1)}if(4===e.value.length){var r=e.value.substring(0,1),B=e.value.substring(1,2),n=e.value.substring(2,3),s=e.value.substring(3,4);return Fe(parseInt(r+r,16),parseInt(B+B,16),parseInt(n+n,16),parseInt(s+s,16)/255)}if(6===e.value.length){r=e.value.substring(0,2),B=e.value.substring(2,4),n=e.value.substring(4,6);return Fe(parseInt(r,16),parseInt(B,16),parseInt(n,16),1)}if(8===e.value.length){r=e.value.substring(0,2),B=e.value.substring(2,4),n=e.value.substring(4,6),s=e.value.substring(6,8);return Fe(parseInt(r,16),parseInt(B,16),parseInt(n,16),parseInt(s,16)/255)}}if(20===e.type){e=Le[e.value.toUpperCase()];if(void 0!==e)return e}return Le.TRANSPARENT},Fe=function(A,e,t,r){return(A<<24|e<<16|t<<8|Math.round(255*r)<<0)>>>0},he=function(A,e){e=e.filter($A);if(3===e.length){var t=e.map(Qe),r=t[0],B=t[1],t=t[2];return Fe(r,B,t,1)}if(4!==e.length)return 0;e=e.map(Qe),r=e[0],B=e[1],t=e[2],e=e[3];return Fe(r,B,t,e)};function de(A,e,t){return t<0&&(t+=1),1<=t&&--t,t<1/6?(e-A)*t*6+A:t<.5?e:t<2/3?6*(e-A)*(2/3-t)+A:A}function fe(A,e){return ue(A,JA.create(e).parseComponentValue())}function He(A,e){return A=ue(A,e[0]),(e=e[1])&&te(e)?{color:A,stop:e}:{color:A,stop:null}}function pe(A,t){var e=A[0],r=A[A.length-1];null===e.stop&&(e.stop=ae),null===r.stop&&(r.stop=we);for(var B=[],n=0,s=0;sA.optimumDistance)?{optimumCorner:e,optimumDistance:r}:A},{optimumDistance:s?1/0:-1/0,optimumCorner:null}).optimumCorner}var Ke=function(A,e){var t=e.filter($A),r=t[0],B=t[1],n=t[2],e=t[3],t=(17===r.type?Ce(r.number):le(A,r))/(2*Math.PI),A=te(B)?B.number/100:0,r=te(n)?n.number/100:0,B=void 0!==e&&te(e)?Ue(e,1):1;if(0==A)return Fe(255*r,255*r,255*r,1);n=r<=.5?r*(1+A):r+A-r*A,e=2*r-n,A=de(e,n,t+1/3),r=de(e,n,t),t=de(e,n,t-1/3);return Fe(255*A,255*r,255*t,B)},me={hsl:Ke,hsla:Ke,rgb:he,rgba:he},Le={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},be={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(A){if(_A(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},De={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Ke=function(t,A){var r=Ce(180),B=[];return Ae(A).forEach(function(A,e){if(0===e){e=A[0];if(20===e.type&&-1!==["top","left","right","bottom"].indexOf(e.value))return void(r=se(A));if(ne(e))return void(r=(le(t,e)+Ce(270))%Ce(360))}A=He(t,A);B.push(A)}),{angle:r,stops:B,type:1}},ve="closest-side",xe="farthest-side",Me="closest-corner",Se="farthest-corner",Te="ellipse",Ge="contain",he=function(r,A){var B=0,n=3,s=[],o=[];return Ae(A).forEach(function(A,e){var t=!0;0===e?t=A.reduce(function(A,e){if(_A(e))switch(e.value){case"center":return o.push(ge),!1;case"top":case"left":return o.push(ae),!1;case"right":case"bottom":return o.push(we),!1}else if(te(e)||ee(e))return o.push(e),!1;return A},t):1===e&&(t=A.reduce(function(A,e){if(_A(e))switch(e.value){case"circle":return B=0,!1;case Te:return!(B=1);case Ge:case ve:return n=0,!1;case xe:return!(n=1);case Me:return!(n=2);case"cover":case Se:return!(n=3)}else if(ee(e)||te(e))return(n=!Array.isArray(n)?[]:n).push(e),!1;return A},t)),t&&(A=He(r,A),s.push(A))}),{size:n,shape:B,stops:s,position:o,type:2}},Oe=function(A,e){if(22===e.type){var t={url:e.value,type:0};return A.cache.addImage(e.value),t}if(18!==e.type)throw new Error("Unsupported image type "+e.type);t=ke[e.name];if(void 0===t)throw new Error('Attempting to parse an unsupported image function "'+e.name+'"');return t(A,e.values)};var Ve,ke={"linear-gradient":function(t,A){var r=Ce(180),B=[];return Ae(A).forEach(function(A,e){if(0===e){e=A[0];if(20===e.type&&"to"===e.value)return void(r=se(A));if(ne(e))return void(r=le(t,e))}A=He(t,A);B.push(A)}),{angle:r,stops:B,type:1}},"-moz-linear-gradient":Ke,"-ms-linear-gradient":Ke,"-o-linear-gradient":Ke,"-webkit-linear-gradient":Ke,"radial-gradient":function(B,A){var n=0,s=3,o=[],i=[];return Ae(A).forEach(function(A,e){var t,r=!0;0===e&&(t=!1,r=A.reduce(function(A,e){if(t)if(_A(e))switch(e.value){case"center":return i.push(ge),A;case"top":case"left":return i.push(ae),A;case"right":case"bottom":return i.push(we),A}else(te(e)||ee(e))&&i.push(e);else if(_A(e))switch(e.value){case"circle":return n=0,!1;case Te:return!(n=1);case"at":return!(t=!0);case ve:return s=0,!1;case"cover":case xe:return!(s=1);case Ge:case Me:return!(s=2);case Se:return!(s=3)}else if(ee(e)||te(e))return(s=!Array.isArray(s)?[]:s).push(e),!1;return A},r)),r&&(A=He(B,A),o.push(A))}),{size:s,shape:n,stops:o,position:i,type:2}},"-moz-radial-gradient":he,"-ms-radial-gradient":he,"-o-radial-gradient":he,"-webkit-radial-gradient":he,"-webkit-gradient":function(r,A){var e=Ce(180),B=[],n=1;return Ae(A).forEach(function(A,e){var t,A=A[0];if(0===e){if(_A(A)&&"linear"===A.value)return void(n=1);if(_A(A)&&"radial"===A.value)return void(n=2)}18===A.type&&("from"===A.name?(t=ue(r,A.values[0]),B.push({stop:ae,color:t})):"to"===A.name?(t=ue(r,A.values[0]),B.push({stop:we,color:t})):"color-stop"!==A.name||2===(A=A.values.filter($A)).length&&(t=ue(r,A[1]),A=A[0],ZA(A)&&B.push({stop:{type:16,number:100*A.number,flags:A.flags},color:t})))}),1===n?{angle:(e+Ce(180))%Ce(360),stops:B,type:n}:{size:3,shape:0,stops:B,position:[],type:n}}},Re={name:"background-image",initialValue:"none",type:1,prefix:!1,parse:function(e,A){if(0===A.length)return[];var t=A[0];return 20===t.type&&"none"===t.value?[]:A.filter(function(A){return $A(A)&&!(20===(A=A).type&&"none"===A.value||18===A.type&&!ke[A.name])}).map(function(A){return Oe(e,A)})}},Ne={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(A){if(_A(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},Pe={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(A,e){return Ae(e).map(function(A){return A.filter(te)}).map(re)}},Xe={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(A,e){return Ae(e).map(function(A){return A.filter(_A).map(function(A){return A.value}).join(" ")}).map(Je)}},Je=function(A){switch(A){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;default:return 0}};(he=Ve=Ve||{}).AUTO="auto",he.CONTAIN="contain";function Ye(A,e){return _A(A)&&"normal"===A.value?1.2*e:17===A.type?e*A.number:te(A)?Ue(A,e):e}var We,Ze,_e={name:"background-size",initialValue:"0",prefix:!(he.COVER="cover"),type:1,parse:function(A,e){return Ae(e).map(function(A){return A.filter(qe)})}},qe=function(A){return _A(A)||te(A)},he=function(A){return{name:"border-"+A+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}},je=he("top"),ze=he("right"),$e=he("bottom"),At=he("left"),he=function(A){return{name:"border-radius-"+A,initialValue:"0 0",prefix:!1,type:1,parse:function(A,e){return re(e.filter(te))}}},et=he("top-left"),tt=he("top-right"),rt=he("bottom-right"),Bt=he("bottom-left"),he=function(A){return{name:"border-"+A+"-style",initialValue:"solid",prefix:!1,type:2,parse:function(A,e){switch(e){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}},nt=he("top"),st=he("right"),ot=he("bottom"),it=he("left"),he=function(A){return{name:"border-"+A+"-width",initialValue:"0",type:0,prefix:!1,parse:function(A,e){return WA(e)?e.number:0}}},Qt=he("top"),ct=he("right"),at=he("bottom"),gt=he("left"),wt={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Ut={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(A,e){return"rtl"!==e?0:1}},lt={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(A,e){return e.filter(_A).reduce(function(A,e){return A|Ct(e.value)},0)}},Ct=function(A){switch(A){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},ut={name:"float",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},Ft={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:function(A,e){return!(20===e.type&&"normal"===e.value||17!==e.type&&15!==e.type)?e.number:0}},ht={name:"line-break",initialValue:(he=We=We||{}).NORMAL="normal",prefix:!(he.STRICT="strict"),type:2,parse:function(A,e){return"strict"!==e?We.NORMAL:We.STRICT}},dt={name:"line-height",initialValue:"normal",prefix:!1,type:4},ft={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(A,e){return 20===e.type&&"none"===e.value?null:Oe(A,e)}},Ht={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(A,e){return"inside"!==e?1:0}},pt={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":case"hebrew":return 22;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;default:return-1}}},he=function(A){return{name:"margin-"+A,initialValue:"0",prefix:!1,type:4}},Et=he("top"),It=he("right"),yt=he("bottom"),Kt=he("left"),mt={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(A,e){return e.filter(_A).map(function(A){switch(A.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;default:return 0}})}},Lt={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){return"break-word"!==e?"normal":"break-word"}},he=function(A){return{name:"padding-"+A,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}},bt=he("top"),Dt=he("right"),vt=he("bottom"),xt=he("left"),Mt={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:function(A,e){switch(e){case"right":return 2;case"center":case"justify":return 1;default:return 0}}},St={name:"position",initialValue:"static",prefix:!1,type:2,parse:function(A,e){switch(e){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},Tt={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(n,A){return 1===A.length&&jA(A[0],"none")?[]:Ae(A).map(function(A){for(var e={color:Le.TRANSPARENT,offsetX:ae,offsetY:ae,blur:ae},t=0,r=0;r>5],this.data[e=(e<<2)+(31&A)];if(A<=65535)return e=this.index[2048+(A-55296>>5)],this.data[e=(e<<2)+(31&A)];if(A>11)],e=this.index[e+=A>>5&63],this.data[e=(e<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},pr);function pr(A,e,t,r,B,n){this.initialValue=A,this.errorValue=e,this.highStart=t,this.highValueIndex=r,this.index=B,this.data=n}for(var Er="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Ir="undefined"==typeof Uint8Array?[]:new Uint8Array(256),yr=0;yr>10),s%1024+56320)),(B+1===t||16384>4,i[o++]=(15&t)<<4|r>>2,i[o++]=(3&r)<<6|63&B;return n}(br="AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA="),xr=Array.isArray(vr)?function(A){for(var e=A.length,t=[],r=0;rs.x||t.y>s.y;return s=t,0===e||A});return A.body.removeChild(e),t}(document);return Object.defineProperty(Xr,"SUPPORT_WORD_BREAKING",{value:A}),A},get SUPPORT_SVG_DRAWING(){var A=function(A){var e=new Image,t=A.createElement("canvas"),A=t.getContext("2d");if(!A)return!1;e.src="data:image/svg+xml,";try{A.drawImage(e,0,0),t.toDataURL()}catch(A){return!1}return!0}(document);return Object.defineProperty(Xr,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){var A="function"==typeof Array.from&&"function"==typeof window.fetch?function(t){var A=t.createElement("canvas"),r=100;A.width=r,A.height=r;var B=A.getContext("2d");if(!B)return Promise.reject(!1);B.fillStyle="rgb(0, 255, 0)",B.fillRect(0,0,r,r);var e=new Image,n=A.toDataURL();e.src=n;e=Nr(r,r,0,0,e);return B.fillStyle="red",B.fillRect(0,0,r,r),Pr(e).then(function(A){B.drawImage(A,0,0);var e=B.getImageData(0,0,r,r).data;B.fillStyle="red",B.fillRect(0,0,r,r);A=t.createElement("div");return A.style.backgroundImage="url("+n+")",A.style.height="100px",Lr(e)?Pr(Nr(r,r,0,0,A)):Promise.reject(!1)}).then(function(A){return B.drawImage(A,0,0),Lr(B.getImageData(0,0,r,r).data)}).catch(function(){return!1})}(document):Promise.resolve(!1);return Object.defineProperty(Xr,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){var A=void 0!==(new Image).crossOrigin;return Object.defineProperty(Xr,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){var A="string"==typeof(new XMLHttpRequest).responseType;return Object.defineProperty(Xr,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){var A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(Xr,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var A=!("undefined"==typeof Intl||!Intl.Segmenter);return Object.defineProperty(Xr,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}},Jr=function(A,e){this.text=A,this.bounds=e},Yr=function(A,e){var t=e.ownerDocument;if(t){var r=t.createElement("html2canvaswrapper");r.appendChild(e.cloneNode(!0));t=e.parentNode;if(t){t.replaceChild(r,e);A=f(A,r);return r.firstChild&&t.replaceChild(r.firstChild,r),A}}return d.EMPTY},Wr=function(A,e,t){var r=A.ownerDocument;if(!r)throw new Error("Node has no owner document");r=r.createRange();return r.setStart(A,e),r.setEnd(A,e+t),r},Zr=function(A){if(Xr.SUPPORT_NATIVE_TEXT_SEGMENTATION){var e=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(e.segment(A)).map(function(A){return A.segment})}return function(A){for(var e,t=mr(A),r=[];!(e=t.next()).done;)e.value&&r.push(e.value.slice());return r}(A)},_r=function(A,e){return 0!==e.letterSpacing?Zr(A):function(A,e){if(Xr.SUPPORT_NATIVE_TEXT_SEGMENTATION){var t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(A)).map(function(A){return A.segment})}return jr(A,e)}(A,e)},qr=[32,160,4961,65792,65793,4153,4241],jr=function(A,e){for(var t,r=wA(A,{lineBreak:e.lineBreak,wordBreak:"break-word"===e.overflowWrap?"break-word":e.wordBreak}),B=[];!(t=r.next()).done;)!function(){var A,e;t.value&&(A=t.value.slice(),A=Q(A),e="",A.forEach(function(A){-1===qr.indexOf(A)?e+=g(A):(e.length&&B.push(e),B.push(g(A)),e="")}),e.length&&B.push(e))}();return B},zr=function(A,e,t){var B,n,s,o,i;this.text=$r(e.data,t.textTransform),this.textBounds=(B=A,A=this.text,s=e,A=_r(A,n=t),o=[],i=0,A.forEach(function(A){var e,t,r;n.textDecorationLine.length||0e.height?new d(e.left+(e.width-e.height)/2,e.top,e.height,e.height):e.width"),Ln(this.referenceElement.ownerDocument,t,n),o.replaceChild(o.adoptNode(this.documentElement),o.documentElement),o.close(),A},fn.prototype.createElementClone=function(A){if(Cr(A,2),zB(A))return this.createCanvasClone(A);if(MB(A))return this.createVideoClone(A);if(SB(A))return this.createStyleClone(A);var e=A.cloneNode(!1);return $B(e)&&($B(A)&&A.currentSrc&&A.currentSrc!==A.src&&(e.src=A.currentSrc,e.srcset=""),"lazy"===e.loading&&(e.loading="eager")),TB(e)?this.createCustomElementClone(e):e},fn.prototype.createCustomElementClone=function(A){var e=document.createElement("html2canvascustomelement");return Kn(A.style,e),e},fn.prototype.createStyleClone=function(A){try{var e=A.sheet;if(e&&e.cssRules){var t=[].slice.call(e.cssRules,0).reduce(function(A,e){return e&&"string"==typeof e.cssText?A+e.cssText:A},""),r=A.cloneNode(!1);return r.textContent=t,r}}catch(A){if(this.context.logger.error("Unable to access cssRules property",A),"SecurityError"!==A.name)throw A}return A.cloneNode(!1)},fn.prototype.createCanvasClone=function(e){var A;if(this.options.inlineImages&&e.ownerDocument){var t=e.ownerDocument.createElement("img");try{return t.src=e.toDataURL(),t}catch(A){this.context.logger.info("Unable to inline canvas contents, canvas is tainted",e)}}t=e.cloneNode(!1);try{t.width=e.width,t.height=e.height;var r,B,n=e.getContext("2d"),s=t.getContext("2d");return s&&(!this.options.allowTaint&&n?s.putImageData(n.getImageData(0,0,e.width,e.height),0,0):(!(r=null!==(A=e.getContext("webgl2"))&&void 0!==A?A:e.getContext("webgl"))||!1===(null==(B=r.getContextAttributes())?void 0:B.preserveDrawingBuffer)&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",e),s.drawImage(e,0,0))),t}catch(A){this.context.logger.info("Unable to clone canvas as it is tainted",e)}return t},fn.prototype.createVideoClone=function(e){var A=e.ownerDocument.createElement("canvas");A.width=e.offsetWidth,A.height=e.offsetHeight;var t=A.getContext("2d");try{return t&&(t.drawImage(e,0,0,A.width,A.height),this.options.allowTaint||t.getImageData(0,0,A.width,A.height)),A}catch(A){this.context.logger.info("Unable to clone video as it is tainted",e)}A=e.ownerDocument.createElement("canvas");return A.width=e.offsetWidth,A.height=e.offsetHeight,A},fn.prototype.appendChildNode=function(A,e,t){XB(e)&&("SCRIPT"===e.tagName||e.hasAttribute(hn)||"function"==typeof this.options.ignoreElements&&this.options.ignoreElements(e))||this.options.copyStyles&&XB(e)&&SB(e)||A.appendChild(this.cloneNode(e,t))},fn.prototype.cloneChildNodes=function(A,e,t){for(var r,B=this,n=(A.shadowRoot||A).firstChild;n;n=n.nextSibling)XB(n)&&rn(n)&&"function"==typeof n.assignedNodes?(r=n.assignedNodes()).length&&r.forEach(function(A){return B.appendChildNode(e,A,t)}):this.appendChildNode(e,n,t)},fn.prototype.cloneNode=function(A,e){if(PB(A))return document.createTextNode(A.data);if(!A.ownerDocument)return A.cloneNode(!1);var t=A.ownerDocument.defaultView;if(t&&XB(A)&&(JB(A)||YB(A))){var r=this.createElementClone(A);r.style.transitionProperty="none";var B=t.getComputedStyle(A),n=t.getComputedStyle(A,":before"),s=t.getComputedStyle(A,":after");this.referenceElement===A&&JB(r)&&(this.clonedReferenceElement=r),jB(r)&&Mn(r);t=this.counters.parse(new Ur(this.context,B)),n=this.resolvePseudoContent(A,r,n,gn.BEFORE);TB(A)&&(e=!0),MB(A)||this.cloneChildNodes(A,r,e),n&&r.insertBefore(n,r.firstChild);s=this.resolvePseudoContent(A,r,s,gn.AFTER);return s&&r.appendChild(s),this.counters.pop(t),(B&&(this.options.copyStyles||YB(A))&&!An(A)||e)&&Kn(B,r),0===A.scrollTop&&0===A.scrollLeft||this.scrolledElements.push([r,A.scrollLeft,A.scrollTop]),(en(A)||tn(A))&&(en(r)||tn(r))&&(r.value=A.value),r}return A.cloneNode(!1)},fn.prototype.resolvePseudoContent=function(o,A,e,t){var i=this;if(e){var r=e.content,Q=A.ownerDocument;if(Q&&r&&"none"!==r&&"-moz-alt-content"!==r&&"none"!==e.display){this.counters.parse(new Ur(this.context,e));var c=new wr(this.context,e),a=Q.createElement("html2canvaspseudoelement");Kn(e,a),c.content.forEach(function(A){if(0===A.type)a.appendChild(Q.createTextNode(A.value));else if(22===A.type){var e=Q.createElement("img");e.src=A.value,e.style.opacity="1",a.appendChild(e)}else if(18===A.type){var t,r,B,n,s;"attr"===A.name?(e=A.values.filter(_A)).length&&a.appendChild(Q.createTextNode(o.getAttribute(e[0].value)||"")):"counter"===A.name?(B=(r=A.values.filter($A))[0],r=r[1],B&&_A(B)&&(t=i.counters.getCounterValue(B.value),s=r&&_A(r)?pt.parse(i.context,r.value):3,a.appendChild(Q.createTextNode(Fn(t,s,!1))))):"counters"===A.name&&(B=(t=A.values.filter($A))[0],s=t[1],r=t[2],B&&_A(B)&&(B=i.counters.getCounterValues(B.value),n=r&&_A(r)?pt.parse(i.context,r.value):3,s=s&&0===s.type?s.value:"",s=B.map(function(A){return Fn(A,n,!1)}).join(s),a.appendChild(Q.createTextNode(s))))}else if(20===A.type)switch(A.value){case"open-quote":a.appendChild(Q.createTextNode(Xt(c.quotes,i.quoteDepth++,!0)));break;case"close-quote":a.appendChild(Q.createTextNode(Xt(c.quotes,--i.quoteDepth,!1)));break;default:a.appendChild(Q.createTextNode(A.value))}}),a.className=Dn+" "+vn;t=t===gn.BEFORE?" "+Dn:" "+vn;return YB(A)?A.className.baseValue+=t:A.className+=t,a}}},fn.destroy=function(A){return!!A.parentNode&&(A.parentNode.removeChild(A),!0)},fn);function fn(A,e,t){if(this.context=A,this.options=t,this.scrolledElements=[],this.referenceElement=e,this.counters=new Bn,this.quoteDepth=0,!e.ownerDocument)throw new Error("Cloned element does not have an owner document");this.documentElement=this.cloneNode(e.ownerDocument.documentElement,!1)}(he=gn=gn||{})[he.BEFORE=0]="BEFORE",he[he.AFTER=1]="AFTER";function Hn(e){return new Promise(function(A){!e.complete&&e.src?(e.onload=A,e.onerror=A):A()})}var pn=function(A,e){var t=A.createElement("iframe");return t.className="html2canvas-container",t.style.visibility="hidden",t.style.position="fixed",t.style.left="-10000px",t.style.top="0px",t.style.border="0",t.width=e.width.toString(),t.height=e.height.toString(),t.scrolling="no",t.setAttribute(hn,"true"),A.body.appendChild(t),t},En=function(A){return Promise.all([].slice.call(A.images,0).map(Hn))},In=function(B){return new Promise(function(e,A){var t=B.contentWindow;if(!t)return A("No window assigned for iframe");var r=t.document;t.onload=B.onload=function(){t.onload=B.onload=null;var A=setInterval(function(){0"),e},Ln=function(A,e,t){A&&A.defaultView&&(e!==A.defaultView.pageXOffset||t!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(e,t)},bn=function(A){var e=A[0],t=A[1],A=A[2];e.scrollLeft=t,e.scrollTop=A},Dn="___html2canvas___pseudoelement_before",vn="___html2canvas___pseudoelement_after",xn='{\n content: "" !important;\n display: none !important;\n}',Mn=function(A){Sn(A,"."+Dn+":before"+xn+"\n ."+vn+":after"+xn)},Sn=function(A,e){var t=A.ownerDocument;t&&((t=t.createElement("style")).textContent=e,A.appendChild(t))},Tn=(Gn.getOrigin=function(A){var e=Gn._link;return e?(e.href=A,e.href=e.href,e.protocol+e.hostname+e.port):"about:blank"},Gn.isSameOrigin=function(A){return Gn.getOrigin(A)===Gn._origin},Gn.setContext=function(A){Gn._link=A.document.createElement("a"),Gn._origin=Gn.getOrigin(A.location.href)},Gn._origin="about:blank",Gn);function Gn(){}var On=(Vn.prototype.addImage=function(A){var e=Promise.resolve();return this.has(A)||(Yn(A)||Pn(A))&&(this._cache[A]=this.loadImage(A)).catch(function(){}),e},Vn.prototype.match=function(A){return this._cache[A]},Vn.prototype.loadImage=function(s){return a(this,void 0,void 0,function(){var e,r,t,B,n=this;return H(this,function(A){switch(A.label){case 0:return(e=Tn.isSameOrigin(s),r=!Xn(s)&&!0===this._options.useCORS&&Xr.SUPPORT_CORS_IMAGES&&!e,t=!Xn(s)&&!e&&!Yn(s)&&"string"==typeof this._options.proxy&&Xr.SUPPORT_CORS_XHR&&!r,e||!1!==this._options.allowTaint||Xn(s)||Yn(s)||t||r)?(B=s,t?[4,this.proxy(B)]:[3,2]):[2];case 1:B=A.sent(),A.label=2;case 2:return this.context.logger.debug("Added image "+s.substring(0,256)),[4,new Promise(function(A,e){var t=new Image;t.onload=function(){return A(t)},t.onerror=e,(Jn(B)||r)&&(t.crossOrigin="anonymous"),t.src=B,!0===t.complete&&setTimeout(function(){return A(t)},500),0t.width+C?0:Math.max(0,n-C),Math.max(0,s-l),As.TOP_RIGHT):new Zn(t.left+t.width-C,t.top+l),this.bottomRightPaddingBox=0t.width+F+A?0:n-F+A,s-(l+h),As.TOP_RIGHT):new Zn(t.left+t.width-(C+d),t.top+l+h),this.bottomRightContentBox=0A.element.container.styles.zIndex.order?(s=e,!1):0=A.element.container.styles.zIndex.order?(o=e+1,!1):0, https://github.com/MrRio/jsPDF - * 2015-2021 yWorks GmbH, http://www.yworks.com - * 2015-2021 Lukas Holländer , https://github.com/HackbrettXXX - * 2016-2018 Aras Abbasi - * 2010 Aaron Spike, https://github.com/acspike - * 2012 Willow Systems Corporation, https://github.com/willowsystems - * 2012 Pablo Hess, https://github.com/pablohess - * 2012 Florian Jenett, https://github.com/fjenett - * 2013 Warren Weckesser, https://github.com/warrenweckesser - * 2013 Youssef Beddad, https://github.com/lifof - * 2013 Lee Driscoll, https://github.com/lsdriscoll - * 2013 Stefan Slonevskiy, https://github.com/stefslon - * 2013 Jeremy Morel, https://github.com/jmorel - * 2013 Christoph Hartmann, https://github.com/chris-rock - * 2014 Juan Pablo Gaviria, https://github.com/juanpgaviria - * 2014 James Makes, https://github.com/dollaruw - * 2014 Diego Casorran, https://github.com/diegocr - * 2014 Steven Spungin, https://github.com/Flamenco - * 2014 Kenneth Glassey, https://github.com/Gavvers - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Contributor(s): - * siefkenj, ahwolf, rickygu, Midnith, saintclair, eaparango, - * kim3er, mfo, alnorth, Flamenco - */ - -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t=t||self).jspdf={})}(this,(function(t){"use strict";function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var r=function(){return"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this}();function n(){r.console&&"function"==typeof r.console.log&&r.console.log.apply(r.console,arguments)}var i={log:n,warn:function(t){r.console&&("function"==typeof r.console.warn?r.console.warn.apply(r.console,arguments):n.call(null,arguments))},error:function(t){r.console&&("function"==typeof r.console.error?r.console.error.apply(r.console,arguments):n(t))}};function a(t,e,r){var n=new XMLHttpRequest;n.open("GET",t),n.responseType="blob",n.onload=function(){l(n.response,e,r)},n.onerror=function(){i.error("could not download file")},n.send()}function o(t){var e=new XMLHttpRequest;e.open("HEAD",t,!1);try{e.send()}catch(t){}return e.status>=200&&e.status<=299}function s(t){try{t.dispatchEvent(new MouseEvent("click"))}catch(r){var e=document.createEvent("MouseEvents");e.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),t.dispatchEvent(e)}}var c,u,l=r.saveAs||("object"!==("undefined"==typeof window?"undefined":e(window))||window!==r?function(){}:"undefined"!=typeof HTMLAnchorElement&&"download"in HTMLAnchorElement.prototype?function(t,e,n){var i=r.URL||r.webkitURL,c=document.createElement("a");e=e||t.name||"download",c.download=e,c.rel="noopener","string"==typeof t?(c.href=t,c.origin!==location.origin?o(c.href)?a(t,e,n):s(c,c.target="_blank"):s(c)):(c.href=i.createObjectURL(t),setTimeout((function(){i.revokeObjectURL(c.href)}),4e4),setTimeout((function(){s(c)}),0))}:"msSaveOrOpenBlob"in navigator?function(t,r,n){if(r=r||t.name||"download","string"==typeof t)if(o(t))a(t,r,n);else{var c=document.createElement("a");c.href=t,c.target="_blank",setTimeout((function(){s(c)}))}else navigator.msSaveOrOpenBlob(function(t,r){return void 0===r?r={autoBom:!1}:"object"!==e(r)&&(i.warn("Deprecated: Expected third argument to be a object"),r={autoBom:!r}),r.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(t.type)?new Blob([String.fromCharCode(65279),t],{type:t.type}):t}(t,n),r)}:function(t,n,i,o){if((o=o||open("","_blank"))&&(o.document.title=o.document.body.innerText="downloading..."),"string"==typeof t)return a(t,n,i);var s="application/octet-stream"===t.type,c=/constructor/i.test(r.HTMLElement)||r.safari,u=/CriOS\/[\d]+/.test(navigator.userAgent);if((u||s&&c)&&"object"===("undefined"==typeof FileReader?"undefined":e(FileReader))){var l=new FileReader;l.onloadend=function(){var t=l.result;t=u?t:t.replace(/^data:[^;]*;/,"data:attachment/file;"),o?o.location.href=t:location=t,o=null},l.readAsDataURL(t)}else{var h=r.URL||r.webkitURL,f=h.createObjectURL(t);o?o.location=f:location.href=f,o=null,setTimeout((function(){h.revokeObjectURL(f)}),4e4)}}); -/** - * A class to parse color values - * @author Stoyan Stefanov - * {@link http://www.phpied.com/rgb-color-parser-in-javascript/} - * @license Use it if you like it - */function h(t){var e;t=t||"",this.ok=!1,"#"==t.charAt(0)&&(t=t.substr(1,6));t={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dodgerblue:"1e90ff",feldspar:"d19275",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgrey:"d3d3d3",lightgreen:"90ee90",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslateblue:"8470ff",lightslategray:"778899",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"00ff00",limegreen:"32cd32",linen:"faf0e6",magenta:"ff00ff",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370d8",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"d87093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",red:"ff0000",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",violetred:"d02090",wheat:"f5deb3",white:"ffffff",whitesmoke:"f5f5f5",yellow:"ffff00",yellowgreen:"9acd32"}[t=(t=t.replace(/ /g,"")).toLowerCase()]||t;for(var r=[{re:/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/,example:["rgb(123, 234, 45)","rgb(255,234,245)"],process:function(t){return[parseInt(t[1]),parseInt(t[2]),parseInt(t[3])]}},{re:/^(\w{2})(\w{2})(\w{2})$/,example:["#00ff00","336699"],process:function(t){return[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16)]}},{re:/^(\w{1})(\w{1})(\w{1})$/,example:["#fb0","f0f"],process:function(t){return[parseInt(t[1]+t[1],16),parseInt(t[2]+t[2],16),parseInt(t[3]+t[3],16)]}}],n=0;n255?255:this.r,this.g=this.g<0||isNaN(this.g)?0:this.g>255?255:this.g,this.b=this.b<0||isNaN(this.b)?0:this.b>255?255:this.b,this.toRGB=function(){return"rgb("+this.r+", "+this.g+", "+this.b+")"},this.toHex=function(){var t=this.r.toString(16),e=this.g.toString(16),r=this.b.toString(16);return 1==t.length&&(t="0"+t),1==e.length&&(e="0"+e),1==r.length&&(r="0"+r),"#"+t+e+r}} -/** - * @license - * Joseph Myers does not specify a particular license for his work. - * - * Author: Joseph Myers - * Accessed from: http://www.myersdaily.org/joseph/javascript/md5.js - * - * Modified by: Owen Leong - */ -function f(t,e){var r=t[0],n=t[1],i=t[2],a=t[3];r=p(r,n,i,a,e[0],7,-680876936),a=p(a,r,n,i,e[1],12,-389564586),i=p(i,a,r,n,e[2],17,606105819),n=p(n,i,a,r,e[3],22,-1044525330),r=p(r,n,i,a,e[4],7,-176418897),a=p(a,r,n,i,e[5],12,1200080426),i=p(i,a,r,n,e[6],17,-1473231341),n=p(n,i,a,r,e[7],22,-45705983),r=p(r,n,i,a,e[8],7,1770035416),a=p(a,r,n,i,e[9],12,-1958414417),i=p(i,a,r,n,e[10],17,-42063),n=p(n,i,a,r,e[11],22,-1990404162),r=p(r,n,i,a,e[12],7,1804603682),a=p(a,r,n,i,e[13],12,-40341101),i=p(i,a,r,n,e[14],17,-1502002290),r=g(r,n=p(n,i,a,r,e[15],22,1236535329),i,a,e[1],5,-165796510),a=g(a,r,n,i,e[6],9,-1069501632),i=g(i,a,r,n,e[11],14,643717713),n=g(n,i,a,r,e[0],20,-373897302),r=g(r,n,i,a,e[5],5,-701558691),a=g(a,r,n,i,e[10],9,38016083),i=g(i,a,r,n,e[15],14,-660478335),n=g(n,i,a,r,e[4],20,-405537848),r=g(r,n,i,a,e[9],5,568446438),a=g(a,r,n,i,e[14],9,-1019803690),i=g(i,a,r,n,e[3],14,-187363961),n=g(n,i,a,r,e[8],20,1163531501),r=g(r,n,i,a,e[13],5,-1444681467),a=g(a,r,n,i,e[2],9,-51403784),i=g(i,a,r,n,e[7],14,1735328473),r=m(r,n=g(n,i,a,r,e[12],20,-1926607734),i,a,e[5],4,-378558),a=m(a,r,n,i,e[8],11,-2022574463),i=m(i,a,r,n,e[11],16,1839030562),n=m(n,i,a,r,e[14],23,-35309556),r=m(r,n,i,a,e[1],4,-1530992060),a=m(a,r,n,i,e[4],11,1272893353),i=m(i,a,r,n,e[7],16,-155497632),n=m(n,i,a,r,e[10],23,-1094730640),r=m(r,n,i,a,e[13],4,681279174),a=m(a,r,n,i,e[0],11,-358537222),i=m(i,a,r,n,e[3],16,-722521979),n=m(n,i,a,r,e[6],23,76029189),r=m(r,n,i,a,e[9],4,-640364487),a=m(a,r,n,i,e[12],11,-421815835),i=m(i,a,r,n,e[15],16,530742520),r=v(r,n=m(n,i,a,r,e[2],23,-995338651),i,a,e[0],6,-198630844),a=v(a,r,n,i,e[7],10,1126891415),i=v(i,a,r,n,e[14],15,-1416354905),n=v(n,i,a,r,e[5],21,-57434055),r=v(r,n,i,a,e[12],6,1700485571),a=v(a,r,n,i,e[3],10,-1894986606),i=v(i,a,r,n,e[10],15,-1051523),n=v(n,i,a,r,e[1],21,-2054922799),r=v(r,n,i,a,e[8],6,1873313359),a=v(a,r,n,i,e[15],10,-30611744),i=v(i,a,r,n,e[6],15,-1560198380),n=v(n,i,a,r,e[13],21,1309151649),r=v(r,n,i,a,e[4],6,-145523070),a=v(a,r,n,i,e[11],10,-1120210379),i=v(i,a,r,n,e[2],15,718787259),n=v(n,i,a,r,e[9],21,-343485551),t[0]=S(r,t[0]),t[1]=S(n,t[1]),t[2]=S(i,t[2]),t[3]=S(a,t[3])}function d(t,e,r,n,i,a){return e=S(S(e,t),S(n,a)),S(e<>>32-i,r)}function p(t,e,r,n,i,a,o){return d(e&r|~e&n,t,e,i,a,o)}function g(t,e,r,n,i,a,o){return d(e&n|r&~n,t,e,i,a,o)}function m(t,e,r,n,i,a,o){return d(e^r^n,t,e,i,a,o)}function v(t,e,r,n,i,a,o){return d(r^(e|~n),t,e,i,a,o)}function b(t){var e,r=t.length,n=[1732584193,-271733879,-1732584194,271733878];for(e=64;e<=t.length;e+=64)f(n,y(t.substring(e-64,e)));t=t.substring(e-64);var i=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];for(e=0;e>2]|=t.charCodeAt(e)<<(e%4<<3);if(i[e>>2]|=128<<(e%4<<3),e>55)for(f(n,i),e=0;e<16;e++)i[e]=0;return i[14]=8*r,f(n,i),n}function y(t){var e,r=[];for(e=0;e<64;e+=4)r[e>>2]=t.charCodeAt(e)+(t.charCodeAt(e+1)<<8)+(t.charCodeAt(e+2)<<16)+(t.charCodeAt(e+3)<<24);return r}c=r.atob.bind(r),u=r.btoa.bind(r);var w="0123456789abcdef".split("");function N(t){for(var e="",r=0;r<4;r++)e+=w[t>>8*r+4&15]+w[t>>8*r&15];return e}function L(t){return String.fromCharCode((255&t)>>0,(65280&t)>>8,(16711680&t)>>16,(4278190080&t)>>24)}function A(t){return function(t){return t.map(L).join("")}(b(t))}var x="5d41402abc4b2a76b9719d911017c592"!=function(t){for(var e=0;e>16)+(e>>16)+(r>>16)<<16|65535&r}return t+e&4294967295} -/** - * @license - * FPDF is released under a permissive license: there is no usage restriction. - * You may embed it freely in your application (commercial or not), with or - * without modifications. - * - * Reference: http://www.fpdf.org/en/script/script37.php - */function _(t,e){var r,n,i,a;if(t!==r){for(var o=(i=t,a=1+(256/t.length>>0),new Array(a+1).join(i)),s=[],c=0;c<256;c++)s[c]=c;var u=0;for(c=0;c<256;c++){var l=s[c];u=(u+l+o.charCodeAt(c))%256,s[c]=s[u],s[u]=l}r=t,n=s}else s=n;var h=e.length,f=0,d=0,p="";for(c=0;c€/\f©þdSiz";var a=(e+this.padding).substr(0,32),o=(r+this.padding).substr(0,32);this.O=this.processOwnerPassword(a,o),this.P=-(1+(255^i)),this.encryptionKey=A(a+this.O+this.lsbFirstWord(this.P)+this.hexToBytes(n)).substr(0,5),this.U=_(this.encryptionKey,this.padding)}function F(t){if(/[^\u0000-\u00ff]/.test(t))throw new Error("Invalid PDF Name Object: "+t+", Only accept ASCII characters.");for(var e="",r=t.length,n=0;n126)e+="#"+("0"+i.toString(16)).slice(-2);else e+=t[n]}return e}function I(t){if("object"!==e(t))throw new Error("Invalid Context passed to initialize PubSub (jsPDF-module)");var n={};this.subscribe=function(t,e,r){if(r=r||!1,"string"!=typeof t||"function"!=typeof e||"boolean"!=typeof r)throw new Error("Invalid arguments passed to PubSub.subscribe (jsPDF-module)");n.hasOwnProperty(t)||(n[t]={});var i=Math.random().toString(35);return n[t][i]=[e,!!r],i},this.unsubscribe=function(t){for(var e in n)if(n[e][t])return delete n[e][t],0===Object.keys(n[e]).length&&delete n[e],!0;return!1},this.publish=function(e){if(n.hasOwnProperty(e)){var a=Array.prototype.slice.call(arguments,1),o=[];for(var s in n[e]){var c=n[e][s];try{c[0].apply(t,a)}catch(t){r.console&&i.error("jsPDF PubSub Error",t.message,t)}c[1]&&o.push(s)}o.length&&o.forEach(this.unsubscribe)}},this.getTopics=function(){return n}}function C(t){if(!(this instanceof C))return new C(t);var e="opacity,stroke-opacity".split(",");for(var r in t)t.hasOwnProperty(r)&&e.indexOf(r)>=0&&(this[r]=t[r]);this.id="",this.objectNumber=-1}function j(t,e){this.gState=t,this.matrix=e,this.id="",this.objectNumber=-1}function O(t,e,r,n,i){if(!(this instanceof O))return new O(t,e,r,n,i);this.type="axial"===t?2:3,this.coords=e,this.colors=r,j.call(this,n,i)}function B(t,e,r,n,i){if(!(this instanceof B))return new B(t,e,r,n,i);this.boundingBox=t,this.xStep=e,this.yStep=r,this.stream="",this.cloneIndex=0,j.call(this,n,i)}function M(t){var n,a="string"==typeof arguments[0]?arguments[0]:"p",o=arguments[1],s=arguments[2],c=arguments[3],f=[],d=1,p=16,g="S",m=null;"object"===e(t=t||{})&&(a=t.orientation,o=t.unit||o,s=t.format||s,c=t.compress||t.compressPdf||c,null!==(m=t.encryption||null)&&(m.userPassword=m.userPassword||"",m.ownerPassword=m.ownerPassword||"",m.userPermissions=m.userPermissions||[]),d="number"==typeof t.userUnit?Math.abs(t.userUnit):1,void 0!==t.precision&&(n=t.precision),void 0!==t.floatPrecision&&(p=t.floatPrecision),g=t.defaultPathOperation||"S"),f=t.filters||(!0===c?["FlateEncode"]:f),o=o||"mm",a=(""+(a||"P")).toLowerCase();var v=t.putOnlyUsedFonts||!1,b={},y={internal:{},__private__:{}};y.__private__.PubSub=I;var w="1.3",N=y.__private__.getPdfVersion=function(){return w};y.__private__.setPdfVersion=function(t){w=t};var L={a0:[2383.94,3370.39],a1:[1683.78,2383.94],a2:[1190.55,1683.78],a3:[841.89,1190.55],a4:[595.28,841.89],a5:[419.53,595.28],a6:[297.64,419.53],a7:[209.76,297.64],a8:[147.4,209.76],a9:[104.88,147.4],a10:[73.7,104.88],b0:[2834.65,4008.19],b1:[2004.09,2834.65],b2:[1417.32,2004.09],b3:[1000.63,1417.32],b4:[708.66,1000.63],b5:[498.9,708.66],b6:[354.33,498.9],b7:[249.45,354.33],b8:[175.75,249.45],b9:[124.72,175.75],b10:[87.87,124.72],c0:[2599.37,3676.54],c1:[1836.85,2599.37],c2:[1298.27,1836.85],c3:[918.43,1298.27],c4:[649.13,918.43],c5:[459.21,649.13],c6:[323.15,459.21],c7:[229.61,323.15],c8:[161.57,229.61],c9:[113.39,161.57],c10:[79.37,113.39],dl:[311.81,623.62],letter:[612,792],"government-letter":[576,756],legal:[612,1008],"junior-legal":[576,360],ledger:[1224,792],tabloid:[792,1224],"credit-card":[153,243]};y.__private__.getPageFormats=function(){return L};var A=y.__private__.getPageFormat=function(t){return L[t]};s=s||"a4";var x={COMPAT:"compat",ADVANCED:"advanced"},S=x.COMPAT;function _(){this.saveGraphicsState(),ht(new Vt(_t,0,0,-_t,0,Rr()*_t).toString()+" cm"),this.setFontSize(this.getFontSize()/_t),g="n",S=x.ADVANCED}function P(){this.restoreGraphicsState(),g="S",S=x.COMPAT}var j=y.__private__.combineFontStyleAndFontWeight=function(t,e){if("bold"==t&&"normal"==e||"bold"==t&&400==e||"normal"==t&&"italic"==e||"bold"==t&&"italic"==e)throw new Error("Invalid Combination of fontweight and fontstyle");return e&&(t=400==e||"normal"===e?"italic"===t?"italic":"normal":700!=e&&"bold"!==e||"normal"!==t?(700==e?"bold":e)+""+t:"bold"),t};y.advancedAPI=function(t){var e=S===x.COMPAT;return e&&_.call(this),"function"!=typeof t||(t(this),e&&P.call(this)),this},y.compatAPI=function(t){var e=S===x.ADVANCED;return e&&P.call(this),"function"!=typeof t||(t(this),e&&_.call(this)),this},y.isAdvancedAPI=function(){return S===x.ADVANCED};var E,q=function(t){if(S!==x.ADVANCED)throw new Error(t+" is only available in 'advanced' API mode. You need to call advancedAPI() first.")},D=y.roundToPrecision=y.__private__.roundToPrecision=function(t,e){var r=n||e;if(isNaN(t)||isNaN(r))throw new Error("Invalid argument passed to jsPDF.roundToPrecision");return t.toFixed(r).replace(/0+$/,"")};E=y.hpf=y.__private__.hpf="number"==typeof p?function(t){if(isNaN(t))throw new Error("Invalid argument passed to jsPDF.hpf");return D(t,p)}:"smart"===p?function(t){if(isNaN(t))throw new Error("Invalid argument passed to jsPDF.hpf");return D(t,t>-1&&t<1?16:5)}:function(t){if(isNaN(t))throw new Error("Invalid argument passed to jsPDF.hpf");return D(t,16)};var R=y.f2=y.__private__.f2=function(t){if(isNaN(t))throw new Error("Invalid argument passed to jsPDF.f2");return D(t,2)},T=y.__private__.f3=function(t){if(isNaN(t))throw new Error("Invalid argument passed to jsPDF.f3");return D(t,3)},U=y.scale=y.__private__.scale=function(t){if(isNaN(t))throw new Error("Invalid argument passed to jsPDF.scale");return S===x.COMPAT?t*_t:S===x.ADVANCED?t:void 0},z=function(t){return S===x.COMPAT?Rr()-t:S===x.ADVANCED?t:void 0},H=function(t){return U(z(t))};y.__private__.setPrecision=y.setPrecision=function(t){"number"==typeof parseInt(t,10)&&(n=parseInt(t,10))};var W,V="00000000000000000000000000000000",G=y.__private__.getFileId=function(){return V},Y=y.__private__.setFileId=function(t){return V=void 0!==t&&/^[a-fA-F0-9]{32}$/.test(t)?t.toUpperCase():V.split("").map((function(){return"ABCDEF0123456789".charAt(Math.floor(16*Math.random()))})).join(""),null!==m&&(Ye=new k(m.userPermissions,m.userPassword,m.ownerPassword,V)),V};y.setFileId=function(t){return Y(t),this},y.getFileId=function(){return G()};var J=y.__private__.convertDateToPDFDate=function(t){var e=t.getTimezoneOffset(),r=e<0?"+":"-",n=Math.floor(Math.abs(e/60)),i=Math.abs(e%60),a=[r,Q(n),"'",Q(i),"'"].join("");return["D:",t.getFullYear(),Q(t.getMonth()+1),Q(t.getDate()),Q(t.getHours()),Q(t.getMinutes()),Q(t.getSeconds()),a].join("")},X=y.__private__.convertPDFDateToDate=function(t){var e=parseInt(t.substr(2,4),10),r=parseInt(t.substr(6,2),10)-1,n=parseInt(t.substr(8,2),10),i=parseInt(t.substr(10,2),10),a=parseInt(t.substr(12,2),10),o=parseInt(t.substr(14,2),10);return new Date(e,r,n,i,a,o,0)},K=y.__private__.setCreationDate=function(t){var e;if(void 0===t&&(t=new Date),t instanceof Date)e=J(t);else{if(!/^D:(20[0-2][0-9]|203[0-7]|19[7-9][0-9])(0[0-9]|1[0-2])([0-2][0-9]|3[0-1])(0[0-9]|1[0-9]|2[0-3])(0[0-9]|[1-5][0-9])(0[0-9]|[1-5][0-9])(\+0[0-9]|\+1[0-4]|-0[0-9]|-1[0-1])'(0[0-9]|[1-5][0-9])'?$/.test(t))throw new Error("Invalid argument passed to jsPDF.setCreationDate");e=t}return W=e},Z=y.__private__.getCreationDate=function(t){var e=W;return"jsDate"===t&&(e=X(W)),e};y.setCreationDate=function(t){return K(t),this},y.getCreationDate=function(t){return Z(t)};var $,Q=y.__private__.padd2=function(t){return("0"+parseInt(t)).slice(-2)},tt=y.__private__.padd2Hex=function(t){return("00"+(t=t.toString())).substr(t.length)},et=0,rt=[],nt=[],it=0,at=[],ot=[],st=!1,ct=nt,ut=function(){et=0,it=0,nt=[],rt=[],at=[],Qt=Kt(),te=Kt()};y.__private__.setCustomOutputDestination=function(t){st=!0,ct=t};var lt=function(t){st||(ct=t)};y.__private__.resetCustomOutputDestination=function(){st=!1,ct=nt};var ht=y.__private__.out=function(t){return t=t.toString(),it+=t.length+1,ct.push(t),ct},ft=y.__private__.write=function(t){return ht(1===arguments.length?t.toString():Array.prototype.join.call(arguments," "))},dt=y.__private__.getArrayBuffer=function(t){for(var e=t.length,r=new ArrayBuffer(e),n=new Uint8Array(r);e--;)n[e]=t.charCodeAt(e);return r},pt=[["Helvetica","helvetica","normal","WinAnsiEncoding"],["Helvetica-Bold","helvetica","bold","WinAnsiEncoding"],["Helvetica-Oblique","helvetica","italic","WinAnsiEncoding"],["Helvetica-BoldOblique","helvetica","bolditalic","WinAnsiEncoding"],["Courier","courier","normal","WinAnsiEncoding"],["Courier-Bold","courier","bold","WinAnsiEncoding"],["Courier-Oblique","courier","italic","WinAnsiEncoding"],["Courier-BoldOblique","courier","bolditalic","WinAnsiEncoding"],["Times-Roman","times","normal","WinAnsiEncoding"],["Times-Bold","times","bold","WinAnsiEncoding"],["Times-Italic","times","italic","WinAnsiEncoding"],["Times-BoldItalic","times","bolditalic","WinAnsiEncoding"],["ZapfDingbats","zapfdingbats","normal",null],["Symbol","symbol","normal",null]];y.__private__.getStandardFonts=function(){return pt};var gt=t.fontSize||16;y.__private__.setFontSize=y.setFontSize=function(t){return gt=S===x.ADVANCED?t/_t:t,this};var mt,vt=y.__private__.getFontSize=y.getFontSize=function(){return S===x.COMPAT?gt:gt*_t},bt=t.R2L||!1;y.__private__.setR2L=y.setR2L=function(t){return bt=t,this},y.__private__.getR2L=y.getR2L=function(){return bt};var yt,wt=y.__private__.setZoomMode=function(t){var e=[void 0,null,"fullwidth","fullheight","fullpage","original"];if(/^(?:\d+\.\d*|\d*\.\d+|\d+)%$/.test(t))mt=t;else if(isNaN(t)){if(-1===e.indexOf(t))throw new Error('zoom must be Integer (e.g. 2), a percentage Value (e.g. 300%) or fullwidth, fullheight, fullpage, original. "'+t+'" is not recognized.');mt=t}else mt=parseInt(t,10)};y.__private__.getZoomMode=function(){return mt};var Nt,Lt=y.__private__.setPageMode=function(t){if(-1==[void 0,null,"UseNone","UseOutlines","UseThumbs","FullScreen"].indexOf(t))throw new Error('Page mode must be one of UseNone, UseOutlines, UseThumbs, or FullScreen. "'+t+'" is not recognized.');yt=t};y.__private__.getPageMode=function(){return yt};var At=y.__private__.setLayoutMode=function(t){if(-1==[void 0,null,"continuous","single","twoleft","tworight","two"].indexOf(t))throw new Error('Layout mode must be one of continuous, single, twoleft, tworight. "'+t+'" is not recognized.');Nt=t};y.__private__.getLayoutMode=function(){return Nt},y.__private__.setDisplayMode=y.setDisplayMode=function(t,e,r){return wt(t),At(e),Lt(r),this};var xt={title:"",subject:"",author:"",keywords:"",creator:""};y.__private__.getDocumentProperty=function(t){if(-1===Object.keys(xt).indexOf(t))throw new Error("Invalid argument passed to jsPDF.getDocumentProperty");return xt[t]},y.__private__.getDocumentProperties=function(){return xt},y.__private__.setDocumentProperties=y.setProperties=y.setDocumentProperties=function(t){for(var e in xt)xt.hasOwnProperty(e)&&t[e]&&(xt[e]=t[e]);return this},y.__private__.setDocumentProperty=function(t,e){if(-1===Object.keys(xt).indexOf(t))throw new Error("Invalid arguments passed to jsPDF.setDocumentProperty");return xt[t]=e};var St,_t,Pt,kt,Ft,It={},Ct={},jt=[],Ot={},Bt={},Mt={},Et={},qt=null,Dt=0,Rt=[],Tt=new I(y),Ut=t.hotfixes||[],zt={},Ht={},Wt=[],Vt=function t(e,r,n,i,a,o){if(!(this instanceof t))return new t(e,r,n,i,a,o);isNaN(e)&&(e=1),isNaN(r)&&(r=0),isNaN(n)&&(n=0),isNaN(i)&&(i=1),isNaN(a)&&(a=0),isNaN(o)&&(o=0),this._matrix=[e,r,n,i,a,o]};Object.defineProperty(Vt.prototype,"sx",{get:function(){return this._matrix[0]},set:function(t){this._matrix[0]=t}}),Object.defineProperty(Vt.prototype,"shy",{get:function(){return this._matrix[1]},set:function(t){this._matrix[1]=t}}),Object.defineProperty(Vt.prototype,"shx",{get:function(){return this._matrix[2]},set:function(t){this._matrix[2]=t}}),Object.defineProperty(Vt.prototype,"sy",{get:function(){return this._matrix[3]},set:function(t){this._matrix[3]=t}}),Object.defineProperty(Vt.prototype,"tx",{get:function(){return this._matrix[4]},set:function(t){this._matrix[4]=t}}),Object.defineProperty(Vt.prototype,"ty",{get:function(){return this._matrix[5]},set:function(t){this._matrix[5]=t}}),Object.defineProperty(Vt.prototype,"a",{get:function(){return this._matrix[0]},set:function(t){this._matrix[0]=t}}),Object.defineProperty(Vt.prototype,"b",{get:function(){return this._matrix[1]},set:function(t){this._matrix[1]=t}}),Object.defineProperty(Vt.prototype,"c",{get:function(){return this._matrix[2]},set:function(t){this._matrix[2]=t}}),Object.defineProperty(Vt.prototype,"d",{get:function(){return this._matrix[3]},set:function(t){this._matrix[3]=t}}),Object.defineProperty(Vt.prototype,"e",{get:function(){return this._matrix[4]},set:function(t){this._matrix[4]=t}}),Object.defineProperty(Vt.prototype,"f",{get:function(){return this._matrix[5]},set:function(t){this._matrix[5]=t}}),Object.defineProperty(Vt.prototype,"rotation",{get:function(){return Math.atan2(this.shx,this.sx)}}),Object.defineProperty(Vt.prototype,"scaleX",{get:function(){return this.decompose().scale.sx}}),Object.defineProperty(Vt.prototype,"scaleY",{get:function(){return this.decompose().scale.sy}}),Object.defineProperty(Vt.prototype,"isIdentity",{get:function(){return 1===this.sx&&(0===this.shy&&(0===this.shx&&(1===this.sy&&(0===this.tx&&0===this.ty))))}}),Vt.prototype.join=function(t){return[this.sx,this.shy,this.shx,this.sy,this.tx,this.ty].map(E).join(t)},Vt.prototype.multiply=function(t){var e=t.sx*this.sx+t.shy*this.shx,r=t.sx*this.shy+t.shy*this.sy,n=t.shx*this.sx+t.sy*this.shx,i=t.shx*this.shy+t.sy*this.sy,a=t.tx*this.sx+t.ty*this.shx+this.tx,o=t.tx*this.shy+t.ty*this.sy+this.ty;return new Vt(e,r,n,i,a,o)},Vt.prototype.decompose=function(){var t=this.sx,e=this.shy,r=this.shx,n=this.sy,i=this.tx,a=this.ty,o=Math.sqrt(t*t+e*e),s=(t/=o)*r+(e/=o)*n;r-=t*s,n-=e*s;var c=Math.sqrt(r*r+n*n);return s/=c,t*(n/=c)>16&255,i=u>>8&255,a=255&u}if(void 0===i||void 0===o&&n===i&&i===a)if("string"==typeof n)r=n+" "+s[0];else switch(t.precision){case 2:r=R(n/255)+" "+s[0];break;case 3:default:r=T(n/255)+" "+s[0]}else if(void 0===o||"object"===e(o)){if(o&&!isNaN(o.a)&&0===o.a)return r=["1.","1.","1.",s[1]].join(" ");if("string"==typeof n)r=[n,i,a,s[1]].join(" ");else switch(t.precision){case 2:r=[R(n/255),R(i/255),R(a/255),s[1]].join(" ");break;default:case 3:r=[T(n/255),T(i/255),T(a/255),s[1]].join(" ")}}else if("string"==typeof n)r=[n,i,a,o,s[2]].join(" ");else switch(t.precision){case 2:r=[R(n),R(i),R(a),R(o),s[2]].join(" ");break;case 3:default:r=[T(n),T(i),T(a),T(o),s[2]].join(" ")}return r},ne=y.__private__.getFilters=function(){return f},ie=y.__private__.putStream=function(t){var e=(t=t||{}).data||"",r=t.filters||ne(),n=t.alreadyAppliedFilters||[],i=t.addLength1||!1,a=e.length,o=t.objectId,s=function(t){return t};if(null!==m&&void 0===o)throw new Error("ObjectId must be passed to putStream for file encryption");null!==m&&(s=Ye.encryptor(o,0));var c={};!0===r&&(r=["FlateEncode"]);var u=t.additionalKeyValues||[],l=(c=void 0!==M.API.processDataByFilters?M.API.processDataByFilters(e,r):{data:e,reverseChain:[]}).reverseChain+(Array.isArray(n)?n.join(" "):n.toString());if(0!==c.data.length&&(u.push({key:"Length",value:c.data.length}),!0===i&&u.push({key:"Length1",value:a})),0!=l.length)if(l.split("/").length-1==1)u.push({key:"Filter",value:l});else{u.push({key:"Filter",value:"["+l+"]"});for(var h=0;h>"),0!==c.data.length&&(ht("stream"),ht(s(c.data)),ht("endstream"))},ae=y.__private__.putPage=function(t){var e=t.number,r=t.data,n=t.objId,i=t.contentsObjId;Zt(n,!0),ht("<>"),ht("endobj");var a=r.join("\n");return S===x.ADVANCED&&(a+="\nQ"),Zt(i,!0),ie({data:a,filters:ne(),objectId:i}),ht("endobj"),n},oe=y.__private__.putPages=function(){var t,e,r=[];for(t=1;t<=Dt;t++)Rt[t].objId=Kt(),Rt[t].contentsObjId=Kt();for(t=1;t<=Dt;t++)r.push(ae({number:t,data:ot[t],objId:Rt[t].objId,contentsObjId:Rt[t].contentsObjId,mediaBox:Rt[t].mediaBox,cropBox:Rt[t].cropBox,bleedBox:Rt[t].bleedBox,trimBox:Rt[t].trimBox,artBox:Rt[t].artBox,userUnit:Rt[t].userUnit,rootDictionaryObjId:Qt,resourceDictionaryObjId:te}));Zt(Qt,!0),ht("<>"),ht("endobj"),Tt.publish("postPutPages")},se=function(t){Tt.publish("putFont",{font:t,out:ht,newObject:Xt,putStream:ie}),!0!==t.isAlreadyPutted&&(t.objectNumber=Xt(),ht("<<"),ht("/Type /Font"),ht("/BaseFont /"+F(t.postScriptName)),ht("/Subtype /Type1"),"string"==typeof t.encoding&&ht("/Encoding /"+t.encoding),ht("/FirstChar 32"),ht("/LastChar 255"),ht(">>"),ht("endobj"))},ce=function(){for(var t in It)It.hasOwnProperty(t)&&(!1===v||!0===v&&b.hasOwnProperty(t))&&se(It[t])},ue=function(t){t.objectNumber=Xt();var e=[];e.push({key:"Type",value:"/XObject"}),e.push({key:"Subtype",value:"/Form"}),e.push({key:"BBox",value:"["+[E(t.x),E(t.y),E(t.x+t.width),E(t.y+t.height)].join(" ")+"]"}),e.push({key:"Matrix",value:"["+t.matrix.toString()+"]"});var r=t.pages[1].join("\n");ie({data:r,additionalKeyValues:e,objectId:t.objectNumber}),ht("endobj")},le=function(){for(var t in zt)zt.hasOwnProperty(t)&&ue(zt[t])},he=function(t,e){var r,n=[],i=1/(e-1);for(r=0;r<1;r+=i)n.push(r);if(n.push(1),0!=t[0].offset){var a={offset:0,color:t[0].color};t.unshift(a)}if(1!=t[t.length-1].offset){var o={offset:1,color:t[t.length-1].color};t.push(o)}for(var s="",c=0,u=0;ut[c+1].offset;)c++;var l=t[c].offset,h=(r-l)/(t[c+1].offset-l),f=t[c].color,d=t[c+1].color;s+=tt(Math.round((1-h)*f[0]+h*d[0]).toString(16))+tt(Math.round((1-h)*f[1]+h*d[1]).toString(16))+tt(Math.round((1-h)*f[2]+h*d[2]).toString(16))}return s.trim()},fe=function(t,e){e||(e=21);var r=Xt(),n=he(t.colors,e),i=[];i.push({key:"FunctionType",value:"0"}),i.push({key:"Domain",value:"[0.0 1.0]"}),i.push({key:"Size",value:"["+e+"]"}),i.push({key:"BitsPerSample",value:"8"}),i.push({key:"Range",value:"[0.0 1.0 0.0 1.0 0.0 1.0]"}),i.push({key:"Decode",value:"[0.0 1.0 0.0 1.0 0.0 1.0]"}),ie({data:n,additionalKeyValues:i,alreadyAppliedFilters:["/ASCIIHexDecode"],objectId:r}),ht("endobj"),t.objectNumber=Xt(),ht("<< /ShadingType "+t.type),ht("/ColorSpace /DeviceRGB");var a="/Coords ["+E(parseFloat(t.coords[0]))+" "+E(parseFloat(t.coords[1]))+" ";2===t.type?a+=E(parseFloat(t.coords[2]))+" "+E(parseFloat(t.coords[3])):a+=E(parseFloat(t.coords[2]))+" "+E(parseFloat(t.coords[3]))+" "+E(parseFloat(t.coords[4]))+" "+E(parseFloat(t.coords[5])),ht(a+="]"),t.matrix&&ht("/Matrix ["+t.matrix.toString()+"]"),ht("/Function "+r+" 0 R"),ht("/Extend [true true]"),ht(">>"),ht("endobj")},de=function(t,e){var r=Kt(),n=Xt();e.push({resourcesOid:r,objectOid:n}),t.objectNumber=n;var i=[];i.push({key:"Type",value:"/Pattern"}),i.push({key:"PatternType",value:"1"}),i.push({key:"PaintType",value:"1"}),i.push({key:"TilingType",value:"1"}),i.push({key:"BBox",value:"["+t.boundingBox.map(E).join(" ")+"]"}),i.push({key:"XStep",value:E(t.xStep)}),i.push({key:"YStep",value:E(t.yStep)}),i.push({key:"Resources",value:r+" 0 R"}),t.matrix&&i.push({key:"Matrix",value:"["+t.matrix.toString()+"]"}),ie({data:t.stream,additionalKeyValues:i,objectId:t.objectNumber}),ht("endobj")},pe=function(t){var e;for(e in Ot)Ot.hasOwnProperty(e)&&(Ot[e]instanceof O?fe(Ot[e]):Ot[e]instanceof B&&de(Ot[e],t))},ge=function(t){for(var e in t.objectNumber=Xt(),ht("<<"),t)switch(e){case"opacity":ht("/ca "+R(t[e]));break;case"stroke-opacity":ht("/CA "+R(t[e]))}ht(">>"),ht("endobj")},me=function(){var t;for(t in Mt)Mt.hasOwnProperty(t)&&ge(Mt[t])},ve=function(){for(var t in ht("/XObject <<"),zt)zt.hasOwnProperty(t)&&zt[t].objectNumber>=0&&ht("/"+t+" "+zt[t].objectNumber+" 0 R");Tt.publish("putXobjectDict"),ht(">>")},be=function(){Ye.oid=Xt(),ht("<<"),ht("/Filter /Standard"),ht("/V "+Ye.v),ht("/R "+Ye.r),ht("/U <"+Ye.toHexString(Ye.U)+">"),ht("/O <"+Ye.toHexString(Ye.O)+">"),ht("/P "+Ye.P),ht(">>"),ht("endobj")},ye=function(){for(var t in ht("/Font <<"),It)It.hasOwnProperty(t)&&(!1===v||!0===v&&b.hasOwnProperty(t))&&ht("/"+t+" "+It[t].objectNumber+" 0 R");ht(">>")},we=function(){if(Object.keys(Ot).length>0){for(var t in ht("/Shading <<"),Ot)Ot.hasOwnProperty(t)&&Ot[t]instanceof O&&Ot[t].objectNumber>=0&&ht("/"+t+" "+Ot[t].objectNumber+" 0 R");Tt.publish("putShadingPatternDict"),ht(">>")}},Ne=function(t){if(Object.keys(Ot).length>0){for(var e in ht("/Pattern <<"),Ot)Ot.hasOwnProperty(e)&&Ot[e]instanceof y.TilingPattern&&Ot[e].objectNumber>=0&&Ot[e].objectNumber>")}},Le=function(){if(Object.keys(Mt).length>0){var t;for(t in ht("/ExtGState <<"),Mt)Mt.hasOwnProperty(t)&&Mt[t].objectNumber>=0&&ht("/"+t+" "+Mt[t].objectNumber+" 0 R");Tt.publish("putGStateDict"),ht(">>")}},Ae=function(t){Zt(t.resourcesOid,!0),ht("<<"),ht("/ProcSet [/PDF /Text /ImageB /ImageC /ImageI]"),ye(),we(),Ne(t.objectOid),Le(),ve(),ht(">>"),ht("endobj")},xe=function(){var t=[];ce(),me(),le(),pe(t),Tt.publish("putResources"),t.forEach(Ae),Ae({resourcesOid:te,objectOid:Number.MAX_SAFE_INTEGER}),Tt.publish("postPutResources")},Se=function(){Tt.publish("putAdditionalObjects");for(var t=0;t>8&&(c=!0);t=s.join("")}for(r=t.length;void 0===c&&0!==r;)t.charCodeAt(r-1)>>8&&(c=!0),r--;if(!c)return t;for(s=e.noBOM?[]:[254,255],r=0,n=t.length;r>8)>>8)throw new Error("Character at position "+r+" of string '"+t+"' exceeds 16bits. Cannot be encoded into UCS-2 BE");s.push(l),s.push(u-(l<<8))}return String.fromCharCode.apply(void 0,s)},Ce=y.__private__.pdfEscape=y.pdfEscape=function(t,e){return Ie(t,e).replace(/\\/g,"\\\\").replace(/\(/g,"\\(").replace(/\)/g,"\\)")},je=y.__private__.beginPage=function(t){ot[++Dt]=[],Rt[Dt]={objId:0,contentsObjId:0,userUnit:Number(d),artBox:null,bleedBox:null,cropBox:null,trimBox:null,mediaBox:{bottomLeftX:0,bottomLeftY:0,topRightX:Number(t[0]),topRightY:Number(t[1])}},Me(Dt),lt(ot[$])},Oe=function(t,e){var r,n,o;switch(a=e||a,"string"==typeof t&&(r=A(t.toLowerCase()),Array.isArray(r)&&(n=r[0],o=r[1])),Array.isArray(t)&&(n=t[0]*_t,o=t[1]*_t),isNaN(n)&&(n=s[0],o=s[1]),(n>14400||o>14400)&&(i.warn("A page in a PDF can not be wider or taller than 14400 userUnit. jsPDF limits the width/height to 14400"),n=Math.min(14400,n),o=Math.min(14400,o)),s=[n,o],a.substr(0,1)){case"l":o>n&&(s=[o,n]);break;case"p":n>o&&(s=[o,n])}je(s),pr(fr),ht(Lr),0!==kr&&ht(kr+" J"),0!==Fr&&ht(Fr+" j"),Tt.publish("addPage",{pageNumber:Dt})},Be=function(t){t>0&&t<=Dt&&(ot.splice(t,1),Rt.splice(t,1),Dt--,$>Dt&&($=Dt),this.setPage($))},Me=function(t){t>0&&t<=Dt&&($=t)},Ee=y.__private__.getNumberOfPages=y.getNumberOfPages=function(){return ot.length-1},qe=function(t,e,r){var n,a=void 0;return r=r||{},t=void 0!==t?t:It[St].fontName,e=void 0!==e?e:It[St].fontStyle,n=t.toLowerCase(),void 0!==Ct[n]&&void 0!==Ct[n][e]?a=Ct[n][e]:void 0!==Ct[t]&&void 0!==Ct[t][e]?a=Ct[t][e]:!1===r.disableWarning&&i.warn("Unable to look up font label for font '"+t+"', '"+e+"'. Refer to getFontList() for available fonts."),a||r.noFallback||null==(a=Ct.times[e])&&(a=Ct.times.normal),a},De=y.__private__.putInfo=function(){var t=Xt(),e=function(t){return t};for(var r in null!==m&&(e=Ye.encryptor(t,0)),ht("<<"),ht("/Producer ("+Ce(e("jsPDF "+M.version))+")"),xt)xt.hasOwnProperty(r)&&xt[r]&&ht("/"+r.substr(0,1).toUpperCase()+r.substr(1)+" ("+Ce(e(xt[r]))+")");ht("/CreationDate ("+Ce(e(W))+")"),ht(">>"),ht("endobj")},Re=y.__private__.putCatalog=function(t){var e=(t=t||{}).rootDictionaryObjId||Qt;switch(Xt(),ht("<<"),ht("/Type /Catalog"),ht("/Pages "+e+" 0 R"),mt||(mt="fullwidth"),mt){case"fullwidth":ht("/OpenAction [3 0 R /FitH null]");break;case"fullheight":ht("/OpenAction [3 0 R /FitV null]");break;case"fullpage":ht("/OpenAction [3 0 R /Fit]");break;case"original":ht("/OpenAction [3 0 R /XYZ null null 1]");break;default:var r=""+mt;"%"===r.substr(r.length-1)&&(mt=parseInt(mt)/100),"number"==typeof mt&&ht("/OpenAction [3 0 R /XYZ null null "+R(mt)+"]")}switch(Nt||(Nt="continuous"),Nt){case"continuous":ht("/PageLayout /OneColumn");break;case"single":ht("/PageLayout /SinglePage");break;case"two":case"twoleft":ht("/PageLayout /TwoColumnLeft");break;case"tworight":ht("/PageLayout /TwoColumnRight")}yt&&ht("/PageMode /"+yt),Tt.publish("putCatalog"),ht(">>"),ht("endobj")},Te=y.__private__.putTrailer=function(){ht("trailer"),ht("<<"),ht("/Size "+(et+1)),ht("/Root "+et+" 0 R"),ht("/Info "+(et-1)+" 0 R"),null!==m&&ht("/Encrypt "+Ye.oid+" 0 R"),ht("/ID [ <"+V+"> <"+V+"> ]"),ht(">>")},Ue=y.__private__.putHeader=function(){ht("%PDF-"+w),ht("%ºß¬à")},ze=y.__private__.putXRef=function(){var t="0000000000";ht("xref"),ht("0 "+(et+1)),ht("0000000000 65535 f ");for(var e=1;e<=et;e++){"function"==typeof rt[e]?ht((t+rt[e]()).slice(-10)+" 00000 n "):void 0!==rt[e]?ht((t+rt[e]).slice(-10)+" 00000 n "):ht("0000000000 00000 n ")}},He=y.__private__.buildDocument=function(){ut(),lt(nt),Tt.publish("buildDocument"),Ue(),oe(),Se(),xe(),null!==m&&be(),De(),Re();var t=it;return ze(),Te(),ht("startxref"),ht(""+t),ht("%%EOF"),lt(ot[$]),nt.join("\n")},We=y.__private__.getBlob=function(t){return new Blob([dt(t)],{type:"application/pdf"})},Ve=y.output=y.__private__.output=Fe((function(t,e){switch("string"==typeof(e=e||{})?e={filename:e}:e.filename=e.filename||"generated.pdf",t){case void 0:return He();case"save":y.save(e.filename);break;case"arraybuffer":return dt(He());case"blob":return We(He());case"bloburi":case"bloburl":if(void 0!==r.URL&&"function"==typeof r.URL.createObjectURL)return r.URL&&r.URL.createObjectURL(We(He()))||void 0;i.warn("bloburl is not supported by your system, because URL.createObjectURL is not supported by your browser.");break;case"datauristring":case"dataurlstring":var n="",a=He();try{n=u(a)}catch(t){n=u(unescape(encodeURIComponent(a)))}return"data:application/pdf;filename="+e.filename+";base64,"+n;case"pdfobjectnewwindow":if("[object Window]"===Object.prototype.toString.call(r)){var o="https://cdnjs.cloudflare.com/ajax/libs/pdfobject/2.1.1/pdfobject.min.js",s=' integrity="sha512-4ze/a9/4jqu+tX9dfOqJYSvyYd5M6qum/3HpCLr+/Jqf0whc37VUbkpNGHR7/8pSnCFw47T1fmIpwBV7UySh3g==" crossorigin="anonymous"';e.pdfObjectUrl&&(o=e.pdfObjectUrl,s="");var c=' - - - - - -@endpush diff --git a/packages/workdo/AIDocument/src/Resources/views/document/history.blade.php b/packages/workdo/AIDocument/src/Resources/views/document/history.blade.php deleted file mode 100755 index a6dd28a..0000000 --- a/packages/workdo/AIDocument/src/Resources/views/document/history.blade.php +++ /dev/null @@ -1,63 +0,0 @@ -@extends('layouts.main') -@section('page-title') - {{ __('AI Document History') }} -@endsection -@section('page-breadcrumb') -{{ __('AI Document History') }} -@endsection -@section('page-action') -@endsection -@section('content') -
-
-
-
-
- - - - - - - - - - - - - @foreach ($document as $temp) - - - - - - - - - @endforeach - - -
{{__('Document Name')}}{{__('Category')}}{{__('Language')}}{{__('word used')}}{{__('Created On')}}{{__('Action')}}
{{ucfirst(trans($temp->doc_name))}}{{ucfirst(trans($temp->category))}}{{$temp->language}}{{$temp->max_tokens}}{{$temp->created_on}} -
- - - -
-
- {!! Form::open(['method' => 'DELETE', 'route' => ['aidocument.document.destroy', [$temp->id]]]) !!} - - - - {!! Form::close() !!} - -
-
-
-
-
-
-
-@endsection -@push('scripts') - -@endpush \ No newline at end of file diff --git a/packages/workdo/AIDocument/src/Resources/views/document/index.blade.php b/packages/workdo/AIDocument/src/Resources/views/document/index.blade.php deleted file mode 100755 index 68ea0cb..0000000 --- a/packages/workdo/AIDocument/src/Resources/views/document/index.blade.php +++ /dev/null @@ -1,401 +0,0 @@ -@extends('layouts.main') -@section('page-title') - {{ __('AI Document') }} -@endsection -@section('page-breadcrumb') - {{ __('AI Document') }} -@endsection -@section('page-action') -@endsection -@push('css') - -@endpush -@section('content') -
-
-
- -
- - - - -
-
-
- @foreach ($template as $template) -
-
-
-
-
- icon)) { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/' . $template->icon); - } else { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/book.png'); - } - ?> - -
-
-
{{ $template->name }}
-
-
-

- {{ Str::limit($template->description, 80) }}

-
-
-
-
-
- @endforeach -
-
-
-
- @foreach ($content as $template) - @if ($template->category_id == 1) -
-
-
-
-
- icon)) { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/' . $template->icon); - } else { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/book.png'); - } - - ?> - -
-
-
{{ $template->name }}
-
-
-

- {{ Str::limit($template->description, 80) }}

-
-
-
-
-
- @endif - @endforeach -
-
- -
-
- @foreach ($blog as $template) - @if ($template->category_id == 2) -
-
-
-
-
- icon)) { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/' . $template->icon); - } else { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/book.png'); - } - - ?> - -
-
-
{{ $template->name }}
-
-
-

- {{ Str::limit($template->description, 80) }}

-
-
-
-
-
- @endif - @endforeach -
-
-
-
- @foreach ($website as $template) - @if ($template->category_id == 3) -
-
-
-
-
- icon)) { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/' . $template->icon); - } else { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/book.png'); - } - - ?> - -
-
-
{{ $template->name }}
-
-
-

- {{ Str::limit($template->description, 80) }}

-
-
-
-
-
- @endif - @endforeach -
-
-
-
- @foreach ($social as $template) - @if ($template->category_id == 4) -
-
-
-
-
- icon)) { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/' . $template->icon); - } else { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/book.png'); - } - - ?> - -
-
-
{{ $template->name }}
-
-
-

- {{ Str::limit($template->description, 80) }}

-
-
-
-
-
- @endif - @endforeach -
-
-
-
- @foreach ($email as $template) - @if ($template->category_id == 6) -
-
-
-
-
- icon)) { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/' . $template->icon); - } else { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/book.png'); - } - - ?> - -
-
-
{{ $template->name }}
-
-
-

- {{ Str::limit($template->description, 80) }}

-
-
-
-
-
- @endif - @endforeach -
-
-
-
- @foreach ($video as $template) - @if ($template->category_id == 5) -
-
-
-
-
- icon)) { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/' . $template->icon); - } else { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/book.png'); - } - - ?> - -
-
-
{{ $template->name }}
-
-
-

- {{ Str::limit($template->description, 80) }}

-
-
-
-
-
- @endif - @endforeach -
-
-
-
- @foreach ($other as $template) - @if ($template->category_id == 7) -
-
-
-
-
- icon)) { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/' . $template->icon); - } else { - $path = asset('packages/workdo/AIDocument/src/Resources/assets/upload/template-icon/book.png'); - } - - ?> - -
-
-
{{ $template->name }}
-
-
-

- {{ Str::limit($template->description, 80) }}

-
-
-
-
-
- @endif - @endforeach -
-
- -
- -
-
-
-
-@endsection -@push('scripts') - -@endpush diff --git a/packages/workdo/AIDocument/src/Resources/views/document/view.blade.php b/packages/workdo/AIDocument/src/Resources/views/document/view.blade.php deleted file mode 100755 index 7774aa2..0000000 --- a/packages/workdo/AIDocument/src/Resources/views/document/view.blade.php +++ /dev/null @@ -1,507 +0,0 @@ -@extends('layouts.main') -@section('page-title') - {{ __('AI Document') }} -@endsection -@section('page-breadcrumb') - {{ __('AI Document') }} -@endsection -@section('page-action') -@endsection -@section('content') - - -
-
- @csrf -
-
-
-
-
-
-
-
- -
-
-
{{ $template->name }}
-
-
-

{{ $template->description }}

-
- -
- - -
- - -
- - {!! $html !!} - -
- - -
- @if ($template->is_tone == 1) -
- - -
- @endif -
- - -
-
- - -
- -
-
- -
-
-
-
-
-
- -
-
-
- - -
-
-
- @if (\Auth::user()->isAbleTo('ai document save')) - - - - @else - - - - @endif - - @if (\Auth::user()->isAbleTo('ai document generate Word')) - - - - @else - - - - @endif - - @if (\Auth::user()->isAbleTo('ai document copy')) - - - - @else - - - - @endif -
-
-
-
-
- -
-
- - -
-
- @if (count($history_data) > 0) - - @else - - @endif -
-
- -
- @if (count($history_data) > 0) - @foreach ($history_data as $history) - - @endforeach - @else -
- - - -
- @endif -
- -
-
-
-
-
- - -@endsection -@push('scripts') - custom.js - - - - - - -@endpush diff --git a/packages/workdo/AIDocument/src/Resources/views/marketplace/index.blade.php b/packages/workdo/AIDocument/src/Resources/views/marketplace/index.blade.php deleted file mode 100755 index d235517..0000000 --- a/packages/workdo/AIDocument/src/Resources/views/marketplace/index.blade.php +++ /dev/null @@ -1,539 +0,0 @@ -@extends('marketplace.marketplace') -@php - $path = url('packages/workdo/AIDocument/src/marketplace'); -@endphp -@section('page-title') - {{ __('Software Details') }} -@endsection -@section('content') - -
-
-
-
-
-
-
-

{{ $module->name }}

-
-

{{ __('AI Document harnesses the power of OpenAI AI technology to generate unique content, images, and code while ensuring it is free from plagiarism. It enhances and creates captivating content in multiple languages. Users can effortlessly generate images by providing descriptions, and the Speech to Text feature facilitates real-time conversations. The admin panel empowers administrators to customize OpenAI model access for different user groups. Unlock the potential of your business with AI Document by crafting personalized subscription plans that align with your objectives. Embrace this flexible SaaS solution and propel your business toward profitability.') }} -

-
- {{ super_currency_format_with_sym($module->monthly_price) }} - {{ __('/Month') }} - {{ super_currency_format_with_sym($module->yearly_price) }} - {{ __('/Year') }} -
- -
-
-
-
- -
-
-
-
-
-
-
-
-

{{ __('AI WRITING ASSISTANT ') }}{{ __('AND') }}{{ __(' CONTENT GENERATOR TOOL') }} -

-

{{ __('AI Document can quickly produce high-quality content, saving significant time compared to manual writing processes.') }} -

-
-
-
-
-
-
- -
-

{{ __('Increased Productivity') }}

-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - {{ __('Time-Saving') }} - -
-

{{ __('With AI Document ability to generate content at scale, businesses can produce a large volume of articles, blog posts, social media content, and more, increasing productivity and content output..') }} -

-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - {{ __('Cost-Effective') }} - -
-

{{ __('AI Document eliminates the need to hire or outsource content writers, reducing costs associated with content creation.') }} -

-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - {{ __('Consistency') }} - -
-

{{ __('AI Document ensures consistency in tone, style, and brand voice throughout the generated content, maintaining a cohesive brand image.') }} -

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

{{ __('Multilingual Capabilities & Plagiarism Prevention') }}

-
-

{{ __('AI Document can create content in multiple languages, facilitating global reach and localization efforts.AI Document can detect and avoid plagiarism, generating original and unique content that meets ethical standards') }} -

-
-
-
-
-
-
-
-
-

{{ __('Why choose dedicated modules') }} {{ __('for your business?') }}

-

{{ __('With Dash, you can conveniently manage all your business functions from a single location') }} -

-
-
-
-
-
-

{{ __('Empower Your Workforce with DASH') }}

-

{{ __('Access over Premium Add-ons for Accounting, HR, Payments, Leads, Communication, Management, and more, all in one place!') }} -

- -
-
    -
  • - - - - {{ __('Pay-as-you-go') }} -
  • -
  • - - - - {{ __('Unlimited installation') }} -
  • -
  • - - - - {{ __('Secure cloud storage') }} -
  • -
-
-
-
- -
-
-
-
- {{ super_currency_format_with_sym($module->monthly_price) }} - {{ __('/Month') }} -
-
{{ __('Billed monthly, or') }} - {{ super_currency_format_with_sym($module->monthly_price) . '/' }}{{ __(' if paid monthly') }} -
- -
-
-
-
-
- {{ super_currency_format_with_sym($module->yearly_price) }} - {{ __('/Year') }} -
-
{{ __('Billed yearly, or') }} - {{ super_currency_format_with_sym($module->yearly_price) . '/' }}{{ __(' if paid yearly') }} -
- -
-
-
-
-
-
-
-
-
-
-
-
-

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

{{ __('Why choose dedicated modules') }} {{ __('for your business?') }}

-

{{ __('With Dash, you can conveniently manage all your business functions from a single location') }} -

-
- @if (count($modules) > 0) -
- @foreach ($modules as $module) - @if (!isset($module->display) || $module->display == true) -
-
-
- - - -
-
-

{{ $module->name }} -

-
- {{ super_currency_format_with_sym($module->monthly_price) }} - {{ __('/Month') }} - {{ super_currency_format_with_sym($module->yearly_price) }} - {{ __('/Year') }} -
- View Details -
-
-
- @endif - @endforeach -
- @endif -
-
- -
- -@endsection diff --git a/packages/workdo/AIDocument/src/Routes/api.php b/packages/workdo/AIDocument/src/Routes/api.php deleted file mode 100755 index 149bb6d..0000000 --- a/packages/workdo/AIDocument/src/Routes/api.php +++ /dev/null @@ -1,18 +0,0 @@ -get('/aidocument', function (Request $request) { - return $request->user(); -}); \ No newline at end of file diff --git a/packages/workdo/AIDocument/src/Routes/web.php b/packages/workdo/AIDocument/src/Routes/web.php deleted file mode 100755 index 6b43e0a..0000000 --- a/packages/workdo/AIDocument/src/Routes/web.php +++ /dev/null @@ -1,32 +0,0 @@ - ['web', 'auth', 'verified','PlanModuleCheck:AIDocument']], function () { - Route::prefix('aidocument')->group(function () { - Route::any('/', [AiTemplateController::class, 'index'])->name('aidocument.index'); - Route::post('/setting/store', [AiTemplateController::class, 'setting'])->name('aidocument.setting.store'); - Route::any('/store', [AiTemplateController::class, 'store'])->name('aidocument.document.store'); - Route::any('/show/{doc_id}/{id}/', [AiTemplateController::class, 'show'])->name('aidocument.document.show'); - Route::any('/process', [AiTemplateController::class, 'AiGenerate'])->name('aidocument.document.process'); - Route::any('/regenerate/response', [AiTemplateController::class, 'regenerate_response'])->name('aidocument.document.regenerate.response'); - Route::any('exportallresponsecontent', [AiTemplateController::class, 'exportallresponsecontent'])->name('aidocument.document.export.allresponse'); - Route::any('exportresponsecontent', [AiTemplateController::class, 'exportresponsecontent'])->name('aidocument.document.export.response'); - Route::any('/edit/document/{doc_id}/{id}/', [AiTemplateController::class, 'edit'])->name('aidocument.document.edit'); - Route::any('/save', [AiTemplateController::class, 'save'])->name('aidocument.document.save'); - Route::any('delete/history/document/{id}', [AiTemplateController::class, 'destroy'])->name('aidocument.document.destroy'); - Route::any('history/', [AiTemplateController::class, 'history'])->name('aidocument.document.history'); - }); -}); diff --git a/packages/workdo/AIDocument/src/marketplace/image1.png b/packages/workdo/AIDocument/src/marketplace/image1.png deleted file mode 100755 index 314a44f..0000000 Binary files a/packages/workdo/AIDocument/src/marketplace/image1.png and /dev/null differ diff --git a/packages/workdo/AIDocument/src/marketplace/image2.png b/packages/workdo/AIDocument/src/marketplace/image2.png deleted file mode 100755 index e659b9e..0000000 Binary files a/packages/workdo/AIDocument/src/marketplace/image2.png and /dev/null differ diff --git a/packages/workdo/AIDocument/src/marketplace/image3.png b/packages/workdo/AIDocument/src/marketplace/image3.png deleted file mode 100755 index 651ca05..0000000 Binary files a/packages/workdo/AIDocument/src/marketplace/image3.png and /dev/null differ diff --git a/packages/workdo/AIDocument/src/marketplace/image4.png b/packages/workdo/AIDocument/src/marketplace/image4.png deleted file mode 100755 index c522fe4..0000000 Binary files a/packages/workdo/AIDocument/src/marketplace/image4.png and /dev/null differ diff --git a/packages/workdo/AIDocument/src/marketplace/image5.png b/packages/workdo/AIDocument/src/marketplace/image5.png deleted file mode 100755 index d66f0ff..0000000 Binary files a/packages/workdo/AIDocument/src/marketplace/image5.png and /dev/null differ diff --git a/packages/workdo/AIDocument/src/marketplace/image6.png b/packages/workdo/AIDocument/src/marketplace/image6.png deleted file mode 100755 index 0ad30ed..0000000 Binary files a/packages/workdo/AIDocument/src/marketplace/image6.png and /dev/null differ diff --git a/packages/workdo/Account/src/Database/Seeders/PermissionTableSeeder.php b/packages/workdo/Account/src/Database/Seeders/PermissionTableSeeder.php index 3f3ef45..73649dd 100755 --- a/packages/workdo/Account/src/Database/Seeders/PermissionTableSeeder.php +++ b/packages/workdo/Account/src/Database/Seeders/PermissionTableSeeder.php @@ -168,6 +168,20 @@ class PermissionTableSeeder extends Seeder ['name' => 'print-customer-detail-report', 'module' => 'account-reports', 'label' => 'Print Customer Detail Report'], ['name' => 'view-vendor-detail-report', 'module' => 'account-reports', 'label' => 'View Vendor Detail Report'], ['name' => 'print-vendor-detail-report', 'module' => 'account-reports', 'label' => 'Print Vendor Detail Report'], + + // Journal Entries (merged from DoubleEntry) + ['name' => 'doubleentry manage', 'module' => 'journal-entries', 'label' => 'Manage Double Entry'], + ['name' => 'journalentry manage', 'module' => 'journal-entries', 'label' => 'Manage Journal Entries'], + ['name' => 'journalentry create', 'module' => 'journal-entries', 'label' => 'Create Journal Entries'], + ['name' => 'journalentry edit', 'module' => 'journal-entries', 'label' => 'Edit Journal Entries'], + ['name' => 'journalentry delete', 'module' => 'journal-entries', 'label' => 'Delete Journal Entries'], + ['name' => 'journalentry show', 'module' => 'journal-entries', 'label' => 'View Journal Entries'], + + // Financial Reports (merged from DoubleEntry) + ['name' => 'report ledger', 'module' => 'financial-reports', 'label' => 'View Ledger Report'], + ['name' => 'report balance sheet', 'module' => 'financial-reports', 'label' => 'View Balance Sheet'], + ['name' => 'report profit loss', 'module' => 'financial-reports', 'label' => 'View Profit & Loss'], + ['name' => 'report trial balance', 'module' => 'financial-reports', 'label' => 'View Trial Balance'], ]; $company_role = Role::where('name', 'company')->first(); diff --git a/packages/workdo/Account/src/Http/Controllers/DashboardController.php b/packages/workdo/Account/src/Http/Controllers/DashboardController.php index 0b43e3d..a168c92 100755 --- a/packages/workdo/Account/src/Http/Controllers/DashboardController.php +++ b/packages/workdo/Account/src/Http/Controllers/DashboardController.php @@ -14,6 +14,11 @@ use Workdo\Account\Models\CustomerPayment; use Workdo\Account\Models\VendorPayment; use Workdo\Account\Models\Revenue; use Workdo\Account\Models\Expense; +use Workdo\Account\Models\AccountCategory; +use Workdo\Account\Models\AccountType; +use Workdo\Account\Models\ChartOfAccount; +use Workdo\Account\Models\JournalEntryItem; +use Illuminate\Support\Facades\DB; use Carbon\Carbon; class DashboardController extends Controller @@ -43,18 +48,38 @@ class DashboardController extends Controller { $creatorId = creatorId(); + // Period handling + $period = request('period', 'year'); + switch ($period) { + case 'month': + $startDate = Carbon::now()->startOfMonth()->format('Y-m-d'); + break; + case 'quarter': + $startDate = Carbon::now()->startOfQuarter()->format('Y-m-d'); + break; + case 'all': + $startDate = '2000-01-01'; + break; + case 'year': + default: + $startDate = Carbon::now()->startOfYear()->format('Y-m-d'); + break; + } + $endDate = Carbon::now()->format('Y-m-d'); + + // Journal-based revenue & expense (same source as P&L) + $totalRevenue = $this->getJournalCategoryTotal('revenue', $startDate, $endDate, $creatorId); + $totalExpense = $this->getJournalCategoryTotal('expenses', $startDate, $endDate, $creatorId); + $netProfit = $totalRevenue - $totalExpense; + $totalClients = Customer::where('created_by', $creatorId)->count(); $totalVendors = Vendor::where('created_by', $creatorId)->count(); - $totalRevenue = Revenue::where('created_by', $creatorId)->sum('amount'); - $totalExpense = Expense::where('created_by', $creatorId)->sum('amount'); $totalCustomerPayments = CustomerPayment::whereHas('customer', function($q) use ($creatorId) { $q->where('created_by', $creatorId); })->sum('payment_amount'); $totalVendorPayments = VendorPayment::whereHas('vendor', function($q) use ($creatorId) { $q->where('created_by', $creatorId); })->sum('payment_amount'); - - $netProfit = $totalRevenue - $totalExpense; $recentRevenues = Revenue::where('created_by', $creatorId) ->latest() @@ -84,31 +109,46 @@ class DashboardController extends Controller ]; }); + // Monthly revenue vs expense from journal entries (6-month lookback) + $monthlyRevenue = []; + $monthlyExpense = []; $monthlyCustomerPayments = []; $monthlyVendorPayments = []; for ($i = 5; $i >= 0; $i--) { $date = Carbon::now()->subMonths($i); $monthName = $date->format('M'); - + $monthStart = $date->copy()->startOfMonth()->format('Y-m-d'); + $monthEnd = $date->copy()->endOfMonth()->format('Y-m-d'); + + $monthlyRevenue[] = [ + 'month' => $monthName, + 'amount' => $this->getJournalCategoryTotal('revenue', $monthStart, $monthEnd, $creatorId), + ]; + + $monthlyExpense[] = [ + 'month' => $monthName, + 'amount' => $this->getJournalCategoryTotal('expenses', $monthStart, $monthEnd, $creatorId), + ]; + $customerPayments = CustomerPayment::whereHas('customer', function($q) use ($creatorId) { $q->where('created_by', $creatorId); }) ->whereMonth('created_at', $date->month) ->whereYear('created_at', $date->year) ->sum('payment_amount'); - + $vendorPayments = VendorPayment::whereHas('vendor', function($q) use ($creatorId) { $q->where('created_by', $creatorId); }) ->whereMonth('created_at', $date->month) ->whereYear('created_at', $date->year) ->sum('payment_amount'); - + $monthlyCustomerPayments[] = [ 'month' => $monthName, 'customer_payments' => $customerPayments ]; - + $monthlyVendorPayments[] = [ 'month' => $monthName, 'vendor_payments' => $vendorPayments @@ -121,10 +161,13 @@ class DashboardController extends Controller 'total_vendors' => $totalVendors, 'total_revenue' => $totalRevenue, 'total_expense' => $totalExpense, + 'net_profit' => $netProfit, 'total_customer_payment' => $totalCustomerPayments, 'total_vendor_payment' => $totalVendorPayments, - 'net_profit' => $netProfit ], + 'period' => $period, + 'monthlyRevenue' => $monthlyRevenue, + 'monthlyExpense' => $monthlyExpense, 'monthlyCustomerPayments' => $monthlyCustomerPayments, 'monthlyVendorPayments' => $monthlyVendorPayments, 'recentRevenues' => $recentRevenues, @@ -285,12 +328,12 @@ class DashboardController extends Controller $totalClients = Customer::where('created_by', $creatorId)->count(); $totalVendors = Vendor::where('created_by', $creatorId)->count(); - $monthlyRevenue = Revenue::where('created_by', $creatorId) - ->whereMonth('created_at', Carbon::now()->month) - ->sum('amount'); - $monthlyExpense = Expense::where('created_by', $creatorId) - ->whereMonth('created_at', Carbon::now()->month) - ->sum('amount'); + + // Journal-based monthly revenue/expense (aligned with P&L) + $monthStart = Carbon::now()->startOfMonth()->format('Y-m-d'); + $monthEnd = Carbon::now()->format('Y-m-d'); + $monthlyRevenue = $this->getJournalCategoryTotal('revenue', $monthStart, $monthEnd, $creatorId); + $monthlyExpense = $this->getJournalCategoryTotal('expenses', $monthStart, $monthEnd, $creatorId); $recentActivities = collect() ->merge(Revenue::where('created_by', $creatorId)->latest()->limit(3)->get()->map(function($item) { @@ -313,4 +356,45 @@ class DashboardController extends Controller 'recentActivities' => $recentActivities ]); } + + /** + * Get total balance for all accounts in a given category type from journal entries. + * Uses the same data path as FinancialReportController for consistency. + */ + private function getJournalCategoryTotal(string $categoryType, string $startDate, string $endDate, int $creatorId): float + { + $category = AccountCategory::where('created_by', $creatorId) + ->where('type', $categoryType) + ->first(); + + if (!$category) return 0; + + $types = AccountType::where('category_id', $category->id) + ->where('created_by', $creatorId) + ->pluck('id'); + + $accountIds = ChartOfAccount::whereIn('account_type_id', $types) + ->where('is_active', true) + ->where('created_by', $creatorId) + ->pluck('id'); + + if ($accountIds->isEmpty()) return 0; + + $result = JournalEntryItem::whereIn('journal_entry_items.account_id', $accountIds) + ->join('journal_entries', 'journal_entries.id', '=', 'journal_entry_items.journal_entry_id') + ->whereBetween('journal_entries.journal_date', [$startDate, $endDate]) + ->where('journal_entries.status', 'posted') + ->where('journal_entries.created_by', $creatorId) + ->select( + DB::raw('COALESCE(SUM(journal_entry_items.debit_amount), 0) as total_debit'), + DB::raw('COALESCE(SUM(journal_entry_items.credit_amount), 0) as total_credit') + ) + ->first(); + + $debit = (float) ($result->total_debit ?? 0); + $credit = (float) ($result->total_credit ?? 0); + + // Revenue = credits > debits, Expense = debits > credits + return abs($debit - $credit); + } } diff --git a/packages/workdo/Account/src/Http/Controllers/FinancialReportController.php b/packages/workdo/Account/src/Http/Controllers/FinancialReportController.php new file mode 100644 index 0000000..38a8558 --- /dev/null +++ b/packages/workdo/Account/src/Http/Controllers/FinancialReportController.php @@ -0,0 +1,375 @@ +can('report ledger')) { + return redirect()->back()->with('error', __('Permission denied.')); + } + + $startDate = $request->start_date ?? date('Y-01-01'); + $endDate = $request->end_date ?? date('Y-m-d'); + $accountFilter = $request->account; + + // Get all chart accounts + $accounts = ChartOfAccount::select('id', 'account_code as code', 'account_name as name', 'parent_account_id as parent') + ->where('is_active', true) + ->where('created_by', creatorId()) + ->orderBy('account_code') + ->get(); + + // Build ledger for each account (or filtered account) + $query = ChartOfAccount::select('id', 'account_code as code', 'account_name as name') + ->where('is_active', true) + ->where('created_by', creatorId()); + + if ($accountFilter) { + $query->where('id', $accountFilter); + } + + $chartAccounts = $query->orderBy('account_code')->get()->map(function ($account) use ($startDate, $endDate) { + $transactions = JournalEntryItem::where('journal_entry_items.account_id', $account->id) + ->join('journal_entries', 'journal_entries.id', '=', 'journal_entry_items.journal_entry_id') + ->whereBetween('journal_entries.journal_date', [$startDate, $endDate]) + ->where('journal_entries.status', 'posted') + ->where('journal_entries.created_by', creatorId()) + ->select( + 'journal_entry_items.*', + 'journal_entries.journal_date as date', + 'journal_entries.journal_number as reference', + 'journal_entries.description as journal_description' + ) + ->orderBy('journal_entries.journal_date') + ->get() + ->map(function ($tx) { + return [ + 'id' => $tx->id, + 'date' => $tx->date ?? '', + 'account_id' => $tx->account_id, + 'transaction_type' => $tx->debit_amount > 0 ? 'Debit' : 'Credit', + 'transaction_amount' => $tx->debit_amount > 0 ? $tx->debit_amount : $tx->credit_amount, + 'reference' => $tx->reference ?? '', + 'description' => $tx->description ?: $tx->journal_description, + ]; + }); + + $account->transactions = $transactions; + return $account; + })->filter(fn($a) => $a->transactions->count() > 0)->values(); + + $totalDebit = $chartAccounts->sum(fn($a) => $a->transactions->where('transaction_type', 'Debit')->sum('transaction_amount')); + $totalCredit = $chartAccounts->sum(fn($a) => $a->transactions->where('transaction_type', 'Credit')->sum('transaction_amount')); + + return Inertia::render('Account/Reports/Ledger', [ + 'filter' => [ + 'balance' => $totalDebit - $totalCredit, + 'credit' => $totalCredit, + 'debit' => $totalDebit, + 'startDateRange' => $startDate, + 'endDateRange' => $endDate, + ], + 'accounts' => $accounts->toArray(), + 'chart_accounts' => $chartAccounts, + 'subAccounts' => [], + ]); + } + + /** + * Balance Sheet Report + */ + public function balanceSheet(Request $request, $view = null, $collapseView = null) + { + if (!Auth::user()->can('report balance sheet')) { + return redirect()->back()->with('error', __('Permission denied.')); + } + + $startDate = $request->start_date ?? date('Y-01-01'); + $endDate = $request->end_date ?? date('Y-m-d'); + $view = $view ?: ($request->view ?? 'horizontal'); + + // Get categories for Balance Sheet: Assets, Liabilities, Equity + $categories = AccountCategory::where('created_by', creatorId()) + ->whereIn('type', ['assets', 'liabilities', 'equity']) + ->get(); + + $chartAccounts = []; + $totalAsset = 0; + $totalLiability = 0; + $totalEquity = 0; + + foreach ($categories as $category) { + $types = AccountType::where('category_id', $category->id) + ->where('created_by', creatorId()) + ->get(); + + $categoryAccounts = []; + + foreach ($types as $type) { + $accounts = ChartOfAccount::where('account_type_id', $type->id) + ->where('is_active', true) + ->where('created_by', creatorId()) + ->get() + ->map(function ($account) use ($startDate, $endDate) { + $totals = $this->getAccountBalance($account->id, $startDate, $endDate); + return [ + 'id' => $account->id, + 'code' => $account->account_code, + 'name' => $account->account_name, + 'total' => $totals['balance'], + 'children' => [], + ]; + }) + ->filter(fn($a) => abs($a['total']) > 0.01) + ->values() + ->toArray(); + + if (count($accounts) > 0) { + $typeTotal = collect($accounts)->sum('total'); + $categoryAccounts[] = [ + 'id' => $type->id, + 'code' => $type->code, + 'name' => $type->name, + 'total' => $typeTotal, + 'children' => $accounts, + ]; + } + } + + $categoryTotal = collect($categoryAccounts)->sum('total'); + + // Map to frontend sub_type field + $subType = ucfirst($category->type); // 'assets' → 'Assets' + + if ($category->type === 'assets') $totalAsset = $categoryTotal; + if ($category->type === 'liabilities') $totalLiability = $categoryTotal; + if ($category->type === 'equity') $totalEquity = $categoryTotal; + + $chartAccounts[] = [ + 'id' => $category->id, + 'name' => $category->name, + 'total' => $categoryTotal, + 'sub_type' => $subType, + 'accounts' => $categoryAccounts, + ]; + } + + return Inertia::render('Account/Reports/BalanceSheet', [ + 'totalAsset' => $totalAsset, + 'totalLiability' => $totalLiability, + 'totalEquity' => $totalEquity, + 'totalLiabilityEquity' => $totalLiability + $totalEquity, + 'chartAccounts' => $chartAccounts, + 'view' => $view, + 'collapseview' => $collapseView ?? 'expand', + 'filter' => [ + 'startDateRange' => $startDate, + 'endDateRange' => $endDate, + ], + ]); + } + + /** + * Profit & Loss Report + */ + public function profitLoss(Request $request, $view = null, $collapseView = null) + { + if (!Auth::user()->can('report profit loss')) { + return redirect()->back()->with('error', __('Permission denied.')); + } + + $startDate = $request->start_date ?? date('Y-01-01'); + $endDate = $request->end_date ?? date('Y-m-d'); + $view = $view ?: ($request->view ?? 'horizontal'); + + // Revenue categories + $revenueCategory = AccountCategory::where('created_by', creatorId()) + ->where('type', 'revenue') + ->first(); + + // Expense categories + $expenseCategory = AccountCategory::where('created_by', creatorId()) + ->where('type', 'expenses') + ->first(); + + $incomeAccounts = $this->buildCategoryAccounts($revenueCategory, $startDate, $endDate); + $expenseAccounts = $this->buildCategoryAccounts($expenseCategory, $startDate, $endDate); + + $totalIncome = collect($incomeAccounts)->sum('total'); + $totalExpense = collect($expenseAccounts)->sum('total'); + + return Inertia::render('Account/Reports/ProfitLoss', [ + 'totalIncome' => abs($totalIncome), + 'totalExpense' => abs($totalExpense), + 'netProfit' => abs($totalIncome) - abs($totalExpense), + 'incomeAccounts' => $incomeAccounts, + 'expenseAccounts' => $expenseAccounts, + 'view' => $view, + 'collapseview' => $collapseView ?? 'expand', + 'filter' => [ + 'startDateRange' => $startDate, + 'endDateRange' => $endDate, + ], + ]); + } + + /** + * Trial Balance Report + */ + public function trialBalance(Request $request) + { + if (!Auth::user()->can('report trial balance')) { + return redirect()->back()->with('error', __('Permission denied.')); + } + + $startDate = $request->start_date ?? date('Y-01-01'); + $endDate = $request->end_date ?? date('Y-m-d'); + + $categories = AccountCategory::where('created_by', creatorId())->get(); + + $accountGroups = []; + $grandTotalDebit = 0; + $grandTotalCredit = 0; + + foreach ($categories as $category) { + $types = AccountType::where('category_id', $category->id) + ->where('created_by', creatorId()) + ->get(); + + $groupAccounts = []; + + foreach ($types as $type) { + $accounts = ChartOfAccount::where('account_type_id', $type->id) + ->where('is_active', true) + ->where('created_by', creatorId()) + ->get(); + + foreach ($accounts as $account) { + $balance = $this->getAccountBalance($account->id, $startDate, $endDate); + + if (abs($balance['debit']) > 0.01 || abs($balance['credit']) > 0.01) { + $debitBalance = $balance['balance'] > 0 ? $balance['balance'] : 0; + $creditBalance = $balance['balance'] < 0 ? abs($balance['balance']) : 0; + + $groupAccounts[] = [ + 'id' => $account->id, + 'code' => $account->account_code, + 'name' => $account->account_name, + 'debit' => $debitBalance, + 'credit' => $creditBalance, + ]; + + $grandTotalDebit += $debitBalance; + $grandTotalCredit += $creditBalance; + } + } + } + + if (count($groupAccounts) > 0) { + $accountGroups[] = [ + 'name' => $category->name, + 'accounts' => $groupAccounts, + 'totalDebit' => collect($groupAccounts)->sum('debit'), + 'totalCredit' => collect($groupAccounts)->sum('credit'), + ]; + } + } + + return Inertia::render('Account/Reports/TrialBalance', [ + 'accounts' => $accountGroups, + 'totalDebit' => $grandTotalDebit, + 'totalCredit' => $grandTotalCredit, + 'view' => '', + 'filter' => [ + 'startDateRange' => $startDate, + 'endDateRange' => $endDate, + ], + ]); + } + + /** + * Get debit/credit/balance for an account within a date range. + */ + private function getAccountBalance(int $accountId, string $startDate, string $endDate): array + { + $result = JournalEntryItem::where('journal_entry_items.account_id', $accountId) + ->join('journal_entries', 'journal_entries.id', '=', 'journal_entry_items.journal_entry_id') + ->whereBetween('journal_entries.journal_date', [$startDate, $endDate]) + ->where('journal_entries.status', 'posted') + ->where('journal_entries.created_by', creatorId()) + ->select( + DB::raw('COALESCE(SUM(journal_entry_items.debit_amount), 0) as total_debit'), + DB::raw('COALESCE(SUM(journal_entry_items.credit_amount), 0) as total_credit') + ) + ->first(); + + $debit = (float) ($result->total_debit ?? 0); + $credit = (float) ($result->total_credit ?? 0); + + return [ + 'debit' => $debit, + 'credit' => $credit, + 'balance' => $debit - $credit, + ]; + } + + /** + * Build account tree for a category (used by P&L). + */ + private function buildCategoryAccounts(?AccountCategory $category, string $startDate, string $endDate): array + { + if (!$category) return []; + + $types = AccountType::where('category_id', $category->id) + ->where('created_by', creatorId()) + ->get(); + + $result = []; + + foreach ($types as $type) { + $accounts = ChartOfAccount::where('account_type_id', $type->id) + ->where('is_active', true) + ->where('created_by', creatorId()) + ->get() + ->map(function ($account) use ($startDate, $endDate) { + $balance = $this->getAccountBalance($account->id, $startDate, $endDate); + return [ + 'id' => $account->id, + 'code' => $account->account_code, + 'name' => $account->account_name, + 'total' => abs($balance['balance']), + 'children' => [], + ]; + }) + ->filter(fn($a) => $a['total'] > 0.01) + ->values() + ->toArray(); + + if (count($accounts) > 0) { + $result[] = [ + 'id' => $type->id, + 'name' => $type->name, + 'total' => collect($accounts)->sum('total'), + 'accounts' => $accounts, + ]; + } + } + + return $result; + } +} diff --git a/packages/workdo/Account/src/Http/Controllers/JournalEntryController.php b/packages/workdo/Account/src/Http/Controllers/JournalEntryController.php new file mode 100644 index 0000000..e033682 --- /dev/null +++ b/packages/workdo/Account/src/Http/Controllers/JournalEntryController.php @@ -0,0 +1,312 @@ +can('journalentry manage')) { + $entries = JournalEntry::where('created_by', creatorId()) + ->when($request->search, function ($q) use ($request) { + $q->where(function ($query) use ($request) { + $query->where('journal_number', 'like', '%' . $request->search . '%') + ->orWhere('description', 'like', '%' . $request->search . '%') + ->orWhere('reference_type', 'like', '%' . $request->search . '%'); + }); + }) + ->when($request->start_date && $request->end_date, function ($q) use ($request) { + $q->whereBetween('journal_date', [$request->start_date, $request->end_date]); + }) + ->when($request->sort, fn($q) => $q->orderBy($request->sort, $request->direction ?? 'desc'), fn($q) => $q->latest()) + ->paginate($request->per_page ?? 10) + ->through(function ($entry) { + // Compute totals from items + if (!$entry->total_debit && !$entry->total_credit) { + $items = JournalEntryItem::where('journal_entry_id', $entry->id)->get(); + $entry->total_debit = $items->sum('debit_amount'); + $entry->total_credit = $items->sum('credit_amount'); + } + // Map to frontend expected fields + $entry->journal_id = $entry->id; + $entry->date = $entry->journal_date ? $entry->journal_date->format('Y-m-d') : null; + return $entry; + }) + ->withQueryString(); + + return Inertia::render('Account/JournalEntries/Index', [ + 'entries' => $entries, + 'filters' => [ + 'search' => $request->search, + 'start_date' => $request->start_date, + 'end_date' => $request->end_date, + ], + ]); + } + + return redirect()->back()->with('error', __('Permission denied.')); + } + + public function create() + { + if (Auth::user()->can('journalentry create')) { + $chartAccounts = ChartOfAccount::select('id', 'account_code as code', 'account_name as name', 'parent_account_id as parent') + ->where('is_active', true) + ->where('created_by', creatorId()) + ->orderBy('account_code') + ->get() + ->toArray(); + + // Generate next journal number + $journalId = JournalEntry::where('created_by', creatorId())->count() + 1; + + return Inertia::render('Account/JournalEntries/Create', [ + 'chartAccounts' => $chartAccounts, + 'subAccounts' => [], // flat list - no parent/sub separation needed + 'journalId' => $journalId, + ]); + } + + return response()->json(['error' => __('Permission denied.')], 401); + } + + public function store(Request $request) + { + if (Auth::user()->can('journalentry create')) { + $validator = Validator::make($request->all(), [ + 'date' => 'required|date', + 'accounts' => 'required|array|min:2', + 'accounts.*.account' => 'required|exists:chart_of_accounts,id', + ]); + + if ($validator->fails()) { + return redirect()->back()->with('error', $validator->getMessageBag()->first()); + } + + $accounts = $request->accounts; + + $totalDebit = 0; + $totalCredit = 0; + foreach ($accounts as $account) { + $totalDebit += $account['debit'] ?? 0; + $totalCredit += $account['credit'] ?? 0; + } + + if (abs($totalCredit - $totalDebit) > 0.01) { + return redirect()->back()->with('error', __('Debit and Credit must be Equal.')); + } + + $journal = JournalEntry::create([ + 'journal_date' => $request->date, + 'description' => $request->description, + 'reference_type' => $request->reference, + 'entry_type' => 'standard', + 'total_debit' => $totalDebit, + 'total_credit' => $totalCredit, + 'status' => 'posted', + 'creator_id' => creatorId(), + 'created_by' => creatorId(), + ]); + + foreach ($accounts as $account) { + JournalEntryItem::create([ + 'journal_entry_id' => $journal->id, + 'account_id' => $account['account'], + 'description' => $account['description'] ?? '', + 'debit_amount' => $account['debit'] ?? 0, + 'credit_amount' => $account['credit'] ?? 0, + 'creator_id' => creatorId(), + 'created_by' => creatorId(), + ]); + } + + return redirect()->route('account.journal-entries.index')->with('success', __('The Journal entry has been created successfully')); + } + + return redirect()->back()->with('error', __('Permission denied.')); + } + + public function show(JournalEntry $journalEntry) + { + if (Auth::user()->can('journalentry show')) { + if ($journalEntry->created_by == creatorId()) { + $accounts = JournalEntryItem::where('journal_entry_id', $journalEntry->id) + ->get() + ->map(function ($item) { + $chartAccount = ChartOfAccount::find($item->account_id); + $item->account = $item->account_id; + $item->account_name = $chartAccount ? $chartAccount->account_name : ''; + $item->account_code = $chartAccount ? $chartAccount->account_code : ''; + $item->debit = $item->debit_amount; + $item->credit = $item->credit_amount; + return $item; + }); + + $settings = [ + 'company_name' => company_setting('company_name'), + 'company_telephone' => company_setting('company_telephone'), + 'company_address' => company_setting('company_address'), + 'company_city' => company_setting('company_city'), + 'company_state' => company_setting('company_state'), + 'company_country' => company_setting('company_country'), + ]; + + // Map fields for frontend compatibility + $journalEntry->journal_id = $journalEntry->id; + $journalEntry->date = $journalEntry->journal_date ? $journalEntry->journal_date->format('Y-m-d') : null; + + return Inertia::render('Account/JournalEntries/View', [ + 'journalEntry' => $journalEntry, + 'accounts' => $accounts, + 'settings' => $settings, + ]); + } + + return redirect()->back()->with('error', __('Permission denied.')); + } + + return redirect()->back()->with('error', __('Permission denied.')); + } + + public function edit(JournalEntry $journalEntry) + { + if (Auth::user()->can('journalentry edit')) { + $chartAccounts = ChartOfAccount::select('id', 'account_code as code', 'account_name as name', 'parent_account_id as parent') + ->where('is_active', true) + ->where('created_by', creatorId()) + ->orderBy('account_code') + ->get() + ->toArray(); + + // Map journal items to frontend format + $journalEntry->journal_id = $journalEntry->id; + $journalEntry->date = $journalEntry->journal_date ? $journalEntry->journal_date->format('Y-m-d') : null; + $journalEntry->accounts = JournalEntryItem::where('journal_entry_id', $journalEntry->id) + ->get() + ->map(function ($item) { + return [ + 'id' => $item->id, + 'account' => $item->account_id, + 'description' => $item->description, + 'debit' => $item->debit_amount, + 'credit' => $item->credit_amount, + ]; + }); + + return Inertia::render('Account/JournalEntries/Edit', [ + 'journalEntry' => $journalEntry, + 'chartAccounts' => $chartAccounts, + 'subAccounts' => [], + ]); + } + + return response()->json(['error' => __('Permission denied.')], 401); + } + + public function update(Request $request, JournalEntry $journalEntry) + { + if (Auth::user()->can('journalentry edit')) { + if ($journalEntry->created_by == creatorId()) { + $validator = Validator::make($request->all(), [ + 'date' => 'required|date', + 'accounts' => 'required|array|min:2', + ]); + + if ($validator->fails()) { + return redirect()->back()->with('error', $validator->getMessageBag()->first()); + } + + $accounts = $request->accounts; + + $totalDebit = 0; + $totalCredit = 0; + foreach ($accounts as $account) { + $totalDebit += $account['debit'] ?? 0; + $totalCredit += $account['credit'] ?? 0; + } + + if (abs($totalCredit - $totalDebit) > 0.01) { + return redirect()->back()->with('error', __('Debit and Credit must be Equal.')); + } + + $journalEntry->update([ + 'journal_date' => $request->date, + 'description' => $request->description, + 'reference_type' => $request->reference, + 'total_debit' => $totalDebit, + 'total_credit' => $totalCredit, + ]); + + // Sync items: update existing, create new, delete removed + $existingIds = []; + foreach ($accounts as $account) { + if (!empty($account['id'])) { + $item = JournalEntryItem::find($account['id']); + if ($item) { + $item->update([ + 'account_id' => $account['account'], + 'description' => $account['description'] ?? '', + 'debit_amount' => $account['debit'] ?? 0, + 'credit_amount' => $account['credit'] ?? 0, + ]); + $existingIds[] = $item->id; + } + } else { + $newItem = JournalEntryItem::create([ + 'journal_entry_id' => $journalEntry->id, + 'account_id' => $account['account'], + 'description' => $account['description'] ?? '', + 'debit_amount' => $account['debit'] ?? 0, + 'credit_amount' => $account['credit'] ?? 0, + 'creator_id' => creatorId(), + 'created_by' => creatorId(), + ]); + $existingIds[] = $newItem->id; + } + } + + // Delete removed items + JournalEntryItem::where('journal_entry_id', $journalEntry->id) + ->whereNotIn('id', $existingIds) + ->delete(); + + return redirect()->route('account.journal-entries.index')->with('success', __('The Journal entry has been updated successfully')); + } + + return redirect()->back()->with('error', __('Permission denied.')); + } + + return redirect()->back()->with('error', __('Permission denied.')); + } + + public function destroy(JournalEntry $journalEntry) + { + if (Auth::user()->can('journalentry delete')) { + if ($journalEntry->created_by == creatorId()) { + JournalEntryItem::where('journal_entry_id', $journalEntry->id)->delete(); + $journalEntry->delete(); + + return redirect()->route('account.journal-entries.index')->with('success', __('The Journal entry has been deleted')); + } + + return redirect()->back()->with('error', __('Permission denied.')); + } + + return redirect()->back()->with('error', __('Permission denied.')); + } + + public function accountDestroy(Request $request) + { + JournalEntryItem::where('id', $request->id)->delete(); + return redirect()->back()->with('success', __('The Journal entry account has been deleted')); + } +} diff --git a/packages/workdo/Account/src/Resources/js/Pages/Dashboard/CompanyDashboard.tsx b/packages/workdo/Account/src/Resources/js/Pages/Dashboard/CompanyDashboard.tsx index 87fdd93..044598d 100755 --- a/packages/workdo/Account/src/Resources/js/Pages/Dashboard/CompanyDashboard.tsx +++ b/packages/workdo/Account/src/Resources/js/Pages/Dashboard/CompanyDashboard.tsx @@ -1,36 +1,51 @@ -import { Head } from '@inertiajs/react'; +import { Head, router } from '@inertiajs/react'; import { useTranslation } from 'react-i18next'; import AuthenticatedLayout from "@/layouts/authenticated-layout"; import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; import { LineChart } from '@/components/charts'; -import { Package, Users, CheckCircle, XCircle, UserCheck, Building2, CreditCard, ArrowUpCircle, ArrowDownCircle } from 'lucide-react'; -import { formatDate,formatCurrency} from '@/utils/helpers'; +import { UserCheck, Building2, CreditCard, ArrowUpCircle, ArrowDownCircle, TrendingUp, TrendingDown, DollarSign } from 'lucide-react'; +import { formatDate, formatCurrency } from '@/utils/helpers'; interface AccountProps { - message: string; - stats?: { - total_items: number; - active_items: number; - inactive_items: number; + stats: { total_clients: number; total_vendors: number; + total_revenue: number; + total_expense: number; + net_profit: number; total_customer_payment: number; total_vendor_payment: number; }; + period: string; + monthlyRevenue: Array<{ month: string; amount: number }>; + monthlyExpense: Array<{ month: string; amount: number }>; monthlyVendorPayments?: Array<{ month: string; vendor_payments: number }>; monthlyCustomerPayments?: Array<{ month: string; customer_payments: number }>; recentRevenues?: Array<{ id: number; title: string; description: string; amount: number; date: string }>; recentExpenses?: Array<{ id: number; title: string; description: string; amount: number; date: string }>; - recent_items?: Array<{ - id: number; - name: string; - created_at: string; - }>; } -export default function AccountIndex({ message, stats, monthlyVendorPayments, monthlyCustomerPayments, recentRevenues, recentExpenses, recent_items }: AccountProps) { +const periodLabels: Record = { + month: 'This Month', + quarter: 'This Quarter', + year: 'This Year', + all: 'All Time', +}; + +export default function AccountIndex({ stats, period, monthlyRevenue, monthlyExpense, monthlyVendorPayments, monthlyCustomerPayments, recentRevenues, recentExpenses }: AccountProps) { const { t } = useTranslation(); + const handlePeriodChange = (newPeriod: string) => { + router.get(route('account.index'), { period: newPeriod }, { preserveState: true }); + }; + + // Merge monthly revenue and expense into a single dataset for the comparison chart + const monthlyComparison = monthlyRevenue?.map((rev, idx) => ({ + month: rev.month, + revenue: rev.amount, + expense: monthlyExpense?.[idx]?.amount ?? 0, + })) ?? []; + return ( - {stats && ( -
- - - {t('Total Clients')} - - - -
{stats.total_clients || 0}
-

{t('Active clients')}

-
-
- - - {t('Total Vendors')} - - - -
{stats.total_vendors || 0}
-

{t('Active vendors')}

-
-
- - - {t('Total Customer Payment')} - - - -
{formatCurrency(stats.total_customer_payment || 0)}
-

{t('Received payments')}

-
-
- - - {t('Total Vendor Payment')} - - - -
{formatCurrency(stats.total_vendor_payment || 0)}
-

{t('Paid to vendors')}

-
-
-
- )} - -
-
- - - {t('Monthly Customer Payments')} - - - - - - - {recentRevenues && ( - - - {t('Recent Revenue')} - {t('Last 5 days')} - - -
- {recentRevenues.slice(0, 5).map((revenue) => ( -
-
-

{revenue.title}

-

{revenue.description}

-

{formatDate(revenue.date)}

-
-
{formatCurrency(revenue.amount)}
-
- ))} -
-
-
- )} +
+ {/* Period Selector */} +
+
+

{t('Financial Overview')}

+

{t('Showing data for')}: {t(periodLabels[period] || 'This Year')}

+
+
+ {Object.entries(periodLabels).map(([key, label]) => ( + + ))} +
-
- - - {t('Monthly Vendor Payments')} + {/* Top Stats Row: Revenue, Expense, Net Profit */} +
+ + + {t('Total Revenue')} + - +
{formatCurrency(stats.total_revenue || 0)}
+

{t('From journal entries')}

+ + + {t('Total Expense')} + + + +
{formatCurrency(stats.total_expense || 0)}
+

{t('From journal entries')}

+
+
+ = 0 ? 'from-blue-50 to-blue-100 dark:from-blue-950/30 dark:to-blue-900/20 border-blue-200 dark:border-blue-800' : 'from-amber-50 to-amber-100 dark:from-amber-950/30 dark:to-amber-900/20 border-amber-200 dark:border-amber-800'}`}> + + = 0 ? 'text-blue-700 dark:text-blue-400' : 'text-amber-700 dark:text-amber-400'}`}>{t('Net Profit')} + = 0 ? 'text-blue-700 dark:text-blue-400' : 'text-amber-700 dark:text-amber-400'}`} /> + + +
= 0 ? 'text-blue-700 dark:text-blue-400' : 'text-amber-700 dark:text-amber-400'}`}> + {stats.net_profit < 0 ? '-' : ''}{formatCurrency(Math.abs(stats.net_profit || 0))} +
+

= 0 ? 'text-blue-700 dark:text-blue-400' : 'text-amber-700 dark:text-amber-400'}`}> + {stats.net_profit >= 0 ? t('Revenue exceeds expenses') : t('Expenses exceed revenue')} +

+
+
+
- {recentExpenses && ( - - - {t('Recent Expenses')} - {t('Last 5 days')} + {/* Secondary Stats Row */} +
+ + + {t('Total Clients')} + + + +
{stats.total_clients || 0}
+

{t('Active clients')}

+
+
+ + + {t('Total Vendors')} + + + +
{stats.total_vendors || 0}
+

{t('Active vendors')}

+
+
+ + + {t('Customer Payments')} + + + +
{formatCurrency(stats.total_customer_payment || 0)}
+

{t('Received payments')}

+
+
+ + + {t('Vendor Payments')} + + + +
{formatCurrency(stats.total_vendor_payment || 0)}
+

{t('Paid to vendors')}

+
+
+
+ + {/* Charts */} +
+
+ + + {t('Revenue vs Expense (6 Months)')} -
- {recentExpenses.slice(0, 5).map((expense) => ( -
-
-

{expense.title}

-

{expense.description}

-

{formatDate(expense.date)}

-
-
{formatCurrency(expense.amount)}
-
- ))} -
+
- )} + + {recentRevenues && ( + + + {t('Recent Revenue')} + {t('Last 5 entries')} + + +
+ {recentRevenues.slice(0, 5).map((revenue) => ( +
+
+

{revenue.title}

+

{revenue.description}

+

{formatDate(revenue.date)}

+
+
{formatCurrency(revenue.amount)}
+
+ ))} +
+
+
+ )} +
+ +
+ + + {t('Customer vs Vendor Payments (6 Months)')} + + + ({ + month: cp.month, + customer_payments: cp.customer_payments, + vendor_payments: monthlyVendorPayments?.[idx]?.vendor_payments ?? 0, + })) ?? []} + height={300} + showTooltip={true} + showGrid={true} + lines={[ + { dataKey: 'customer_payments', color: '#10b981', name: t('Customer Payments') }, + { dataKey: 'vendor_payments', color: '#ef4444', name: t('Vendor Payments') } + ]} + xAxisKey="month" + showLegend={true} + /> + + + + {recentExpenses && ( + + + {t('Recent Expenses')} + {t('Last 5 entries')} + + +
+ {recentExpenses.slice(0, 5).map((expense) => ( +
+
+

{expense.title}

+

{expense.description}

+

{formatDate(expense.date)}

+
+
{formatCurrency(expense.amount)}
+
+ ))} +
+
+
+ )} +
- ); } diff --git a/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/Create.tsx b/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/Create.tsx new file mode 100644 index 0000000..a5e666c --- /dev/null +++ b/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/Create.tsx @@ -0,0 +1,294 @@ +import { useState, useMemo } from 'react'; +import { Head, router, usePage } from '@inertiajs/react'; +import { useTranslation } from 'react-i18next'; +import { useFlashMessages } from '@/hooks/useFlashMessages'; +import AuthenticatedLayout from "@/layouts/authenticated-layout"; +import { Button } from '@/components/ui/button'; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Input } from '@/components/ui/input'; +import { Label } from '@/components/ui/label'; +import { Textarea } from '@/components/ui/textarea'; +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'; +import { Plus, Trash2, ArrowLeft, Save } from "lucide-react"; +import { JournalEntryCreateProps, ChartAccount } from './types'; +import { formatCurrency } from '@/utils/helpers'; + +interface LineItem { + account: string; + description: string; + debit: string; + credit: string; +} + +export default function Create() { + const { t } = useTranslation(); + const { chartAccounts, subAccounts, journalId } = usePage().props; + useFlashMessages(); + + const [form, setForm] = useState({ + date: new Date().toISOString().split('T')[0], + reference: '', + description: '', + }); + + const [lines, setLines] = useState([ + { account: '', description: '', debit: '', credit: '' }, + { account: '', description: '', debit: '', credit: '' }, + ]); + + const [processing, setProcessing] = useState(false); + const [errors, setErrors] = useState>({}); + + const allAccounts = useMemo(() => { + const parents = chartAccounts.map(a => ({ + id: a.id, + label: `${a.code} - ${a.name}`, + isParent: true, + })); + const children = subAccounts.map(a => ({ + id: a.id, + label: ` ${a.code} - ${a.name}`, + isParent: false, + })); + return [...parents, ...children].sort((a, b) => a.label.localeCompare(b.label)); + }, [chartAccounts, subAccounts]); + + const totals = useMemo(() => { + const totalDebit = lines.reduce((sum, line) => sum + (parseFloat(line.debit) || 0), 0); + const totalCredit = lines.reduce((sum, line) => sum + (parseFloat(line.credit) || 0), 0); + return { totalDebit, totalCredit, isBalanced: Math.abs(totalDebit - totalCredit) < 0.01 }; + }, [lines]); + + const addLine = () => { + setLines([...lines, { account: '', description: '', debit: '', credit: '' }]); + }; + + const removeLine = (index: number) => { + if (lines.length <= 2) return; + setLines(lines.filter((_, i) => i !== index)); + }; + + const updateLine = (index: number, field: keyof LineItem, value: string) => { + const updated = [...lines]; + updated[index] = { ...updated[index], [field]: value }; + + // Auto-clear opposite field when entering value + if (field === 'debit' && value) { + updated[index].credit = ''; + } else if (field === 'credit' && value) { + updated[index].debit = ''; + } + + setLines(updated); + }; + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + + if (!totals.isBalanced) { + setErrors({ balance: t('Debit and Credit must be equal') }); + return; + } + + const validLines = lines.filter(l => l.account); + if (validLines.length < 2) { + setErrors({ lines: t('At least 2 line items are required') }); + return; + } + + setProcessing(true); + setErrors({}); + + router.post(route('account.journal-entries.store'), { + date: form.date, + reference: form.reference, + description: form.description, + accounts: validLines.map(l => ({ + account: l.account, + description: l.description, + debit: parseFloat(l.debit) || 0, + credit: parseFloat(l.credit) || 0, + })), + }, { + onFinish: () => setProcessing(false), + onError: (errs) => setErrors(errs), + }); + }; + + return ( + + + +
+
+ +
+

{t('Create Journal Entry')}

+

{t('Journal')} #{String(journalId).padStart(5, '0')}

+
+
+ +
+ + + {t('Entry Details')} + + +
+
+ + setForm({ ...form, date: e.target.value })} + required + /> +
+
+ + setForm({ ...form, reference: e.target.value })} + placeholder={t('e.g., INV-001')} + /> +
+
+ + setForm({ ...form, description: e.target.value })} + placeholder={t('Journal entry description')} + /> +
+
+ + {/* Line Items */} +
+
+

{t('Line Items')}

+ +
+ +
+
+
{t('Account')}
+
{t('Description')}
+
{t('Debit')}
+
{t('Credit')}
+
+
+ + {lines.map((line, index) => ( +
+
+ +
+
+ updateLine(index, 'description', e.target.value)} + placeholder={t('Description')} + /> +
+
+ updateLine(index, 'debit', e.target.value)} + placeholder="0.00" + className="text-right font-mono" + /> +
+
+ updateLine(index, 'credit', e.target.value)} + placeholder="0.00" + className="text-right font-mono" + /> +
+
+ +
+
+ ))} + + {/* Totals Row */} +
+
{t('Total')}
+
+ {formatCurrency(totals.totalDebit)} +
+
+ {formatCurrency(totals.totalCredit)} +
+
+
+
+ + {/* Balance Indicator */} + {!totals.isBalanced && (totals.totalDebit > 0 || totals.totalCredit > 0) && ( +
+ ⚠️ {t('Debit and Credit must be equal.')} {t('Difference')}: {formatCurrency(Math.abs(totals.totalDebit - totals.totalCredit))} +
+ )} + + {totals.isBalanced && totals.totalDebit > 0 && ( +
+ ✅ {t('Entry is balanced')} +
+ )} + + {errors.balance && ( +
{errors.balance}
+ )} + {errors.lines && ( +
{errors.lines}
+ )} +
+ +
+ + +
+
+
+
+
+
+ ); +} diff --git a/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/Edit.tsx b/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/Edit.tsx new file mode 100644 index 0000000..87a9453 --- /dev/null +++ b/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/Edit.tsx @@ -0,0 +1,276 @@ +import { useState, useMemo } from 'react'; +import { Head, router, usePage } from '@inertiajs/react'; +import { useTranslation } from 'react-i18next'; +import { useFlashMessages } from '@/hooks/useFlashMessages'; +import AuthenticatedLayout from "@/layouts/authenticated-layout"; +import { Button } from '@/components/ui/button'; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Input } from '@/components/ui/input'; +import { Label } from '@/components/ui/label'; +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'; +import { Plus, Trash2, ArrowLeft, Save } from "lucide-react"; +import { JournalEntryEditProps, ChartAccount } from './types'; +import { formatCurrency } from '@/utils/helpers'; + +interface LineItem { + id?: number; + account: string; + description: string; + debit: string; + credit: string; +} + +export default function Edit() { + const { t } = useTranslation(); + const { journalEntry, chartAccounts, subAccounts } = usePage().props; + useFlashMessages(); + + const [form, setForm] = useState({ + date: journalEntry.date, + reference: journalEntry.reference || '', + description: journalEntry.description || '', + }); + + const [lines, setLines] = useState( + (journalEntry.accounts || []).map(item => ({ + id: item.id, + account: String(item.account), + description: item.description || '', + debit: item.debit > 0 ? String(item.debit) : '', + credit: item.credit > 0 ? String(item.credit) : '', + })) + ); + + const [processing, setProcessing] = useState(false); + const [errors, setErrors] = useState>({}); + + const allAccounts = useMemo(() => { + const parents = chartAccounts.map(a => ({ + id: a.id, + label: `${a.code} - ${a.name}`, + })); + const children = subAccounts.map(a => ({ + id: a.id, + label: ` ${a.code} - ${a.name}`, + })); + return [...parents, ...children].sort((a, b) => a.label.localeCompare(b.label)); + }, [chartAccounts, subAccounts]); + + const totals = useMemo(() => { + const totalDebit = lines.reduce((sum, line) => sum + (parseFloat(line.debit) || 0), 0); + const totalCredit = lines.reduce((sum, line) => sum + (parseFloat(line.credit) || 0), 0); + return { totalDebit, totalCredit, isBalanced: Math.abs(totalDebit - totalCredit) < 0.01 }; + }, [lines]); + + const addLine = () => { + setLines([...lines, { account: '', description: '', debit: '', credit: '' }]); + }; + + const removeLine = (index: number) => { + if (lines.length <= 2) return; + setLines(lines.filter((_, i) => i !== index)); + }; + + const updateLine = (index: number, field: keyof LineItem, value: string) => { + const updated = [...lines]; + updated[index] = { ...updated[index], [field]: value }; + if (field === 'debit' && value) updated[index].credit = ''; + else if (field === 'credit' && value) updated[index].debit = ''; + setLines(updated); + }; + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + + if (!totals.isBalanced) { + setErrors({ balance: t('Debit and Credit must be equal') }); + return; + } + + setProcessing(true); + setErrors({}); + + router.put(route('account.journal-entries.update', journalEntry.id), { + date: form.date, + reference: form.reference, + description: form.description, + accounts: lines.filter(l => l.account).map(l => ({ + id: l.id || null, + account: l.account, + description: l.description, + debit: parseFloat(l.debit) || 0, + credit: parseFloat(l.credit) || 0, + })), + }, { + onFinish: () => setProcessing(false), + onError: (errs) => setErrors(errs), + }); + }; + + return ( + + + +
+
+ +
+

{t('Edit Journal Entry')}

+

{t('Journal')} #{String(journalEntry.journal_id).padStart(5, '0')}

+
+
+ +
+ + + {t('Entry Details')} + + +
+
+ + setForm({ ...form, date: e.target.value })} + required + /> +
+
+ + setForm({ ...form, reference: e.target.value })} + placeholder={t('e.g., INV-001')} + /> +
+
+ + setForm({ ...form, description: e.target.value })} + placeholder={t('Journal entry description')} + /> +
+
+ + {/* Line Items */} +
+
+

{t('Line Items')}

+ +
+ +
+
+
{t('Account')}
+
{t('Description')}
+
{t('Debit')}
+
{t('Credit')}
+
+
+ + {lines.map((line, index) => ( +
+
+ +
+
+ updateLine(index, 'description', e.target.value)} + placeholder={t('Description')} + /> +
+
+ updateLine(index, 'debit', e.target.value)} + placeholder="0.00" + className="text-right font-mono" + /> +
+
+ updateLine(index, 'credit', e.target.value)} + placeholder="0.00" + className="text-right font-mono" + /> +
+
+ +
+
+ ))} + +
+
{t('Total')}
+
+ {formatCurrency(totals.totalDebit)} +
+
+ {formatCurrency(totals.totalCredit)} +
+
+
+
+ + {!totals.isBalanced && (totals.totalDebit > 0 || totals.totalCredit > 0) && ( +
+ ⚠️ {t('Debit and Credit must be equal.')} {t('Difference')}: {formatCurrency(Math.abs(totals.totalDebit - totals.totalCredit))} +
+ )} + {totals.isBalanced && totals.totalDebit > 0 && ( +
+ ✅ {t('Entry is balanced')} +
+ )} +
+ +
+ + +
+
+
+
+
+
+ ); +} diff --git a/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/Index.tsx b/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/Index.tsx new file mode 100644 index 0000000..7cc145c --- /dev/null +++ b/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/Index.tsx @@ -0,0 +1,252 @@ +import { useState } from 'react'; +import { Head, usePage, router } from '@inertiajs/react'; +import { useTranslation } from 'react-i18next'; +import { useFlashMessages } from '@/hooks/useFlashMessages'; +import { useDeleteHandler } from '@/hooks/useDeleteHandler'; +import AuthenticatedLayout from "@/layouts/authenticated-layout"; +import { Button } from '@/components/ui/button'; +import { Card, CardContent, CardHeader } from "@/components/ui/card"; +import { DataTable } from "@/components/ui/data-table"; +import { ConfirmationDialog } from '@/components/ui/confirmation-dialog'; +import { Plus, Edit as EditIcon, Trash2, Eye } from "lucide-react"; +import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip"; +import { FilterButton } from '@/components/ui/filter-button'; +import { Pagination } from "@/components/ui/pagination"; +import { SearchInput } from "@/components/ui/search-input"; +import { Input } from '@/components/ui/input'; +import { PerPageSelector } from '@/components/ui/per-page-selector'; +import { Badge } from '@/components/ui/badge'; +import NoRecordsFound from '@/components/no-records-found'; +import { JournalEntry, JournalEntryIndexProps } from './types'; +import { formatDate, formatCurrency } from '@/utils/helpers'; + +export default function Index() { + const { t } = useTranslation(); + const { entries, auth } = usePage().props; + const urlParams = new URLSearchParams(window.location.search); + const permissions = auth?.user?.permissions || []; + + const [filters, setFilters] = useState({ + search: urlParams.get('search') || '', + start_date: urlParams.get('start_date') || '', + end_date: urlParams.get('end_date') || '', + }); + + const [perPage] = useState(urlParams.get('per_page') || '10'); + const [sortField, setSortField] = useState(urlParams.get('sort') || ''); + const [sortDirection, setSortDirection] = useState(urlParams.get('direction') || 'desc'); + const [showFilters, setShowFilters] = useState(false); + + useFlashMessages(); + const { deleteState, openDeleteDialog, closeDeleteDialog, confirmDelete } = useDeleteHandler({ + routeName: 'journal-entry.destroy', + defaultMessage: t('Are you sure you want to delete this journal entry?') + }); + + const handleFilter = () => { + router.get(route('account.journal-entries.index'), { ...filters, per_page: perPage, sort: sortField, direction: sortDirection }, { + preserveState: true, + replace: true + }); + }; + + const handleSort = (field: string) => { + const direction = sortField === field && sortDirection === 'asc' ? 'desc' : 'asc'; + setSortField(field); + setSortDirection(direction); + router.get(route('account.journal-entries.index'), { ...filters, per_page: perPage, sort: field, direction }, { + preserveState: true, + replace: true + }); + }; + + const handleReset = () => { + setFilters({ search: '', start_date: '', end_date: '' }); + router.get(route('account.journal-entries.index')); + }; + + const columns = [ + { + header: t('Journal #'), + accessor: 'journal_id', + sortable: true, + cell: (entry: JournalEntry) => ( + + #{String(entry.journal_id).padStart(5, '0')} + + ), + }, + { + header: t('Date'), + accessor: 'date', + sortable: true, + cell: (entry: JournalEntry) => formatDate(entry.date), + }, + { + header: t('Reference'), + accessor: 'reference', + cell: (entry: JournalEntry) => entry.reference || '-', + }, + { + header: t('Debit'), + accessor: 'total_debit', + cell: (entry: JournalEntry) => ( + + {formatCurrency(entry.total_debit || 0)} + + ), + }, + { + header: t('Credit'), + accessor: 'total_credit', + cell: (entry: JournalEntry) => ( + + {formatCurrency(entry.total_credit || 0)} + + ), + }, + { + header: t('Description'), + accessor: 'description', + cell: (entry: JournalEntry) => ( + + {entry.description || '-'} + + ), + }, + { + header: t('Actions'), + accessor: 'actions', + cell: (entry: JournalEntry) => ( +
+ + {permissions.includes('journalentry show') && ( + + + + + {t('View')} + + )} + {permissions.includes('journalentry edit') && ( + + + + + {t('Edit')} + + )} + {permissions.includes('journalentry delete') && ( + + + + + {t('Delete')} + + )} + +
+ ), + }, + ]; + + return ( + + + +
+
+
+

{t('Journal Entries')}

+

{t('Manage your double-entry journal records')}

+
+ {permissions.includes('journalentry create') && ( + + )} +
+ + + +
+ setFilters({ ...filters, search: val })} + onSearch={handleFilter} + placeholder={t('Search by reference or description...')} + className="max-w-sm" + /> +
+ { + router.get(route('account.journal-entries.index'), { ...filters, per_page: val, sort: sortField, direction: sortDirection }, { preserveState: true, replace: true }); + }} + /> + setShowFilters(!showFilters)} /> +
+
+ + {showFilters && ( +
+ setFilters({ ...filters, start_date: e.target.value })} + placeholder={t('Start Date')} + /> + setFilters({ ...filters, end_date: e.target.value })} + placeholder={t('End Date')} + /> +
+ + +
+
+ )} +
+ + + {entries.data.length > 0 ? ( + <> + +
+ +
+ + ) : ( + + )} +
+
+
+ + +
+ ); +} diff --git a/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/View.tsx b/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/View.tsx new file mode 100644 index 0000000..88df6be --- /dev/null +++ b/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/View.tsx @@ -0,0 +1,142 @@ +import { Head, router, usePage } from '@inertiajs/react'; +import { useTranslation } from 'react-i18next'; +import AuthenticatedLayout from "@/layouts/authenticated-layout"; +import { Button } from '@/components/ui/button'; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Badge } from '@/components/ui/badge'; +import { ArrowLeft, Edit as EditIcon, Printer } from "lucide-react"; +import { JournalEntryViewProps } from './types'; +import { formatDate, formatCurrency } from '@/utils/helpers'; +import { Separator } from '@/components/ui/separator'; + +export default function View() { + const { t } = useTranslation(); + const { journalEntry, accounts, settings, auth } = usePage().props; + const permissions = auth?.user?.permissions || []; + + const totalDebit = accounts.reduce((sum, item) => sum + (item.debit || 0), 0); + const totalCredit = accounts.reduce((sum, item) => sum + (item.credit || 0), 0); + + return ( + + + +
+
+
+ +
+

+ {t('Journal Entry')} #{String(journalEntry.journal_id).padStart(5, '0')} +

+

{formatDate(journalEntry.date)}

+
+
+
+ {permissions.includes('journalentry edit') && ( + + )} + +
+
+ + {/* Company Info & Entry Details */} + + +
+
+

{settings.company_name}

+

{settings.company_address}

+

+ {[settings.company_city, settings.company_state, settings.company_country].filter(Boolean).join(', ')} +

+ {settings.company_telephone && ( +

{t('Tel')}: {settings.company_telephone}

+ )} +
+
+
+ {t('Date')}:{' '} + {formatDate(journalEntry.date)} +
+ {journalEntry.reference && ( +
+ {t('Reference')}:{' '} + {journalEntry.reference} +
+ )} + {journalEntry.description && ( +
+ {t('Description')}:{' '} + {journalEntry.description} +
+ )} +
+
+ + + + {/* Journal Line Items */} +
+
+
#
+
{t('Account')}
+
{t('Description')}
+
{t('Debit')}
+
{t('Credit')}
+
+ + {accounts.map((item, index) => ( +
+
{index + 1}
+
+ {item.account_code && {item.account_code} - } + {item.account_name || `Account #${item.account}`} +
+
{item.description || '-'}
+
+ {item.debit > 0 ? ( + {formatCurrency(item.debit)} + ) : '-'} +
+
+ {item.credit > 0 ? ( + {formatCurrency(item.credit)} + ) : '-'} +
+
+ ))} + + {/* Total Row */} +
+
{t('Total')}
+
+ {formatCurrency(totalDebit)} +
+
+ {formatCurrency(totalCredit)} +
+
+
+ + {/* Balance Check */} +
+ + {Math.abs(totalDebit - totalCredit) < 0.01 + ? `✅ ${t('Balanced')}` + : `⚠️ ${t('Unbalanced')}: ${formatCurrency(Math.abs(totalDebit - totalCredit))}` + } + +
+
+
+
+
+ ); +} diff --git a/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/types.ts b/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/types.ts new file mode 100644 index 0000000..b48666b --- /dev/null +++ b/packages/workdo/Account/src/Resources/js/Pages/JournalEntries/types.ts @@ -0,0 +1,101 @@ +export interface JournalItem { + id: number; + journal: number; + account: number; + account_name?: string; + account_code?: string; + description: string; + debit: number; + credit: number; + workspace?: number; + created_by: number; + created_at: string; + updated_at: string; +} + +export interface JournalEntry { + id: number; + journal_id: number; + date: string; + reference: string | null; + description: string | null; + workspace?: number; + created_by: number; + created_at: string; + updated_at: string; + accounts?: JournalItem[]; + total_debit?: number; + total_credit?: number; +} + +export interface ChartAccount { + id: number; + code: string; + name: string; + parent: number; + account?: string; +} + +export interface JournalEntryIndexProps { + auth: { + user: { + permissions: string[]; + roles: string[]; + }; + }; + entries: { + data: JournalEntry[]; + current_page: number; + last_page: number; + per_page: number; + total: number; + from: number; + to: number; + links: Array<{ url: string | null; label: string; active: boolean }>; + }; + filters: { + search: string; + start_date: string; + end_date: string; + }; +} + +export interface JournalEntryCreateProps { + auth: { + user: { + permissions: string[]; + }; + }; + chartAccounts: ChartAccount[]; + subAccounts: ChartAccount[]; + journalId: number; +} + +export interface JournalEntryViewProps { + auth: { + user: { + permissions: string[]; + }; + }; + journalEntry: JournalEntry; + accounts: JournalItem[]; + settings: { + company_name: string; + company_telephone: string; + company_address: string; + company_city: string; + company_state: string; + company_country: string; + }; +} + +export interface JournalEntryEditProps { + auth: { + user: { + permissions: string[]; + }; + }; + journalEntry: JournalEntry; + chartAccounts: ChartAccount[]; + subAccounts: ChartAccount[]; +} diff --git a/packages/workdo/Account/src/Resources/js/Pages/Reports/BalanceSheet.tsx b/packages/workdo/Account/src/Resources/js/Pages/Reports/BalanceSheet.tsx new file mode 100644 index 0000000..3ab825b --- /dev/null +++ b/packages/workdo/Account/src/Resources/js/Pages/Reports/BalanceSheet.tsx @@ -0,0 +1,178 @@ +import { useState } from 'react'; +import { Head, router, usePage } from '@inertiajs/react'; +import { useTranslation } from 'react-i18next'; +import AuthenticatedLayout from "@/layouts/authenticated-layout"; +import { Button } from '@/components/ui/button'; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Input } from '@/components/ui/input'; +import { Label } from '@/components/ui/label'; +import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs'; +import { Printer, ChevronDown, ChevronRight, Columns, Rows } from "lucide-react"; +import { BalanceSheetProps, BalanceSheetAccount } from './types-financial'; +import { formatCurrency } from '@/utils/helpers'; +import { Separator } from '@/components/ui/separator'; + +function AccountRow({ account, depth = 0, collapsed = false }: { account: BalanceSheetAccount; depth?: number; collapsed?: boolean }) { + const [isOpen, setIsOpen] = useState(!collapsed); + const hasChildren = account.children && account.children.length > 0; + + return ( + <> +
hasChildren && setIsOpen(!isOpen)} + > +
+ {hasChildren && (isOpen ? : )} + {!hasChildren && } + {account.code ? `${account.code} - ` : ''}{account.name} +
+
{formatCurrency(account.total)}
+
+ {hasChildren && isOpen && account.children!.map(child => ( + + ))} + + ); +} + +function BalanceSection({ title, accounts, total }: { title: string; accounts: BalanceSheetAccount[]; total: number }) { + const { t } = useTranslation(); + + return ( +
+

{title}

+
+ {accounts.map(account => ( + + ))} +
+
{t('Total')} {title}
+
{formatCurrency(total)}
+
+
+
+ ); +} + +export default function BalanceSheet() { + const { t } = useTranslation(); + const { totalAsset, totalLiability, totalEquity, totalLiabilityEquity, chartAccounts, view, collapseview, filter } = usePage().props; + + const [startDate, setStartDate] = useState(filter?.startDateRange || ''); + const [endDate, setEndDate] = useState(filter?.endDateRange || ''); + const [activeView, setActiveView] = useState(view || 'horizontal'); + + const handleFilter = () => { + router.get(route('account.financial-reports.balance-sheet', { view: activeView }), { + start_date: startDate, + end_date: endDate, + }, { preserveState: true }); + }; + + const handleViewChange = (newView: string) => { + setActiveView(newView); + router.get(route('account.financial-reports.balance-sheet', { view: newView }), { + start_date: startDate, + end_date: endDate, + }, { preserveState: true }); + }; + + // Separate accounts by type + const assetAccounts = chartAccounts?.filter(a => a.sub_type === 'Assets') || []; + const liabilityAccounts = chartAccounts?.filter(a => a.sub_type === 'Liabilities') || []; + const equityAccounts = chartAccounts?.filter(a => a.sub_type === 'Equity') || []; + + return ( + + + +
+
+
+

{t('Balance Sheet')}

+

{t('Financial position at a point in time')}

+
+
+ + + +
+
+ + {/* Date Filter */} + + +
+
+ + setStartDate(e.target.value)} /> +
+
+ + setEndDate(e.target.value)} /> +
+
+ +
+
+
+
+ + {/* Balance Sheet Content */} + {activeView === 'horizontal' ? ( +
+ {/* Left: Assets */} + + + a.accounts || [])} total={totalAsset} /> + + + + {/* Right: Liabilities + Equity */} + + + a.accounts || [])} total={totalLiability} /> + a.accounts || [])} total={totalEquity} /> + +
+ {t('Total Liabilities & Equity')} + {formatCurrency(totalLiabilityEquity)} +
+
+
+
+ ) : ( + /* Vertical View */ + + + a.accounts || [])} total={totalAsset} /> + + a.accounts || [])} total={totalLiability} /> + + a.accounts || [])} total={totalEquity} /> + +
+
+ {t('Total Assets')} + {formatCurrency(totalAsset)} +
+
+ {t('Total Liabilities & Equity')} + {formatCurrency(totalLiabilityEquity)} +
+
+
+
+ )} +
+
+ ); +} diff --git a/packages/workdo/Account/src/Resources/js/Pages/Reports/Ledger.tsx b/packages/workdo/Account/src/Resources/js/Pages/Reports/Ledger.tsx new file mode 100644 index 0000000..9bd8167 --- /dev/null +++ b/packages/workdo/Account/src/Resources/js/Pages/Reports/Ledger.tsx @@ -0,0 +1,149 @@ +import { useState, useMemo } from 'react'; +import { Head, router, usePage } from '@inertiajs/react'; +import { useTranslation } from 'react-i18next'; +import AuthenticatedLayout from "@/layouts/authenticated-layout"; +import { Button } from '@/components/ui/button'; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Input } from '@/components/ui/input'; +import { Label } from '@/components/ui/label'; +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'; +import { Search, Printer } from "lucide-react"; +import { LedgerProps } from './types-financial'; +import { formatCurrency } from '@/utils/helpers'; + +export default function Ledger() { + const { t } = useTranslation(); + const { filter, accounts, chart_accounts, subAccounts } = usePage().props; + + const [startDate, setStartDate] = useState(filter.startDateRange); + const [endDate, setEndDate] = useState(filter.endDateRange); + const [selectedAccount, setSelectedAccount] = useState(''); + + const allAccounts = useMemo(() => { + const parents = accounts.map(a => ({ + id: a.id, + label: `${a.code} - ${a.name}`, + })); + const children = subAccounts.map(a => ({ + id: a.id, + label: ` ${a.code} - ${a.name}`, + })); + return [...parents, ...children].sort((a, b) => a.label.localeCompare(b.label)); + }, [accounts, subAccounts]); + + const handleFilter = () => { + router.get(route('account.financial-reports.ledger'), { + account: selectedAccount === 'all' ? '' : selectedAccount, + start_date: startDate, + end_date: endDate, + }, { preserveState: true }); + }; + + return ( + + + +
+
+
+

{t('General Ledger')}

+

{t('Account transaction history')}

+
+ +
+ + {/* Filters */} + + +
+
+ + +
+
+ + setStartDate(e.target.value)} /> +
+
+ + setEndDate(e.target.value)} /> +
+
+ +
+
+
+
+ + {/* Ledger Table */} + {chart_accounts.map(account => ( + + + + {account.code} + {account.name} + + + + {account.transactions && account.transactions.length > 0 ? ( +
+
+
{t('Date')}
+
{t('Description')}
+
{t('Debit')}
+
{t('Credit')}
+
{t('Balance')}
+
+ {(() => { + let runningBalance = 0; + return account.transactions.map((tx, idx) => { + if (tx.transaction_type === 'Debit') { + runningBalance += tx.transaction_amount; + } else { + runningBalance -= tx.transaction_amount; + } + return ( +
+
{tx.date}
+
{tx.reference}{tx.description ? ` - ${tx.description}` : ''}
+
+ {tx.transaction_type === 'Debit' ? formatCurrency(tx.transaction_amount) : '-'} +
+
+ {tx.transaction_type === 'Credit' ? formatCurrency(tx.transaction_amount) : '-'} +
+
= 0 ? 'text-foreground' : 'text-destructive'}`}> + {formatCurrency(Math.abs(runningBalance))} + {runningBalance < 0 ? ' CR' : ' DR'} +
+
+ ); + }); + })()} +
+ ) : ( +

{t('No transactions for this period')}

+ )} +
+
+ ))} +
+
+ ); +} diff --git a/packages/workdo/Account/src/Resources/js/Pages/Reports/ProfitLoss.tsx b/packages/workdo/Account/src/Resources/js/Pages/Reports/ProfitLoss.tsx new file mode 100644 index 0000000..be5b60c --- /dev/null +++ b/packages/workdo/Account/src/Resources/js/Pages/Reports/ProfitLoss.tsx @@ -0,0 +1,224 @@ +import { useState } from 'react'; +import { Head, router, usePage } from '@inertiajs/react'; +import { useTranslation } from 'react-i18next'; +import AuthenticatedLayout from "@/layouts/authenticated-layout"; +import { Button } from '@/components/ui/button'; +import { Card, CardContent } from "@/components/ui/card"; +import { Input } from '@/components/ui/input'; +import { Label } from '@/components/ui/label'; +import { Printer, Columns, Rows, TrendingUp, TrendingDown, ChevronDown, ChevronRight } from "lucide-react"; +import { ProfitLossProps, BalanceSheetAccount } from './types-financial'; +import { formatCurrency } from '@/utils/helpers'; +import { Separator } from '@/components/ui/separator'; + +function AccountRow({ account, depth = 0 }: { account: BalanceSheetAccount; depth?: number }) { + const [isOpen, setIsOpen] = useState(true); + const hasChildren = account.children && account.children.length > 0; + + return ( + <> +
hasChildren && setIsOpen(!isOpen)} + > +
+ {hasChildren && (isOpen ? : )} + {!hasChildren && } + {account.code ? `${account.code} - ` : ''}{account.name} +
+
{formatCurrency(account.total)}
+
+ {hasChildren && isOpen && account.children!.map(child => ( + + ))} + + ); +} + +export default function ProfitLoss() { + const { t } = useTranslation(); + const { totalIncome, totalExpense, netProfit, incomeAccounts, expenseAccounts, view, filter } = usePage().props; + + const [startDate, setStartDate] = useState(filter?.startDateRange || ''); + const [endDate, setEndDate] = useState(filter?.endDateRange || ''); + const [activeView, setActiveView] = useState(view || 'horizontal'); + + const handleFilter = () => { + router.get(route('account.financial-reports.profit-loss', { view: activeView }), { + start_date: startDate, + end_date: endDate, + }, { preserveState: true }); + }; + + const handleViewChange = (newView: string) => { + setActiveView(newView); + router.get(route('account.financial-reports.profit-loss', { view: newView }), { + start_date: startDate, + end_date: endDate, + }, { preserveState: true }); + }; + + const isProfit = netProfit >= 0; + + return ( + + + +
+
+
+

{t('Profit & Loss')}

+

{t('Income and expense summary')}

+
+
+ + + +
+
+ + {/* Summary Cards */} +
+ + +
+ +
+
+

{t('Total Income')}

+

{formatCurrency(totalIncome)}

+
+
+
+ + +
+ +
+
+

{t('Total Expenses')}

+

{formatCurrency(totalExpense)}

+
+
+
+ + +
+ {isProfit ? : } +
+
+

{isProfit ? t('Net Profit') : t('Net Loss')}

+

+ {formatCurrency(Math.abs(netProfit))} +

+
+
+
+
+ + {/* Date Filter */} + + +
+
+ + setStartDate(e.target.value)} /> +
+
+ + setEndDate(e.target.value)} /> +
+
+ +
+
+
+
+ + {/* P&L Content */} + {activeView === 'horizontal' ? ( +
+ + +

{t('Income')}

+
+ {(incomeAccounts || []).map(group => ( +
+ {(group.accounts || []).map(account => ( + + ))} +
+ ))} +
+
{t('Total Income')}
+
{formatCurrency(totalIncome)}
+
+
+
+
+ + +

{t('Expenses')}

+
+ {(expenseAccounts || []).map(group => ( +
+ {(group.accounts || []).map(account => ( + + ))} +
+ ))} +
+
{t('Total Expenses')}
+
{formatCurrency(totalExpense)}
+
+
+
+
+
+ ) : ( + + +
+

{t('Income')}

+
+ {(incomeAccounts || []).map(group => ( +
{(group.accounts || []).map(a => )}
+ ))} +
+
{t('Total Income')}
+
{formatCurrency(totalIncome)}
+
+
+
+ +
+

{t('Expenses')}

+
+ {(expenseAccounts || []).map(group => ( +
{(group.accounts || []).map(a => )}
+ ))} +
+
{t('Total Expenses')}
+
{formatCurrency(totalExpense)}
+
+
+
+ +
+ {isProfit ? t('Net Profit') : t('Net Loss')} + {formatCurrency(Math.abs(netProfit))} +
+
+
+ )} +
+
+ ); +} diff --git a/packages/workdo/Account/src/Resources/js/Pages/Reports/TrialBalance.tsx b/packages/workdo/Account/src/Resources/js/Pages/Reports/TrialBalance.tsx new file mode 100644 index 0000000..f32e0c6 --- /dev/null +++ b/packages/workdo/Account/src/Resources/js/Pages/Reports/TrialBalance.tsx @@ -0,0 +1,128 @@ +import { useState } from 'react'; +import { Head, router, usePage } from '@inertiajs/react'; +import { useTranslation } from 'react-i18next'; +import AuthenticatedLayout from "@/layouts/authenticated-layout"; +import { Button } from '@/components/ui/button'; +import { Card, CardContent } from "@/components/ui/card"; +import { Input } from '@/components/ui/input'; +import { Label } from '@/components/ui/label'; +import { Printer } from "lucide-react"; +import { TrialBalanceProps } from './types-financial'; +import { formatCurrency } from '@/utils/helpers'; + +export default function TrialBalance() { + const { t } = useTranslation(); + const { accounts, totalDebit, totalCredit, filter } = usePage().props; + + const [startDate, setStartDate] = useState(filter?.startDateRange || ''); + const [endDate, setEndDate] = useState(filter?.endDateRange || ''); + + const handleFilter = () => { + router.get(route('account.financial-reports.trial-balance'), { + start_date: startDate, + end_date: endDate, + }, { preserveState: true }); + }; + + const isBalanced = Math.abs(totalDebit - totalCredit) < 0.01; + + return ( + + + +
+
+
+

{t('Trial Balance')}

+

{t('Verify debit and credit balances')}

+
+ +
+ + {/* Date Filter */} + + +
+
+ + setStartDate(e.target.value)} /> +
+
+ + setEndDate(e.target.value)} /> +
+
+ +
+
+
+
+ + {/* Trial Balance Table */} + + +
+ {/* Header */} +
+
{t('Account')}
+
{t('Debit')}
+
{t('Credit')}
+
+ + {/* Account Groups */} + {(accounts || []).map((group, groupIdx) => ( +
+ {/* Group Header */} +
+
{group.name}
+
+ + {/* Individual Accounts */} + {(group.accounts || []).map(account => ( +
+
+ {account.code} + {account.name} +
+
+ {account.debit > 0 ? formatCurrency(account.debit) : '-'} +
+
+ {account.credit > 0 ? formatCurrency(account.credit) : '-'} +
+
+ ))} + + {/* Group Subtotal */} +
+
{t('Subtotal')} - {group.name}
+
{formatCurrency(group.totalDebit)}
+
{formatCurrency(group.totalCredit)}
+
+
+ ))} + + {/* Grand Total */} +
+
{t('Total')}
+
{formatCurrency(totalDebit)}
+
{formatCurrency(totalCredit)}
+
+
+ + {/* Balance Status */} +
+ {isBalanced ? ( + ✅ {t('Trial Balance is balanced')} + ) : ( + ⚠️ {t('Trial Balance is NOT balanced')} — {t('Difference')}: {formatCurrency(Math.abs(totalDebit - totalCredit))} + )} +
+
+
+
+
+ ); +} diff --git a/packages/workdo/Account/src/Resources/js/Pages/Reports/types-financial.ts b/packages/workdo/Account/src/Resources/js/Pages/Reports/types-financial.ts new file mode 100644 index 0000000..9bee2e5 --- /dev/null +++ b/packages/workdo/Account/src/Resources/js/Pages/Reports/types-financial.ts @@ -0,0 +1,121 @@ +export interface ChartAccount { + id: number; + code: string; + name: string; + parent: number; + account?: string; +} + +export interface TransactionLine { + id: number; + date: string; + account_id: number; + account_name?: string; + account_code?: string; + transaction_type: 'Debit' | 'Credit'; + transaction_amount: number; + reference: string; + reference_id: number; + description?: string; +} + +export interface LedgerProps { + auth: { user: { permissions: string[] } }; + filter: { + balance: number; + credit: number; + debit: number; + startDateRange: string; + endDateRange: string; + }; + accounts: ChartAccount[]; + chart_accounts: Array; + subAccounts: ChartAccount[]; +} + +export interface BalanceSheetAccount { + id: number; + code: string; + name: string; + total: number; + sub_type?: string; + children?: BalanceSheetAccount[]; +} + +export interface BalanceSheetSection { + title: string; + accounts: BalanceSheetAccount[]; + total: number; +} + +export interface BalanceSheetProps { + auth: { user: { permissions: string[] } }; + totalAsset: number; + totalLiability: number; + totalEquity: number; + totalLiabilityEquity: number; + chartAccounts: Array<{ + id: number; + name: string; + total: number; + sub_type: string; + accounts: BalanceSheetAccount[]; + }>; + view: 'horizontal' | 'vertical' | ''; + collapseview: 'expand' | 'collapse'; + filter: { + startDateRange: string; + endDateRange: string; + }; +} + +export interface ProfitLossProps { + auth: { user: { permissions: string[] } }; + totalIncome: number; + totalExpense: number; + netProfit: number; + incomeAccounts: Array<{ + id: number; + name: string; + total: number; + accounts: BalanceSheetAccount[]; + }>; + expenseAccounts: Array<{ + id: number; + name: string; + total: number; + accounts: BalanceSheetAccount[]; + }>; + view: 'horizontal' | 'vertical' | ''; + collapseview: 'expand' | 'collapse'; + filter: { + startDateRange: string; + endDateRange: string; + }; +} + +export interface TrialBalanceAccount { + id: number; + code: string; + name: string; + debit: number; + credit: number; + sub_type?: string; +} + +export interface TrialBalanceProps { + auth: { user: { permissions: string[] } }; + accounts: Array<{ + name: string; + accounts: TrialBalanceAccount[]; + totalDebit: number; + totalCredit: number; + }>; + totalDebit: number; + totalCredit: number; + view: 'horizontal' | 'vertical' | ''; + filter: { + startDateRange: string; + endDateRange: string; + }; +} diff --git a/packages/workdo/Account/src/Resources/js/menus/company-menu.ts b/packages/workdo/Account/src/Resources/js/menus/company-menu.ts index 6995353..c98ced4 100755 --- a/packages/workdo/Account/src/Resources/js/menus/company-menu.ts +++ b/packages/workdo/Account/src/Resources/js/menus/company-menu.ts @@ -1,4 +1,4 @@ -import { Calculator, Building2, CreditCard, FileText, Landmark, BarChart3 } from 'lucide-react'; +import { Calculator, Building2, CreditCard, FileText, Landmark, BarChart3, BookOpen } from 'lucide-react'; declare global { function route(name: string): string; @@ -45,6 +45,11 @@ export const accountCompanyMenu = (t: (key: string) => string) => [ href: route('account.chart-of-accounts.index'), permission: 'manage-chart-of-accounts', }, + { + title: t('Journal Entries'), + href: route('account.journal-entries.index'), + permission: 'journalentry manage', + }, { title: t('Vendor Payments'), href: route('account.vendor-payments.index'), @@ -80,6 +85,32 @@ export const accountCompanyMenu = (t: (key: string) => string) => [ href: route('account.reports.index'), permission: 'manage-account-reports', }, + { + title: t('Financial Reports'), + permission: 'report ledger', + children: [ + { + title: t('Ledger'), + href: route('account.financial-reports.ledger'), + permission: 'report ledger', + }, + { + title: t('Balance Sheet'), + href: route('account.financial-reports.balance-sheet'), + permission: 'report balance sheet', + }, + { + title: t('Profit & Loss'), + href: route('account.financial-reports.profit-loss'), + permission: 'report profit loss', + }, + { + title: t('Trial Balance'), + href: route('account.financial-reports.trial-balance'), + permission: 'report trial balance', + }, + ], + }, { title: t('System Setup'), href: route('account.account-types.index'), diff --git a/packages/workdo/Account/src/Routes/web.php b/packages/workdo/Account/src/Routes/web.php index c9dcac6..8bdb052 100755 --- a/packages/workdo/Account/src/Routes/web.php +++ b/packages/workdo/Account/src/Routes/web.php @@ -22,6 +22,8 @@ use Workdo\Account\Http\Controllers\CustomerPaymentController; use Workdo\Account\Http\Controllers\RevenueController; use Workdo\Account\Http\Controllers\ExpenseController; use Workdo\Account\Http\Controllers\ReportsController; +use Workdo\Account\Http\Controllers\JournalEntryController; +use Workdo\Account\Http\Controllers\FinancialReportController; use Workdo\Account\Models\AccountType; Route::middleware(['web', 'auth', 'verified', 'PlanModuleCheck:Account'])->group(function () { @@ -150,4 +152,24 @@ Route::middleware(['web', 'auth', 'verified', 'PlanModuleCheck:Account'])->group Route::get('/vendor/{vendor}', [ReportsController::class, 'vendorDetail'])->name('vendor-detail'); Route::get('/vendor/{vendor}/print', [ReportsController::class, 'printVendorDetail'])->name('vendor-detail.print'); }); + + // Journal Entries (merged from DoubleEntry) + Route::prefix('account/journal-entries')->name('account.journal-entries.')->group(function () { + Route::get('/', [JournalEntryController::class, 'index'])->name('index'); + Route::get('/create', [JournalEntryController::class, 'create'])->name('create'); + Route::post('/', [JournalEntryController::class, 'store'])->name('store'); + Route::get('/{journalEntry}', [JournalEntryController::class, 'show'])->name('show'); + Route::get('/{journalEntry}/edit', [JournalEntryController::class, 'edit'])->name('edit'); + Route::put('/{journalEntry}', [JournalEntryController::class, 'update'])->name('update'); + Route::delete('/{journalEntry}', [JournalEntryController::class, 'destroy'])->name('destroy'); + Route::post('/account/destroy', [JournalEntryController::class, 'accountDestroy'])->name('account.destroy'); + }); + + // Financial Reports (merged from DoubleEntry) + Route::prefix('account/financial-reports')->name('account.financial-reports.')->group(function () { + Route::get('/ledger', [FinancialReportController::class, 'ledgerReport'])->name('ledger'); + Route::get('/balance-sheet', [FinancialReportController::class, 'balanceSheet'])->name('balance-sheet'); + Route::get('/profit-loss', [FinancialReportController::class, 'profitLoss'])->name('profit-loss'); + Route::get('/trial-balance', [FinancialReportController::class, 'trialBalance'])->name('trial-balance'); + }); }); diff --git a/packages/workdo/AssetManagement/composer.json b/packages/workdo/AssetManagement/composer.json new file mode 100644 index 0000000..d180eb7 --- /dev/null +++ b/packages/workdo/AssetManagement/composer.json @@ -0,0 +1,24 @@ +{ + "name": "workdo/assetmanagement", + "description": "Fixed asset lifecycle management module", + "type": "library", + "license": "MIT", + "autoload": { + "psr-4": { + "Workdo\\AssetManagement\\": "src/" + } + }, + "authors": [ + { + "name": "NNT", + "email": "support@nnt.com" + } + ], + "extra": { + "laravel": { + "providers": [ + "Workdo\\AssetManagement\\Providers\\AssetManagementServiceProvider" + ] + } + } +} diff --git a/packages/workdo/AssetManagement/module.json b/packages/workdo/AssetManagement/module.json new file mode 100644 index 0000000..ec66cb7 --- /dev/null +++ b/packages/workdo/AssetManagement/module.json @@ -0,0 +1,10 @@ +{ + "name": "AssetManagement", + "alias": "Asset Management", + "description": "Fixed asset lifecycle management with depreciation, maintenance, and disposal tracking", + "priority": 420, + "version": 1.0, + "monthly_price": 0, + "yearly_price": 0, + "package_name": "assetmanagement" +} diff --git a/packages/workdo/AssetManagement/src/Console/RunDepreciationCommand.php b/packages/workdo/AssetManagement/src/Console/RunDepreciationCommand.php new file mode 100644 index 0000000..39a157c --- /dev/null +++ b/packages/workdo/AssetManagement/src/Console/RunDepreciationCommand.php @@ -0,0 +1,50 @@ +option('month'); + $forMonth = $monthInput ? Carbon::createFromFormat('Y-m', $monthInput)->startOfMonth() : now()->startOfMonth(); + $dryRun = $this->option('dry-run'); + $assetId = $this->option('asset-id'); + + $this->info(($dryRun ? '🔍 DRY RUN — ' : '⚡ POSTING — ') . "Depreciation for {$forMonth->format('F Y')}"); + $this->newLine(); + + $results = $service->runMonthly($forMonth, $dryRun, $assetId ? (int) $assetId : null); + + if (!empty($results['entries'])) { + $this->table( + ['Asset #', 'Name', 'Amount', 'Accumulated', 'Book Value'], + array_map(fn($e) => [$e['asset'], $e['name'], number_format($e['amount'], 2), number_format($e['accumulated'], 2), number_format($e['book_value'], 2)], $results['entries']) + ); + } + + $this->newLine(); + $this->info("✅ Processed: {$results['processed']}"); + $this->info("⏭️ Skipped: {$results['skipped']}"); + + if (!empty($results['errors'])) { + $this->error("❌ Errors: " . count($results['errors'])); + foreach ($results['errors'] as $error) { + $this->error(" → {$error}"); + } + } + + return 0; + } +} diff --git a/packages/workdo/AssetManagement/src/Console/WarrantyAlertCommand.php b/packages/workdo/AssetManagement/src/Console/WarrantyAlertCommand.php new file mode 100644 index 0000000..8b01f76 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Console/WarrantyAlertCommand.php @@ -0,0 +1,80 @@ +option('days'); + $this->info("🔍 Checking alerts (threshold: {$days} days)"); + $this->newLine(); + + // Expiring warranties + $warranties = Asset::whereNotNull('warranty_expiry') + ->where('warranty_expiry', '>=', now()) + ->where('warranty_expiry', '<=', now()->addDays($days)) + ->whereNotIn('status', ['disposed', 'written_off']) + ->get(['asset_number', 'name', 'warranty_expiry']); + + if ($warranties->isNotEmpty()) { + $this->warn("⚠️ Warranties expiring within {$days} days:"); + $this->table( + ['Asset #', 'Name', 'Expiry Date', 'Days Left'], + $warranties->map(fn($a) => [$a->asset_number, $a->name, $a->warranty_expiry->format('Y-m-d'), $a->warranty_expiry->diffInDays(now())])->toArray() + ); + } else { + $this->info("✅ No warranties expiring within {$days} days."); + } + $this->newLine(); + + // Expiring insurance + $insurances = AssetInsurance::where('status', 'active') + ->where('expiry_date', '>=', now()) + ->where('expiry_date', '<=', now()->addDays($days)) + ->with('asset:id,name,asset_number') + ->get(); + + if ($insurances->isNotEmpty()) { + $this->warn("⚠️ Insurance policies expiring within {$days} days:"); + $this->table( + ['Asset', 'Policy #', 'Provider', 'Expiry Date'], + $insurances->map(fn($i) => [$i->asset->asset_number ?? '-', $i->policy_number, $i->provider, $i->expiry_date->format('Y-m-d')])->toArray() + ); + } else { + $this->info("✅ No insurance policies expiring within {$days} days."); + } + $this->newLine(); + + // Overdue maintenance + $overdue = AssetMaintenance::where('status', 'scheduled') + ->where('scheduled_date', '<', now()) + ->with('asset:id,name,asset_number') + ->get(); + + if ($overdue->isNotEmpty()) { + $this->error("🚨 Overdue maintenance ({$overdue->count()}):"); + $this->table( + ['Asset', 'Maintenance #', 'Title', 'Scheduled', 'Days Overdue'], + $overdue->map(fn($m) => [$m->asset->asset_number ?? '-', $m->maintenance_number, $m->title, $m->scheduled_date->format('Y-m-d'), $m->scheduled_date->diffInDays(now())])->toArray() + ); + + // Mark as overdue + AssetMaintenance::where('status', 'scheduled') + ->where('scheduled_date', '<', now()) + ->update(['status' => 'overdue']); + } else { + $this->info("✅ No overdue maintenance."); + } + + return 0; + } +} diff --git a/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000001_create_asset_categories_table.php b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000001_create_asset_categories_table.php new file mode 100644 index 0000000..5c49738 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000001_create_asset_categories_table.php @@ -0,0 +1,35 @@ +id(); + $table->string('name'); + $table->text('description')->nullable(); + $table->enum('depreciation_method', ['straight_line', 'declining_balance', 'units_of_production'])->default('straight_line'); + $table->integer('default_useful_life_months')->default(60); + $table->decimal('default_salvage_percentage', 5, 2)->default(10.00); + $table->unsignedBigInteger('asset_gl_account_id')->nullable(); + $table->unsignedBigInteger('depreciation_gl_account_id')->nullable(); + $table->unsignedBigInteger('expense_gl_account_id')->nullable(); + $table->integer('creator_id')->default(0); + $table->integer('created_by')->default(0); + $table->timestamps(); + + $table->foreign('asset_gl_account_id')->references('id')->on('chart_of_accounts')->onDelete('set null'); + $table->foreign('depreciation_gl_account_id')->references('id')->on('chart_of_accounts')->onDelete('set null'); + $table->foreign('expense_gl_account_id')->references('id')->on('chart_of_accounts')->onDelete('set null'); + }); + } + + public function down(): void + { + Schema::dropIfExists('asset_categories'); + } +}; diff --git a/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000002_create_assets_table.php b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000002_create_assets_table.php new file mode 100644 index 0000000..acde44f --- /dev/null +++ b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000002_create_assets_table.php @@ -0,0 +1,55 @@ +id(); + $table->string('asset_number')->unique(); + $table->string('name'); + $table->text('description')->nullable(); + $table->foreignId('category_id')->constrained('asset_categories')->onDelete('cascade'); + $table->date('purchase_date'); + $table->decimal('purchase_price', 15, 2); + $table->decimal('salvage_value', 15, 2)->default(0); + $table->integer('useful_life_months')->default(60); + $table->enum('depreciation_method', ['straight_line', 'declining_balance', 'units_of_production'])->default('straight_line'); + $table->date('depreciation_start_date'); + $table->enum('status', ['active', 'checked_out', 'under_maintenance', 'disposed', 'written_off'])->default('active'); + $table->enum('condition', ['new', 'good', 'fair', 'poor'])->default('new'); + $table->string('location')->nullable(); + $table->unsignedBigInteger('assigned_to')->nullable(); + $table->string('serial_number')->nullable(); + $table->string('model_number')->nullable(); + $table->string('manufacturer')->nullable(); + $table->string('qr_code')->nullable(); + $table->date('warranty_start')->nullable(); + $table->date('warranty_expiry')->nullable(); + $table->string('image')->nullable(); + $table->decimal('current_book_value', 15, 2)->default(0); + $table->decimal('accumulated_depreciation', 15, 2)->default(0); + $table->date('last_depreciation_date')->nullable(); + $table->unsignedBigInteger('vendor_id')->nullable(); + $table->unsignedBigInteger('purchase_invoice_id')->nullable(); + $table->text('notes')->nullable(); + $table->integer('creator_id')->default(0); + $table->integer('created_by')->default(0); + $table->timestamps(); + + $table->foreign('assigned_to')->references('id')->on('users')->onDelete('set null'); + $table->foreign('vendor_id')->references('id')->on('vendors')->onDelete('set null'); + $table->index(['created_by', 'status']); + $table->index('category_id'); + }); + } + + public function down(): void + { + Schema::dropIfExists('assets'); + } +}; diff --git a/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000003_create_asset_depreciations_table.php b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000003_create_asset_depreciations_table.php new file mode 100644 index 0000000..7f43ea9 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000003_create_asset_depreciations_table.php @@ -0,0 +1,32 @@ +id(); + $table->foreignId('asset_id')->constrained('assets')->onDelete('cascade'); + $table->date('depreciation_date'); + $table->decimal('amount', 15, 2); + $table->decimal('accumulated_total', 15, 2); + $table->decimal('book_value_after', 15, 2); + $table->unsignedBigInteger('journal_entry_id')->nullable(); + $table->enum('status', ['pending', 'posted'])->default('pending'); + $table->integer('created_by')->default(0); + $table->timestamps(); + + $table->foreign('journal_entry_id')->references('id')->on('journal_entries')->onDelete('set null'); + $table->index(['asset_id', 'depreciation_date']); + }); + } + + public function down(): void + { + Schema::dropIfExists('asset_depreciations'); + } +}; diff --git a/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000004_create_asset_maintenances_table.php b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000004_create_asset_maintenances_table.php new file mode 100644 index 0000000..5af3096 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000004_create_asset_maintenances_table.php @@ -0,0 +1,41 @@ +id(); + $table->foreignId('asset_id')->constrained('assets')->onDelete('cascade'); + $table->string('maintenance_number'); + $table->enum('maintenance_type', ['preventive', 'corrective', 'inspection', 'upgrade'])->default('preventive'); + $table->enum('priority', ['low', 'medium', 'high', 'critical'])->default('medium'); + $table->string('title'); + $table->text('description')->nullable(); + $table->decimal('cost', 15, 2)->default(0); + $table->unsignedBigInteger('vendor_id')->nullable(); + $table->date('scheduled_date'); + $table->date('start_date')->nullable(); + $table->date('completed_date')->nullable(); + $table->date('next_maintenance_date')->nullable(); + $table->enum('recurrence', ['monthly', 'quarterly', 'semi_annual', 'annual'])->nullable(); + $table->enum('status', ['scheduled', 'in_progress', 'completed', 'cancelled', 'overdue'])->default('scheduled'); + $table->text('notes')->nullable(); + $table->integer('creator_id')->default(0); + $table->integer('created_by')->default(0); + $table->timestamps(); + + $table->foreign('vendor_id')->references('id')->on('vendors')->onDelete('set null'); + $table->index(['asset_id', 'status']); + }); + } + + public function down(): void + { + Schema::dropIfExists('asset_maintenances'); + } +}; diff --git a/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000005_create_asset_disposals_table.php b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000005_create_asset_disposals_table.php new file mode 100644 index 0000000..ea66005 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000005_create_asset_disposals_table.php @@ -0,0 +1,37 @@ +id(); + $table->foreignId('asset_id')->constrained('assets')->onDelete('cascade'); + $table->string('disposal_number'); + $table->enum('disposal_type', ['sale', 'write_off', 'donation', 'scrapped', 'trade_in'])->default('write_off'); + $table->date('disposal_date'); + $table->decimal('sale_price', 15, 2)->default(0); + $table->decimal('book_value_at_disposal', 15, 2); + $table->decimal('gain_loss', 15, 2)->default(0); + $table->string('buyer_info')->nullable(); + $table->unsignedBigInteger('journal_entry_id')->nullable(); + $table->text('reason')->nullable(); + $table->unsignedBigInteger('approved_by')->nullable(); + $table->integer('creator_id')->default(0); + $table->integer('created_by')->default(0); + $table->timestamps(); + + $table->foreign('journal_entry_id')->references('id')->on('journal_entries')->onDelete('set null'); + $table->foreign('approved_by')->references('id')->on('users')->onDelete('set null'); + }); + } + + public function down(): void + { + Schema::dropIfExists('asset_disposals'); + } +}; diff --git a/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000006_create_asset_assignments_table.php b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000006_create_asset_assignments_table.php new file mode 100644 index 0000000..e634c1b --- /dev/null +++ b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000006_create_asset_assignments_table.php @@ -0,0 +1,35 @@ +id(); + $table->foreignId('asset_id')->constrained('assets')->onDelete('cascade'); + $table->unsignedBigInteger('assigned_to'); + $table->unsignedBigInteger('assigned_by'); + $table->datetime('checked_out_at'); + $table->date('expected_return_date')->nullable(); + $table->datetime('checked_in_at')->nullable(); + $table->enum('condition_on_checkout', ['new', 'good', 'fair', 'poor'])->default('good'); + $table->enum('condition_on_checkin', ['new', 'good', 'fair', 'poor'])->nullable(); + $table->text('notes')->nullable(); + $table->integer('created_by')->default(0); + $table->timestamps(); + + $table->foreign('assigned_to')->references('id')->on('users')->onDelete('cascade'); + $table->foreign('assigned_by')->references('id')->on('users')->onDelete('cascade'); + $table->index(['asset_id', 'checked_in_at']); + }); + } + + public function down(): void + { + Schema::dropIfExists('asset_assignments'); + } +}; diff --git a/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000007_create_asset_insurances_table.php b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000007_create_asset_insurances_table.php new file mode 100644 index 0000000..cb2175d --- /dev/null +++ b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000007_create_asset_insurances_table.php @@ -0,0 +1,35 @@ +id(); + $table->foreignId('asset_id')->constrained('assets')->onDelete('cascade'); + $table->string('policy_number'); + $table->string('provider'); + $table->string('coverage_type')->nullable(); + $table->decimal('premium_amount', 15, 2)->default(0); + $table->decimal('coverage_amount', 15, 2)->default(0); + $table->date('start_date'); + $table->date('expiry_date'); + $table->enum('status', ['active', 'expired', 'cancelled'])->default('active'); + $table->string('document_path')->nullable(); + $table->text('notes')->nullable(); + $table->integer('created_by')->default(0); + $table->timestamps(); + + $table->index(['asset_id', 'status']); + }); + } + + public function down(): void + { + Schema::dropIfExists('asset_insurances'); + } +}; diff --git a/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000008_create_asset_import_logs_table.php b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000008_create_asset_import_logs_table.php new file mode 100644 index 0000000..f585ea7 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000008_create_asset_import_logs_table.php @@ -0,0 +1,30 @@ +id(); + $table->string('file_name'); + $table->integer('total_rows')->default(0); + $table->integer('success_count')->default(0); + $table->integer('error_count')->default(0); + $table->json('errors')->nullable(); + $table->unsignedBigInteger('imported_by'); + $table->integer('created_by')->default(0); + $table->timestamps(); + + $table->foreign('imported_by')->references('id')->on('users')->onDelete('cascade'); + }); + } + + public function down(): void + { + Schema::dropIfExists('asset_import_logs'); + } +}; diff --git a/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000009_add_enterprise_fields.php b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000009_add_enterprise_fields.php new file mode 100644 index 0000000..c05e618 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Database/Migrations/2026_05_02_000009_add_enterprise_fields.php @@ -0,0 +1,65 @@ +enum('depreciation_convention', ['full_month', 'mid_month', 'mid_quarter', 'actual_days']) + ->default('full_month')->after('depreciation_method'); + $table->boolean('is_depreciation_suspended')->default(false)->after('last_depreciation_date'); + $table->string('suspension_reason')->nullable()->after('is_depreciation_suspended'); + }); + + // Asset transfers between locations + Schema::create('asset_transfers', function (Blueprint $table) { + $table->id(); + $table->foreignId('asset_id')->constrained('assets')->onDelete('cascade'); + $table->string('transfer_number'); + $table->string('from_location'); + $table->string('to_location'); + $table->unsignedBigInteger('from_assigned_to')->nullable(); + $table->unsignedBigInteger('to_assigned_to')->nullable(); + $table->date('transfer_date'); + $table->text('reason')->nullable(); + $table->enum('status', ['pending', 'completed', 'rejected'])->default('pending'); + $table->unsignedBigInteger('approved_by')->nullable(); + $table->integer('creator_id')->default(0); + $table->integer('created_by')->default(0); + $table->timestamps(); + + $table->foreign('from_assigned_to')->references('id')->on('users')->onDelete('set null'); + $table->foreign('to_assigned_to')->references('id')->on('users')->onDelete('set null'); + $table->foreign('approved_by')->references('id')->on('users')->onDelete('set null'); + }); + + // Document attachments per asset + Schema::create('asset_documents', function (Blueprint $table) { + $table->id(); + $table->foreignId('asset_id')->constrained('assets')->onDelete('cascade'); + $table->string('title'); + $table->string('file_path'); + $table->string('file_type')->nullable(); + $table->integer('file_size')->default(0); + $table->unsignedBigInteger('uploaded_by'); + $table->integer('created_by')->default(0); + $table->timestamps(); + + $table->foreign('uploaded_by')->references('id')->on('users')->onDelete('cascade'); + }); + } + + public function down(): void + { + Schema::dropIfExists('asset_documents'); + Schema::dropIfExists('asset_transfers'); + Schema::table('assets', function (Blueprint $table) { + $table->dropColumn(['depreciation_convention', 'is_depreciation_suspended', 'suspension_reason']); + }); + } +}; diff --git a/packages/workdo/AssetManagement/src/Database/Seeders/AssetManagementDemoSeeder.php b/packages/workdo/AssetManagement/src/Database/Seeders/AssetManagementDemoSeeder.php new file mode 100644 index 0000000..037d957 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Database/Seeders/AssetManagementDemoSeeder.php @@ -0,0 +1,367 @@ +createdBy)->count() > 0) { + $this->command->info('Asset Management demo data already exists. Skipping.'); + return; + } + + $this->command->info('Seeding Asset Management demo data...'); + + // Step 1: Categories + $categories = $this->seedCategories(); + $this->command->info('✓ 5 categories created'); + + // Step 2: Assets + $assets = $this->seedAssets($categories); + $this->command->info('✓ ' . count($assets) . ' assets created'); + + // Step 3: Maintenance + $this->seedMaintenance($assets); + $this->command->info('✓ 8 maintenance records created'); + + // Step 4: Assignments + $this->seedAssignments($assets); + $this->command->info('✓ 4 assignments created'); + + // Step 5: Transfers + $this->seedTransfers($assets); + $this->command->info('✓ 3 transfers created'); + + // Step 6: Disposals (extra assets) + $this->seedDisposals($categories); + $this->command->info('✓ 2 disposals created'); + + $this->command->info('🎉 Asset Management demo data seeded successfully!'); + } + + private function seedCategories(): array + { + // Look up GL accounts for Equipment + $equipmentGl = \DB::table('chart_of_accounts') + ->where('created_by', $this->createdBy) + ->where('account_code', '1600') + ->value('id'); + + $depreciationGl = \DB::table('chart_of_accounts') + ->where('created_by', $this->createdBy) + ->where('account_code', '1610') + ->value('id'); + + $categoryData = [ + ['name' => 'IT Equipment', 'description' => 'Laptops, monitors, printers, phones, tablets', 'depreciation_method' => 'straight_line', 'default_useful_life_months' => 36, 'default_salvage_percentage' => 10], + ['name' => 'Office Furniture', 'description' => 'Desks, chairs, tables, cabinets', 'depreciation_method' => 'straight_line', 'default_useful_life_months' => 120, 'default_salvage_percentage' => 5], + ['name' => 'Vehicles', 'description' => 'Company cars, vans, scooters', 'depreciation_method' => 'declining_balance', 'default_useful_life_months' => 60, 'default_salvage_percentage' => 15], + ['name' => 'Machinery & Tools', 'description' => 'Forklifts, generators, industrial equipment', 'depreciation_method' => 'straight_line', 'default_useful_life_months' => 84, 'default_salvage_percentage' => 8], + ['name' => 'Network Infrastructure', 'description' => 'Switches, servers, UPS, access points', 'depreciation_method' => 'straight_line', 'default_useful_life_months' => 60, 'default_salvage_percentage' => 5], + ]; + + $categories = []; + foreach ($categoryData as $data) { + $categories[$data['name']] = AssetCategory::create(array_merge($data, [ + 'asset_gl_account_id' => $equipmentGl, + 'depreciation_gl_account_id' => $depreciationGl, + 'creator_id' => $this->creatorId, + 'created_by' => $this->createdBy, + ])); + } + + return $categories; + } + + private function seedAssets(array $categories): array + { + $vendors = \DB::table('vendors') + ->where('created_by', $this->createdBy) + ->pluck('id') + ->toArray(); + + $vendorId = $vendors[0] ?? null; + $vendorId2 = $vendors[1] ?? null; + + $now = Carbon::now(); + + $assetData = [ + // IT Equipment (6) + ['cat' => 'IT Equipment', 'name' => 'MacBook Pro 16" M4 Max', 'price' => 3499, 'condition' => 'new', 'status' => 'active', 'location' => 'Head Office', 'serial' => 'C02ZN1ABCDEF', 'model' => 'A2991', 'manufacturer' => 'Apple', 'vendor' => $vendorId, 'warranty_months' => 12, 'purchase_ago_months' => 3], + ['cat' => 'IT Equipment', 'name' => 'Dell UltraSharp 32" 4K Monitor', 'price' => 799, 'condition' => 'new', 'status' => 'active', 'location' => 'Head Office', 'serial' => 'CN-0F4G5H-74261', 'model' => 'U3223QE', 'manufacturer' => 'Dell', 'vendor' => $vendorId, 'warranty_months' => 36, 'purchase_ago_months' => 6], + ['cat' => 'IT Equipment', 'name' => 'HP LaserJet Pro M404dn', 'price' => 349, 'condition' => 'good', 'status' => 'active', 'location' => 'Branch 1', 'serial' => 'VND3R45678', 'model' => 'M404dn', 'manufacturer' => 'HP', 'vendor' => $vendorId2, 'warranty_months' => 12, 'purchase_ago_months' => 10], + ['cat' => 'IT Equipment', 'name' => 'Lenovo ThinkPad X1 Carbon Gen 12', 'price' => 1899, 'condition' => 'good', 'status' => 'checked_out', 'location' => null, 'serial' => 'PF3N4K5P', 'model' => '21HM', 'manufacturer' => 'Lenovo', 'vendor' => $vendorId, 'warranty_months' => 36, 'purchase_ago_months' => 8], + ['cat' => 'IT Equipment', 'name' => 'iPhone 15 Pro', 'price' => 1199, 'condition' => 'new', 'status' => 'active', 'location' => 'Head Office', 'serial' => 'F4GDQ8ABCDEF', 'model' => 'A3101', 'manufacturer' => 'Apple', 'vendor' => $vendorId, 'warranty_months' => 12, 'purchase_ago_months' => 2], + ['cat' => 'IT Equipment', 'name' => 'iPad Pro 12.9" M2', 'price' => 1299, 'condition' => 'new', 'status' => 'active', 'location' => 'Branch 1', 'serial' => 'DMPZQ7ABCDEF', 'model' => 'A2759', 'manufacturer' => 'Apple', 'vendor' => $vendorId, 'warranty_months' => 12, 'purchase_ago_months' => 4], + + // Office Furniture (4) + ['cat' => 'Office Furniture', 'name' => 'Herman Miller Aeron Chair', 'price' => 1495, 'condition' => 'new', 'status' => 'active', 'location' => 'Head Office', 'serial' => null, 'model' => 'AER1B23DW', 'manufacturer' => 'Herman Miller', 'vendor' => $vendorId2, 'warranty_months' => 144, 'purchase_ago_months' => 6], + ['cat' => 'Office Furniture', 'name' => 'Uplift V2 Standing Desk', 'price' => 899, 'condition' => 'good', 'status' => 'active', 'location' => 'Head Office', 'serial' => null, 'model' => 'V2-6030', 'manufacturer' => 'Uplift Desk', 'vendor' => $vendorId2, 'warranty_months' => 180, 'purchase_ago_months' => 12], + ['cat' => 'Office Furniture', 'name' => 'Conference Table (12-seat)', 'price' => 2400, 'condition' => 'good', 'status' => 'active', 'location' => 'Board Room', 'serial' => null, 'model' => 'CT-12-WN', 'manufacturer' => 'Steelcase', 'vendor' => $vendorId2, 'warranty_months' => 60, 'purchase_ago_months' => 18], + ['cat' => 'Office Furniture', 'name' => 'Filing Cabinet 4-Drawer', 'price' => 350, 'condition' => 'fair', 'status' => 'active', 'location' => 'Archive Room', 'serial' => null, 'model' => 'FC-4D', 'manufacturer' => 'HON', 'vendor' => null, 'warranty_months' => 0, 'purchase_ago_months' => 36], + + // Vehicles (3) + ['cat' => 'Vehicles', 'name' => 'Toyota HiAce Van', 'price' => 35000, 'condition' => 'good', 'status' => 'active', 'location' => 'Warehouse', 'serial' => 'JTFHX02P0F0123456', 'model' => 'KDH201', 'manufacturer' => 'Toyota', 'vendor' => null, 'warranty_months' => 36, 'purchase_ago_months' => 14], + ['cat' => 'Vehicles', 'name' => 'Honda Civic Company Car', 'price' => 28500, 'condition' => 'good', 'status' => 'checked_out', 'location' => null, 'serial' => '2HGFE2F59PH500123', 'model' => 'FE2F59', 'manufacturer' => 'Honda', 'vendor' => null, 'warranty_months' => 36, 'purchase_ago_months' => 18], + ['cat' => 'Vehicles', 'name' => 'Yamaha NMAX 155 Scooter', 'price' => 3200, 'condition' => 'new', 'status' => 'active', 'location' => 'Branch 2', 'serial' => 'MH3SG4670RK012345', 'model' => 'GPD155-A', 'manufacturer' => 'Yamaha', 'vendor' => null, 'warranty_months' => 24, 'purchase_ago_months' => 2], + + // Machinery & Tools (3) + ['cat' => 'Machinery & Tools', 'name' => 'Toyota 8FGU25 Forklift', 'price' => 25000, 'condition' => 'good', 'status' => 'active', 'location' => 'Warehouse', 'serial' => '8FGU25-62345', 'model' => '8FGU25', 'manufacturer' => 'Toyota', 'vendor' => null, 'warranty_months' => 24, 'purchase_ago_months' => 20], + ['cat' => 'Machinery & Tools', 'name' => 'Honda EU7000iS Generator', 'price' => 5500, 'condition' => 'good', 'status' => 'under_maintenance', 'location' => 'Warehouse', 'serial' => 'EAAJ-1234567', 'model' => 'EU7000iS', 'manufacturer' => 'Honda', 'vendor' => null, 'warranty_months' => 36, 'purchase_ago_months' => 10], + ['cat' => 'Machinery & Tools', 'name' => 'Industrial Paper Shredder', 'price' => 2800, 'condition' => 'fair', 'status' => 'active', 'location' => 'Back Office', 'serial' => 'SH-98765', 'model' => 'IDS-3600', 'manufacturer' => 'Fellowes', 'vendor' => $vendorId2, 'warranty_months' => 24, 'purchase_ago_months' => 30], + + // Network Infrastructure (4) + ['cat' => 'Network Infrastructure', 'name' => 'Cisco Catalyst 9200L-48P Switch', 'price' => 4200, 'condition' => 'new', 'status' => 'active', 'location' => 'Server Room', 'serial' => 'FCW2445L0AB', 'model' => 'C9200L-48P-4X', 'manufacturer' => 'Cisco', 'vendor' => $vendorId, 'warranty_months' => 60, 'purchase_ago_months' => 3], + ['cat' => 'Network Infrastructure', 'name' => 'Ubiquiti UniFi 6 Pro AP (6-pack)', 'price' => 1800, 'condition' => 'new', 'status' => 'active', 'location' => 'Head Office', 'serial' => null, 'model' => 'U6-Pro-6', 'manufacturer' => 'Ubiquiti', 'vendor' => $vendorId, 'warranty_months' => 24, 'purchase_ago_months' => 5], + ['cat' => 'Network Infrastructure', 'name' => 'Dell PowerEdge R750 Server', 'price' => 8500, 'condition' => 'new', 'status' => 'active', 'location' => 'Server Room', 'serial' => 'SVT-R750-2024-001', 'model' => 'R750', 'manufacturer' => 'Dell', 'vendor' => $vendorId, 'warranty_months' => 36, 'purchase_ago_months' => 4], + ['cat' => 'Network Infrastructure', 'name' => 'APC Smart-UPS 3000VA', 'price' => 1200, 'condition' => 'good', 'status' => 'active', 'location' => 'Server Room', 'serial' => 'AS1234567890', 'model' => 'SMT3000RM2UC', 'manufacturer' => 'APC', 'vendor' => $vendorId2, 'warranty_months' => 24, 'purchase_ago_months' => 12], + ]; + + $assets = []; + foreach ($assetData as $data) { + $category = $categories[$data['cat']]; + $purchaseDate = $now->copy()->subMonths($data['purchase_ago_months']); + $warrantyMonths = $data['warranty_months']; + + $asset = Asset::create([ + 'name' => $data['name'], + 'category_id' => $category->id, + 'purchase_date' => $purchaseDate->format('Y-m-d'), + 'purchase_price' => $data['price'], + 'salvage_value' => round($data['price'] * ($category->default_salvage_percentage / 100), 2), + 'useful_life_months' => $category->default_useful_life_months, + 'depreciation_method' => $category->depreciation_method, + 'depreciation_start_date' => $purchaseDate->copy()->startOfMonth()->addMonth()->format('Y-m-d'), + 'status' => $data['status'], + 'condition' => $data['condition'], + 'location' => $data['location'], + 'serial_number' => $data['serial'], + 'model_number' => $data['model'], + 'manufacturer' => $data['manufacturer'], + 'vendor_id' => $data['vendor'], + 'current_book_value' => $data['price'], // Will be adjusted by depreciation + 'warranty_start' => $warrantyMonths > 0 ? $purchaseDate->format('Y-m-d') : null, + 'warranty_expiry' => $warrantyMonths > 0 ? $purchaseDate->copy()->addMonths($warrantyMonths)->format('Y-m-d') : null, + 'created_by' => $this->createdBy, + 'creator_id' => $this->creatorId, + ]); + + $assets[$data['name']] = $asset; + } + + // Make some warranties expire soon (for dashboard alerts) + if (isset($assets['MacBook Pro 16" M4 Max'])) { + $assets['MacBook Pro 16" M4 Max']->update(['warranty_expiry' => $now->copy()->addDays(15)->format('Y-m-d')]); + } + if (isset($assets['Dell PowerEdge R750 Server'])) { + $assets['Dell PowerEdge R750 Server']->update(['warranty_expiry' => $now->copy()->addDays(25)->format('Y-m-d')]); + } + + return $assets; + } + + private function seedMaintenance(array $assets): void + { + $now = Carbon::now(); + + $maintenanceData = [ + ['asset' => 'Honda EU7000iS Generator', 'type' => 'corrective', 'priority' => 'high', 'title' => 'Engine overheating repair', 'cost' => 850, 'status' => 'scheduled', 'scheduled' => $now->copy()->addDays(3)], + ['asset' => 'Toyota HiAce Van', 'type' => 'preventive', 'priority' => 'medium', 'title' => 'Regular service & oil change (10,000 km)', 'cost' => 350, 'status' => 'scheduled', 'scheduled' => $now->copy()->addDays(7), 'recurrence' => 'quarterly'], + ['asset' => 'Toyota 8FGU25 Forklift', 'type' => 'inspection', 'priority' => 'low', 'title' => 'Annual safety inspection', 'cost' => 200, 'status' => 'completed', 'scheduled' => $now->copy()->subDays(14), 'completed' => $now->copy()->subDays(12)], + ['asset' => 'HP LaserJet Pro M404dn', 'type' => 'corrective', 'priority' => 'medium', 'title' => 'Paper jam mechanism repair', 'cost' => 120, 'status' => 'completed', 'scheduled' => $now->copy()->subDays(7), 'completed' => $now->copy()->subDays(5)], + ['asset' => 'Cisco Catalyst 9200L-48P Switch', 'type' => 'preventive', 'priority' => 'low', 'title' => 'Firmware update & port cleaning', 'cost' => 0, 'status' => 'scheduled', 'scheduled' => $now->copy()->addDays(14), 'recurrence' => 'semi_annual'], + ['asset' => 'Honda Civic Company Car', 'type' => 'preventive', 'priority' => 'medium', 'title' => 'Tire rotation & brake check', 'cost' => 280, 'status' => 'scheduled', 'scheduled' => $now->copy()->addDays(21)], + ['asset' => 'Dell PowerEdge R750 Server', 'type' => 'inspection', 'priority' => 'high', 'title' => 'RAID health check & backup verification', 'cost' => 0, 'status' => 'scheduled', 'scheduled' => $now->copy()->addDays(5), 'recurrence' => 'monthly'], + ['asset' => 'Industrial Paper Shredder', 'type' => 'corrective', 'priority' => 'high', 'title' => 'Blade sharpening & motor service', 'cost' => 450, 'status' => 'in_progress', 'scheduled' => $now->copy()->subDays(2)], + ]; + + foreach ($maintenanceData as $data) { + $asset = $assets[$data['asset']] ?? null; + if (!$asset) continue; + + AssetMaintenance::create([ + 'asset_id' => $asset->id, + 'maintenance_type' => $data['type'], + 'priority' => $data['priority'], + 'title' => $data['title'], + 'cost' => $data['cost'], + 'status' => $data['status'], + 'scheduled_date' => $data['scheduled']->format('Y-m-d'), + 'completed_date' => isset($data['completed']) ? $data['completed']->format('Y-m-d') : null, + 'recurrence' => $data['recurrence'] ?? null, + 'created_by' => $this->createdBy, + 'creator_id' => $this->creatorId, + ]); + } + } + + private function seedAssignments(array $assets): void + { + $now = Carbon::now(); + + // Get staff users under this company + $staffUsers = \DB::table('users') + ->where('created_by', $this->createdBy) + ->whereIn('type', ['vendor', 'client']) + ->limit(4) + ->pluck('id') + ->toArray(); + + if (count($staffUsers) < 4) { + // Fall back to any users + $staffUsers = \DB::table('users') + ->where('created_by', $this->createdBy) + ->limit(4) + ->pluck('id') + ->toArray(); + } + + $assignmentData = [ + ['asset' => 'Lenovo ThinkPad X1 Carbon Gen 12', 'user_idx' => 0, 'checkout_ago' => 30, 'condition_out' => 'good'], + ['asset' => 'Honda Civic Company Car', 'user_idx' => 1, 'checkout_ago' => 60, 'condition_out' => 'good'], + ['asset' => 'iPad Pro 12.9" M2', 'user_idx' => 2, 'checkout_ago' => 15, 'condition_out' => 'new', 'expected_return_days' => 90], + ['asset' => 'iPhone 15 Pro', 'user_idx' => 3, 'checkout_ago' => 45, 'condition_out' => 'new', 'checkin_ago' => 5, 'condition_in' => 'good'], + ]; + + foreach ($assignmentData as $data) { + $asset = $assets[$data['asset']] ?? null; + $userId = $staffUsers[$data['user_idx']] ?? null; + if (!$asset || !$userId) continue; + + $checkoutDate = $now->copy()->subDays($data['checkout_ago']); + + AssetAssignment::create([ + 'asset_id' => $asset->id, + 'assigned_to' => $userId, + 'assigned_by' => $this->creatorId, + 'checked_out_at' => $checkoutDate->format('Y-m-d H:i:s'), + 'expected_return_date' => isset($data['expected_return_days']) ? $checkoutDate->copy()->addDays($data['expected_return_days'])->format('Y-m-d') : null, + 'checked_in_at' => isset($data['checkin_ago']) ? $now->copy()->subDays($data['checkin_ago'])->format('Y-m-d H:i:s') : null, + 'condition_on_checkout' => $data['condition_out'], + 'condition_on_checkin' => $data['condition_in'] ?? null, + 'created_by' => $this->createdBy, + ]); + + // Update asset assigned_to for active assignments + if (!isset($data['checkin_ago'])) { + $asset->update(['assigned_to' => $userId]); + } + } + } + + private function seedTransfers(array $assets): void + { + $now = Carbon::now(); + + $transferData = [ + ['asset' => 'Dell UltraSharp 32" 4K Monitor', 'from' => 'Head Office', 'to' => 'Branch 1', 'days_ago' => 20, 'status' => 'completed'], + ['asset' => 'Filing Cabinet 4-Drawer', 'from' => 'Head Office', 'to' => 'Archive Room', 'days_ago' => 10, 'status' => 'completed'], + ['asset' => 'Ubiquiti UniFi 6 Pro AP (6-pack)', 'from' => 'Warehouse', 'to' => 'Head Office', 'days_ago' => 5, 'status' => 'pending'], + ]; + + foreach ($transferData as $idx => $data) { + $asset = $assets[$data['asset']] ?? null; + if (!$asset) continue; + + $transferDate = $now->copy()->subDays($data['days_ago']); + + AssetTransfer::create([ + 'asset_id' => $asset->id, + 'from_location' => $data['from'], + 'to_location' => $data['to'], + 'transfer_date' => $transferDate->format('Y-m-d'), + 'status' => $data['status'], + 'reason' => 'Location reassignment', + 'created_by' => $this->createdBy, + ]); + } + } + + private function seedDisposals(array $categories): void + { + $now = Carbon::now(); + + // Create 2 extra assets that are disposed + $oldLaptop = Asset::create([ + 'name' => 'Dell Latitude E5550 (Retired)', + 'category_id' => $categories['IT Equipment']->id, + 'purchase_date' => $now->copy()->subYears(5)->format('Y-m-d'), + 'purchase_price' => 1200, + 'salvage_value' => 120, + 'useful_life_months' => 36, + 'depreciation_method' => 'straight_line', + 'depreciation_start_date' => $now->copy()->subYears(5)->format('Y-m-d'), + 'status' => 'disposed', + 'condition' => 'poor', + 'serial_number' => 'DL-E5550-OLD', + 'model_number' => 'E5550', + 'manufacturer' => 'Dell', + 'current_book_value' => 150, + 'accumulated_depreciation' => 1050, + 'created_by' => $this->createdBy, + 'creator_id' => $this->creatorId, + ]); + + $brokenChair = Asset::create([ + 'name' => 'Office Chair (Broken Hydraulic)', + 'category_id' => $categories['Office Furniture']->id, + 'purchase_date' => $now->copy()->subYears(4)->format('Y-m-d'), + 'purchase_price' => 400, + 'salvage_value' => 20, + 'useful_life_months' => 120, + 'depreciation_method' => 'straight_line', + 'depreciation_start_date' => $now->copy()->subYears(4)->format('Y-m-d'), + 'status' => 'disposed', + 'condition' => 'poor', + 'current_book_value' => 0, + 'accumulated_depreciation' => 400, + 'created_by' => $this->createdBy, + 'creator_id' => $this->creatorId, + ]); + + // Disposal 1: Sale + AssetDisposal::create([ + 'asset_id' => $oldLaptop->id, + 'disposal_number' => 'DSP-' . date('Y') . '-001', + 'disposal_type' => 'sale', + 'disposal_date' => $now->copy()->subDays(30)->format('Y-m-d'), + 'sale_price' => 200, + 'book_value_at_disposal' => 150, + 'gain_loss' => 50, + 'buyer_info' => 'Staff member (internal sale)', + 'reason' => 'End of useful life, replaced by newer model', + 'approved_by' => $this->creatorId, + 'created_by' => $this->createdBy, + 'creator_id' => $this->creatorId, + ]); + + // Disposal 2: Write-off + AssetDisposal::create([ + 'asset_id' => $brokenChair->id, + 'disposal_number' => 'DSP-' . date('Y') . '-002', + 'disposal_type' => 'write_off', + 'disposal_date' => $now->copy()->subDays(15)->format('Y-m-d'), + 'sale_price' => 0, + 'book_value_at_disposal' => 75, + 'gain_loss' => -75, + 'reason' => 'Hydraulic mechanism irreparable, safety hazard', + 'approved_by' => $this->creatorId, + 'created_by' => $this->createdBy, + 'creator_id' => $this->creatorId, + ]); + } +} diff --git a/packages/workdo/AssetManagement/src/Database/Seeders/PermissionTableSeeder.php b/packages/workdo/AssetManagement/src/Database/Seeders/PermissionTableSeeder.php new file mode 100644 index 0000000..4fe1d77 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Database/Seeders/PermissionTableSeeder.php @@ -0,0 +1,84 @@ + 'manage-asset-dashboard', 'module' => 'asset-dashboard', 'label' => 'Manage Asset Dashboard'], + + // Assets + ['name' => 'manage-assets', 'module' => 'assets', 'label' => 'Manage Assets'], + ['name' => 'create-assets', 'module' => 'assets', 'label' => 'Create Assets'], + ['name' => 'edit-assets', 'module' => 'assets', 'label' => 'Edit Assets'], + ['name' => 'delete-assets', 'module' => 'assets', 'label' => 'Delete Assets'], + ['name' => 'view-assets', 'module' => 'assets', 'label' => 'View Assets'], + + // Categories + ['name' => 'manage-asset-categories', 'module' => 'asset-categories', 'label' => 'Manage Asset Categories'], + + // Assignments + ['name' => 'manage-asset-assignments', 'module' => 'asset-assignments', 'label' => 'Manage Asset Assignments'], + ['name' => 'create-asset-assignments', 'module' => 'asset-assignments', 'label' => 'Create Asset Assignments'], + + // Depreciation + ['name' => 'manage-asset-depreciation', 'module' => 'asset-depreciation', 'label' => 'Manage Asset Depreciation'], + ['name' => 'run-depreciation', 'module' => 'asset-depreciation', 'label' => 'Run Depreciation'], + + // Maintenance + ['name' => 'manage-asset-maintenance', 'module' => 'asset-maintenance', 'label' => 'Manage Asset Maintenance'], + ['name' => 'create-asset-maintenance', 'module' => 'asset-maintenance', 'label' => 'Create Asset Maintenance'], + + // Disposal + ['name' => 'manage-asset-disposal', 'module' => 'asset-disposal', 'label' => 'Manage Asset Disposal'], + ['name' => 'create-asset-disposal', 'module' => 'asset-disposal', 'label' => 'Create Asset Disposal'], + + // Import + ['name' => 'manage-asset-import', 'module' => 'asset-import', 'label' => 'Manage Asset Import'], + ]; + + $companyRole = Role::where('name', 'company')->first(); + + foreach ($permissions as $perm) { + $permissionObj = Permission::firstOrCreate( + ['name' => $perm['name'], 'guard_name' => 'web'], + [ + 'module' => $perm['module'], + 'label' => $perm['label'], + 'add_on' => 'AssetManagement', + 'created_at' => now(), + 'updated_at' => now(), + ] + ); + + if ($companyRole && !$companyRole->hasPermissionTo($permissionObj)) { + $companyRole->givePermissionTo($permissionObj); + } + } + + // Staff gets view + dashboard + assignments + maintenance + $staffPermissionNames = [ + 'manage-asset-dashboard', + 'view-assets', + 'manage-asset-assignments', + 'manage-asset-maintenance', + ]; + + $staffRoles = Role::where('name', 'staff')->get(); + foreach ($staffRoles as $staffRole) { + foreach ($staffPermissionNames as $permName) { + $perm = Permission::where('name', $permName)->where('guard_name', 'web')->first(); + if ($perm && !$staffRole->hasPermissionTo($perm)) { + $staffRole->givePermissionTo($perm); + } + } + } + } +} diff --git a/packages/workdo/AssetManagement/src/Http/Controllers/AssetAssignmentController.php b/packages/workdo/AssetManagement/src/Http/Controllers/AssetAssignmentController.php new file mode 100644 index 0000000..3e52886 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Http/Controllers/AssetAssignmentController.php @@ -0,0 +1,81 @@ +with(['asset:id,name,asset_number', 'assignee:id,name', 'assigner:id,name']) + ->latest('checked_out_at') + ->paginate(15); + + return Inertia::render('AssetManagement/Assignments/Index', [ + 'assignments' => $assignments, + ]); + } + + public function checkout(Request $request) + { + $validated = $request->validate([ + 'asset_id' => 'required|exists:assets,id', + 'assigned_to' => 'required|exists:users,id', + 'expected_return_date' => 'nullable|date|after:today', + 'condition_on_checkout' => 'required|in:new,good,fair,poor', + 'notes' => 'nullable|string', + ]); + + $asset = Asset::findOrFail($validated['asset_id']); + + if ($asset->status === 'checked_out') { + return back()->with('error', __('Asset is already checked out.')); + } + + AssetAssignment::create([ + 'asset_id' => $validated['asset_id'], + 'assigned_to' => $validated['assigned_to'], + 'assigned_by' => auth()->id(), + 'checked_out_at' => now(), + 'expected_return_date' => $validated['expected_return_date'] ?? null, + 'condition_on_checkout' => $validated['condition_on_checkout'], + 'notes' => $validated['notes'] ?? null, + 'created_by' => creatorId(), + ]); + + $asset->update([ + 'status' => 'checked_out', + 'assigned_to' => $validated['assigned_to'], + ]); + + return back()->with('success', __('Asset checked out successfully.')); + } + + public function checkin(Request $request, AssetAssignment $assignment) + { + $validated = $request->validate([ + 'condition_on_checkin' => 'required|in:new,good,fair,poor', + 'notes' => 'nullable|string', + ]); + + $assignment->update([ + 'checked_in_at' => now(), + 'condition_on_checkin' => $validated['condition_on_checkin'], + 'notes' => $validated['notes'] ?? $assignment->notes, + ]); + + $assignment->asset->update([ + 'status' => 'active', + 'assigned_to' => null, + 'condition' => $validated['condition_on_checkin'], + ]); + + return back()->with('success', __('Asset checked in successfully.')); + } +} diff --git a/packages/workdo/AssetManagement/src/Http/Controllers/AssetCategoryController.php b/packages/workdo/AssetManagement/src/Http/Controllers/AssetCategoryController.php new file mode 100644 index 0000000..3cf496c --- /dev/null +++ b/packages/workdo/AssetManagement/src/Http/Controllers/AssetCategoryController.php @@ -0,0 +1,104 @@ +withCount('assets') + ->with(['assetGlAccount:id,account_name', 'depreciationGlAccount:id,account_name', 'expenseGlAccount:id,account_name']) + ->get(); + + $glAccounts = ChartOfAccount::where('created_by', creatorId()) + ->where('is_active', true) + ->get(['id', 'account_code', 'account_name']); + + return Inertia::render('AssetManagement/Categories/Index', [ + 'categories' => $categories, + 'glAccounts' => $glAccounts, + ]); + } + + public function create() + { + $glAccounts = ChartOfAccount::where('created_by', creatorId()) + ->where('is_active', true) + ->get(['id', 'account_code', 'account_name']); + + return Inertia::render('AssetManagement/Categories/Create', [ + 'glAccounts' => $glAccounts, + ]); + } + + public function store(Request $request) + { + $validated = $request->validate([ + 'name' => 'required|string|max:255', + 'description' => 'nullable|string', + 'depreciation_method' => 'required|in:straight_line,declining_balance,units_of_production', + 'default_useful_life_months' => 'required|integer|min:1', + 'default_salvage_percentage' => 'required|numeric|min:0|max:100', + 'asset_gl_account_id' => 'nullable|exists:chart_of_accounts,id', + 'depreciation_gl_account_id' => 'nullable|exists:chart_of_accounts,id', + 'expense_gl_account_id' => 'nullable|exists:chart_of_accounts,id', + ]); + + $validated['created_by'] = creatorId(); + $validated['creator_id'] = auth()->id(); + + AssetCategory::create($validated); + + return redirect()->route('asset-management.categories.index') + ->with('success', __('Category created successfully.')); + } + + public function edit(AssetCategory $category) + { + $glAccounts = ChartOfAccount::where('created_by', creatorId()) + ->where('is_active', true) + ->get(['id', 'account_code', 'account_name']); + + return Inertia::render('AssetManagement/Categories/Edit', [ + 'category' => $category, + 'glAccounts' => $glAccounts, + ]); + } + + public function update(Request $request, AssetCategory $category) + { + $validated = $request->validate([ + 'name' => 'required|string|max:255', + 'description' => 'nullable|string', + 'depreciation_method' => 'required|in:straight_line,declining_balance,units_of_production', + 'default_useful_life_months' => 'required|integer|min:1', + 'default_salvage_percentage' => 'required|numeric|min:0|max:100', + 'asset_gl_account_id' => 'nullable|exists:chart_of_accounts,id', + 'depreciation_gl_account_id' => 'nullable|exists:chart_of_accounts,id', + 'expense_gl_account_id' => 'nullable|exists:chart_of_accounts,id', + ]); + + $category->update($validated); + + return redirect()->route('asset-management.categories.index') + ->with('success', __('Category updated successfully.')); + } + + public function destroy(AssetCategory $category) + { + if ($category->assets()->count() > 0) { + return back()->with('error', __('Cannot delete category with assets.')); + } + + $category->delete(); + return redirect()->route('asset-management.categories.index') + ->with('success', __('Category deleted successfully.')); + } +} diff --git a/packages/workdo/AssetManagement/src/Http/Controllers/AssetController.php b/packages/workdo/AssetManagement/src/Http/Controllers/AssetController.php new file mode 100644 index 0000000..058b20c --- /dev/null +++ b/packages/workdo/AssetManagement/src/Http/Controllers/AssetController.php @@ -0,0 +1,147 @@ +with(['category:id,name', 'assignedUser:id,name']); + + if ($request->filled('status')) { + $query->where('status', $request->status); + } + if ($request->filled('category_id')) { + $query->where('category_id', $request->category_id); + } + if ($request->filled('search')) { + $query->where(function ($q) use ($request) { + $q->where('name', 'like', "%{$request->search}%") + ->orWhere('asset_number', 'like', "%{$request->search}%") + ->orWhere('serial_number', 'like', "%{$request->search}%"); + }); + } + + $assets = $query->latest()->paginate(15); + $categories = AssetCategory::where('created_by', creatorId())->get(['id', 'name']); + + return Inertia::render('AssetManagement/Assets/Index', [ + 'assets' => $assets, + 'categories' => $categories, + 'filters' => $request->only(['status', 'category_id', 'search']), + ]); + } + + public function create() + { + $categories = AssetCategory::where('created_by', creatorId())->get(); + $vendors = Vendor::where('created_by', creatorId())->get(['id', 'company_name as name']); + + return Inertia::render('AssetManagement/Assets/Create', [ + 'categories' => $categories, + 'vendors' => $vendors, + ]); + } + + public function store(Request $request) + { + $validated = $request->validate([ + 'name' => 'required|string|max:255', + 'category_id' => 'required|exists:asset_categories,id', + 'purchase_date' => 'required|date', + 'purchase_price' => 'required|numeric|min:0', + 'salvage_value' => 'nullable|numeric|min:0', + 'useful_life_months' => 'required|integer|min:1', + 'depreciation_method' => 'required|in:straight_line,declining_balance,units_of_production', + 'depreciation_start_date' => 'required|date', + 'condition' => 'nullable|in:new,good,fair,poor', + 'location' => 'nullable|string|max:255', + 'serial_number' => 'nullable|string|max:255', + 'model_number' => 'nullable|string|max:255', + 'manufacturer' => 'nullable|string|max:255', + 'warranty_start' => 'nullable|date', + 'warranty_expiry' => 'nullable|date|after_or_equal:warranty_start', + 'vendor_id' => 'nullable|exists:vendors,id', + 'description' => 'nullable|string', + 'notes' => 'nullable|string', + ]); + + $validated['created_by'] = creatorId(); + $validated['creator_id'] = auth()->id(); + $validated['current_book_value'] = $validated['purchase_price']; + $validated['salvage_value'] = $validated['salvage_value'] ?? 0; + + $asset = Asset::create($validated); + + return redirect()->route('asset-management.assets.show', $asset) + ->with('success', __('Asset created successfully.')); + } + + public function show(Asset $asset) + { + $asset->load([ + 'category', + 'assignedUser', + 'vendor', + 'depreciations', + 'maintenances', + 'assignments.assignee', + 'insurances', + ]); + + return Inertia::render('AssetManagement/Assets/Show', [ + 'asset' => $asset, + ]); + } + + public function edit(Asset $asset) + { + $categories = AssetCategory::where('created_by', creatorId())->get(); + $vendors = Vendor::where('created_by', creatorId())->get(['id', 'company_name as name']); + + return Inertia::render('AssetManagement/Assets/Edit', [ + 'asset' => $asset, + 'categories' => $categories, + 'vendors' => $vendors, + ]); + } + + public function update(Request $request, Asset $asset) + { + $validated = $request->validate([ + 'name' => 'required|string|max:255', + 'category_id' => 'required|exists:asset_categories,id', + 'condition' => 'nullable|in:new,good,fair,poor', + 'location' => 'nullable|string|max:255', + 'serial_number' => 'nullable|string|max:255', + 'model_number' => 'nullable|string|max:255', + 'manufacturer' => 'nullable|string|max:255', + 'warranty_start' => 'nullable|date', + 'warranty_expiry' => 'nullable|date|after_or_equal:warranty_start', + 'vendor_id' => 'nullable|exists:vendors,id', + 'description' => 'nullable|string', + 'notes' => 'nullable|string', + ]); + + $asset->update($validated); + + return redirect()->route('asset-management.assets.show', $asset) + ->with('success', __('Asset updated successfully.')); + } + + public function destroy(Asset $asset) + { + $asset->delete(); + + return redirect()->route('asset-management.assets.index') + ->with('success', __('Asset deleted successfully.')); + } +} diff --git a/packages/workdo/AssetManagement/src/Http/Controllers/AssetDashboardController.php b/packages/workdo/AssetManagement/src/Http/Controllers/AssetDashboardController.php new file mode 100644 index 0000000..c1cf111 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Http/Controllers/AssetDashboardController.php @@ -0,0 +1,63 @@ +count(); + $activeAssets = Asset::where('created_by', $creatorId)->where('status', 'active')->count(); + $checkedOut = Asset::where('created_by', $creatorId)->where('status', 'checked_out')->count(); + $underMaintenance = Asset::where('created_by', $creatorId)->where('status', 'under_maintenance')->count(); + $totalValue = Asset::where('created_by', $creatorId)->whereNotIn('status', ['disposed', 'written_off'])->sum('current_book_value'); + + $assetsByCategory = AssetCategory::where('created_by', $creatorId) + ->withCount('assets') + ->get() + ->map(fn($cat) => ['name' => $cat->name, 'count' => $cat->assets_count]); + + $upcomingMaintenance = AssetMaintenance::where('created_by', $creatorId) + ->whereIn('status', ['scheduled']) + ->with('asset:id,name,asset_number') + ->orderBy('scheduled_date') + ->limit(5) + ->get(); + + $expiringWarranties = Asset::where('created_by', $creatorId) + ->whereNotNull('warranty_expiry') + ->where('warranty_expiry', '>=', now()) + ->where('warranty_expiry', '<=', now()->addDays(30)) + ->select('id', 'name', 'asset_number', 'warranty_expiry') + ->get(); + + $expiringInsurance = AssetInsurance::where('created_by', $creatorId) + ->where('status', 'active') + ->where('expiry_date', '<=', now()->addDays(30)) + ->with('asset:id,name,asset_number') + ->get(); + + return Inertia::render('AssetManagement/Dashboard', [ + 'stats' => [ + 'total_assets' => $totalAssets, + 'active_assets' => $activeAssets, + 'checked_out' => $checkedOut, + 'under_maintenance' => $underMaintenance, + 'total_value' => $totalValue, + ], + 'assetsByCategory' => $assetsByCategory, + 'upcomingMaintenance' => $upcomingMaintenance, + 'expiringWarranties' => $expiringWarranties, + 'expiringInsurance' => $expiringInsurance, + ]); + } +} diff --git a/packages/workdo/AssetManagement/src/Http/Controllers/AssetDepreciationController.php b/packages/workdo/AssetManagement/src/Http/Controllers/AssetDepreciationController.php new file mode 100644 index 0000000..fd44eda --- /dev/null +++ b/packages/workdo/AssetManagement/src/Http/Controllers/AssetDepreciationController.php @@ -0,0 +1,42 @@ +whereIn('status', ['active', 'checked_out']) + ->with('category:id,name') + ->select('id', 'asset_number', 'name', 'purchase_price', 'salvage_value', 'accumulated_depreciation', 'current_book_value', 'depreciation_method', 'useful_life_months', 'last_depreciation_date', 'category_id') + ->get(); + + return Inertia::render('AssetManagement/Depreciation/Index', [ + 'assets' => $assets, + ]); + } + + public function show(Asset $asset) + { + $depreciations = AssetDepreciation::where('asset_id', $asset->id) + ->orderBy('depreciation_date') + ->get(); + + return Inertia::render('AssetManagement/Depreciation/Show', [ + 'asset' => $asset->load('category'), + 'depreciations' => $depreciations, + ]); + } + + public function run() + { + // Stub: calls DepreciationService in full implementation + return back()->with('success', __('Depreciation run queued.')); + } +} diff --git a/packages/workdo/AssetManagement/src/Http/Controllers/AssetDisposalController.php b/packages/workdo/AssetManagement/src/Http/Controllers/AssetDisposalController.php new file mode 100644 index 0000000..0f976e2 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Http/Controllers/AssetDisposalController.php @@ -0,0 +1,75 @@ +with('asset:id,name,asset_number') + ->latest() + ->paginate(15); + + return Inertia::render('AssetManagement/Disposal/Index', [ + 'disposals' => $disposals, + ]); + } + + public function create() + { + $assets = Asset::where('created_by', creatorId()) + ->whereIn('status', ['active', 'checked_out']) + ->get(['id', 'name', 'asset_number', 'current_book_value']); + + return Inertia::render('AssetManagement/Disposal/Create', [ + 'assets' => $assets, + ]); + } + + public function store(Request $request) + { + $validated = $request->validate([ + 'asset_id' => 'required|exists:assets,id', + 'disposal_type' => 'required|in:sale,write_off,donation,scrapped,trade_in', + 'disposal_date' => 'required|date', + 'sale_price' => 'nullable|numeric|min:0', + 'buyer_info' => 'nullable|string|max:255', + 'reason' => 'nullable|string', + ]); + + $asset = Asset::findOrFail($validated['asset_id']); + $salePrice = $validated['sale_price'] ?? 0; + $bookValue = (float) $asset->current_book_value; + $gainLoss = $salePrice - $bookValue; + + $validated['book_value_at_disposal'] = $bookValue; + $validated['gain_loss'] = $gainLoss; + $validated['sale_price'] = $salePrice; + $validated['created_by'] = creatorId(); + $validated['creator_id'] = auth()->id(); + $validated['approved_by'] = auth()->id(); + + AssetDisposal::create($validated); + + $asset->update(['status' => 'disposed']); + + return redirect()->route('asset-management.disposals.index') + ->with('success', __('Asset disposed successfully.')); + } + + public function show(AssetDisposal $disposal) + { + $disposal->load(['asset', 'journalEntry', 'approver']); + + return Inertia::render('AssetManagement/Disposal/Show', [ + 'disposal' => $disposal, + ]); + } +} diff --git a/packages/workdo/AssetManagement/src/Http/Controllers/AssetMaintenanceController.php b/packages/workdo/AssetManagement/src/Http/Controllers/AssetMaintenanceController.php new file mode 100644 index 0000000..432a8c7 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Http/Controllers/AssetMaintenanceController.php @@ -0,0 +1,152 @@ +with(['asset:id,name,asset_number', 'vendor:id,company_name']) + ->latest('scheduled_date') + ->paginate(15); + + return Inertia::render('AssetManagement/Maintenance/Index', [ + 'maintenances' => $maintenances, + ]); + } + + public function create() + { + $assets = Asset::where('created_by', creatorId())->whereNotIn('status', ['disposed', 'written_off'])->get(['id', 'name', 'asset_number']); + $vendors = Vendor::where('created_by', creatorId())->get(['id', 'company_name as name']); + + return Inertia::render('AssetManagement/Maintenance/Create', [ + 'assets' => $assets, + 'vendors' => $vendors, + ]); + } + + public function store(Request $request) + { + $validated = $request->validate([ + 'asset_id' => 'required|exists:assets,id', + 'maintenance_type' => 'required|in:preventive,corrective,inspection,upgrade', + 'priority' => 'required|in:low,medium,high,critical', + 'title' => 'required|string|max:255', + 'description' => 'nullable|string', + 'cost' => 'nullable|numeric|min:0', + 'vendor_id' => 'nullable|exists:vendors,id', + 'scheduled_date' => 'required|date', + 'recurrence' => 'nullable|in:monthly,quarterly,semi_annual,annual', + 'notes' => 'nullable|string', + ]); + + $validated['created_by'] = creatorId(); + $validated['creator_id'] = auth()->id(); + $validated['cost'] = $validated['cost'] ?? 0; + + AssetMaintenance::create($validated); + + return redirect()->route('asset-management.maintenance.index') + ->with('success', __('Maintenance scheduled successfully.')); + } + + public function show(AssetMaintenance $maintenance) + { + $maintenance->load(['asset', 'vendor']); + + return Inertia::render('AssetManagement/Maintenance/Show', [ + 'maintenance' => $maintenance, + ]); + } + + public function edit(AssetMaintenance $maintenance) + { + $assets = Asset::where('created_by', creatorId())->whereNotIn('status', ['disposed', 'written_off'])->get(['id', 'name', 'asset_number']); + $vendors = Vendor::where('created_by', creatorId())->get(['id', 'company_name as name']); + + return Inertia::render('AssetManagement/Maintenance/Edit', [ + 'maintenance' => $maintenance, + 'assets' => $assets, + 'vendors' => $vendors, + ]); + } + + public function update(Request $request, AssetMaintenance $maintenance) + { + $validated = $request->validate([ + 'maintenance_type' => 'required|in:preventive,corrective,inspection,upgrade', + 'priority' => 'required|in:low,medium,high,critical', + 'title' => 'required|string|max:255', + 'description' => 'nullable|string', + 'cost' => 'nullable|numeric|min:0', + 'vendor_id' => 'nullable|exists:vendors,id', + 'scheduled_date' => 'required|date', + 'recurrence' => 'nullable|in:monthly,quarterly,semi_annual,annual', + 'status' => 'nullable|in:scheduled,in_progress,completed,cancelled', + 'notes' => 'nullable|string', + ]); + + $maintenance->update($validated); + + return redirect()->route('asset-management.maintenance.index') + ->with('success', __('Maintenance updated successfully.')); + } + + public function destroy(AssetMaintenance $maintenance) + { + $maintenance->delete(); + + return redirect()->route('asset-management.maintenance.index') + ->with('success', __('Maintenance deleted successfully.')); + } + + public function complete(AssetMaintenance $maintenance) + { + $maintenance->update([ + 'status' => 'completed', + 'completed_date' => now(), + ]); + + // If recurring, create next maintenance + if ($maintenance->recurrence) { + $nextDate = match ($maintenance->recurrence) { + 'monthly' => Carbon::parse($maintenance->scheduled_date)->addMonth(), + 'quarterly' => Carbon::parse($maintenance->scheduled_date)->addMonths(3), + 'semi_annual' => Carbon::parse($maintenance->scheduled_date)->addMonths(6), + 'annual' => Carbon::parse($maintenance->scheduled_date)->addYear(), + }; + + AssetMaintenance::create([ + 'asset_id' => $maintenance->asset_id, + 'maintenance_type' => $maintenance->maintenance_type, + 'priority' => $maintenance->priority, + 'title' => $maintenance->title, + 'description' => $maintenance->description, + 'vendor_id' => $maintenance->vendor_id, + 'scheduled_date' => $nextDate, + 'recurrence' => $maintenance->recurrence, + 'status' => 'scheduled', + 'created_by' => $maintenance->created_by, + 'creator_id' => auth()->id(), + ]); + } + + // Update asset status back to active if it was under maintenance + $asset = $maintenance->asset; + if ($asset->status === 'under_maintenance') { + $asset->update(['status' => 'active']); + } + + return back()->with('success', __('Maintenance completed.')); + } +} diff --git a/packages/workdo/AssetManagement/src/Http/Controllers/AssetTransferController.php b/packages/workdo/AssetManagement/src/Http/Controllers/AssetTransferController.php new file mode 100644 index 0000000..65e07fb --- /dev/null +++ b/packages/workdo/AssetManagement/src/Http/Controllers/AssetTransferController.php @@ -0,0 +1,58 @@ +with(['asset:id,name,asset_number', 'fromUser:id,name', 'toUser:id,name', 'approver:id,name']) + ->latest() + ->paginate(15); + + return Inertia::render('AssetManagement/Transfers/Index', [ + 'transfers' => $transfers, + ]); + } + + public function store(Request $request) + { + $validated = $request->validate([ + 'asset_id' => 'required|exists:assets,id', + 'to_location' => 'required|string|max:255', + 'to_assigned_to' => 'nullable|exists:users,id', + 'transfer_date' => 'required|date', + 'reason' => 'nullable|string', + ]); + + $asset = Asset::findOrFail($validated['asset_id']); + + AssetTransfer::create([ + 'asset_id' => $validated['asset_id'], + 'from_location' => $asset->location ?? 'Unknown', + 'to_location' => $validated['to_location'], + 'from_assigned_to' => $asset->assigned_to, + 'to_assigned_to' => $validated['to_assigned_to'] ?? null, + 'transfer_date' => $validated['transfer_date'], + 'reason' => $validated['reason'] ?? null, + 'status' => 'completed', + 'approved_by' => auth()->id(), + 'created_by' => creatorId(), + 'creator_id' => auth()->id(), + ]); + + $asset->update([ + 'location' => $validated['to_location'], + 'assigned_to' => $validated['to_assigned_to'] ?? $asset->assigned_to, + ]); + + return back()->with('success', __('Asset transferred successfully.')); + } +} diff --git a/packages/workdo/AssetManagement/src/Models/Asset.php b/packages/workdo/AssetManagement/src/Models/Asset.php new file mode 100644 index 0000000..ec375f6 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Models/Asset.php @@ -0,0 +1,169 @@ + 'date', + 'depreciation_start_date' => 'date', + 'warranty_start' => 'date', + 'warranty_expiry' => 'date', + 'last_depreciation_date' => 'date', + 'is_depreciation_suspended' => 'boolean', + 'purchase_price' => 'decimal:2', + 'salvage_value' => 'decimal:2', + 'current_book_value' => 'decimal:2', + 'accumulated_depreciation' => 'decimal:2', + ]; + } + + protected static function boot() + { + parent::boot(); + + static::creating(function ($asset) { + if (empty($asset->asset_number)) { + $asset->asset_number = static::generateAssetNumber($asset->created_by); + } + if (empty($asset->current_book_value)) { + $asset->current_book_value = $asset->purchase_price; + } + }); + } + + public static function generateAssetNumber($createdBy = null): string + { + $year = date('Y'); + $month = date('m'); + + $userId = $createdBy ?: (auth()->check() ? creatorId() : 1); + + $last = static::where('asset_number', 'like', "AST-{$year}-{$month}-%") + ->where('created_by', $userId) + ->orderBy('asset_number', 'desc') + ->first(); + + $nextNumber = $last ? (int) substr($last->asset_number, -3) + 1 : 1; + + return "AST-{$year}-{$month}-" . str_pad($nextNumber, 3, '0', STR_PAD_LEFT); + } + + public function category() + { + return $this->belongsTo(AssetCategory::class, 'category_id'); + } + + public function assignedUser() + { + return $this->belongsTo(User::class, 'assigned_to'); + } + + public function vendor() + { + return $this->belongsTo(Vendor::class); + } + + public function depreciations() + { + return $this->hasMany(AssetDepreciation::class)->orderBy('depreciation_date'); + } + + public function maintenances() + { + return $this->hasMany(AssetMaintenance::class)->orderByDesc('scheduled_date'); + } + + public function disposals() + { + return $this->hasMany(AssetDisposal::class); + } + + public function assignments() + { + return $this->hasMany(AssetAssignment::class)->orderByDesc('checked_out_at'); + } + + public function insurances() + { + return $this->hasMany(AssetInsurance::class); + } + + public function activeInsurance() + { + return $this->hasOne(AssetInsurance::class)->where('status', 'active')->latestOfMany(); + } + + public function transfers() + { + return $this->hasMany(AssetTransfer::class)->orderByDesc('transfer_date'); + } + + public function documents() + { + return $this->hasMany(AssetDocument::class)->orderByDesc('created_at'); + } + + public function getDepreciableAmountAttribute(): float + { + return (float) $this->purchase_price - (float) $this->salvage_value; + } + + public function getRemainingLifeMonthsAttribute(): int + { + if (!$this->depreciation_start_date) return $this->useful_life_months; + + $monthsElapsed = $this->depreciation_start_date->diffInMonths(now()); + return max(0, $this->useful_life_months - $monthsElapsed); + } + + public function getTotalMaintenanceCostAttribute(): float + { + return (float) $this->maintenances()->sum('cost'); + } +} diff --git a/packages/workdo/AssetManagement/src/Models/AssetAssignment.php b/packages/workdo/AssetManagement/src/Models/AssetAssignment.php new file mode 100644 index 0000000..8c1aeb9 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Models/AssetAssignment.php @@ -0,0 +1,54 @@ + 'datetime', + 'checked_in_at' => 'datetime', + 'expected_return_date' => 'date', + ]; + } + + public function asset() + { + return $this->belongsTo(Asset::class); + } + + public function assignee() + { + return $this->belongsTo(User::class, 'assigned_to'); + } + + public function assigner() + { + return $this->belongsTo(User::class, 'assigned_by'); + } + + public function getIsCheckedOutAttribute(): bool + { + return is_null($this->checked_in_at); + } +} diff --git a/packages/workdo/AssetManagement/src/Models/AssetCategory.php b/packages/workdo/AssetManagement/src/Models/AssetCategory.php new file mode 100644 index 0000000..6a08c77 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Models/AssetCategory.php @@ -0,0 +1,53 @@ + 'decimal:2', + ]; + } + + public function assets() + { + return $this->hasMany(Asset::class, 'category_id'); + } + + public function assetGlAccount() + { + return $this->belongsTo(ChartOfAccount::class, 'asset_gl_account_id'); + } + + public function depreciationGlAccount() + { + return $this->belongsTo(ChartOfAccount::class, 'depreciation_gl_account_id'); + } + + public function expenseGlAccount() + { + return $this->belongsTo(ChartOfAccount::class, 'expense_gl_account_id'); + } +} diff --git a/packages/workdo/AssetManagement/src/Models/AssetDepreciation.php b/packages/workdo/AssetManagement/src/Models/AssetDepreciation.php new file mode 100644 index 0000000..6bc5158 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Models/AssetDepreciation.php @@ -0,0 +1,43 @@ + 'date', + 'amount' => 'decimal:2', + 'accumulated_total' => 'decimal:2', + 'book_value_after' => 'decimal:2', + ]; + } + + public function asset() + { + return $this->belongsTo(Asset::class); + } + + public function journalEntry() + { + return $this->belongsTo(JournalEntry::class); + } +} diff --git a/packages/workdo/AssetManagement/src/Models/AssetDisposal.php b/packages/workdo/AssetManagement/src/Models/AssetDisposal.php new file mode 100644 index 0000000..1271f06 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Models/AssetDisposal.php @@ -0,0 +1,82 @@ + 'date', + 'sale_price' => 'decimal:2', + 'book_value_at_disposal' => 'decimal:2', + 'gain_loss' => 'decimal:2', + ]; + } + + protected static function boot() + { + parent::boot(); + + static::creating(function ($disposal) { + if (empty($disposal->disposal_number)) { + $disposal->disposal_number = static::generateNumber($disposal->created_by); + } + }); + } + + public static function generateNumber($createdBy = null): string + { + $year = date('Y'); + $month = date('m'); + $userId = $createdBy ?: (auth()->check() ? creatorId() : 1); + + $last = static::where('disposal_number', 'like', "DSP-{$year}-{$month}-%") + ->where('created_by', $userId) + ->orderBy('disposal_number', 'desc') + ->first(); + + $nextNumber = $last ? (int) substr($last->disposal_number, -3) + 1 : 1; + + return "DSP-{$year}-{$month}-" . str_pad($nextNumber, 3, '0', STR_PAD_LEFT); + } + + public function asset() + { + return $this->belongsTo(Asset::class); + } + + public function journalEntry() + { + return $this->belongsTo(JournalEntry::class); + } + + public function approver() + { + return $this->belongsTo(User::class, 'approved_by'); + } +} diff --git a/packages/workdo/AssetManagement/src/Models/AssetDocument.php b/packages/workdo/AssetManagement/src/Models/AssetDocument.php new file mode 100644 index 0000000..0ce9791 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Models/AssetDocument.php @@ -0,0 +1,28 @@ +belongsTo(Asset::class); } + public function uploader() { return $this->belongsTo(User::class, 'uploaded_by'); } + + public function getFileSizeFormattedAttribute(): string + { + $bytes = $this->file_size; + if ($bytes >= 1048576) return round($bytes / 1048576, 1) . ' MB'; + if ($bytes >= 1024) return round($bytes / 1024, 1) . ' KB'; + return $bytes . ' B'; + } +} diff --git a/packages/workdo/AssetManagement/src/Models/AssetInsurance.php b/packages/workdo/AssetManagement/src/Models/AssetInsurance.php new file mode 100644 index 0000000..e1814d2 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Models/AssetInsurance.php @@ -0,0 +1,46 @@ + 'date', + 'expiry_date' => 'date', + 'premium_amount' => 'decimal:2', + 'coverage_amount' => 'decimal:2', + ]; + } + + public function asset() + { + return $this->belongsTo(Asset::class); + } + + public function getIsExpiringSoonAttribute(): bool + { + return $this->expiry_date && $this->expiry_date->diffInDays(now()) <= 30 && $this->expiry_date->isFuture(); + } +} diff --git a/packages/workdo/AssetManagement/src/Models/AssetMaintenance.php b/packages/workdo/AssetManagement/src/Models/AssetMaintenance.php new file mode 100644 index 0000000..c2d5a1d --- /dev/null +++ b/packages/workdo/AssetManagement/src/Models/AssetMaintenance.php @@ -0,0 +1,81 @@ + 'date', + 'start_date' => 'date', + 'completed_date' => 'date', + 'next_maintenance_date' => 'date', + 'cost' => 'decimal:2', + ]; + } + + protected static function boot() + { + parent::boot(); + + static::creating(function ($maintenance) { + if (empty($maintenance->maintenance_number)) { + $maintenance->maintenance_number = static::generateNumber($maintenance->created_by); + } + }); + } + + public static function generateNumber($createdBy = null): string + { + $year = date('Y'); + $month = date('m'); + $userId = $createdBy ?: (auth()->check() ? creatorId() : 1); + + $last = static::where('maintenance_number', 'like', "MNT-{$year}-{$month}-%") + ->where('created_by', $userId) + ->orderBy('maintenance_number', 'desc') + ->first(); + + $nextNumber = $last ? (int) substr($last->maintenance_number, -3) + 1 : 1; + + return "MNT-{$year}-{$month}-" . str_pad($nextNumber, 3, '0', STR_PAD_LEFT); + } + + public function asset() + { + return $this->belongsTo(Asset::class); + } + + public function vendor() + { + return $this->belongsTo(Vendor::class); + } +} diff --git a/packages/workdo/AssetManagement/src/Models/AssetTransfer.php b/packages/workdo/AssetManagement/src/Models/AssetTransfer.php new file mode 100644 index 0000000..b293c3c --- /dev/null +++ b/packages/workdo/AssetManagement/src/Models/AssetTransfer.php @@ -0,0 +1,42 @@ + 'date']; + } + + protected static function boot() + { + parent::boot(); + static::creating(function ($t) { + if (empty($t->transfer_number)) { + $y = date('Y'); $m = date('m'); + $uid = $t->created_by ?: (auth()->check() ? creatorId() : 1); + $last = static::where('transfer_number', 'like', "TRF-{$y}-{$m}-%")->where('created_by', $uid)->orderBy('transfer_number', 'desc')->first(); + $next = $last ? (int) substr($last->transfer_number, -3) + 1 : 1; + $t->transfer_number = "TRF-{$y}-{$m}-" . str_pad($next, 3, '0', STR_PAD_LEFT); + } + }); + } + + public function asset() { return $this->belongsTo(Asset::class); } + public function fromUser() { return $this->belongsTo(User::class, 'from_assigned_to'); } + public function toUser() { return $this->belongsTo(User::class, 'to_assigned_to'); } + public function approver() { return $this->belongsTo(User::class, 'approved_by'); } +} diff --git a/packages/workdo/AssetManagement/src/Providers/AssetManagementServiceProvider.php b/packages/workdo/AssetManagement/src/Providers/AssetManagementServiceProvider.php new file mode 100644 index 0000000..d6f5ae4 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Providers/AssetManagementServiceProvider.php @@ -0,0 +1,30 @@ +loadRoutesFrom(__DIR__ . '/../Routes/web.php'); + $this->loadMigrationsFrom(__DIR__ . '/../Database/Migrations'); + + // Register Artisan commands + if ($this->app->runningInConsole()) { + $this->commands([ + \Workdo\AssetManagement\Console\RunDepreciationCommand::class, + \Workdo\AssetManagement\Console\WarrantyAlertCommand::class, + ]); + } + } +} diff --git a/packages/workdo/AssetManagement/src/Resources/js/Pages/Assets/Create.tsx b/packages/workdo/AssetManagement/src/Resources/js/Pages/Assets/Create.tsx new file mode 100644 index 0000000..9832be0 --- /dev/null +++ b/packages/workdo/AssetManagement/src/Resources/js/Pages/Assets/Create.tsx @@ -0,0 +1,186 @@ +import { Head, useForm, router } from '@inertiajs/react'; +import AuthenticatedLayout from "@/layouts/authenticated-layout"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; +import { Textarea } from "@/components/ui/textarea"; +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; +import { ArrowLeft } from "lucide-react"; + +interface Props { + categories: { id: number; name: string; depreciation_method: string; default_useful_life_months: number; default_salvage_percentage: string }[]; + vendors: { id: number; name: string }[]; +} + +export default function Create({ categories, vendors }: Props) { + const { data, setData, post, processing, errors } = useForm({ + name: '', category_id: '', purchase_date: '', purchase_price: '', salvage_value: '', + useful_life_months: '60', depreciation_method: 'straight_line', depreciation_convention: 'full_month', + depreciation_start_date: '', condition: 'new', location: '', serial_number: '', + model_number: '', manufacturer: '', warranty_start: '', warranty_expiry: '', + vendor_id: '', description: '', notes: '', + }); + + const handleCategoryChange = (catId: string) => { + setData('category_id', catId); + const cat = categories.find(c => c.id === Number(catId)); + if (cat) { + setData(prev => ({ + ...prev, + category_id: catId, + depreciation_method: cat.depreciation_method, + useful_life_months: String(cat.default_useful_life_months), + })); + } + }; + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + post(route('asset-management.assets.store')); + }; + + return ( + + +
+
+ +

Add Asset

+
+ +
+ {/* Basic Info */} + + Basic Information + +
+ + setData('name', e.target.value)} placeholder="MacBook Pro 16-inch M4" /> + {errors.name &&

{errors.name}

} +
+
+ + + {errors.category_id &&

{errors.category_id}

} +
+
+ + +
+
+ + setData('serial_number', e.target.value)} /> +
+
+ + setData('model_number', e.target.value)} /> +
+
+ + setData('manufacturer', e.target.value)} /> +
+
+ + setData('location', e.target.value)} placeholder="Head Office, Floor 2" /> +
+
+ + +
+
+ +