// Compensation Insights (compensation-insights) v1 — Prisma seed
// Synthetic sample data, CC0-1.0. Generated deterministically; re-running the
// generator with the same spec and seed reproduces this file exactly.
//
// Delegates are named after the tables (prisma.benefits_packages), which assumes models
// mapped to those table names. Rename the delegates if your models differ.
import { PrismaClient } from '@prisma/client';

const prisma = new PrismaClient();

async function main() {
    await prisma.benefits_packages.createMany({
        data: [
            { id: 1, package_name: "dental childcare flexible", description: "No response from the customer, so the account was confirmed. No response from the account owner, so the invoice was refunded.", monthly_cost: "195.02", coverage_type: "retirement" },
            { id: 2, package_name: "sick_leave", description: "No response from the courier, so the delivery was reopened. The courier asked for a change and the booking was refunded.", monthly_cost: "325.73", coverage_type: "dental" },
            { id: 3, package_name: "vision dental employee_assistance", description: "The supplier asked for a change and the booking was escalated. The report was reopened — manual case, no further action. The reviewer confirmed the details and the document was delayed.", monthly_cost: "193.06", coverage_type: "dental" },
            { id: 4, package_name: "vacation tuition", description: "The shipment was processed — unusual case, no further action. The customer reported a routine issue; the delivery was confirmed. The invoice was resolved — unusual case, no further action. No response from the courier, so the transfer was rejected.", monthly_cost: "134.01", coverage_type: "dental" },
            { id: 5, package_name: "bonus", description: "The invoice was confirmed — duplicate case, no further action. The team reported an urgent issue; the booking was completed.", monthly_cost: "404.40", coverage_type: "vision" },
            { id: 6, package_name: "childcare gym", description: "The request was resolved — repeat case, no further action. No response from the reviewer, so the transfer was escalated. The account owner confirmed the details and the report was refunded. The report was resolved — minor case, no further action.", monthly_cost: "394.05", coverage_type: "health" },
            { id: 7, package_name: "disability tuition", description: "The customer asked for a change and the claim was rejected. The claim was confirmed — late case, no further action. The team confirmed the details and the report was rescheduled. The record was rescheduled — incomplete case, no further action.", monthly_cost: "285.53", coverage_type: "retirement" },
            { id: 8, package_name: "transportation retirement gym", description: "The claim was rescheduled — minor case, no further action. The booking was cancelled — repeat case, no further action. No response from the supplier, so the delivery was rejected. The booking was processed — manual case, no further action.", monthly_cost: "362.37", coverage_type: "dental" },
            { id: 9, package_name: "stock_options", description: "An operator reported an urgent issue; the order was escalated. The customer reported a standard issue; the booking was delayed. The account owner reported a late issue; the document was approved.", monthly_cost: "164.44", coverage_type: "vision" },
            { id: 10, package_name: "childcare tuition", description: "The delivery was escalated — repeat case, no further action. No response from an operator, so the refund was delayed.", monthly_cost: "134.20", coverage_type: "dental" },
            { id: 11, package_name: "gym", description: "The reviewer confirmed the details and the refund was processed. No response from the supplier, so the request was resolved.", monthly_cost: "237.36", coverage_type: "retirement" },
            { id: 12, package_name: "childcare transportation vision", description: "The customer reported an incomplete issue; the transfer was escalated. The reviewer asked for a change and the refund was delayed. The supplier reported an incomplete issue; the invoice was completed. The team confirmed the details and the refund was reviewed.", monthly_cost: "113.16", coverage_type: "health" },
            { id: 13, package_name: "vacation dental", description: "No response from the team, so the claim was approved. The payment was updated — duplicate case, no further action. The transfer was rescheduled — automatic case, no further action.", monthly_cost: "122.26", coverage_type: "retirement" },
            { id: 14, package_name: "life employee_assistance disability", description: "The reviewer reported a partial issue; the appointment was reviewed. No response from the courier, so the item was cancelled. No response from the supplier, so the session was delayed.", monthly_cost: "342.22", coverage_type: "dental" },
            { id: 15, package_name: "gym paid_time_off disability", description: "No response from an operator, so the transfer was confirmed. The account owner asked for a change and the session was refunded.", monthly_cost: "334.64", coverage_type: "health" },
        ],
    });
    await prisma.payment_methods.createMany({
        data: [
            { id: 1, method: "check gift cash", transaction_fee: "2.70", currency: "EUR", payment_frequency: "bi-weekly" },
            { id: 2, method: "transfer wire direct", transaction_fee: "9.23", currency: "USD", payment_frequency: "monthly" },
            { id: 3, method: "credit cash voucher", transaction_fee: "5.62", currency: "USD", payment_frequency: "bi-weekly" },
            { id: 4, method: "check credit benefit", transaction_fee: "7.55", currency: "GBP", payment_frequency: "monthly" },
            { id: 5, method: "direct gift", transaction_fee: "1.94", currency: "AUD", payment_frequency: "monthly" },
        ],
    });
    await prisma.tax_brackets.createMany({
        data: [
            { id: 1, bracket_name: "high variable low", percentage: "0.29", effective_from: "2017-12-21", effective_to: null },
            { id: 2, bracket_name: "exempt fixed", percentage: "0.40", effective_from: "2019-10-13", effective_to: "2021-07-31" },
            { id: 3, bracket_name: "middle progressive", percentage: "0.02", effective_from: "2023-12-01", effective_to: "2019-10-03" },
            { id: 4, bracket_name: "basic exempt", percentage: "0.21", effective_from: "2018-11-27", effective_to: null },
            { id: 5, bracket_name: "middle flat", percentage: "0.48", effective_from: "2017-07-03", effective_to: "2023-10-28" },
            { id: 6, bracket_name: "progressive premium", percentage: "0.04", effective_from: "2018-06-15", effective_to: "2015-06-20" },
            { id: 7, bracket_name: "variable", percentage: "0.45", effective_from: "2023-05-03", effective_to: "2017-09-09" },
            { id: 8, bracket_name: "basic high", percentage: "0.25", effective_from: "2023-02-02", effective_to: null },
            { id: 9, bracket_name: "middle exempt progressive", percentage: "0.42", effective_from: "2015-12-25", effective_to: "2018-05-08" },
            { id: 10, bracket_name: "basic reduced", percentage: "0.44", effective_from: "2022-06-28", effective_to: "2022-11-06" },
        ],
    });
    await prisma.job_roles.createMany({
        data: [
            { id: 1, title: "assistant architect", salary_min: "33195.99", salary_max: "30021.65", tax_bracket_id: 1 },
            { id: 2, title: "consultant", salary_min: "75425.23", salary_max: "30000.99", tax_bracket_id: 9 },
            { id: 3, title: "designer analyst strategist", salary_min: "52992.65", salary_max: "31473.76", tax_bracket_id: 3 },
            { id: 4, title: "assistant specialist", salary_min: "32732.59", salary_max: "75823.72", tax_bracket_id: 4 },
            { id: 5, title: "representative engineer", salary_min: "89412.32", salary_max: "47475.71", tax_bracket_id: 4 },
            { id: 6, title: "trainer", salary_min: "32063.35", salary_max: "91370.14", tax_bracket_id: 7 },
            { id: 7, title: "trainer", salary_min: "98412.41", salary_max: "110773.38", tax_bracket_id: 2 },
            { id: 8, title: "administrator associate researcher", salary_min: "61137.92", salary_max: "79282.89", tax_bracket_id: 10 },
            { id: 9, title: "representative director consultant", salary_min: "58766.28", salary_max: "31665.37", tax_bracket_id: 6 },
            { id: 10, title: "specialist director architect", salary_min: "94383.23", salary_max: "31110.82", tax_bracket_id: 7 },
            { id: 11, title: "trainer", salary_min: "105532.37", salary_max: "37903.62", tax_bracket_id: 5 },
            { id: 12, title: "specialist", salary_min: "50273.89", salary_max: "30011.48", tax_bracket_id: 9 },
            { id: 13, title: "designer developer assistant", salary_min: "45518.43", salary_max: "31691.61", tax_bracket_id: 8 },
            { id: 14, title: "associate trainer lead", salary_min: "40679.83", salary_max: "103997.69", tax_bracket_id: 1 },
            { id: 15, title: "administrator", salary_min: "109092.97", salary_max: "61108.02", tax_bracket_id: 9 },
            { id: 16, title: "strategist", salary_min: "109733.80", salary_max: "48965.26", tax_bracket_id: 7 },
            { id: 17, title: "architect lead", salary_min: "30010.86", salary_max: "91369.69", tax_bracket_id: 10 },
            { id: 18, title: "assistant associate", salary_min: "77917.96", salary_max: "30452.86", tax_bracket_id: 9 },
            { id: 19, title: "administrator", salary_min: "31098.29", salary_max: "54741.27", tax_bracket_id: 4 },
            { id: 20, title: "researcher director", salary_min: "81910.76", salary_max: "65903.20", tax_bracket_id: 10 },
            { id: 21, title: "developer engineer", salary_min: "107154.60", salary_max: "107467.22", tax_bracket_id: 6 },
            { id: 22, title: "lead coordinator trainer", salary_min: "41406.33", salary_max: "56982.28", tax_bracket_id: 3 },
            { id: 23, title: "developer", salary_min: "48178.66", salary_max: "48336.12", tax_bracket_id: 3 },
            { id: 24, title: "executive", salary_min: "53049.51", salary_max: "36901.33", tax_bracket_id: 4 },
            { id: 25, title: "researcher designer officer", salary_min: "51145.61", salary_max: "45210.78", tax_bracket_id: 4 },
            { id: 26, title: "analyst", salary_min: "39595.88", salary_max: "30006.84", tax_bracket_id: 5 },
            { id: 27, title: "representative researcher", salary_min: "84722.78", salary_max: "66034.12", tax_bracket_id: 3 },
            { id: 28, title: "developer", salary_min: "34944.27", salary_max: "34474.64", tax_bracket_id: 4 },
            { id: 29, title: "analyst developer specialist", salary_min: "43177.60", salary_max: "93914.68", tax_bracket_id: 1 },
            { id: 30, title: "assistant associate administrator", salary_min: "54328.13", salary_max: "43665.48", tax_bracket_id: 5 },
            { id: 31, title: "executive lead associate", salary_min: "32651.52", salary_max: "45347.56", tax_bracket_id: 5 },
            { id: 32, title: "engineer officer", salary_min: "30129.03", salary_max: "81945.86", tax_bracket_id: 5 },
            { id: 33, title: "executive engineer", salary_min: "85957.10", salary_max: "30147.74", tax_bracket_id: 5 },
            { id: 34, title: "assistant executive director", salary_min: "30510.43", salary_max: "76407.46", tax_bracket_id: 5 },
            { id: 35, title: "officer designer", salary_min: "31728.05", salary_max: "119953.41", tax_bracket_id: 8 },
            { id: 36, title: "manager", salary_min: "109212.79", salary_max: "89675.91", tax_bracket_id: 6 },
            { id: 37, title: "architect assistant analyst", salary_min: "40024.89", salary_max: "49352.30", tax_bracket_id: 2 },
            { id: 38, title: "manager analyst assistant", salary_min: "42056.26", salary_max: "32731.17", tax_bracket_id: 2 },
            { id: 39, title: "consultant", salary_min: "36041.58", salary_max: "34987.88", tax_bracket_id: 1 },
            { id: 40, title: "designer consultant", salary_min: "59379.22", salary_max: "115110.14", tax_bracket_id: 2 },
            { id: 41, title: "representative researcher executive", salary_min: "44720.38", salary_max: "53264.30", tax_bracket_id: 2 },
            { id: 42, title: "manager", salary_min: "31591.25", salary_max: "41723.41", tax_bracket_id: 10 },
            { id: 43, title: "assistant engineer representative", salary_min: "82720.74", salary_max: "34807.08", tax_bracket_id: 9 },
            { id: 44, title: "executive", salary_min: "38803.30", salary_max: "45179.33", tax_bracket_id: 1 },
            { id: 45, title: "developer coordinator engineer", salary_min: "75334.29", salary_max: "30504.10", tax_bracket_id: 3 },
            { id: 46, title: "manager officer", salary_min: "33108.16", salary_max: "54182.60", tax_bracket_id: 6 },
            { id: 47, title: "developer engineer strategist", salary_min: "31222.14", salary_max: "53607.83", tax_bracket_id: 6 },
            { id: 48, title: "manager", salary_min: "72860.77", salary_max: "47452.06", tax_bracket_id: 2 },
            { id: 49, title: "engineer", salary_min: "50013.98", salary_max: "34821.97", tax_bracket_id: 4 },
            { id: 50, title: "trainer", salary_min: "40139.56", salary_max: "42452.78", tax_bracket_id: 4 },
        ],
    });
    await prisma.employees.createMany({
        data: [
            { id: 1, full_name: "Noah Singh", job_role_id: 15, payment_method_id: 5, benefits_package_id: 5, hire_date: "2023-03-10", salary: "69565.25", performance_rating: 5 },
            { id: 2, full_name: "Fatima Bennett", job_role_id: 50, payment_method_id: 1, benefits_package_id: 2, hire_date: "2020-06-12", salary: "30380.02", performance_rating: 5 },
            { id: 3, full_name: "Kai Martin", job_role_id: 50, payment_method_id: 5, benefits_package_id: 7, hire_date: "2022-08-20", salary: "81872.24", performance_rating: 2 },
            { id: 4, full_name: "Amir Hassan", job_role_id: 36, payment_method_id: 5, benefits_package_id: 5, hire_date: null, salary: "30087.25", performance_rating: 5 },
            { id: 5, full_name: "Mateo Brown", job_role_id: 26, payment_method_id: 5, benefits_package_id: 12, hire_date: null, salary: "91063.39", performance_rating: null },
            { id: 6, full_name: "Olivia Kowalski", job_role_id: 39, payment_method_id: 2, benefits_package_id: 1, hire_date: "2022-07-17", salary: "33671.05", performance_rating: 5 },
            { id: 7, full_name: "Sam Chen", job_role_id: 12, payment_method_id: 1, benefits_package_id: 13, hire_date: "2022-11-23", salary: "108996.79", performance_rating: 5 },
            { id: 8, full_name: "Emma Klein", job_role_id: 31, payment_method_id: 4, benefits_package_id: 15, hire_date: "2022-10-27", salary: "96142.03", performance_rating: 4 },
            { id: 9, full_name: "Priya Carter", job_role_id: 24, payment_method_id: 4, benefits_package_id: 7, hire_date: null, salary: "64592.22", performance_rating: 2 },
            { id: 10, full_name: "Sven Murphy", job_role_id: 32, payment_method_id: 2, benefits_package_id: 6, hire_date: "2020-08-28", salary: "31583.95", performance_rating: 3 },
            { id: 11, full_name: "Hannah Walker", job_role_id: 21, payment_method_id: 5, benefits_package_id: 12, hire_date: "2016-02-25", salary: "55245.44", performance_rating: 4 },
            { id: 12, full_name: "Victor Johnson", job_role_id: 26, payment_method_id: 4, benefits_package_id: 4, hire_date: "2018-10-13", salary: "47702.35", performance_rating: 5 },
            { id: 13, full_name: "Chen Flores", job_role_id: 12, payment_method_id: 1, benefits_package_id: 3, hire_date: "2021-01-31", salary: "52122.55", performance_rating: 5 },
            { id: 14, full_name: "Uma Zhang", job_role_id: 40, payment_method_id: 5, benefits_package_id: 2, hire_date: "2019-05-29", salary: "109686.17", performance_rating: 5 },
            { id: 15, full_name: "Paula Bauer", job_role_id: 32, payment_method_id: 4, benefits_package_id: 8, hire_date: null, salary: "44473.26", performance_rating: 5 },
            { id: 16, full_name: "Theo Jensen", job_role_id: 44, payment_method_id: 4, benefits_package_id: 12, hire_date: "2021-07-08", salary: "31489.56", performance_rating: 3 },
            { id: 17, full_name: "Carla Castro", job_role_id: 18, payment_method_id: 5, benefits_package_id: 2, hire_date: null, salary: "30013.50", performance_rating: 4 },
            { id: 18, full_name: "Rosa Silva", job_role_id: 10, payment_method_id: 3, benefits_package_id: 4, hire_date: "2019-11-14", salary: "37147.72", performance_rating: 3 },
            { id: 19, full_name: "Laura Nakamura", job_role_id: 14, payment_method_id: 2, benefits_package_id: 1, hire_date: null, salary: "62158.42", performance_rating: 4 },
            { id: 20, full_name: "Noah Kowalski", job_role_id: 47, payment_method_id: 5, benefits_package_id: 9, hire_date: "2023-11-23", salary: "100940.36", performance_rating: 4 },
            { id: 21, full_name: "Nadia Reyes", job_role_id: 6, payment_method_id: 5, benefits_package_id: 7, hire_date: "2023-10-24", salary: "67169.56", performance_rating: null },
            { id: 22, full_name: "Mohamed Wright", job_role_id: 4, payment_method_id: 1, benefits_package_id: 14, hire_date: "2018-01-06", salary: "53204.50", performance_rating: 2 },
            { id: 23, full_name: "Lucas Wilson", job_role_id: 15, payment_method_id: 4, benefits_package_id: 9, hire_date: "2019-08-20", salary: "113482.78", performance_rating: 5 },
            { id: 24, full_name: "Anna Wagner", job_role_id: 17, payment_method_id: 3, benefits_package_id: 10, hire_date: "2019-12-27", salary: "30048.10", performance_rating: 5 },
            { id: 25, full_name: "Andre Zhang", job_role_id: 19, payment_method_id: 3, benefits_package_id: 2, hire_date: "2022-03-25", salary: "96610.97", performance_rating: null },
            { id: 26, full_name: "Oscar Schneider", job_role_id: 15, payment_method_id: 2, benefits_package_id: 14, hire_date: "2023-07-26", salary: "48621.09", performance_rating: 4 },
            { id: 27, full_name: "Lucas Becker", job_role_id: 49, payment_method_id: 5, benefits_package_id: 10, hire_date: "2018-10-04", salary: "49763.42", performance_rating: 2 },
            { id: 28, full_name: "Grace Costa", job_role_id: 2, payment_method_id: 3, benefits_package_id: 7, hire_date: "2019-01-15", salary: "85444.70", performance_rating: 4 },
            { id: 29, full_name: "Hana Schmidt", job_role_id: 18, payment_method_id: 4, benefits_package_id: 14, hire_date: "2021-03-26", salary: "31463.87", performance_rating: 2 },
            { id: 30, full_name: "Jade Mendes", job_role_id: 32, payment_method_id: 4, benefits_package_id: 11, hire_date: "2023-01-30", salary: "40878.33", performance_rating: 4 },
            { id: 31, full_name: "Zara Park", job_role_id: 17, payment_method_id: 4, benefits_package_id: 6, hire_date: "2022-12-24", salary: "31743.08", performance_rating: 2 },
            { id: 32, full_name: "Anna Weber", job_role_id: 3, payment_method_id: 4, benefits_package_id: 5, hire_date: null, salary: "80280.62", performance_rating: 4 },
            { id: 33, full_name: "Uma Reyes", job_role_id: 28, payment_method_id: 4, benefits_package_id: 5, hire_date: "2021-12-05", salary: "47465.56", performance_rating: 4 },
            { id: 34, full_name: "David Rossi", job_role_id: 30, payment_method_id: 3, benefits_package_id: 11, hire_date: "2020-09-27", salary: "75126.39", performance_rating: 5 },
            { id: 35, full_name: "Ivan Ruiz", job_role_id: 7, payment_method_id: 5, benefits_package_id: 3, hire_date: "2023-04-23", salary: "95068.45", performance_rating: 5 },
            { id: 36, full_name: "Selin Kim", job_role_id: 37, payment_method_id: 5, benefits_package_id: 14, hire_date: "2021-08-26", salary: "55492.83", performance_rating: 4 },
            { id: 37, full_name: "Mohamed Larsen", job_role_id: 36, payment_method_id: 3, benefits_package_id: 8, hire_date: "2020-05-07", salary: "30006.09", performance_rating: 4 },
            { id: 38, full_name: "Ben Shah", job_role_id: 38, payment_method_id: 4, benefits_package_id: 4, hire_date: "2015-10-27", salary: "34289.60", performance_rating: 5 },
            { id: 39, full_name: "Anna Flores", job_role_id: 32, payment_method_id: 5, benefits_package_id: 6, hire_date: "2015-10-07", salary: "93933.49", performance_rating: 5 },
            { id: 40, full_name: "Anna Carter", job_role_id: 27, payment_method_id: 5, benefits_package_id: 11, hire_date: "2015-01-16", salary: "32957.37", performance_rating: 2 },
            { id: 41, full_name: "Julia Schmidt", job_role_id: 31, payment_method_id: 4, benefits_package_id: 15, hire_date: "2023-04-12", salary: "32236.97", performance_rating: 5 },
            { id: 42, full_name: "Elena Miller", job_role_id: 31, payment_method_id: 4, benefits_package_id: 8, hire_date: "2017-03-19", salary: "100351.65", performance_rating: 4 },
            { id: 43, full_name: "Rafael Kumar", job_role_id: 6, payment_method_id: 5, benefits_package_id: 8, hire_date: "2021-05-27", salary: "66255.78", performance_rating: 5 },
            { id: 44, full_name: "Jack Kumar", job_role_id: 19, payment_method_id: 5, benefits_package_id: 1, hire_date: "2017-01-08", salary: "91701.69", performance_rating: 1 },
            { id: 45, full_name: "Chen Clark", job_role_id: 9, payment_method_id: 3, benefits_package_id: 4, hire_date: "2016-10-13", salary: "86471.53", performance_rating: 2 },
            { id: 46, full_name: "Marco Klein", job_role_id: 18, payment_method_id: 5, benefits_package_id: 5, hire_date: "2020-03-20", salary: "115332.35", performance_rating: 1 },
            { id: 47, full_name: "Nour Demir", job_role_id: 30, payment_method_id: 5, benefits_package_id: 15, hire_date: "2020-08-23", salary: "54868.26", performance_rating: 3 },
            { id: 48, full_name: "Victor Weber", job_role_id: 44, payment_method_id: 1, benefits_package_id: 2, hire_date: "2022-12-06", salary: "30946.00", performance_rating: 5 },
            { id: 49, full_name: "Karim Kumar", job_role_id: 7, payment_method_id: 5, benefits_package_id: 1, hire_date: "2020-10-17", salary: "60036.57", performance_rating: 5 },
            { id: 50, full_name: "Lucas Jansen", job_role_id: 20, payment_method_id: 5, benefits_package_id: 14, hire_date: null, salary: "34484.21", performance_rating: 5 },
            { id: 51, full_name: "Alice Chen", job_role_id: 6, payment_method_id: 5, benefits_package_id: 4, hire_date: "2016-09-13", salary: "51688.68", performance_rating: 5 },
            { id: 52, full_name: "Lucas Hassan", job_role_id: 3, payment_method_id: 4, benefits_package_id: 7, hire_date: "2023-01-21", salary: "52362.13", performance_rating: 5 },
            { id: 53, full_name: "Chloe Becker", job_role_id: 46, payment_method_id: 2, benefits_package_id: 8, hire_date: "2017-12-02", salary: "30017.59", performance_rating: 4 },
            { id: 54, full_name: "Karim Johnson", job_role_id: 16, payment_method_id: 2, benefits_package_id: 14, hire_date: null, salary: "35259.86", performance_rating: 5 },
            { id: 55, full_name: "Selin Torres", job_role_id: 50, payment_method_id: 2, benefits_package_id: 6, hire_date: null, salary: "116117.90", performance_rating: 5 },
            { id: 56, full_name: "Mei Johnson", job_role_id: 15, payment_method_id: 4, benefits_package_id: 2, hire_date: "2021-12-22", salary: "30287.24", performance_rating: null },
            { id: 57, full_name: "Victor Meyer", job_role_id: 37, payment_method_id: 4, benefits_package_id: 15, hire_date: "2019-05-20", salary: "65694.66", performance_rating: null },
            { id: 58, full_name: "Diego Yilmaz", job_role_id: 32, payment_method_id: 2, benefits_package_id: 9, hire_date: null, salary: "58497.11", performance_rating: null },
            { id: 59, full_name: "Rafael Ali", job_role_id: 5, payment_method_id: 4, benefits_package_id: 3, hire_date: "2023-12-11", salary: "41131.00", performance_rating: 2 },
            { id: 60, full_name: "Yusuf Wagner", job_role_id: 25, payment_method_id: 3, benefits_package_id: 12, hire_date: "2019-04-23", salary: "46009.58", performance_rating: null },
            { id: 61, full_name: "Carlos Castro", job_role_id: 17, payment_method_id: 5, benefits_package_id: 13, hire_date: "2020-05-03", salary: "102358.16", performance_rating: 3 },
            { id: 62, full_name: "Mei Moreau", job_role_id: 10, payment_method_id: 4, benefits_package_id: 6, hire_date: "2020-02-23", salary: "39651.24", performance_rating: 3 },
            { id: 63, full_name: "Nour Tanaka", job_role_id: 10, payment_method_id: 4, benefits_package_id: 5, hire_date: "2018-09-25", salary: "39941.32", performance_rating: 3 },
            { id: 64, full_name: "Omar Johnson", job_role_id: 38, payment_method_id: 3, benefits_package_id: 8, hire_date: "2020-01-17", salary: "84451.61", performance_rating: null },
            { id: 65, full_name: "Ruby Martin", job_role_id: 48, payment_method_id: 3, benefits_package_id: 13, hire_date: "2020-05-22", salary: "118776.31", performance_rating: 2 },
            { id: 66, full_name: "Ravi Tanaka", job_role_id: 41, payment_method_id: 5, benefits_package_id: 11, hire_date: "2019-05-10", salary: "109401.53", performance_rating: 4 },
            { id: 67, full_name: "Jack Mendes", job_role_id: 3, payment_method_id: 3, benefits_package_id: 10, hire_date: "2019-11-11", salary: "68734.82", performance_rating: 4 },
            { id: 68, full_name: "Oscar Vargas", job_role_id: 26, payment_method_id: 3, benefits_package_id: 3, hire_date: "2020-11-10", salary: "31013.91", performance_rating: 1 },
            { id: 69, full_name: "Elif Fischer", job_role_id: 17, payment_method_id: 3, benefits_package_id: 6, hire_date: "2018-07-09", salary: "58639.92", performance_rating: 5 },
            { id: 70, full_name: "Elena Novak", job_role_id: 48, payment_method_id: 4, benefits_package_id: 2, hire_date: "2021-10-24", salary: "30210.74", performance_rating: 5 },
            { id: 71, full_name: "Pedro Vargas", job_role_id: 45, payment_method_id: 2, benefits_package_id: 6, hire_date: null, salary: "56903.98", performance_rating: 5 },
            { id: 72, full_name: "Isaac Schneider", job_role_id: 9, payment_method_id: 5, benefits_package_id: 5, hire_date: "2017-09-22", salary: "91043.77", performance_rating: 5 },
            { id: 73, full_name: "Mia Young", job_role_id: 45, payment_method_id: 5, benefits_package_id: 15, hire_date: "2020-09-07", salary: "30057.57", performance_rating: 1 },
            { id: 74, full_name: "Maria Silva", job_role_id: 45, payment_method_id: 2, benefits_package_id: 7, hire_date: "2016-10-10", salary: "32708.61", performance_rating: null },
            { id: 75, full_name: "Hugo Novak", job_role_id: 42, payment_method_id: 3, benefits_package_id: 10, hire_date: "2020-05-06", salary: "97193.89", performance_rating: 4 },
            { id: 76, full_name: "Hannah Pereira", job_role_id: 26, payment_method_id: 1, benefits_package_id: 9, hire_date: "2022-05-21", salary: "40535.81", performance_rating: 5 },
            { id: 77, full_name: "Pedro Patel", job_role_id: 45, payment_method_id: 5, benefits_package_id: 4, hire_date: "2018-05-25", salary: "33316.59", performance_rating: 3 },
            { id: 78, full_name: "Zoe Garcia", job_role_id: 34, payment_method_id: 4, benefits_package_id: 10, hire_date: null, salary: "35086.86", performance_rating: 3 },
            { id: 79, full_name: "Laura Diaz", job_role_id: 23, payment_method_id: 1, benefits_package_id: 6, hire_date: "2020-12-31", salary: "30843.37", performance_rating: 4 },
            { id: 80, full_name: "Daniel Kim", job_role_id: 11, payment_method_id: 2, benefits_package_id: 3, hire_date: "2019-12-29", salary: "38061.57", performance_rating: 5 },
            { id: 81, full_name: "Ana Kim", job_role_id: 16, payment_method_id: 1, benefits_package_id: 12, hire_date: "2022-05-01", salary: "52721.18", performance_rating: 5 },
            { id: 82, full_name: "Leo Cruz", job_role_id: 22, payment_method_id: 2, benefits_package_id: 3, hire_date: "2015-12-26", salary: "41875.76", performance_rating: 2 },
            { id: 83, full_name: "Rafael Hughes", job_role_id: 27, payment_method_id: 5, benefits_package_id: 10, hire_date: "2018-01-23", salary: "30713.85", performance_rating: 3 },
            { id: 84, full_name: "Sam Clark", job_role_id: 47, payment_method_id: 2, benefits_package_id: 3, hire_date: "2020-08-10", salary: "74173.69", performance_rating: 4 },
            { id: 85, full_name: "Tariq Lee", job_role_id: 1, payment_method_id: 5, benefits_package_id: 1, hire_date: "2023-04-09", salary: "84024.78", performance_rating: 5 },
            { id: 86, full_name: "Pedro Lee", job_role_id: 14, payment_method_id: 2, benefits_package_id: 10, hire_date: "2018-02-08", salary: "33387.82", performance_rating: 4 },
            { id: 87, full_name: "Amir Young", job_role_id: 37, payment_method_id: 4, benefits_package_id: 11, hire_date: "2022-06-25", salary: "58114.79", performance_rating: 2 },
            { id: 88, full_name: "Karim Mendes", job_role_id: 33, payment_method_id: 3, benefits_package_id: 2, hire_date: "2021-07-16", salary: "31436.32", performance_rating: 1 },
            { id: 89, full_name: "Maja Taylor", job_role_id: 17, payment_method_id: 5, benefits_package_id: 4, hire_date: "2015-06-08", salary: "92904.20", performance_rating: 2 },
            { id: 90, full_name: "Hana Ibrahim", job_role_id: 9, payment_method_id: 2, benefits_package_id: 11, hire_date: "2019-12-20", salary: "31052.16", performance_rating: 4 },
            { id: 91, full_name: "Jack Wright", job_role_id: 31, payment_method_id: 5, benefits_package_id: 12, hire_date: "2020-11-24", salary: "32283.17", performance_rating: 2 },
            { id: 92, full_name: "Felix Miller", job_role_id: 20, payment_method_id: 1, benefits_package_id: 10, hire_date: "2023-09-05", salary: "40534.02", performance_rating: 5 },
            { id: 93, full_name: "Tomas Diaz", job_role_id: 16, payment_method_id: 5, benefits_package_id: 10, hire_date: "2017-03-25", salary: "80447.35", performance_rating: 4 },
            { id: 94, full_name: "Victor Davis", job_role_id: 37, payment_method_id: 3, benefits_package_id: 13, hire_date: "2018-05-25", salary: "91122.38", performance_rating: 4 },
            { id: 95, full_name: "Rosa Bennett", job_role_id: 23, payment_method_id: 3, benefits_package_id: 14, hire_date: "2023-02-11", salary: "30004.87", performance_rating: 3 },
            { id: 96, full_name: "Fatima Brown", job_role_id: 7, payment_method_id: 4, benefits_package_id: 15, hire_date: "2017-11-17", salary: "30205.67", performance_rating: 5 },
            { id: 97, full_name: "Mei Meyer", job_role_id: 19, payment_method_id: 1, benefits_package_id: 11, hire_date: "2019-06-20", salary: "111225.47", performance_rating: 2 },
            { id: 98, full_name: "Liam Ali", job_role_id: 46, payment_method_id: 2, benefits_package_id: 7, hire_date: "2022-11-03", salary: "33108.19", performance_rating: 3 },
            { id: 99, full_name: "Lucas Mendes", job_role_id: 25, payment_method_id: 2, benefits_package_id: 15, hire_date: "2021-03-14", salary: "33902.56", performance_rating: 3 },
            { id: 100, full_name: "Selin Dubois", job_role_id: 10, payment_method_id: 2, benefits_package_id: 4, hire_date: "2021-09-04", salary: "33568.17", performance_rating: 4 },
            { id: 101, full_name: "Deniz Walker", job_role_id: 19, payment_method_id: 4, benefits_package_id: 6, hire_date: "2017-06-10", salary: "42203.89", performance_rating: 3 },
            { id: 102, full_name: "Paula Khan", job_role_id: 25, payment_method_id: 4, benefits_package_id: 4, hire_date: "2021-11-22", salary: "33320.13", performance_rating: 4 },
            { id: 103, full_name: "Diego Jensen", job_role_id: 15, payment_method_id: 2, benefits_package_id: 3, hire_date: "2023-11-17", salary: "32424.43", performance_rating: 4 },
            { id: 104, full_name: "Tomas Meyer", job_role_id: 17, payment_method_id: 2, benefits_package_id: 11, hire_date: "2018-12-04", salary: "105265.85", performance_rating: 3 },
            { id: 105, full_name: "Pedro Schneider", job_role_id: 39, payment_method_id: 2, benefits_package_id: 11, hire_date: "2019-09-18", salary: "52452.84", performance_rating: 5 },
            { id: 106, full_name: "Jonas Brown", job_role_id: 44, payment_method_id: 5, benefits_package_id: 10, hire_date: "2016-02-09", salary: "46878.39", performance_rating: 5 },
            { id: 107, full_name: "Amir Wagner", job_role_id: 26, payment_method_id: 5, benefits_package_id: 14, hire_date: "2019-01-03", salary: "30752.31", performance_rating: 4 },
            { id: 108, full_name: "Lucas Ibrahim", job_role_id: 12, payment_method_id: 3, benefits_package_id: 13, hire_date: "2020-06-21", salary: "37181.06", performance_rating: 5 },
            { id: 109, full_name: "Selin Wilson", job_role_id: 17, payment_method_id: 5, benefits_package_id: 5, hire_date: "2021-08-14", salary: "34545.74", performance_rating: 3 },
            { id: 110, full_name: "Leo Kaya", job_role_id: 45, payment_method_id: 3, benefits_package_id: 12, hire_date: "2022-11-23", salary: "51177.94", performance_rating: 5 },
            { id: 111, full_name: "Fatima Singh", job_role_id: 5, payment_method_id: 4, benefits_package_id: 9, hire_date: "2022-03-30", salary: "88018.97", performance_rating: 5 },
            { id: 112, full_name: "Ruby Khan", job_role_id: 44, payment_method_id: 5, benefits_package_id: 15, hire_date: "2020-01-20", salary: "51633.94", performance_rating: 3 },
            { id: 113, full_name: "Pedro Hansen", job_role_id: 2, payment_method_id: 1, benefits_package_id: 10, hire_date: "2023-09-02", salary: "41008.00", performance_rating: 5 },
            { id: 114, full_name: "Lena Almeida", job_role_id: 7, payment_method_id: 3, benefits_package_id: 4, hire_date: "2016-11-10", salary: "110674.87", performance_rating: 5 },
            { id: 115, full_name: "Elena Wang", job_role_id: 24, payment_method_id: 3, benefits_package_id: 12, hire_date: "2017-11-17", salary: "113107.15", performance_rating: 5 },
            { id: 116, full_name: "Ivan Miller", job_role_id: 10, payment_method_id: 5, benefits_package_id: 11, hire_date: "2018-06-20", salary: "82582.96", performance_rating: 2 },
            { id: 117, full_name: "Zoe Kim", job_role_id: 6, payment_method_id: 2, benefits_package_id: 9, hire_date: "2021-02-14", salary: "70714.76", performance_rating: 4 },
            { id: 118, full_name: "Elif Pereira", job_role_id: 47, payment_method_id: 2, benefits_package_id: 2, hire_date: "2023-02-07", salary: "62291.98", performance_rating: 4 },
            { id: 119, full_name: "Felix Zhang", job_role_id: 37, payment_method_id: 5, benefits_package_id: 8, hire_date: "2015-12-03", salary: "71437.40", performance_rating: 2 },
            { id: 120, full_name: "Elif Oliveira", job_role_id: 50, payment_method_id: 3, benefits_package_id: 1, hire_date: "2020-02-26", salary: "85026.79", performance_rating: 4 },
            { id: 121, full_name: "Ruby Becker", job_role_id: 33, payment_method_id: 3, benefits_package_id: 14, hire_date: "2015-07-24", salary: "34162.83", performance_rating: 2 },
            { id: 122, full_name: "Karim Park", job_role_id: 40, payment_method_id: 4, benefits_package_id: 5, hire_date: "2021-11-21", salary: "71397.94", performance_rating: 4 },
            { id: 123, full_name: "Chloe Martin", job_role_id: 12, payment_method_id: 2, benefits_package_id: 8, hire_date: "2018-09-25", salary: "118956.04", performance_rating: 5 },
            { id: 124, full_name: "Sam Kaya", job_role_id: 9, payment_method_id: 4, benefits_package_id: 7, hire_date: null, salary: "54800.92", performance_rating: 4 },
            { id: 125, full_name: "Chen Zhang", job_role_id: 3, payment_method_id: 4, benefits_package_id: 3, hire_date: "2021-08-17", salary: "74471.80", performance_rating: 2 },
            { id: 126, full_name: "Uma Ibrahim", job_role_id: 7, payment_method_id: 1, benefits_package_id: 15, hire_date: null, salary: "31017.82", performance_rating: 4 },
            { id: 127, full_name: "Mia Smith", job_role_id: 41, payment_method_id: 4, benefits_package_id: 6, hire_date: "2023-06-30", salary: "30036.29", performance_rating: 2 },
            { id: 128, full_name: "Jade Andersen", job_role_id: 50, payment_method_id: 5, benefits_package_id: 5, hire_date: "2023-09-11", salary: "55380.06", performance_rating: 4 },
            { id: 129, full_name: "Sven Hughes", job_role_id: 7, payment_method_id: 1, benefits_package_id: 15, hire_date: "2023-09-18", salary: "72826.13", performance_rating: 2 },
            { id: 130, full_name: "Paula Miller", job_role_id: 14, payment_method_id: 3, benefits_package_id: 10, hire_date: "2023-10-26", salary: "104060.26", performance_rating: 5 },
            { id: 131, full_name: "Liam Kowalski", job_role_id: 10, payment_method_id: 2, benefits_package_id: 2, hire_date: "2022-02-10", salary: "103519.84", performance_rating: 5 },
            { id: 132, full_name: "Oscar Hoffmann", job_role_id: 21, payment_method_id: 5, benefits_package_id: 12, hire_date: "2023-04-21", salary: "103048.32", performance_rating: 5 },
            { id: 133, full_name: "Karim Carter", job_role_id: 33, payment_method_id: 1, benefits_package_id: 8, hire_date: "2020-09-23", salary: "50694.27", performance_rating: 5 },
            { id: 134, full_name: "Paula Smith", job_role_id: 19, payment_method_id: 2, benefits_package_id: 3, hire_date: "2016-04-25", salary: "44690.71", performance_rating: 4 },
            { id: 135, full_name: "Paula Kowalski", job_role_id: 28, payment_method_id: 2, benefits_package_id: 7, hire_date: "2020-02-11", salary: "114011.83", performance_rating: 5 },
            { id: 136, full_name: "Maria Kumar", job_role_id: 38, payment_method_id: 4, benefits_package_id: 14, hire_date: "2016-07-02", salary: "78762.84", performance_rating: 5 },
            { id: 137, full_name: "Marco Zhang", job_role_id: 33, payment_method_id: 4, benefits_package_id: 10, hire_date: "2022-11-23", salary: "41739.16", performance_rating: 5 },
            { id: 138, full_name: "Tomas Miller", job_role_id: 2, payment_method_id: 4, benefits_package_id: 12, hire_date: "2020-03-17", salary: "53410.50", performance_rating: 1 },
            { id: 139, full_name: "Nina Ali", job_role_id: 21, payment_method_id: 4, benefits_package_id: 13, hire_date: "2021-08-31", salary: "43271.90", performance_rating: 2 },
            { id: 140, full_name: "Liam Khan", job_role_id: 45, payment_method_id: 2, benefits_package_id: 15, hire_date: "2022-07-18", salary: "34541.37", performance_rating: 3 },
            { id: 141, full_name: "Maja Kumar", job_role_id: 49, payment_method_id: 4, benefits_package_id: 11, hire_date: "2022-04-02", salary: "30428.13", performance_rating: 4 },
            { id: 142, full_name: "Hana Carter", job_role_id: 50, payment_method_id: 4, benefits_package_id: 13, hire_date: "2020-09-13", salary: "97607.81", performance_rating: 3 },
            { id: 143, full_name: "Grace Clark", job_role_id: 48, payment_method_id: 5, benefits_package_id: 15, hire_date: null, salary: "31416.75", performance_rating: 4 },
            { id: 144, full_name: "Mei Castro", job_role_id: 5, payment_method_id: 1, benefits_package_id: 3, hire_date: null, salary: "47086.10", performance_rating: 2 },
            { id: 145, full_name: "Nour Patel", job_role_id: 49, payment_method_id: 5, benefits_package_id: 4, hire_date: "2019-06-06", salary: "49361.44", performance_rating: null },
            { id: 146, full_name: "Rosa Bauer", job_role_id: 47, payment_method_id: 2, benefits_package_id: 8, hire_date: "2018-05-07", salary: "112257.14", performance_rating: 3 },
            { id: 147, full_name: "Carla Singh", job_role_id: 13, payment_method_id: 3, benefits_package_id: 10, hire_date: "2020-06-11", salary: "105319.47", performance_rating: null },
            { id: 148, full_name: "Hannah Nakamura", job_role_id: 13, payment_method_id: 5, benefits_package_id: 6, hire_date: "2023-12-24", salary: "119481.40", performance_rating: 5 },
            { id: 149, full_name: "Noah Shah", job_role_id: 37, payment_method_id: 5, benefits_package_id: 9, hire_date: "2022-07-06", salary: "78412.35", performance_rating: 4 },
            { id: 150, full_name: "James Khan", job_role_id: 13, payment_method_id: 2, benefits_package_id: 15, hire_date: "2017-12-26", salary: "78237.26", performance_rating: 5 },
            { id: 151, full_name: "Hana Walker", job_role_id: 23, payment_method_id: 1, benefits_package_id: 13, hire_date: "2016-04-11", salary: "71500.03", performance_rating: 3 },
            { id: 152, full_name: "Selin Bennett", job_role_id: 17, payment_method_id: 5, benefits_package_id: 6, hire_date: "2022-11-21", salary: "30105.83", performance_rating: 4 },
            { id: 153, full_name: "Lucas Lopez", job_role_id: 38, payment_method_id: 4, benefits_package_id: 7, hire_date: "2015-03-12", salary: "30948.55", performance_rating: 5 },
            { id: 154, full_name: "Mia Novak", job_role_id: 18, payment_method_id: 2, benefits_package_id: 4, hire_date: "2018-01-29", salary: "32267.66", performance_rating: 1 },
            { id: 155, full_name: "Paula Adams", job_role_id: 20, payment_method_id: 2, benefits_package_id: 5, hire_date: "2017-06-14", salary: "65131.27", performance_rating: 4 },
            { id: 156, full_name: "Victor Adams", job_role_id: 5, payment_method_id: 1, benefits_package_id: 6, hire_date: "2017-05-21", salary: "32478.27", performance_rating: 5 },
            { id: 157, full_name: "Selin Castro", job_role_id: 50, payment_method_id: 2, benefits_package_id: 8, hire_date: "2017-10-30", salary: "41354.22", performance_rating: null },
            { id: 158, full_name: "Oscar Bennett", job_role_id: 12, payment_method_id: 3, benefits_package_id: 9, hire_date: null, salary: "49388.80", performance_rating: null },
            { id: 159, full_name: "Yara Dubois", job_role_id: 32, payment_method_id: 1, benefits_package_id: 14, hire_date: "2020-04-19", salary: "52819.61", performance_rating: 4 },
            { id: 160, full_name: "Yusuf Bennett", job_role_id: 28, payment_method_id: 5, benefits_package_id: 12, hire_date: null, salary: "73802.61", performance_rating: 4 },
            { id: 161, full_name: "Emma Silva", job_role_id: 14, payment_method_id: 3, benefits_package_id: 12, hire_date: "2020-03-24", salary: "113100.36", performance_rating: 1 },
            { id: 162, full_name: "Lina Yilmaz", job_role_id: 38, payment_method_id: 5, benefits_package_id: 14, hire_date: "2020-02-27", salary: "35792.55", performance_rating: 4 },
            { id: 163, full_name: "Fatima Almeida", job_role_id: 24, payment_method_id: 4, benefits_package_id: 15, hire_date: "2017-12-04", salary: "35777.11", performance_rating: 2 },
            { id: 164, full_name: "Fatima Hoffmann", job_role_id: 22, payment_method_id: 4, benefits_package_id: 13, hire_date: "2023-06-27", salary: "34377.77", performance_rating: 5 },
            { id: 165, full_name: "Lucas Adams", job_role_id: 44, payment_method_id: 1, benefits_package_id: 3, hire_date: "2016-07-26", salary: "49407.54", performance_rating: null },
            { id: 166, full_name: "Ben Novak", job_role_id: 44, payment_method_id: 4, benefits_package_id: 2, hire_date: "2018-02-02", salary: "80072.07", performance_rating: 5 },
            { id: 167, full_name: "Elena Smith", job_role_id: 22, payment_method_id: 4, benefits_package_id: 4, hire_date: "2021-09-16", salary: "75740.15", performance_rating: 4 },
            { id: 168, full_name: "Elif Demir", job_role_id: 15, payment_method_id: 5, benefits_package_id: 10, hire_date: "2016-08-02", salary: "105824.51", performance_rating: 4 },
            { id: 169, full_name: "Emma Baker", job_role_id: 17, payment_method_id: 2, benefits_package_id: 12, hire_date: "2023-05-15", salary: "61094.44", performance_rating: 4 },
            { id: 170, full_name: "Marco Oliveira", job_role_id: 44, payment_method_id: 5, benefits_package_id: 14, hire_date: "2021-11-07", salary: "32477.48", performance_rating: 3 },
            { id: 171, full_name: "Jade Wright", job_role_id: 37, payment_method_id: 1, benefits_package_id: 8, hire_date: "2018-12-31", salary: "55861.45", performance_rating: 5 },
            { id: 172, full_name: "Omar Kaya", job_role_id: 12, payment_method_id: 4, benefits_package_id: 3, hire_date: "2016-08-13", salary: "30049.22", performance_rating: 5 },
            { id: 173, full_name: "Mateo Lopez", job_role_id: 25, payment_method_id: 3, benefits_package_id: 1, hire_date: null, salary: "32743.31", performance_rating: null },
            { id: 174, full_name: "Sofia Clark", job_role_id: 44, payment_method_id: 2, benefits_package_id: 13, hire_date: "2016-02-05", salary: "53471.98", performance_rating: 4 },
            { id: 175, full_name: "Omar Jansen", job_role_id: 34, payment_method_id: 1, benefits_package_id: 13, hire_date: "2021-02-02", salary: "91917.52", performance_rating: 5 },
            { id: 176, full_name: "Rosa Shah", job_role_id: 7, payment_method_id: 3, benefits_package_id: 1, hire_date: "2020-04-18", salary: "78586.11", performance_rating: 3 },
            { id: 177, full_name: "Jade Moreau", job_role_id: 41, payment_method_id: 3, benefits_package_id: 3, hire_date: "2023-11-14", salary: "30556.39", performance_rating: 5 },
            { id: 178, full_name: "Laura Diaz", job_role_id: 26, payment_method_id: 1, benefits_package_id: 8, hire_date: "2019-04-25", salary: "87330.59", performance_rating: 3 },
            { id: 179, full_name: "Julia Becker", job_role_id: 40, payment_method_id: 4, benefits_package_id: 6, hire_date: "2023-05-12", salary: "43475.57", performance_rating: 2 },
            { id: 180, full_name: "Ibrahim Garcia", job_role_id: 32, payment_method_id: 3, benefits_package_id: 4, hire_date: "2020-05-18", salary: "31463.81", performance_rating: 2 },
            { id: 181, full_name: "Grace Bennett", job_role_id: 9, payment_method_id: 4, benefits_package_id: 5, hire_date: "2022-05-01", salary: "33318.69", performance_rating: 2 },
            { id: 182, full_name: "Lina Rossi", job_role_id: 11, payment_method_id: 2, benefits_package_id: 10, hire_date: "2020-04-22", salary: "91000.36", performance_rating: 1 },
            { id: 183, full_name: "Carla Carter", job_role_id: 16, payment_method_id: 5, benefits_package_id: 3, hire_date: "2020-04-29", salary: "104102.45", performance_rating: 3 },
            { id: 184, full_name: "Hana Wang", job_role_id: 46, payment_method_id: 4, benefits_package_id: 6, hire_date: "2018-06-16", salary: "30306.93", performance_rating: 3 },
            { id: 185, full_name: "Isaac Ruiz", job_role_id: 27, payment_method_id: 2, benefits_package_id: 7, hire_date: "2018-01-21", salary: "102456.08", performance_rating: 3 },
            { id: 186, full_name: "Yara Hoffmann", job_role_id: 17, payment_method_id: 3, benefits_package_id: 10, hire_date: null, salary: "88982.12", performance_rating: 5 },
            { id: 187, full_name: "James Wilson", job_role_id: 29, payment_method_id: 2, benefits_package_id: 4, hire_date: "2015-05-22", salary: "56258.86", performance_rating: 5 },
            { id: 188, full_name: "Elif Novak", job_role_id: 37, payment_method_id: 2, benefits_package_id: 6, hire_date: "2019-08-21", salary: "94065.11", performance_rating: 2 },
            { id: 189, full_name: "Mila Park", job_role_id: 44, payment_method_id: 4, benefits_package_id: 4, hire_date: "2015-06-23", salary: "109166.15", performance_rating: 3 },
            { id: 190, full_name: "Elif Torres", job_role_id: 12, payment_method_id: 1, benefits_package_id: 5, hire_date: "2018-10-08", salary: "88791.47", performance_rating: null },
            { id: 191, full_name: "Laura Cruz", job_role_id: 21, payment_method_id: 5, benefits_package_id: 6, hire_date: "2021-12-04", salary: "30018.83", performance_rating: 3 },
            { id: 192, full_name: "Lina Chen", job_role_id: 4, payment_method_id: 3, benefits_package_id: 3, hire_date: null, salary: "71832.88", performance_rating: 4 },
            { id: 193, full_name: "Zoe Adams", job_role_id: 20, payment_method_id: 2, benefits_package_id: 5, hire_date: "2017-07-16", salary: "31406.41", performance_rating: 5 },
            { id: 194, full_name: "Lena Hughes", job_role_id: 17, payment_method_id: 1, benefits_package_id: 14, hire_date: "2022-02-03", salary: "101856.39", performance_rating: 5 },
            { id: 195, full_name: "Julia Vargas", job_role_id: 8, payment_method_id: 4, benefits_package_id: 11, hire_date: "2022-02-23", salary: "65035.92", performance_rating: 5 },
            { id: 196, full_name: "Elena Zhang", job_role_id: 41, payment_method_id: 1, benefits_package_id: 7, hire_date: "2017-06-11", salary: "89940.40", performance_rating: 4 },
            { id: 197, full_name: "Maria Diaz", job_role_id: 24, payment_method_id: 4, benefits_package_id: 11, hire_date: "2023-10-26", salary: "52757.84", performance_rating: 2 },
            { id: 198, full_name: "Chloe Schneider", job_role_id: 32, payment_method_id: 5, benefits_package_id: 5, hire_date: "2017-12-21", salary: "83114.04", performance_rating: 5 },
            { id: 199, full_name: "Emma Wilson", job_role_id: 8, payment_method_id: 2, benefits_package_id: 12, hire_date: "2016-08-01", salary: "67786.18", performance_rating: 5 },
            { id: 200, full_name: "Liam Gupta", job_role_id: 41, payment_method_id: 4, benefits_package_id: 9, hire_date: "2016-03-06", salary: "100098.63", performance_rating: 2 },
        ],
    });
    await prisma.deductions.createMany({
        data: [
            { id: 1, employee_id: 155, deduction_type: "benefit insurance", amount: "1660.58", effective_date: "2020-10-24" },
            { id: 2, employee_id: 19, deduction_type: "insurance medical retirement", amount: "28.63", effective_date: "2020-12-04" },
            { id: 3, employee_id: 127, deduction_type: "garnishment union retirement", amount: "1168.16", effective_date: "2019-11-25" },
            { id: 4, employee_id: 194, deduction_type: "medical retirement benefit", amount: "1616.45", effective_date: "2023-03-30" },
            { id: 5, employee_id: 42, deduction_type: "dental medical insurance", amount: "847.20", effective_date: "2022-02-28" },
            { id: 6, employee_id: 101, deduction_type: "fees insurance medical", amount: "793.46", effective_date: "2019-12-09" },
            { id: 7, employee_id: 94, deduction_type: "retirement union", amount: "3.68", effective_date: "2017-12-12" },
            { id: 8, employee_id: 55, deduction_type: "medical garnishment", amount: "0.59", effective_date: "2016-01-17" },
            { id: 9, employee_id: 169, deduction_type: "loan benefit", amount: "1124.25", effective_date: "2022-04-17" },
            { id: 10, employee_id: 7, deduction_type: "medical vision insurance", amount: "38.47", effective_date: "2015-03-11" },
            { id: 11, employee_id: 121, deduction_type: "tax", amount: "306.17", effective_date: "2023-04-23" },
            { id: 12, employee_id: 53, deduction_type: "tax", amount: "250.99", effective_date: "2015-01-15" },
            { id: 13, employee_id: 120, deduction_type: "garnishment", amount: "479.79", effective_date: "2019-09-28" },
            { id: 14, employee_id: 42, deduction_type: "charity", amount: "333.51", effective_date: "2021-03-08" },
            { id: 15, employee_id: 89, deduction_type: "insurance", amount: "188.24", effective_date: "2015-02-28" },
            { id: 16, employee_id: 141, deduction_type: "union", amount: "319.68", effective_date: "2017-11-23" },
            { id: 17, employee_id: 70, deduction_type: "fees insurance", amount: "257.55", effective_date: "2023-12-08" },
            { id: 18, employee_id: 82, deduction_type: "insurance", amount: "307.45", effective_date: "2016-10-09" },
            { id: 19, employee_id: 35, deduction_type: "fees", amount: "1461.38", effective_date: "2022-05-03" },
            { id: 20, employee_id: 112, deduction_type: "union", amount: "366.38", effective_date: "2021-03-24" },
            { id: 21, employee_id: 122, deduction_type: "tax benefit", amount: "1783.40", effective_date: "2023-12-07" },
            { id: 22, employee_id: 100, deduction_type: "voluntary garnishment insurance", amount: "1405.61", effective_date: "2022-04-11" },
            { id: 23, employee_id: 116, deduction_type: "medical vision", amount: "1491.69", effective_date: "2022-02-15" },
            { id: 24, employee_id: 58, deduction_type: "loan", amount: "640.64", effective_date: "2023-12-01" },
            { id: 25, employee_id: 109, deduction_type: "contribution", amount: "319.80", effective_date: "2022-02-01" },
            { id: 26, employee_id: 183, deduction_type: null, amount: "49.26", effective_date: "2023-05-26" },
            { id: 27, employee_id: 199, deduction_type: "benefit loan insurance", amount: "103.76", effective_date: "2019-07-08" },
            { id: 28, employee_id: 47, deduction_type: "tax garnishment benefit", amount: "267.97", effective_date: "2023-09-04" },
            { id: 29, employee_id: 194, deduction_type: "insurance fines", amount: "412.20", effective_date: "2018-01-11" },
            { id: 30, employee_id: 124, deduction_type: null, amount: "60.93", effective_date: "2019-12-20" },
            { id: 31, employee_id: 64, deduction_type: "garnishment voluntary", amount: "329.31", effective_date: "2019-12-07" },
            { id: 32, employee_id: 147, deduction_type: "charity dental retirement", amount: "61.00", effective_date: "2017-11-17" },
            { id: 33, employee_id: 187, deduction_type: "contribution", amount: "4.36", effective_date: "2021-05-16" },
            { id: 34, employee_id: 174, deduction_type: "fees contribution", amount: "1090.29", effective_date: "2023-11-11" },
            { id: 35, employee_id: 25, deduction_type: null, amount: "162.40", effective_date: "2020-01-16" },
            { id: 36, employee_id: 22, deduction_type: "garnishment contribution", amount: "425.87", effective_date: "2020-10-20" },
            { id: 37, employee_id: 62, deduction_type: "dental contribution withholding", amount: "1954.54", effective_date: "2019-06-29" },
            { id: 38, employee_id: 163, deduction_type: "withholding fines charity", amount: "1979.16", effective_date: "2022-08-22" },
            { id: 39, employee_id: 62, deduction_type: "loan union", amount: "1001.53", effective_date: "2023-11-22" },
            { id: 40, employee_id: 140, deduction_type: null, amount: "451.32", effective_date: "2021-12-11" },
            { id: 41, employee_id: 109, deduction_type: "vision charity", amount: "796.60", effective_date: "2023-05-30" },
            { id: 42, employee_id: 154, deduction_type: "contribution loan", amount: "1356.41", effective_date: "2021-03-12" },
            { id: 43, employee_id: 164, deduction_type: "garnishment medical", amount: "35.93", effective_date: "2015-10-25" },
            { id: 44, employee_id: 10, deduction_type: "dental", amount: "1252.71", effective_date: "2018-12-12" },
            { id: 45, employee_id: 146, deduction_type: "fees charity voluntary", amount: "753.85", effective_date: "2020-06-26" },
            { id: 46, employee_id: 17, deduction_type: "retirement tax", amount: "1112.24", effective_date: "2017-11-02" },
            { id: 47, employee_id: 118, deduction_type: null, amount: "1475.37", effective_date: "2019-11-05" },
            { id: 48, employee_id: 149, deduction_type: "withholding fees mandatory", amount: "802.91", effective_date: "2017-09-20" },
            { id: 49, employee_id: 151, deduction_type: "vision union", amount: "931.98", effective_date: "2017-03-30" },
            { id: 50, employee_id: 40, deduction_type: "withholding dental voluntary", amount: "1477.34", effective_date: "2022-04-25" },
            { id: 51, employee_id: 117, deduction_type: "retirement charity tax", amount: "1689.63", effective_date: "2023-12-18" },
            { id: 52, employee_id: 131, deduction_type: "medical", amount: "868.58", effective_date: "2022-05-18" },
            { id: 53, employee_id: 78, deduction_type: "contribution charity garnishment", amount: "49.86", effective_date: "2015-01-15" },
            { id: 54, employee_id: 84, deduction_type: "insurance dental", amount: "462.85", effective_date: "2016-12-28" },
            { id: 55, employee_id: 90, deduction_type: "benefit", amount: "236.71", effective_date: "2022-03-10" },
            { id: 56, employee_id: 95, deduction_type: "benefit voluntary", amount: "1512.47", effective_date: "2021-03-05" },
            { id: 57, employee_id: 86, deduction_type: null, amount: "33.00", effective_date: "2023-08-29" },
            { id: 58, employee_id: 196, deduction_type: "fines retirement charity", amount: "137.55", effective_date: "2015-11-02" },
            { id: 59, employee_id: 179, deduction_type: "mandatory", amount: "55.16", effective_date: "2023-03-19" },
            { id: 60, employee_id: 139, deduction_type: "garnishment dental insurance", amount: "641.85", effective_date: "2015-03-08" },
            { id: 61, employee_id: 179, deduction_type: "mandatory withholding", amount: "1196.51", effective_date: "2021-02-05" },
            { id: 62, employee_id: 32, deduction_type: "loan", amount: "955.15", effective_date: "2020-11-30" },
            { id: 63, employee_id: 100, deduction_type: "withholding", amount: "408.53", effective_date: "2022-04-27" },
            { id: 64, employee_id: 166, deduction_type: "contribution benefit garnishment", amount: "1994.31", effective_date: "2020-12-09" },
            { id: 65, employee_id: 191, deduction_type: "benefit", amount: "10.61", effective_date: "2017-11-06" },
            { id: 66, employee_id: 32, deduction_type: "dental tax", amount: "1314.65", effective_date: "2017-02-10" },
            { id: 67, employee_id: 24, deduction_type: "garnishment union insurance", amount: "40.31", effective_date: "2021-10-29" },
            { id: 68, employee_id: 8, deduction_type: null, amount: "1044.08", effective_date: "2019-07-22" },
            { id: 69, employee_id: 173, deduction_type: "union", amount: "1855.16", effective_date: "2020-06-06" },
            { id: 70, employee_id: 157, deduction_type: "withholding voluntary", amount: "0.04", effective_date: "2023-07-30" },
            { id: 71, employee_id: 170, deduction_type: null, amount: "1382.83", effective_date: "2017-09-19" },
            { id: 72, employee_id: 64, deduction_type: "voluntary mandatory", amount: "49.69", effective_date: "2018-08-31" },
            { id: 73, employee_id: 104, deduction_type: "insurance voluntary", amount: "298.05", effective_date: "2023-08-31" },
            { id: 74, employee_id: 122, deduction_type: "medical", amount: "717.53", effective_date: "2015-01-22" },
            { id: 75, employee_id: 158, deduction_type: "vision benefit retirement", amount: "879.08", effective_date: "2022-12-15" },
            { id: 76, employee_id: 77, deduction_type: "withholding", amount: "461.76", effective_date: "2020-01-17" },
            { id: 77, employee_id: 13, deduction_type: "tax charity", amount: "469.37", effective_date: "2023-01-06" },
            { id: 78, employee_id: 93, deduction_type: "insurance dental", amount: "662.78", effective_date: "2022-12-11" },
            { id: 79, employee_id: 1, deduction_type: "charity tax dental", amount: "1544.91", effective_date: "2015-08-19" },
            { id: 80, employee_id: 9, deduction_type: "fines dental", amount: "1656.88", effective_date: "2022-12-19" },
            { id: 81, employee_id: 191, deduction_type: "insurance contribution benefit", amount: "1530.06", effective_date: "2015-09-20" },
            { id: 82, employee_id: 101, deduction_type: "withholding dental", amount: "159.13", effective_date: "2022-10-27" },
            { id: 83, employee_id: 10, deduction_type: "medical union charity", amount: "1190.90", effective_date: "2020-06-04" },
            { id: 84, employee_id: 146, deduction_type: "insurance dental fees", amount: "1003.95", effective_date: "2019-08-27" },
            { id: 85, employee_id: 75, deduction_type: "voluntary tax fees", amount: "492.33", effective_date: "2022-12-04" },
            { id: 86, employee_id: 55, deduction_type: "insurance", amount: "1065.91", effective_date: "2021-08-13" },
            { id: 87, employee_id: 87, deduction_type: "vision", amount: "458.95", effective_date: "2017-02-24" },
            { id: 88, employee_id: 136, deduction_type: "fees", amount: "4.25", effective_date: "2020-10-07" },
            { id: 89, employee_id: 63, deduction_type: "fees charity", amount: "1279.63", effective_date: "2022-10-30" },
            { id: 90, employee_id: 159, deduction_type: "charity withholding vision", amount: "11.31", effective_date: "2021-04-09" },
            { id: 91, employee_id: 102, deduction_type: "voluntary union fees", amount: "378.13", effective_date: "2020-11-08" },
            { id: 92, employee_id: 50, deduction_type: "garnishment vision", amount: "1.99", effective_date: "2015-02-04" },
            { id: 93, employee_id: 6, deduction_type: "contribution dental", amount: "1186.52", effective_date: "2017-02-22" },
            { id: 94, employee_id: 148, deduction_type: "retirement insurance", amount: "1095.56", effective_date: "2022-03-08" },
            { id: 95, employee_id: 174, deduction_type: "insurance fees", amount: "1146.10", effective_date: "2017-09-21" },
            { id: 96, employee_id: 176, deduction_type: "tax insurance mandatory", amount: "819.80", effective_date: "2018-12-15" },
            { id: 97, employee_id: 53, deduction_type: "loan", amount: "316.22", effective_date: "2021-08-24" },
            { id: 98, employee_id: 130, deduction_type: "tax loan fees", amount: "1169.52", effective_date: "2019-12-05" },
            { id: 99, employee_id: 82, deduction_type: null, amount: "476.15", effective_date: "2021-08-28" },
            { id: 100, employee_id: 71, deduction_type: "mandatory voluntary", amount: "196.22", effective_date: "2020-04-17" },
        ],
    });
}

main()
    .then(() => prisma.$disconnect())
    .catch(async error => {
        console.error(error);
        await prisma.$disconnect();
        process.exit(1);
    });
