// Hotel Reservation Insights (hotel-booking-system) 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.guests), 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.guests.createMany({
        data: [
            { id: 1, full_name: "Chen Bennett", email: null, phone: "+1-512-555-0195", loyalty_status: "none" },
            { id: 2, full_name: "Mateo Oliveira", email: "mateo.oliveira@example.net", phone: "+1-778-555-0164", loyalty_status: "silver" },
            { id: 3, full_name: "Tariq Carter", email: null, phone: "+1-778-555-0184", loyalty_status: "none" },
            { id: 4, full_name: "Maya Pereira", email: null, phone: "+1-213-555-0190", loyalty_status: "none" },
            { id: 5, full_name: "Maria Wang", email: null, phone: "+1-617-555-0169", loyalty_status: "none" },
            { id: 6, full_name: "Julia Mendes", email: null, phone: "+1-972-555-0183", loyalty_status: "none" },
            { id: 7, full_name: "Anna Rossi", email: null, phone: "+1-702-555-0195", loyalty_status: "none" },
            { id: 8, full_name: "Zoe Sousa", email: "zoe.sousa@example.org", phone: "+1-312-555-0110", loyalty_status: "gold" },
            { id: 9, full_name: "Tariq Patel", email: "tariq.patel@example.com", phone: "+1-404-555-0140", loyalty_status: "silver" },
            { id: 10, full_name: "Kai Novak", email: null, phone: "+1-801-555-0116", loyalty_status: "none" },
            { id: 11, full_name: "Ben Sousa", email: null, phone: "+1-202-555-0170", loyalty_status: "none" },
            { id: 12, full_name: "Sara Hassan", email: "sara.hassan@example.net", phone: "+1-202-555-0179", loyalty_status: "gold" },
            { id: 13, full_name: "Tariq Nguyen", email: "tariq.nguyen@example.com", phone: "+1-213-555-0111", loyalty_status: "platinum" },
            { id: 14, full_name: "Mohamed Ibrahim", email: null, phone: "+1-202-555-0152", loyalty_status: "none" },
            { id: 15, full_name: "Emma Almeida", email: "emma.almeida@example.org", phone: "+1-905-555-0101", loyalty_status: "platinum" },
            { id: 16, full_name: "Liam Rossi", email: "liam.rossi@example.net", phone: "+1-778-555-0197", loyalty_status: "silver" },
            { id: 17, full_name: "Leo Brown", email: null, phone: "+1-905-555-0120", loyalty_status: "none" },
            { id: 18, full_name: "Chloe Lopez", email: null, phone: "+1-604-555-0189", loyalty_status: "none" },
            { id: 19, full_name: "Daniel Wright", email: null, phone: null, loyalty_status: "none" },
            { id: 20, full_name: "Hana Reyes", email: null, phone: "+1-612-555-0168", loyalty_status: "none" },
            { id: 21, full_name: "Carlos Young", email: null, phone: "+1-303-555-0126", loyalty_status: "none" },
            { id: 22, full_name: "Anna Andersen", email: null, phone: "+1-212-555-0106", loyalty_status: "none" },
            { id: 23, full_name: "Tariq Hassan", email: null, phone: "+1-702-555-0186", loyalty_status: "none" },
            { id: 24, full_name: "Lucas Smith", email: "lucas.smith@example.org", phone: "+1-917-555-0101", loyalty_status: "silver" },
            { id: 25, full_name: "Victor Oliveira", email: null, phone: "+1-212-555-0120", loyalty_status: "none" },
            { id: 26, full_name: "Rafael Baker", email: "rafael.baker@example.net", phone: "+1-702-555-0167", loyalty_status: "platinum" },
            { id: 27, full_name: "Daniel Davis", email: null, phone: "+1-214-555-0178", loyalty_status: "none" },
            { id: 28, full_name: "Oscar Bennett", email: null, phone: "+1-469-555-0101", loyalty_status: "none" },
            { id: 29, full_name: "Selin Flores", email: "selin.flores@example.com", phone: "+1-202-555-0131", loyalty_status: "gold" },
            { id: 30, full_name: "Jade Kim", email: null, phone: "+1-312-555-0196", loyalty_status: "none" },
            { id: 31, full_name: "Chen Park", email: null, phone: "+1-305-555-0162", loyalty_status: "none" },
            { id: 32, full_name: "Ivan Gupta", email: "ivan.gupta@example.com", phone: null, loyalty_status: "silver" },
            { id: 33, full_name: "Nour Oliveira", email: null, phone: "+1-312-555-0168", loyalty_status: "none" },
            { id: 34, full_name: "Grace Gomez", email: null, phone: "+1-202-555-0150", loyalty_status: "none" },
            { id: 35, full_name: "Felix Ali", email: "felix.ali@example.net", phone: "+1-801-555-0134", loyalty_status: "gold" },
            { id: 36, full_name: "Mia Hassan", email: null, phone: "+1-303-555-0191", loyalty_status: "none" },
            { id: 37, full_name: "Mateo Becker", email: null, phone: "+1-778-555-0166", loyalty_status: "none" },
            { id: 38, full_name: "Uma Reyes", email: "uma.reyes@example.com", phone: "+1-604-555-0166", loyalty_status: "silver" },
            { id: 39, full_name: "Yara Demir", email: null, phone: null, loyalty_status: "none" },
            { id: 40, full_name: "Amir Klein", email: "amir.klein@example.org", phone: null, loyalty_status: "platinum" },
            { id: 41, full_name: "Ivan Torres", email: null, phone: null, loyalty_status: "none" },
            { id: 42, full_name: "Uma Garcia", email: "uma.garcia@example.net", phone: "+1-857-555-0188", loyalty_status: "silver" },
            { id: 43, full_name: "Julia Patel", email: "julia.patel@example.net", phone: "+1-512-555-0174", loyalty_status: "gold" },
            { id: 44, full_name: "Isaac Bennett", email: null, phone: "+1-416-555-0199", loyalty_status: "none" },
            { id: 45, full_name: "Ivan Miller", email: "ivan.miller@example.org", phone: "+1-778-555-0117", loyalty_status: "gold" },
            { id: 46, full_name: "Alice Larsen", email: "alice.larsen@example.com", phone: "+1-778-555-0175", loyalty_status: "gold" },
            { id: 47, full_name: "James Evans", email: "james.evans@example.org", phone: null, loyalty_status: "gold" },
            { id: 48, full_name: "Victor Shah", email: null, phone: "+1-617-555-0165", loyalty_status: "none" },
            { id: 49, full_name: "Jade Bauer", email: null, phone: "+1-303-555-0100", loyalty_status: "none" },
            { id: 50, full_name: "Elena Adams", email: null, phone: "+1-469-555-0164", loyalty_status: "none" },
            { id: 51, full_name: "Jade Pereira", email: "jade.pereira@example.com", phone: "+1-404-555-0146", loyalty_status: "silver" },
            { id: 52, full_name: "Amir Singh", email: null, phone: null, loyalty_status: "none" },
            { id: 53, full_name: "Hannah Kowalski", email: "hannah.kowalski@example.com", phone: "+1-305-555-0122", loyalty_status: "silver" },
            { id: 54, full_name: "Wei Cruz", email: null, phone: "+1-617-555-0134", loyalty_status: "none" },
            { id: 55, full_name: "Yara Kaya", email: null, phone: "+1-972-555-0111", loyalty_status: "none" },
            { id: 56, full_name: "Kai Jensen", email: "kai.jensen@example.net", phone: "+1-801-555-0195", loyalty_status: "silver" },
            { id: 57, full_name: "Hugo Fischer", email: "hugo.fischer@example.com", phone: "+1-612-555-0178", loyalty_status: "silver" },
            { id: 58, full_name: "Omar Kowalski", email: null, phone: "+1-469-555-0140", loyalty_status: "none" },
            { id: 59, full_name: "Maria Silva", email: "maria.silva@example.com", phone: "+1-305-555-0191", loyalty_status: "silver" },
            { id: 60, full_name: "Lina Brown", email: "lina.brown@example.com", phone: "+1-312-555-0146", loyalty_status: "silver" },
            { id: 61, full_name: "Hannah Silva", email: null, phone: "+1-416-555-0169", loyalty_status: "none" },
            { id: 62, full_name: "Hugo Cruz", email: "hugo.cruz@example.org", phone: "+1-612-555-0182", loyalty_status: "gold" },
            { id: 63, full_name: "Daniel Larsen", email: null, phone: "+1-905-555-0171", loyalty_status: "none" },
            { id: 64, full_name: "Hannah Fischer", email: "hannah.fischer@example.com", phone: "+1-404-555-0136", loyalty_status: "silver" },
            { id: 65, full_name: "Rafael Sousa", email: null, phone: "+1-801-555-0177", loyalty_status: "none" },
            { id: 66, full_name: "Lena Gupta", email: null, phone: "+1-604-555-0156", loyalty_status: "none" },
            { id: 67, full_name: "Carla Kaya", email: null, phone: "+1-801-555-0143", loyalty_status: "none" },
            { id: 68, full_name: "Marco Ahmed", email: null, phone: "+1-905-555-0177", loyalty_status: "none" },
            { id: 69, full_name: "Daniel Gupta", email: "daniel.gupta@example.com", phone: "+1-404-555-0178", loyalty_status: "platinum" },
            { id: 70, full_name: "Mila Evans", email: "mila.evans@example.net", phone: "+1-778-555-0160", loyalty_status: "silver" },
            { id: 71, full_name: "Omar Carter", email: null, phone: "+1-303-555-0177", loyalty_status: "none" },
            { id: 72, full_name: "Victor Larsen", email: null, phone: "+1-469-555-0123", loyalty_status: "none" },
            { id: 73, full_name: "Mateo Adams", email: "mateo.adams@example.net", phone: "+1-713-555-0161", loyalty_status: "platinum" },
            { id: 74, full_name: "Uma Ahmed", email: "uma.ahmed@example.com", phone: "+1-713-555-0126", loyalty_status: "silver" },
            { id: 75, full_name: "Omar Garcia", email: null, phone: "+1-604-555-0104", loyalty_status: "none" },
            { id: 76, full_name: "Nour Zhang", email: null, phone: "+1-416-555-0187", loyalty_status: "none" },
            { id: 77, full_name: "Arjun Jansen", email: null, phone: "+1-469-555-0154", loyalty_status: "none" },
            { id: 78, full_name: "Anna Chen", email: "anna.chen@example.net", phone: "+1-972-555-0104", loyalty_status: "silver" },
            { id: 79, full_name: "Laura Chen", email: null, phone: "+1-702-555-0105", loyalty_status: "none" },
            { id: 80, full_name: "Laura Baker", email: "laura.baker@example.com", phone: "+1-469-555-0162", loyalty_status: "platinum" },
            { id: 81, full_name: "Noah Ali", email: "noah.ali@example.org", phone: "+1-469-555-0121", loyalty_status: "gold" },
            { id: 82, full_name: "Julia Mendes", email: null, phone: "+1-469-555-0178", loyalty_status: "none" },
            { id: 83, full_name: "Leo Ahmed", email: "leo.ahmed@example.net", phone: "+1-202-555-0111", loyalty_status: "silver" },
            { id: 84, full_name: "Paula Khan", email: null, phone: "+1-604-555-0116", loyalty_status: "none" },
            { id: 85, full_name: "Ben Miller", email: "ben.miller@example.com", phone: "+1-617-555-0101", loyalty_status: "silver" },
            { id: 86, full_name: "Noah Kim", email: "noah.kim@example.net", phone: "+1-212-555-0147", loyalty_status: "silver" },
            { id: 87, full_name: "Liam Silva", email: null, phone: "+1-213-555-0180", loyalty_status: "none" },
            { id: 88, full_name: "Daniel Ali", email: "daniel.ali@example.org", phone: null, loyalty_status: "gold" },
            { id: 89, full_name: "Sara Kumar", email: "sara.kumar@example.net", phone: "+1-312-555-0103", loyalty_status: "silver" },
            { id: 90, full_name: "Hugo Becker", email: "hugo.becker@example.org", phone: "+1-469-555-0114", loyalty_status: "platinum" },
            { id: 91, full_name: "Omar Baker", email: "omar.baker@example.com", phone: "+1-972-555-0175", loyalty_status: "platinum" },
            { id: 92, full_name: "Carlos Wagner", email: null, phone: "+1-214-555-0157", loyalty_status: "none" },
            { id: 93, full_name: "Nadia Kumar", email: "nadia.kumar@example.com", phone: "+1-617-555-0148", loyalty_status: "silver" },
            { id: 94, full_name: "Priya Lee", email: "priya.lee@example.net", phone: "+1-503-555-0118", loyalty_status: "silver" },
            { id: 95, full_name: "Omar Clark", email: null, phone: "+1-503-555-0165", loyalty_status: "none" },
            { id: 96, full_name: "Sara Moreau", email: null, phone: "+1-214-555-0146", loyalty_status: "none" },
            { id: 97, full_name: "Sam Bennett", email: null, phone: "+1-404-555-0130", loyalty_status: "none" },
            { id: 98, full_name: "Ruby Demir", email: null, phone: "+1-917-555-0179", loyalty_status: "none" },
            { id: 99, full_name: "Elena Singh", email: "elena.singh@example.net", phone: "+1-512-555-0145", loyalty_status: "gold" },
            { id: 100, full_name: "Arjun Meyer", email: null, phone: "+1-917-555-0184", loyalty_status: "none" },
            { id: 101, full_name: "Ruby Dubois", email: null, phone: null, loyalty_status: "none" },
            { id: 102, full_name: "Amir Fischer", email: "amir.fischer@example.net", phone: "+1-469-555-0148", loyalty_status: "gold" },
            { id: 103, full_name: "Hannah Costa", email: null, phone: "+1-604-555-0181", loyalty_status: "none" },
            { id: 104, full_name: "Leo Wagner", email: "leo.wagner@example.com", phone: "+1-305-555-0159", loyalty_status: "platinum" },
            { id: 105, full_name: "Ines Nguyen", email: null, phone: null, loyalty_status: "none" },
            { id: 106, full_name: "Arjun Hoffmann", email: null, phone: "+1-713-555-0143", loyalty_status: "none" },
            { id: 107, full_name: "Nadia Klein", email: null, phone: "+1-702-555-0103", loyalty_status: "none" },
            { id: 108, full_name: "Ravi Ali", email: "ravi.ali@example.net", phone: "+1-503-555-0152", loyalty_status: "silver" },
            { id: 109, full_name: "Ben Garcia", email: null, phone: null, loyalty_status: "none" },
            { id: 110, full_name: "Sofia Zhang", email: null, phone: "+1-214-555-0156", loyalty_status: "none" },
            { id: 111, full_name: "Mohamed Pereira", email: "mohamed.pereira@example.com", phone: "+1-312-555-0134", loyalty_status: "platinum" },
            { id: 112, full_name: "Nour Novak", email: "nour.novak@example.org", phone: "+1-305-555-0130", loyalty_status: "silver" },
            { id: 113, full_name: "Victor Novak", email: null, phone: null, loyalty_status: "none" },
            { id: 114, full_name: "Jonas Novak", email: "jonas.novak@example.com", phone: "+1-612-555-0122", loyalty_status: "gold" },
            { id: 115, full_name: "James Ibrahim", email: null, phone: "+1-416-555-0183", loyalty_status: "none" },
            { id: 116, full_name: "Nour Singh", email: "nour.singh@example.net", phone: null, loyalty_status: "silver" },
            { id: 117, full_name: "Kai Davis", email: null, phone: "+1-415-555-0195", loyalty_status: "none" },
            { id: 118, full_name: "Hana Pereira", email: "hana.pereira@example.com", phone: null, loyalty_status: "silver" },
            { id: 119, full_name: "Sven Hughes", email: null, phone: null, loyalty_status: "none" },
            { id: 120, full_name: "Zoe Vargas", email: "zoe.vargas@example.org", phone: "+1-972-555-0161", loyalty_status: "platinum" },
            { id: 121, full_name: "Mei Meyer", email: "mei.meyer@example.net", phone: "+1-972-555-0186", loyalty_status: "silver" },
            { id: 122, full_name: "Ruby Gomez", email: "ruby.gomez@example.com", phone: "+1-416-555-0113", loyalty_status: "silver" },
            { id: 123, full_name: "Maria Yilmaz", email: null, phone: "+1-702-555-0181", loyalty_status: "none" },
            { id: 124, full_name: "Omar Patel", email: "omar.patel@example.net", phone: "+1-305-555-0163", loyalty_status: "platinum" },
            { id: 125, full_name: "Ruby Wang", email: "ruby.wang@example.net", phone: "+1-404-555-0104", loyalty_status: "silver" },
            { id: 126, full_name: "Andre Baker", email: null, phone: "+1-905-555-0147", loyalty_status: "none" },
            { id: 127, full_name: "Grace Silva", email: "grace.silva@example.com", phone: "+1-801-555-0157", loyalty_status: "platinum" },
            { id: 128, full_name: "Oscar Shah", email: "oscar.shah@example.com", phone: "+1-713-555-0167", loyalty_status: "silver" },
            { id: 129, full_name: "Omar Sato", email: null, phone: "+1-617-555-0191", loyalty_status: "none" },
            { id: 130, full_name: "Jonas Reyes", email: null, phone: "+1-972-555-0163", loyalty_status: "none" },
            { id: 131, full_name: "Jade Gomez", email: "jade.gomez@example.net", phone: null, loyalty_status: "silver" },
            { id: 132, full_name: "Selin Rossi", email: null, phone: "+1-212-555-0181", loyalty_status: "none" },
            { id: 133, full_name: "Ines Sato", email: "ines.sato@example.org", phone: "+1-312-555-0167", loyalty_status: "platinum" },
            { id: 134, full_name: "Carlos Reyes", email: "carlos.reyes@example.com", phone: "+1-305-555-0158", loyalty_status: "platinum" },
            { id: 135, full_name: "Sofia Torres", email: null, phone: null, loyalty_status: "none" },
            { id: 136, full_name: "Laura Wang", email: null, phone: "+1-617-555-0182", loyalty_status: "none" },
            { id: 137, full_name: "Grace Andersen", email: "grace.andersen@example.org", phone: "+1-972-555-0192", loyalty_status: "silver" },
            { id: 138, full_name: "Maja Cruz", email: null, phone: "+1-404-555-0180", loyalty_status: "none" },
            { id: 139, full_name: "Selin Diaz", email: "selin.diaz@example.com", phone: "+1-416-555-0154", loyalty_status: "silver" },
            { id: 140, full_name: "Lina Schmidt", email: null, phone: "+1-213-555-0122", loyalty_status: "none" },
            { id: 141, full_name: "Jack Mendes", email: null, phone: "+1-503-555-0171", loyalty_status: "none" },
            { id: 142, full_name: "Yusuf Ali", email: null, phone: "+1-604-555-0149", loyalty_status: "none" },
            { id: 143, full_name: "Carla Flores", email: null, phone: "+1-778-555-0187", loyalty_status: "none" },
            { id: 144, full_name: "Pedro Jansen", email: null, phone: "+1-503-555-0100", loyalty_status: "none" },
            { id: 145, full_name: "Paula Hassan", email: "paula.hassan@example.net", phone: null, loyalty_status: "gold" },
            { id: 146, full_name: "Kai Bauer", email: null, phone: "+1-617-555-0188", loyalty_status: "none" },
            { id: 147, full_name: "Rafael Tanaka", email: "rafael.tanaka@example.net", phone: "+1-503-555-0136", loyalty_status: "silver" },
            { id: 148, full_name: "Deniz Meyer", email: "deniz.meyer@example.org", phone: "+1-905-555-0136", loyalty_status: "silver" },
            { id: 149, full_name: "Olivia Zhang", email: "olivia.zhang@example.com", phone: "+1-604-555-0187", loyalty_status: "platinum" },
            { id: 150, full_name: "Fatima Taylor", email: "fatima.taylor@example.com", phone: "+1-778-555-0113", loyalty_status: "platinum" },
            { id: 151, full_name: "Julia Garcia", email: "julia.garcia@example.net", phone: "+1-416-555-0101", loyalty_status: "platinum" },
            { id: 152, full_name: "Alice Zhang", email: null, phone: "+1-604-555-0154", loyalty_status: "none" },
            { id: 153, full_name: "James Kowalski", email: null, phone: "+1-503-555-0169", loyalty_status: "none" },
            { id: 154, full_name: "Zoe Larsen", email: "zoe.larsen@example.org", phone: null, loyalty_status: "silver" },
            { id: 155, full_name: "Laura Cruz", email: "laura.cruz@example.net", phone: "+1-416-555-0141", loyalty_status: "silver" },
            { id: 156, full_name: "Maja Larsen", email: "maja.larsen@example.com", phone: "+1-801-555-0168", loyalty_status: "platinum" },
            { id: 157, full_name: "Hana Park", email: null, phone: "+1-857-555-0138", loyalty_status: "none" },
            { id: 158, full_name: "Ana Kowalski", email: null, phone: "+1-469-555-0117", loyalty_status: "none" },
            { id: 159, full_name: "Theo Taylor", email: null, phone: "+1-972-555-0199", loyalty_status: "none" },
            { id: 160, full_name: "Lina Hoffmann", email: "lina.hoffmann@example.org", phone: "+1-905-555-0180", loyalty_status: "silver" },
            { id: 161, full_name: "Lina Chen", email: null, phone: "+1-905-555-0146", loyalty_status: "none" },
            { id: 162, full_name: "Jack Hansen", email: null, phone: "+1-212-555-0139", loyalty_status: "none" },
            { id: 163, full_name: "Tariq Patel", email: null, phone: "+1-612-555-0108", loyalty_status: "none" },
            { id: 164, full_name: "Fatima Kaya", email: null, phone: null, loyalty_status: "none" },
            { id: 165, full_name: "Elena Bauer", email: "elena.bauer@example.org", phone: null, loyalty_status: "silver" },
            { id: 166, full_name: "Selin Lopez", email: null, phone: "+1-713-555-0122", loyalty_status: "none" },
            { id: 167, full_name: "Fatima Kowalski", email: "fatima.kowalski@example.net", phone: "+1-416-555-0163", loyalty_status: "silver" },
            { id: 168, full_name: "Carla Wagner", email: null, phone: "+1-905-555-0129", loyalty_status: "none" },
            { id: 169, full_name: "Elena Schmidt", email: "elena.schmidt@example.com", phone: "+1-303-555-0190", loyalty_status: "gold" },
            { id: 170, full_name: "Sofia Johnson", email: null, phone: "+1-503-555-0165", loyalty_status: "none" },
            { id: 171, full_name: "Jade Bauer", email: "jade.bauer@example.com", phone: "+1-214-555-0195", loyalty_status: "gold" },
            { id: 172, full_name: "Mohamed Flores", email: null, phone: "+1-503-555-0129", loyalty_status: "none" },
            { id: 173, full_name: "Rosa Murphy", email: "rosa.murphy@example.com", phone: "+1-972-555-0192", loyalty_status: "gold" },
            { id: 174, full_name: "Lena Rossi", email: null, phone: "+1-972-555-0104", loyalty_status: "none" },
            { id: 175, full_name: "Chen Chen", email: null, phone: "+1-212-555-0133", loyalty_status: "none" },
            { id: 176, full_name: "Maja Castro", email: null, phone: "+1-512-555-0142", loyalty_status: "none" },
            { id: 177, full_name: "Felix Park", email: null, phone: "+1-469-555-0139", loyalty_status: "none" },
            { id: 178, full_name: "Sofia Ahmed", email: null, phone: "+1-416-555-0176", loyalty_status: "none" },
            { id: 179, full_name: "Carlos Diaz", email: null, phone: "+1-801-555-0112", loyalty_status: "none" },
            { id: 180, full_name: "Yusuf Novak", email: null, phone: null, loyalty_status: "none" },
            { id: 181, full_name: "David Patel", email: "david.patel@example.com", phone: "+1-778-555-0126", loyalty_status: "gold" },
            { id: 182, full_name: "Priya Klein", email: null, phone: "+1-214-555-0174", loyalty_status: "none" },
            { id: 183, full_name: "Rafael Kowalski", email: "rafael.kowalski@example.net", phone: "+1-801-555-0151", loyalty_status: "silver" },
            { id: 184, full_name: "Wei Davis", email: null, phone: "+1-702-555-0199", loyalty_status: "none" },
            { id: 185, full_name: "Mateo Adams", email: "mateo.adams@example.org", phone: "+1-416-555-0137", loyalty_status: "gold" },
            { id: 186, full_name: "Marco Schneider", email: null, phone: "+1-212-555-0126", loyalty_status: "none" },
            { id: 187, full_name: "Sara Wagner", email: null, phone: "+1-713-555-0196", loyalty_status: "none" },
            { id: 188, full_name: "Felix Bauer", email: null, phone: "+1-312-555-0186", loyalty_status: "none" },
            { id: 189, full_name: "Zoe Walker", email: null, phone: "+1-617-555-0180", loyalty_status: "none" },
            { id: 190, full_name: "Lucas Murphy", email: null, phone: "+1-857-555-0158", loyalty_status: "none" },
            { id: 191, full_name: "Pedro Diaz", email: "pedro.diaz@example.net", phone: "+1-503-555-0122", loyalty_status: "platinum" },
            { id: 192, full_name: "Yusuf Meyer", email: null, phone: "+1-214-555-0185", loyalty_status: "none" },
            { id: 193, full_name: "Tariq Tanaka", email: null, phone: "+1-415-555-0110", loyalty_status: "none" },
            { id: 194, full_name: "Ravi Brown", email: null, phone: "+1-713-555-0193", loyalty_status: "none" },
            { id: 195, full_name: "Wei Oliveira", email: "wei.oliveira@example.com", phone: "+1-778-555-0141", loyalty_status: "silver" },
            { id: 196, full_name: "Lina Smith", email: null, phone: "+1-202-555-0130", loyalty_status: "none" },
            { id: 197, full_name: "Elif Hansen", email: null, phone: "+1-202-555-0198", loyalty_status: "none" },
            { id: 198, full_name: "Sam Bauer", email: null, phone: "+1-303-555-0177", loyalty_status: "none" },
            { id: 199, full_name: "Ruby Ahmed", email: null, phone: "+1-213-555-0118", loyalty_status: "none" },
            { id: 200, full_name: "Ana Hassan", email: null, phone: "+1-972-555-0146", loyalty_status: "none" },
        ],
    });
    await prisma.rooms.createMany({
        data: [
            { id: 1, room_type: "Attic", base_price: "499.39", amenities: {"amenity":"notice support various quiet change example happen second direct"} },
            { id: 2, room_type: "Chalet Villa Studio", base_price: "231.64", amenities: {"amenity":"natural section several detail high special happen"} },
            { id: 3, room_type: "Budget Apartment", base_price: "107.02", amenities: {"amenity":"steady record reason notice long change another system several detail support without follow still order"} },
            { id: 4, room_type: "Single Deluxe", base_price: "110.40", amenities: {"amenity":"several minor number quiet"} },
            { id: 5, room_type: "Cottage Bungalow Chalet", base_price: "144.26", amenities: {"amenity":"whole early great matter high general ready before regular because careful"} },
            { id: 6, room_type: "Bungalow Standard Attic", base_price: "290.73", amenities: {"amenity":"ready careful given simple regular common section high quick every clear public matter partial"} },
            { id: 7, room_type: "Triple Bungalow", base_price: "478.06", amenities: {"amenity":"whole notice because final along another issue minor major direct review public yearly example detail"} },
            { id: 8, room_type: "Apartment Deluxe Studio", base_price: "468.31", amenities: {"amenity":"nearly review within regular whole daily level follow small change without"} },
            { id: 9, room_type: "Apartment Bungalow", base_price: "59.54", amenities: {"amenity":"given happen second point special section early about quick between matter careful"} },
            { id: 10, room_type: "Cottage", base_price: "139.50", amenities: {"amenity":"moving before clear special often between natural happen after toward major whole without"} },
            { id: 11, room_type: "Executive", base_price: "293.62", amenities: {"amenity":"update notice natural matter quiet"} },
            { id: 12, room_type: "Attic", base_price: "214.75", amenities: {"amenity":"often various clear general moment whole issue number every month steady yearly period"} },
            { id: 13, room_type: "Triple Loft", base_price: "51.24", amenities: {"amenity":"today clear order after often easy about several other careful moment nearly yearly happen ready"} },
            { id: 14, room_type: "Cabin Twin", base_price: "127.11", amenities: {"amenity":"later example happen natural quiet moment group outside change record given within weekly ready"} },
            { id: 15, room_type: "Penthouse Deluxe Luxury", base_price: "161.44", amenities: null },
            { id: 16, room_type: "Chalet Apartment Suite", base_price: "360.99", amenities: {"amenity":"moving small issue matter"} },
            { id: 17, room_type: "Chalet Triple Executive", base_price: "360.56", amenities: {"amenity":"public single after happen short large"} },
            { id: 18, room_type: "Apartment Family Single", base_price: "306.98", amenities: {"amenity":"enough happen long other about outside careful"} },
            { id: 19, room_type: "Double", base_price: "174.97", amenities: {"amenity":"small outside normal"} },
            { id: 20, room_type: "Twin Standard Suite", base_price: "227.14", amenities: {"amenity":"recent natural because steady clear still common follow normal open"} },
            { id: 21, room_type: "Budget", base_price: "122.83", amenities: {"amenity":"quiet record useful again given system another public long weekly great"} },
            { id: 22, room_type: "Family Standard", base_price: "74.99", amenities: null },
            { id: 23, room_type: "Studio", base_price: "438.10", amenities: {"amenity":"weekly general public"} },
            { id: 24, room_type: "Triple Budget", base_price: "70.44", amenities: {"amenity":"long toward clear inside summary before enough bright moment still order number quick"} },
            { id: 25, room_type: "Suite", base_price: "237.22", amenities: {"amenity":"strong quick weekly ready happen normal close always"} },
            { id: 26, room_type: "Triple", base_price: "262.76", amenities: {"amenity":"system summary bright change simple because first long"} },
            { id: 27, room_type: "Suite Budget", base_price: "84.18", amenities: {"amenity":"minor given final change partial another toward close system later"} },
            { id: 28, room_type: "Suite Double", base_price: "154.09", amenities: null },
            { id: 29, room_type: "Budget", base_price: "390.50", amenities: {"amenity":"change period direct special"} },
            { id: 30, room_type: "Deluxe Penthouse Double", base_price: "369.34", amenities: {"amenity":"follow high summary happen within point little ground support enough another without general weekly normal"} },
            { id: 31, room_type: "Twin Attic Luxury", base_price: "224.84", amenities: {"amenity":"direct after easy first given natural long great partial clear group level single within minor"} },
            { id: 32, room_type: "Penthouse Deluxe Single", base_price: "315.65", amenities: null },
            { id: 33, room_type: "Bungalow Studio Twin", base_price: "50.61", amenities: {"amenity":"large within issue change final single"} },
            { id: 34, room_type: "Bungalow Penthouse Chalet", base_price: "77.44", amenities: {"amenity":"follow group strong light partial"} },
            { id: 35, room_type: "Bungalow Budget Penthouse", base_price: "177.93", amenities: {"amenity":"little example order whole reason moving easy short first nearly great"} },
            { id: 36, room_type: "Budget Suite Family", base_price: "324.89", amenities: {"amenity":"public another enough number direct high"} },
            { id: 37, room_type: "Deluxe Bungalow", base_price: "212.12", amenities: {"amenity":"summary special natural"} },
            { id: 38, room_type: "Loft Luxury Deluxe", base_price: "236.57", amenities: {"amenity":"before simple steady second general recent between happen close normal support record light because"} },
            { id: 39, room_type: "Double Penthouse Loft", base_price: "59.31", amenities: {"amenity":"small example careful every month toward single long moment nearly result simple without"} },
            { id: 40, room_type: "Double Attic", base_price: "241.46", amenities: {"amenity":"high minor summary easy simple large long update final clear ground"} },
            { id: 41, room_type: "Loft Suite", base_price: "51.03", amenities: {"amenity":"weekly careful often detail partial"} },
            { id: 42, room_type: "Studio", base_price: "335.30", amenities: {"amenity":"natural without high"} },
            { id: 43, room_type: "Attic", base_price: "204.69", amenities: {"amenity":"various clear early regular morning total normal still month support special useful recent"} },
            { id: 44, room_type: "Double Budget Apartment", base_price: "121.45", amenities: {"amenity":"whole final large public another close again matter every between"} },
            { id: 45, room_type: "Loft Single Double", base_price: "219.84", amenities: {"amenity":"notice group month long"} },
            { id: 46, room_type: "Deluxe", base_price: "128.71", amenities: {"amenity":"major between local"} },
            { id: 47, room_type: "Luxury Twin", base_price: "365.98", amenities: {"amenity":"recent major level inside"} },
            { id: 48, room_type: "Single Cottage", base_price: "423.78", amenities: {"amenity":"around record inside careful public small morning whole example order review"} },
            { id: 49, room_type: "Studio Deluxe Bungalow", base_price: "65.06", amenities: null },
            { id: 50, room_type: "Double Cabin", base_price: "66.37", amenities: {"amenity":"often moment quiet small plain follow along normal notice morning happen open"} },
        ],
    });
    await prisma.bookings.createMany({
        data: [
            { id: 1, guest_id: 172, room_id: 3, check_in_date: "2023-09-14", check_out_date: "2023-09-17", booking_status: "cancelled" },
            { id: 2, guest_id: 143, room_id: 2, check_in_date: "2023-02-21", check_out_date: null, booking_status: "confirmed" },
            { id: 3, guest_id: 182, room_id: 46, check_in_date: "2023-08-14", check_out_date: "2023-09-02", booking_status: "completed" },
            { id: 4, guest_id: 80, room_id: 18, check_in_date: "2023-02-27", check_out_date: "2023-03-27", booking_status: "cancelled" },
            { id: 5, guest_id: 72, room_id: 9, check_in_date: "2023-05-15", check_out_date: "2023-06-07", booking_status: "completed" },
            { id: 6, guest_id: 146, room_id: 45, check_in_date: "2023-02-18", check_out_date: null, booking_status: "confirmed" },
            { id: 7, guest_id: 143, room_id: 47, check_in_date: "2023-05-29", check_out_date: null, booking_status: "confirmed" },
            { id: 8, guest_id: 107, room_id: 46, check_in_date: "2023-10-02", check_out_date: "2023-10-16", booking_status: "completed" },
            { id: 9, guest_id: 135, room_id: 36, check_in_date: "2023-07-07", check_out_date: null, booking_status: "confirmed" },
            { id: 10, guest_id: 3, room_id: 45, check_in_date: "2023-01-03", check_out_date: "2023-01-13", booking_status: "completed" },
            { id: 11, guest_id: 48, room_id: 27, check_in_date: "2023-04-23", check_out_date: "2023-04-28", booking_status: "completed" },
            { id: 12, guest_id: 142, room_id: 20, check_in_date: "2023-10-04", check_out_date: "2023-10-04", booking_status: "completed" },
            { id: 13, guest_id: 109, room_id: 43, check_in_date: "2023-11-24", check_out_date: "2023-12-03", booking_status: "cancelled" },
            { id: 14, guest_id: 54, room_id: 27, check_in_date: "2023-11-01", check_out_date: null, booking_status: "confirmed" },
            { id: 15, guest_id: 129, room_id: 16, check_in_date: "2023-12-10", check_out_date: "2024-01-05", booking_status: "cancelled" },
            { id: 16, guest_id: 8, room_id: 2, check_in_date: "2023-12-30", check_out_date: "2023-12-31", booking_status: "completed" },
            { id: 17, guest_id: 50, room_id: 16, check_in_date: "2023-03-06", check_out_date: "2023-04-02", booking_status: "cancelled" },
            { id: 18, guest_id: 148, room_id: 48, check_in_date: "2023-11-15", check_out_date: "2023-11-27", booking_status: "cancelled" },
            { id: 19, guest_id: 61, room_id: 45, check_in_date: "2023-10-12", check_out_date: null, booking_status: "confirmed" },
            { id: 20, guest_id: 98, room_id: 2, check_in_date: "2023-07-22", check_out_date: "2023-07-28", booking_status: "cancelled" },
            { id: 21, guest_id: 200, room_id: 28, check_in_date: "2023-09-26", check_out_date: "2023-10-11", booking_status: "completed" },
            { id: 22, guest_id: 134, room_id: 46, check_in_date: "2023-10-29", check_out_date: null, booking_status: "confirmed" },
            { id: 23, guest_id: 109, room_id: 50, check_in_date: "2023-10-20", check_out_date: null, booking_status: "confirmed" },
            { id: 24, guest_id: 114, room_id: 10, check_in_date: "2023-02-10", check_out_date: "2023-02-15", booking_status: "cancelled" },
            { id: 25, guest_id: 132, room_id: 12, check_in_date: "2023-01-01", check_out_date: "2023-01-17", booking_status: "cancelled" },
            { id: 26, guest_id: 77, room_id: 49, check_in_date: "2023-09-20", check_out_date: "2023-10-05", booking_status: "cancelled" },
            { id: 27, guest_id: 140, room_id: 9, check_in_date: "2023-07-05", check_out_date: "2023-07-16", booking_status: "completed" },
            { id: 28, guest_id: 3, room_id: 42, check_in_date: "2023-10-29", check_out_date: null, booking_status: "confirmed" },
            { id: 29, guest_id: 180, room_id: 11, check_in_date: "2023-11-28", check_out_date: null, booking_status: "confirmed" },
            { id: 30, guest_id: 81, room_id: 19, check_in_date: "2023-04-23", check_out_date: null, booking_status: "confirmed" },
            { id: 31, guest_id: 98, room_id: 9, check_in_date: "2023-02-13", check_out_date: null, booking_status: "confirmed" },
            { id: 32, guest_id: 54, room_id: 23, check_in_date: "2023-06-16", check_out_date: "2023-07-07", booking_status: "completed" },
            { id: 33, guest_id: 1, room_id: 38, check_in_date: "2023-09-21", check_out_date: "2023-10-01", booking_status: "cancelled" },
            { id: 34, guest_id: 17, room_id: 14, check_in_date: "2023-10-28", check_out_date: null, booking_status: "confirmed" },
            { id: 35, guest_id: 126, room_id: 7, check_in_date: "2023-09-06", check_out_date: null, booking_status: "confirmed" },
            { id: 36, guest_id: 156, room_id: 22, check_in_date: "2023-02-15", check_out_date: "2023-02-15", booking_status: "cancelled" },
            { id: 37, guest_id: 191, room_id: 29, check_in_date: "2023-01-22", check_out_date: null, booking_status: "confirmed" },
            { id: 38, guest_id: 124, room_id: 33, check_in_date: "2023-03-01", check_out_date: "2023-03-13", booking_status: "completed" },
            { id: 39, guest_id: 76, room_id: 47, check_in_date: "2023-06-28", check_out_date: "2023-07-26", booking_status: "completed" },
            { id: 40, guest_id: 26, room_id: 20, check_in_date: "2023-01-22", check_out_date: "2023-02-18", booking_status: "cancelled" },
            { id: 41, guest_id: 57, room_id: 19, check_in_date: "2023-08-19", check_out_date: null, booking_status: "confirmed" },
            { id: 42, guest_id: 125, room_id: 17, check_in_date: "2023-05-27", check_out_date: null, booking_status: "confirmed" },
            { id: 43, guest_id: 55, room_id: 27, check_in_date: "2023-12-15", check_out_date: "2023-12-26", booking_status: "completed" },
            { id: 44, guest_id: 120, room_id: 25, check_in_date: "2023-01-20", check_out_date: null, booking_status: "confirmed" },
            { id: 45, guest_id: 26, room_id: 16, check_in_date: "2023-10-05", check_out_date: "2023-10-06", booking_status: "cancelled" },
            { id: 46, guest_id: 167, room_id: 48, check_in_date: "2023-03-31", check_out_date: null, booking_status: "confirmed" },
            { id: 47, guest_id: 24, room_id: 24, check_in_date: "2023-03-25", check_out_date: "2023-04-01", booking_status: "completed" },
            { id: 48, guest_id: 85, room_id: 12, check_in_date: "2023-09-27", check_out_date: null, booking_status: "confirmed" },
            { id: 49, guest_id: 154, room_id: 5, check_in_date: "2023-09-07", check_out_date: "2023-09-22", booking_status: "cancelled" },
            { id: 50, guest_id: 47, room_id: 43, check_in_date: "2023-01-01", check_out_date: "2023-01-05", booking_status: "completed" },
            { id: 51, guest_id: 24, room_id: 11, check_in_date: "2023-04-13", check_out_date: null, booking_status: "confirmed" },
            { id: 52, guest_id: 30, room_id: 8, check_in_date: "2023-02-24", check_out_date: null, booking_status: "confirmed" },
            { id: 53, guest_id: 143, room_id: 41, check_in_date: "2023-03-05", check_out_date: null, booking_status: "confirmed" },
            { id: 54, guest_id: 22, room_id: 15, check_in_date: "2023-04-07", check_out_date: "2023-04-25", booking_status: "completed" },
            { id: 55, guest_id: 166, room_id: 47, check_in_date: "2023-06-20", check_out_date: "2023-06-30", booking_status: "cancelled" },
            { id: 56, guest_id: 30, room_id: 47, check_in_date: "2023-05-04", check_out_date: null, booking_status: "confirmed" },
            { id: 57, guest_id: 56, room_id: 36, check_in_date: "2023-12-28", check_out_date: null, booking_status: "confirmed" },
            { id: 58, guest_id: 97, room_id: 30, check_in_date: "2023-11-08", check_out_date: "2023-11-22", booking_status: "completed" },
            { id: 59, guest_id: 110, room_id: 2, check_in_date: "2023-09-21", check_out_date: "2023-10-11", booking_status: "completed" },
            { id: 60, guest_id: 154, room_id: 39, check_in_date: "2023-03-12", check_out_date: null, booking_status: "confirmed" },
            { id: 61, guest_id: 119, room_id: 1, check_in_date: "2023-02-22", check_out_date: "2023-03-17", booking_status: "completed" },
            { id: 62, guest_id: 118, room_id: 26, check_in_date: "2023-02-05", check_out_date: null, booking_status: "confirmed" },
            { id: 63, guest_id: 97, room_id: 4, check_in_date: "2023-02-22", check_out_date: "2023-03-03", booking_status: "completed" },
            { id: 64, guest_id: 66, room_id: 29, check_in_date: "2023-05-25", check_out_date: null, booking_status: "confirmed" },
            { id: 65, guest_id: 141, room_id: 4, check_in_date: "2023-07-23", check_out_date: "2023-08-07", booking_status: "cancelled" },
            { id: 66, guest_id: 156, room_id: 27, check_in_date: "2023-02-17", check_out_date: "2023-03-04", booking_status: "cancelled" },
            { id: 67, guest_id: 144, room_id: 12, check_in_date: "2023-07-05", check_out_date: null, booking_status: "confirmed" },
            { id: 68, guest_id: 94, room_id: 44, check_in_date: "2023-11-01", check_out_date: "2023-11-19", booking_status: "completed" },
            { id: 69, guest_id: 169, room_id: 11, check_in_date: "2023-05-07", check_out_date: "2023-05-31", booking_status: "completed" },
            { id: 70, guest_id: 43, room_id: 39, check_in_date: "2023-04-09", check_out_date: null, booking_status: "confirmed" },
            { id: 71, guest_id: 96, room_id: 36, check_in_date: "2023-12-14", check_out_date: "2023-12-23", booking_status: "cancelled" },
            { id: 72, guest_id: 152, room_id: 32, check_in_date: "2023-04-08", check_out_date: null, booking_status: "confirmed" },
            { id: 73, guest_id: 191, room_id: 45, check_in_date: "2023-03-13", check_out_date: null, booking_status: "confirmed" },
            { id: 74, guest_id: 133, room_id: 41, check_in_date: "2023-02-26", check_out_date: "2023-03-21", booking_status: "completed" },
            { id: 75, guest_id: 123, room_id: 27, check_in_date: "2023-06-27", check_out_date: "2023-07-20", booking_status: "cancelled" },
            { id: 76, guest_id: 71, room_id: 4, check_in_date: "2023-01-09", check_out_date: null, booking_status: "confirmed" },
            { id: 77, guest_id: 111, room_id: 45, check_in_date: "2023-01-31", check_out_date: "2023-02-12", booking_status: "cancelled" },
            { id: 78, guest_id: 54, room_id: 38, check_in_date: "2023-04-19", check_out_date: "2023-05-15", booking_status: "completed" },
            { id: 79, guest_id: 141, room_id: 7, check_in_date: "2023-02-15", check_out_date: null, booking_status: "confirmed" },
            { id: 80, guest_id: 10, room_id: 14, check_in_date: "2023-06-15", check_out_date: null, booking_status: "confirmed" },
            { id: 81, guest_id: 21, room_id: 31, check_in_date: "2023-04-11", check_out_date: "2023-04-16", booking_status: "completed" },
            { id: 82, guest_id: 13, room_id: 40, check_in_date: "2023-11-15", check_out_date: "2023-12-06", booking_status: "completed" },
            { id: 83, guest_id: 30, room_id: 16, check_in_date: "2023-03-16", check_out_date: null, booking_status: "confirmed" },
            { id: 84, guest_id: 72, room_id: 26, check_in_date: "2023-02-18", check_out_date: "2023-02-22", booking_status: "completed" },
            { id: 85, guest_id: 58, room_id: 12, check_in_date: "2023-08-08", check_out_date: null, booking_status: "confirmed" },
            { id: 86, guest_id: 7, room_id: 32, check_in_date: "2023-04-27", check_out_date: null, booking_status: "confirmed" },
            { id: 87, guest_id: 8, room_id: 19, check_in_date: "2023-03-09", check_out_date: null, booking_status: "confirmed" },
            { id: 88, guest_id: 125, room_id: 23, check_in_date: "2023-01-30", check_out_date: null, booking_status: "confirmed" },
            { id: 89, guest_id: 121, room_id: 47, check_in_date: "2023-01-26", check_out_date: null, booking_status: "confirmed" },
            { id: 90, guest_id: 176, room_id: 8, check_in_date: "2023-06-29", check_out_date: null, booking_status: "confirmed" },
            { id: 91, guest_id: 136, room_id: 16, check_in_date: "2023-07-18", check_out_date: null, booking_status: "confirmed" },
            { id: 92, guest_id: 72, room_id: 5, check_in_date: "2023-09-27", check_out_date: "2023-10-06", booking_status: "completed" },
            { id: 93, guest_id: 14, room_id: 21, check_in_date: "2023-02-27", check_out_date: null, booking_status: "confirmed" },
            { id: 94, guest_id: 79, room_id: 17, check_in_date: "2023-09-28", check_out_date: null, booking_status: "confirmed" },
            { id: 95, guest_id: 47, room_id: 27, check_in_date: "2023-11-07", check_out_date: null, booking_status: "confirmed" },
            { id: 96, guest_id: 66, room_id: 45, check_in_date: "2023-04-09", check_out_date: null, booking_status: "confirmed" },
            { id: 97, guest_id: 143, room_id: 14, check_in_date: "2023-01-28", check_out_date: null, booking_status: "confirmed" },
            { id: 98, guest_id: 129, room_id: 39, check_in_date: "2023-03-05", check_out_date: "2023-03-23", booking_status: "completed" },
            { id: 99, guest_id: 162, room_id: 22, check_in_date: "2023-04-28", check_out_date: null, booking_status: "confirmed" },
            { id: 100, guest_id: 22, room_id: 7, check_in_date: "2023-03-05", check_out_date: "2023-03-29", booking_status: "completed" },
            { id: 101, guest_id: 90, room_id: 25, check_in_date: "2023-09-09", check_out_date: "2023-10-01", booking_status: "completed" },
            { id: 102, guest_id: 60, room_id: 33, check_in_date: "2023-09-12", check_out_date: null, booking_status: "confirmed" },
            { id: 103, guest_id: 182, room_id: 14, check_in_date: "2023-05-29", check_out_date: "2023-06-23", booking_status: "completed" },
            { id: 104, guest_id: 13, room_id: 36, check_in_date: "2023-09-14", check_out_date: "2023-10-03", booking_status: "completed" },
            { id: 105, guest_id: 15, room_id: 50, check_in_date: "2023-11-24", check_out_date: "2023-12-11", booking_status: "cancelled" },
            { id: 106, guest_id: 112, room_id: 29, check_in_date: "2023-03-06", check_out_date: "2023-04-05", booking_status: "cancelled" },
            { id: 107, guest_id: 129, room_id: 9, check_in_date: "2023-04-14", check_out_date: "2023-04-20", booking_status: "completed" },
            { id: 108, guest_id: 40, room_id: 41, check_in_date: "2023-08-31", check_out_date: "2023-09-17", booking_status: "completed" },
            { id: 109, guest_id: 64, room_id: 3, check_in_date: "2023-04-12", check_out_date: null, booking_status: "confirmed" },
            { id: 110, guest_id: 121, room_id: 38, check_in_date: "2023-09-26", check_out_date: "2023-10-25", booking_status: "cancelled" },
            { id: 111, guest_id: 145, room_id: 24, check_in_date: "2023-07-06", check_out_date: null, booking_status: "confirmed" },
            { id: 112, guest_id: 179, room_id: 48, check_in_date: "2023-08-24", check_out_date: "2023-09-17", booking_status: "cancelled" },
            { id: 113, guest_id: 95, room_id: 28, check_in_date: "2023-06-09", check_out_date: null, booking_status: "confirmed" },
            { id: 114, guest_id: 121, room_id: 14, check_in_date: "2023-06-23", check_out_date: null, booking_status: "confirmed" },
            { id: 115, guest_id: 131, room_id: 45, check_in_date: "2023-03-02", check_out_date: "2023-03-26", booking_status: "cancelled" },
            { id: 116, guest_id: 99, room_id: 41, check_in_date: "2023-02-28", check_out_date: "2023-03-29", booking_status: "cancelled" },
            { id: 117, guest_id: 188, room_id: 24, check_in_date: "2023-09-16", check_out_date: "2023-09-18", booking_status: "completed" },
            { id: 118, guest_id: 136, room_id: 4, check_in_date: "2023-02-13", check_out_date: null, booking_status: "confirmed" },
            { id: 119, guest_id: 190, room_id: 8, check_in_date: "2023-11-02", check_out_date: null, booking_status: "confirmed" },
            { id: 120, guest_id: 190, room_id: 21, check_in_date: "2023-05-13", check_out_date: "2023-06-01", booking_status: "completed" },
            { id: 121, guest_id: 186, room_id: 33, check_in_date: "2023-04-19", check_out_date: "2023-05-06", booking_status: "cancelled" },
            { id: 122, guest_id: 23, room_id: 29, check_in_date: "2023-04-20", check_out_date: null, booking_status: "confirmed" },
            { id: 123, guest_id: 48, room_id: 12, check_in_date: "2023-05-06", check_out_date: null, booking_status: "confirmed" },
            { id: 124, guest_id: 28, room_id: 29, check_in_date: "2023-06-16", check_out_date: "2023-07-15", booking_status: "completed" },
            { id: 125, guest_id: 41, room_id: 48, check_in_date: "2023-08-15", check_out_date: "2023-08-24", booking_status: "cancelled" },
            { id: 126, guest_id: 18, room_id: 41, check_in_date: "2023-02-03", check_out_date: null, booking_status: "confirmed" },
            { id: 127, guest_id: 112, room_id: 15, check_in_date: "2023-05-30", check_out_date: "2023-06-28", booking_status: "completed" },
            { id: 128, guest_id: 138, room_id: 47, check_in_date: "2023-12-18", check_out_date: null, booking_status: "confirmed" },
            { id: 129, guest_id: 92, room_id: 29, check_in_date: "2023-02-02", check_out_date: null, booking_status: "confirmed" },
            { id: 130, guest_id: 71, room_id: 39, check_in_date: "2023-01-08", check_out_date: null, booking_status: "confirmed" },
            { id: 131, guest_id: 101, room_id: 9, check_in_date: "2023-07-20", check_out_date: "2023-08-18", booking_status: "completed" },
            { id: 132, guest_id: 53, room_id: 22, check_in_date: "2023-06-05", check_out_date: "2023-06-07", booking_status: "completed" },
            { id: 133, guest_id: 100, room_id: 26, check_in_date: "2023-03-05", check_out_date: null, booking_status: "confirmed" },
            { id: 134, guest_id: 191, room_id: 28, check_in_date: "2023-05-27", check_out_date: "2023-06-09", booking_status: "completed" },
            { id: 135, guest_id: 174, room_id: 38, check_in_date: "2023-07-24", check_out_date: null, booking_status: "confirmed" },
            { id: 136, guest_id: 138, room_id: 40, check_in_date: "2023-11-15", check_out_date: "2023-11-26", booking_status: "completed" },
            { id: 137, guest_id: 88, room_id: 14, check_in_date: "2023-11-15", check_out_date: null, booking_status: "confirmed" },
            { id: 138, guest_id: 49, room_id: 35, check_in_date: "2023-01-24", check_out_date: null, booking_status: "confirmed" },
            { id: 139, guest_id: 160, room_id: 10, check_in_date: "2023-07-05", check_out_date: null, booking_status: "confirmed" },
            { id: 140, guest_id: 166, room_id: 10, check_in_date: "2023-12-15", check_out_date: null, booking_status: "confirmed" },
            { id: 141, guest_id: 152, room_id: 34, check_in_date: "2023-09-09", check_out_date: "2023-09-11", booking_status: "completed" },
            { id: 142, guest_id: 107, room_id: 10, check_in_date: "2023-11-11", check_out_date: null, booking_status: "confirmed" },
            { id: 143, guest_id: 108, room_id: 8, check_in_date: "2023-10-25", check_out_date: "2023-10-28", booking_status: "cancelled" },
            { id: 144, guest_id: 30, room_id: 32, check_in_date: "2023-11-01", check_out_date: "2023-11-05", booking_status: "completed" },
            { id: 145, guest_id: 40, room_id: 25, check_in_date: "2023-03-30", check_out_date: null, booking_status: "confirmed" },
            { id: 146, guest_id: 50, room_id: 48, check_in_date: "2023-12-11", check_out_date: null, booking_status: "confirmed" },
            { id: 147, guest_id: 133, room_id: 36, check_in_date: "2023-12-08", check_out_date: "2023-12-12", booking_status: "completed" },
            { id: 148, guest_id: 81, room_id: 48, check_in_date: "2023-04-17", check_out_date: null, booking_status: "confirmed" },
            { id: 149, guest_id: 145, room_id: 31, check_in_date: "2023-01-04", check_out_date: null, booking_status: "confirmed" },
            { id: 150, guest_id: 52, room_id: 47, check_in_date: "2023-11-10", check_out_date: null, booking_status: "confirmed" },
            { id: 151, guest_id: 12, room_id: 20, check_in_date: "2023-11-26", check_out_date: null, booking_status: "confirmed" },
            { id: 152, guest_id: 65, room_id: 6, check_in_date: "2023-04-14", check_out_date: "2023-05-05", booking_status: "completed" },
            { id: 153, guest_id: 32, room_id: 5, check_in_date: "2023-07-20", check_out_date: null, booking_status: "confirmed" },
            { id: 154, guest_id: 36, room_id: 43, check_in_date: "2023-09-27", check_out_date: "2023-10-10", booking_status: "cancelled" },
            { id: 155, guest_id: 78, room_id: 17, check_in_date: "2023-08-28", check_out_date: null, booking_status: "confirmed" },
            { id: 156, guest_id: 168, room_id: 47, check_in_date: "2023-11-06", check_out_date: "2023-12-03", booking_status: "cancelled" },
            { id: 157, guest_id: 30, room_id: 22, check_in_date: "2023-10-07", check_out_date: null, booking_status: "confirmed" },
            { id: 158, guest_id: 131, room_id: 47, check_in_date: "2023-05-06", check_out_date: "2023-06-05", booking_status: "cancelled" },
            { id: 159, guest_id: 36, room_id: 1, check_in_date: "2023-08-04", check_out_date: null, booking_status: "confirmed" },
            { id: 160, guest_id: 184, room_id: 10, check_in_date: "2023-05-16", check_out_date: null, booking_status: "confirmed" },
            { id: 161, guest_id: 53, room_id: 28, check_in_date: "2023-04-10", check_out_date: "2023-04-14", booking_status: "completed" },
            { id: 162, guest_id: 83, room_id: 4, check_in_date: "2023-12-11", check_out_date: null, booking_status: "confirmed" },
            { id: 163, guest_id: 184, room_id: 50, check_in_date: "2023-03-25", check_out_date: null, booking_status: "confirmed" },
            { id: 164, guest_id: 156, room_id: 34, check_in_date: "2023-03-07", check_out_date: null, booking_status: "confirmed" },
            { id: 165, guest_id: 48, room_id: 26, check_in_date: "2023-05-22", check_out_date: "2023-05-28", booking_status: "completed" },
            { id: 166, guest_id: 109, room_id: 4, check_in_date: "2023-07-22", check_out_date: null, booking_status: "confirmed" },
            { id: 167, guest_id: 34, room_id: 4, check_in_date: "2023-01-11", check_out_date: null, booking_status: "confirmed" },
            { id: 168, guest_id: 195, room_id: 24, check_in_date: "2023-01-04", check_out_date: null, booking_status: "confirmed" },
            { id: 169, guest_id: 99, room_id: 10, check_in_date: "2023-02-04", check_out_date: "2023-02-13", booking_status: "cancelled" },
            { id: 170, guest_id: 17, room_id: 5, check_in_date: "2023-12-31", check_out_date: null, booking_status: "confirmed" },
            { id: 171, guest_id: 10, room_id: 35, check_in_date: "2023-09-30", check_out_date: "2023-09-30", booking_status: "cancelled" },
            { id: 172, guest_id: 42, room_id: 20, check_in_date: "2023-12-16", check_out_date: "2024-01-06", booking_status: "completed" },
            { id: 173, guest_id: 50, room_id: 25, check_in_date: "2023-09-18", check_out_date: "2023-10-05", booking_status: "completed" },
            { id: 174, guest_id: 26, room_id: 43, check_in_date: "2023-04-25", check_out_date: "2023-04-28", booking_status: "completed" },
            { id: 175, guest_id: 198, room_id: 25, check_in_date: "2023-09-01", check_out_date: "2023-09-11", booking_status: "cancelled" },
            { id: 176, guest_id: 86, room_id: 24, check_in_date: "2023-11-11", check_out_date: "2023-11-17", booking_status: "completed" },
            { id: 177, guest_id: 187, room_id: 34, check_in_date: "2023-06-11", check_out_date: "2023-06-17", booking_status: "completed" },
            { id: 178, guest_id: 51, room_id: 23, check_in_date: "2023-08-21", check_out_date: "2023-09-13", booking_status: "cancelled" },
            { id: 179, guest_id: 166, room_id: 13, check_in_date: "2023-04-02", check_out_date: null, booking_status: "confirmed" },
            { id: 180, guest_id: 32, room_id: 31, check_in_date: "2023-12-15", check_out_date: "2023-12-18", booking_status: "cancelled" },
            { id: 181, guest_id: 119, room_id: 12, check_in_date: "2023-06-10", check_out_date: null, booking_status: "confirmed" },
            { id: 182, guest_id: 86, room_id: 45, check_in_date: "2023-11-30", check_out_date: "2023-12-14", booking_status: "completed" },
            { id: 183, guest_id: 194, room_id: 29, check_in_date: "2023-03-26", check_out_date: null, booking_status: "confirmed" },
            { id: 184, guest_id: 170, room_id: 24, check_in_date: "2023-10-31", check_out_date: "2023-11-15", booking_status: "cancelled" },
            { id: 185, guest_id: 161, room_id: 46, check_in_date: "2023-10-01", check_out_date: "2023-10-24", booking_status: "completed" },
            { id: 186, guest_id: 133, room_id: 10, check_in_date: "2023-08-16", check_out_date: null, booking_status: "confirmed" },
            { id: 187, guest_id: 193, room_id: 16, check_in_date: "2023-12-01", check_out_date: null, booking_status: "confirmed" },
            { id: 188, guest_id: 112, room_id: 40, check_in_date: "2023-11-27", check_out_date: "2023-12-09", booking_status: "completed" },
            { id: 189, guest_id: 136, room_id: 2, check_in_date: "2023-06-25", check_out_date: "2023-07-06", booking_status: "completed" },
            { id: 190, guest_id: 102, room_id: 49, check_in_date: "2023-01-20", check_out_date: null, booking_status: "confirmed" },
            { id: 191, guest_id: 89, room_id: 4, check_in_date: "2023-11-24", check_out_date: null, booking_status: "confirmed" },
            { id: 192, guest_id: 200, room_id: 44, check_in_date: "2023-07-01", check_out_date: "2023-07-27", booking_status: "completed" },
            { id: 193, guest_id: 45, room_id: 10, check_in_date: "2023-02-19", check_out_date: null, booking_status: "confirmed" },
            { id: 194, guest_id: 163, room_id: 28, check_in_date: "2023-12-24", check_out_date: "2023-12-30", booking_status: "completed" },
            { id: 195, guest_id: 30, room_id: 40, check_in_date: "2023-12-29", check_out_date: "2024-01-23", booking_status: "cancelled" },
            { id: 196, guest_id: 79, room_id: 1, check_in_date: "2023-06-20", check_out_date: "2023-06-24", booking_status: "completed" },
            { id: 197, guest_id: 186, room_id: 3, check_in_date: "2023-09-26", check_out_date: "2023-10-11", booking_status: "completed" },
            { id: 198, guest_id: 40, room_id: 49, check_in_date: "2023-08-31", check_out_date: null, booking_status: "confirmed" },
            { id: 199, guest_id: 47, room_id: 41, check_in_date: "2023-05-19", check_out_date: "2023-05-23", booking_status: "cancelled" },
            { id: 200, guest_id: 5, room_id: 22, check_in_date: "2023-10-20", check_out_date: null, booking_status: "confirmed" },
            { id: 201, guest_id: 70, room_id: 16, check_in_date: "2023-07-19", check_out_date: null, booking_status: "confirmed" },
            { id: 202, guest_id: 30, room_id: 43, check_in_date: "2023-10-24", check_out_date: "2023-11-10", booking_status: "cancelled" },
            { id: 203, guest_id: 168, room_id: 9, check_in_date: "2023-01-25", check_out_date: "2023-02-16", booking_status: "cancelled" },
            { id: 204, guest_id: 159, room_id: 24, check_in_date: "2023-07-25", check_out_date: null, booking_status: "confirmed" },
            { id: 205, guest_id: 130, room_id: 31, check_in_date: "2023-09-22", check_out_date: null, booking_status: "confirmed" },
            { id: 206, guest_id: 49, room_id: 31, check_in_date: "2023-04-06", check_out_date: "2023-04-13", booking_status: "completed" },
            { id: 207, guest_id: 194, room_id: 23, check_in_date: "2023-05-27", check_out_date: "2023-06-02", booking_status: "completed" },
            { id: 208, guest_id: 175, room_id: 35, check_in_date: "2023-10-18", check_out_date: null, booking_status: "confirmed" },
            { id: 209, guest_id: 40, room_id: 31, check_in_date: "2023-01-06", check_out_date: null, booking_status: "confirmed" },
            { id: 210, guest_id: 93, room_id: 27, check_in_date: "2023-10-31", check_out_date: null, booking_status: "confirmed" },
            { id: 211, guest_id: 177, room_id: 19, check_in_date: "2023-07-28", check_out_date: "2023-07-29", booking_status: "completed" },
            { id: 212, guest_id: 53, room_id: 24, check_in_date: "2023-09-20", check_out_date: null, booking_status: "confirmed" },
            { id: 213, guest_id: 18, room_id: 7, check_in_date: "2023-08-14", check_out_date: "2023-08-25", booking_status: "completed" },
            { id: 214, guest_id: 43, room_id: 5, check_in_date: "2023-09-29", check_out_date: null, booking_status: "confirmed" },
            { id: 215, guest_id: 102, room_id: 4, check_in_date: "2023-08-24", check_out_date: null, booking_status: "confirmed" },
            { id: 216, guest_id: 172, room_id: 35, check_in_date: "2023-07-17", check_out_date: "2023-07-26", booking_status: "completed" },
            { id: 217, guest_id: 3, room_id: 27, check_in_date: "2023-12-28", check_out_date: "2024-01-03", booking_status: "completed" },
            { id: 218, guest_id: 97, room_id: 11, check_in_date: "2023-11-04", check_out_date: "2023-11-20", booking_status: "cancelled" },
            { id: 219, guest_id: 141, room_id: 11, check_in_date: "2023-06-25", check_out_date: "2023-07-07", booking_status: "cancelled" },
            { id: 220, guest_id: 11, room_id: 50, check_in_date: "2023-03-04", check_out_date: "2023-03-11", booking_status: "completed" },
            { id: 221, guest_id: 170, room_id: 43, check_in_date: "2023-06-01", check_out_date: "2023-06-09", booking_status: "completed" },
            { id: 222, guest_id: 198, room_id: 10, check_in_date: "2023-01-13", check_out_date: null, booking_status: "confirmed" },
            { id: 223, guest_id: 112, room_id: 40, check_in_date: "2023-09-14", check_out_date: null, booking_status: "confirmed" },
            { id: 224, guest_id: 58, room_id: 40, check_in_date: "2023-04-11", check_out_date: null, booking_status: "confirmed" },
            { id: 225, guest_id: 130, room_id: 23, check_in_date: "2023-12-06", check_out_date: "2023-12-15", booking_status: "completed" },
            { id: 226, guest_id: 96, room_id: 24, check_in_date: "2023-10-09", check_out_date: null, booking_status: "confirmed" },
            { id: 227, guest_id: 67, room_id: 34, check_in_date: "2023-10-08", check_out_date: null, booking_status: "confirmed" },
            { id: 228, guest_id: 65, room_id: 7, check_in_date: "2023-04-10", check_out_date: null, booking_status: "confirmed" },
            { id: 229, guest_id: 44, room_id: 36, check_in_date: "2023-08-09", check_out_date: null, booking_status: "confirmed" },
            { id: 230, guest_id: 33, room_id: 38, check_in_date: "2023-04-25", check_out_date: null, booking_status: "confirmed" },
            { id: 231, guest_id: 88, room_id: 46, check_in_date: "2023-09-25", check_out_date: null, booking_status: "confirmed" },
            { id: 232, guest_id: 43, room_id: 40, check_in_date: "2023-11-18", check_out_date: null, booking_status: "confirmed" },
            { id: 233, guest_id: 116, room_id: 13, check_in_date: "2023-11-27", check_out_date: "2023-12-15", booking_status: "completed" },
            { id: 234, guest_id: 85, room_id: 26, check_in_date: "2023-11-10", check_out_date: "2023-12-09", booking_status: "cancelled" },
            { id: 235, guest_id: 43, room_id: 39, check_in_date: "2023-06-14", check_out_date: null, booking_status: "confirmed" },
            { id: 236, guest_id: 9, room_id: 29, check_in_date: "2023-12-29", check_out_date: "2024-01-09", booking_status: "cancelled" },
            { id: 237, guest_id: 146, room_id: 31, check_in_date: "2023-01-20", check_out_date: null, booking_status: "confirmed" },
            { id: 238, guest_id: 43, room_id: 36, check_in_date: "2023-08-05", check_out_date: "2023-08-14", booking_status: "completed" },
            { id: 239, guest_id: 104, room_id: 19, check_in_date: "2023-03-15", check_out_date: "2023-04-14", booking_status: "cancelled" },
            { id: 240, guest_id: 132, room_id: 40, check_in_date: "2023-03-22", check_out_date: null, booking_status: "confirmed" },
            { id: 241, guest_id: 91, room_id: 15, check_in_date: "2023-09-25", check_out_date: null, booking_status: "confirmed" },
            { id: 242, guest_id: 54, room_id: 38, check_in_date: "2023-07-25", check_out_date: "2023-07-31", booking_status: "cancelled" },
            { id: 243, guest_id: 83, room_id: 35, check_in_date: "2023-07-30", check_out_date: null, booking_status: "confirmed" },
            { id: 244, guest_id: 149, room_id: 33, check_in_date: "2023-02-03", check_out_date: "2023-02-03", booking_status: "cancelled" },
            { id: 245, guest_id: 93, room_id: 25, check_in_date: "2023-08-03", check_out_date: null, booking_status: "confirmed" },
            { id: 246, guest_id: 181, room_id: 6, check_in_date: "2023-07-25", check_out_date: "2023-08-05", booking_status: "cancelled" },
            { id: 247, guest_id: 41, room_id: 29, check_in_date: "2023-06-16", check_out_date: null, booking_status: "confirmed" },
            { id: 248, guest_id: 61, room_id: 5, check_in_date: "2023-12-03", check_out_date: "2023-12-16", booking_status: "completed" },
            { id: 249, guest_id: 127, room_id: 21, check_in_date: "2023-10-15", check_out_date: "2023-10-28", booking_status: "cancelled" },
            { id: 250, guest_id: 82, room_id: 18, check_in_date: "2023-07-23", check_out_date: "2023-07-30", booking_status: "cancelled" },
            { id: 251, guest_id: 16, room_id: 32, check_in_date: "2023-06-05", check_out_date: "2023-06-07", booking_status: "cancelled" },
            { id: 252, guest_id: 163, room_id: 37, check_in_date: "2023-11-04", check_out_date: null, booking_status: "confirmed" },
            { id: 253, guest_id: 145, room_id: 43, check_in_date: "2023-04-22", check_out_date: "2023-05-04", booking_status: "completed" },
            { id: 254, guest_id: 195, room_id: 15, check_in_date: "2023-06-11", check_out_date: null, booking_status: "confirmed" },
            { id: 255, guest_id: 75, room_id: 44, check_in_date: "2023-03-09", check_out_date: "2023-04-01", booking_status: "completed" },
            { id: 256, guest_id: 13, room_id: 5, check_in_date: "2023-12-14", check_out_date: null, booking_status: "confirmed" },
            { id: 257, guest_id: 54, room_id: 45, check_in_date: "2023-08-26", check_out_date: "2023-09-01", booking_status: "completed" },
            { id: 258, guest_id: 61, room_id: 16, check_in_date: "2023-02-08", check_out_date: null, booking_status: "confirmed" },
            { id: 259, guest_id: 148, room_id: 16, check_in_date: "2023-02-17", check_out_date: "2023-02-19", booking_status: "completed" },
            { id: 260, guest_id: 1, room_id: 29, check_in_date: "2023-08-08", check_out_date: "2023-08-30", booking_status: "completed" },
            { id: 261, guest_id: 2, room_id: 18, check_in_date: "2023-02-28", check_out_date: null, booking_status: "confirmed" },
            { id: 262, guest_id: 79, room_id: 9, check_in_date: "2023-12-21", check_out_date: null, booking_status: "confirmed" },
            { id: 263, guest_id: 170, room_id: 2, check_in_date: "2023-06-28", check_out_date: "2023-07-28", booking_status: "cancelled" },
            { id: 264, guest_id: 138, room_id: 43, check_in_date: "2023-12-26", check_out_date: "2023-12-27", booking_status: "completed" },
            { id: 265, guest_id: 165, room_id: 15, check_in_date: "2023-11-29", check_out_date: "2023-12-09", booking_status: "completed" },
            { id: 266, guest_id: 75, room_id: 19, check_in_date: "2023-03-22", check_out_date: null, booking_status: "confirmed" },
            { id: 267, guest_id: 188, room_id: 1, check_in_date: "2023-09-09", check_out_date: "2023-09-16", booking_status: "completed" },
            { id: 268, guest_id: 154, room_id: 13, check_in_date: "2023-07-11", check_out_date: "2023-07-29", booking_status: "cancelled" },
            { id: 269, guest_id: 13, room_id: 15, check_in_date: "2023-05-06", check_out_date: null, booking_status: "confirmed" },
            { id: 270, guest_id: 63, room_id: 21, check_in_date: "2023-01-23", check_out_date: null, booking_status: "confirmed" },
            { id: 271, guest_id: 162, room_id: 27, check_in_date: "2023-10-11", check_out_date: "2023-10-20", booking_status: "cancelled" },
            { id: 272, guest_id: 38, room_id: 36, check_in_date: "2023-09-17", check_out_date: "2023-10-09", booking_status: "cancelled" },
            { id: 273, guest_id: 82, room_id: 35, check_in_date: "2023-03-29", check_out_date: "2023-04-15", booking_status: "cancelled" },
            { id: 274, guest_id: 62, room_id: 30, check_in_date: "2023-09-28", check_out_date: "2023-10-27", booking_status: "cancelled" },
            { id: 275, guest_id: 150, room_id: 17, check_in_date: "2023-04-28", check_out_date: "2023-05-12", booking_status: "cancelled" },
            { id: 276, guest_id: 110, room_id: 15, check_in_date: "2023-10-08", check_out_date: null, booking_status: "confirmed" },
            { id: 277, guest_id: 37, room_id: 10, check_in_date: "2023-08-13", check_out_date: "2023-09-06", booking_status: "completed" },
            { id: 278, guest_id: 171, room_id: 26, check_in_date: "2023-03-27", check_out_date: null, booking_status: "confirmed" },
            { id: 279, guest_id: 7, room_id: 21, check_in_date: "2023-06-30", check_out_date: "2023-07-10", booking_status: "cancelled" },
            { id: 280, guest_id: 62, room_id: 4, check_in_date: "2023-07-30", check_out_date: null, booking_status: "confirmed" },
            { id: 281, guest_id: 51, room_id: 34, check_in_date: "2023-09-27", check_out_date: "2023-10-25", booking_status: "cancelled" },
            { id: 282, guest_id: 177, room_id: 16, check_in_date: "2023-06-12", check_out_date: null, booking_status: "confirmed" },
            { id: 283, guest_id: 59, room_id: 15, check_in_date: "2023-12-11", check_out_date: null, booking_status: "confirmed" },
            { id: 284, guest_id: 136, room_id: 26, check_in_date: "2023-02-28", check_out_date: "2023-03-30", booking_status: "cancelled" },
            { id: 285, guest_id: 84, room_id: 7, check_in_date: "2023-01-18", check_out_date: null, booking_status: "confirmed" },
            { id: 286, guest_id: 109, room_id: 3, check_in_date: "2023-11-17", check_out_date: null, booking_status: "confirmed" },
            { id: 287, guest_id: 75, room_id: 22, check_in_date: "2023-10-09", check_out_date: null, booking_status: "confirmed" },
            { id: 288, guest_id: 153, room_id: 25, check_in_date: "2023-02-20", check_out_date: "2023-03-14", booking_status: "completed" },
            { id: 289, guest_id: 21, room_id: 14, check_in_date: "2023-11-28", check_out_date: "2023-11-28", booking_status: "completed" },
            { id: 290, guest_id: 94, room_id: 47, check_in_date: "2023-07-28", check_out_date: "2023-08-18", booking_status: "cancelled" },
            { id: 291, guest_id: 145, room_id: 32, check_in_date: "2023-03-02", check_out_date: "2023-03-06", booking_status: "cancelled" },
            { id: 292, guest_id: 141, room_id: 9, check_in_date: "2023-07-24", check_out_date: "2023-08-14", booking_status: "completed" },
            { id: 293, guest_id: 35, room_id: 27, check_in_date: "2023-04-23", check_out_date: "2023-05-02", booking_status: "completed" },
            { id: 294, guest_id: 113, room_id: 39, check_in_date: "2023-01-14", check_out_date: null, booking_status: "confirmed" },
            { id: 295, guest_id: 87, room_id: 2, check_in_date: "2023-07-23", check_out_date: null, booking_status: "confirmed" },
            { id: 296, guest_id: 111, room_id: 36, check_in_date: "2023-10-08", check_out_date: null, booking_status: "confirmed" },
            { id: 297, guest_id: 149, room_id: 46, check_in_date: "2023-11-24", check_out_date: null, booking_status: "confirmed" },
            { id: 298, guest_id: 53, room_id: 33, check_in_date: "2023-10-30", check_out_date: "2023-11-04", booking_status: "completed" },
            { id: 299, guest_id: 35, room_id: 7, check_in_date: "2023-08-25", check_out_date: "2023-08-27", booking_status: "completed" },
            { id: 300, guest_id: 82, room_id: 31, check_in_date: "2023-11-23", check_out_date: "2023-12-17", booking_status: "completed" },
        ],
    });
    await prisma.payments.createMany({
        data: [
            { id: 1, booking_id: 171, amount: "1680.94", payment_date: null, payment_status: "completed" },
            { id: 2, booking_id: 33, amount: "293.40", payment_date: null, payment_status: "completed" },
            { id: 3, booking_id: 272, amount: "126.17", payment_date: null, payment_status: "pending" },
            { id: 4, booking_id: 103, amount: "625.21", payment_date: null, payment_status: "pending" },
            { id: 5, booking_id: 252, amount: "85.11", payment_date: null, payment_status: "pending" },
            { id: 6, booking_id: 175, amount: "53.66", payment_date: null, payment_status: "pending" },
            { id: 7, booking_id: 119, amount: "52.26", payment_date: null, payment_status: "completed" },
            { id: 8, booking_id: 246, amount: "119.68", payment_date: null, payment_status: "completed" },
            { id: 9, booking_id: 51, amount: "63.68", payment_date: null, payment_status: "completed" },
            { id: 10, booking_id: 240, amount: "208.39", payment_date: null, payment_status: "pending" },
            { id: 11, booking_id: 98, amount: "1396.29", payment_date: null, payment_status: "completed" },
            { id: 12, booking_id: 57, amount: "118.88", payment_date: null, payment_status: "completed" },
            { id: 13, booking_id: 120, amount: "57.15", payment_date: null, payment_status: "completed" },
            { id: 14, booking_id: 121, amount: "515.51", payment_date: null, payment_status: "completed" },
            { id: 15, booking_id: 139, amount: "306.86", payment_date: null, payment_status: "pending" },
            { id: 16, booking_id: 187, amount: "126.22", payment_date: null, payment_status: "completed" },
            { id: 17, booking_id: 283, amount: "221.42", payment_date: null, payment_status: "completed" },
            { id: 18, booking_id: 262, amount: "67.06", payment_date: new Date("2023-10-18T12:49:57Z"), payment_status: "failed" },
            { id: 19, booking_id: 291, amount: "50.06", payment_date: null, payment_status: "pending" },
            { id: 20, booking_id: 54, amount: "832.88", payment_date: new Date("2023-10-09T09:51:45Z"), payment_status: "failed" },
            { id: 21, booking_id: 1, amount: "58.01", payment_date: null, payment_status: "completed" },
            { id: 22, booking_id: 109, amount: "262.33", payment_date: null, payment_status: "pending" },
            { id: 23, booking_id: 93, amount: "1504.99", payment_date: null, payment_status: "pending" },
            { id: 24, booking_id: 271, amount: "65.95", payment_date: null, payment_status: "pending" },
            { id: 25, booking_id: 237, amount: "1480.60", payment_date: null, payment_status: "pending" },
            { id: 26, booking_id: 155, amount: "1200.18", payment_date: null, payment_status: "pending" },
            { id: 27, booking_id: 222, amount: "122.96", payment_date: null, payment_status: "completed" },
            { id: 28, booking_id: 237, amount: "671.05", payment_date: new Date("2023-06-17T14:18:26Z"), payment_status: "failed" },
            { id: 29, booking_id: 91, amount: "50.09", payment_date: null, payment_status: "completed" },
            { id: 30, booking_id: 226, amount: "99.23", payment_date: null, payment_status: "pending" },
            { id: 31, booking_id: 62, amount: "386.70", payment_date: null, payment_status: "pending" },
            { id: 32, booking_id: 24, amount: "514.40", payment_date: null, payment_status: "pending" },
            { id: 33, booking_id: 218, amount: "55.21", payment_date: null, payment_status: "completed" },
            { id: 34, booking_id: 167, amount: "905.19", payment_date: null, payment_status: "completed" },
            { id: 35, booking_id: 249, amount: "50.03", payment_date: null, payment_status: "completed" },
            { id: 36, booking_id: 55, amount: "108.18", payment_date: new Date("2023-05-08T08:34:01Z"), payment_status: "failed" },
            { id: 37, booking_id: 8, amount: "467.19", payment_date: null, payment_status: "completed" },
            { id: 38, booking_id: 114, amount: "1668.01", payment_date: null, payment_status: "completed" },
            { id: 39, booking_id: 299, amount: "87.90", payment_date: null, payment_status: "pending" },
            { id: 40, booking_id: 120, amount: "55.76", payment_date: new Date("2023-05-07T15:24:19Z"), payment_status: "failed" },
            { id: 41, booking_id: 122, amount: "1083.57", payment_date: null, payment_status: "completed" },
            { id: 42, booking_id: 139, amount: "207.64", payment_date: null, payment_status: "pending" },
            { id: 43, booking_id: 199, amount: "165.12", payment_date: null, payment_status: "pending" },
            { id: 44, booking_id: 179, amount: "920.45", payment_date: null, payment_status: "pending" },
            { id: 45, booking_id: 263, amount: "52.17", payment_date: new Date("2023-10-02T18:49:30Z"), payment_status: "failed" },
            { id: 46, booking_id: 63, amount: "213.63", payment_date: null, payment_status: "completed" },
            { id: 47, booking_id: 74, amount: "276.22", payment_date: null, payment_status: "completed" },
            { id: 48, booking_id: 111, amount: "84.73", payment_date: null, payment_status: "completed" },
            { id: 49, booking_id: 40, amount: "84.97", payment_date: new Date("2023-11-13T12:24:16Z"), payment_status: "failed" },
            { id: 50, booking_id: 189, amount: "62.27", payment_date: null, payment_status: "pending" },
            { id: 51, booking_id: 244, amount: "1604.66", payment_date: null, payment_status: "pending" },
            { id: 52, booking_id: 156, amount: "1829.10", payment_date: null, payment_status: "completed" },
            { id: 53, booking_id: 247, amount: "64.64", payment_date: null, payment_status: "completed" },
            { id: 54, booking_id: 102, amount: "1789.91", payment_date: null, payment_status: "completed" },
            { id: 55, booking_id: 128, amount: "320.98", payment_date: null, payment_status: "pending" },
            { id: 56, booking_id: 136, amount: "71.80", payment_date: null, payment_status: "completed" },
            { id: 57, booking_id: 189, amount: "377.62", payment_date: null, payment_status: "pending" },
            { id: 58, booking_id: 203, amount: "1254.83", payment_date: null, payment_status: "completed" },
            { id: 59, booking_id: 212, amount: "62.72", payment_date: null, payment_status: "completed" },
            { id: 60, booking_id: 173, amount: "1347.04", payment_date: null, payment_status: "pending" },
            { id: 61, booking_id: 296, amount: "86.42", payment_date: null, payment_status: "completed" },
            { id: 62, booking_id: 281, amount: "268.13", payment_date: null, payment_status: "completed" },
            { id: 63, booking_id: 21, amount: "228.76", payment_date: null, payment_status: "pending" },
            { id: 64, booking_id: 10, amount: "447.37", payment_date: null, payment_status: "completed" },
            { id: 65, booking_id: 146, amount: "60.08", payment_date: null, payment_status: "pending" },
            { id: 66, booking_id: 188, amount: "102.68", payment_date: null, payment_status: "pending" },
            { id: 67, booking_id: 18, amount: "57.52", payment_date: null, payment_status: "completed" },
            { id: 68, booking_id: 179, amount: "61.35", payment_date: null, payment_status: "completed" },
            { id: 69, booking_id: 45, amount: "294.26", payment_date: null, payment_status: "completed" },
            { id: 70, booking_id: 52, amount: "717.53", payment_date: null, payment_status: "pending" },
            { id: 71, booking_id: 244, amount: "592.71", payment_date: null, payment_status: "pending" },
            { id: 72, booking_id: 48, amount: "817.23", payment_date: null, payment_status: "pending" },
            { id: 73, booking_id: 300, amount: "152.28", payment_date: null, payment_status: "pending" },
            { id: 74, booking_id: 205, amount: "50.09", payment_date: null, payment_status: "completed" },
            { id: 75, booking_id: 278, amount: "869.96", payment_date: null, payment_status: "pending" },
            { id: 76, booking_id: 116, amount: "226.70", payment_date: null, payment_status: "completed" },
            { id: 77, booking_id: 87, amount: "52.72", payment_date: new Date("2023-01-23T17:00:44Z"), payment_status: "failed" },
            { id: 78, booking_id: 26, amount: "233.20", payment_date: null, payment_status: "pending" },
            { id: 79, booking_id: 56, amount: "1926.44", payment_date: null, payment_status: "completed" },
            { id: 80, booking_id: 129, amount: "297.43", payment_date: null, payment_status: "completed" },
            { id: 81, booking_id: 147, amount: "474.72", payment_date: null, payment_status: "pending" },
            { id: 82, booking_id: 283, amount: "96.87", payment_date: null, payment_status: "pending" },
            { id: 83, booking_id: 36, amount: "56.71", payment_date: null, payment_status: "completed" },
            { id: 84, booking_id: 249, amount: "68.50", payment_date: null, payment_status: "pending" },
            { id: 85, booking_id: 293, amount: "52.98", payment_date: null, payment_status: "completed" },
            { id: 86, booking_id: 267, amount: "111.94", payment_date: null, payment_status: "completed" },
            { id: 87, booking_id: 226, amount: "1461.58", payment_date: null, payment_status: "completed" },
            { id: 88, booking_id: 264, amount: "450.00", payment_date: null, payment_status: "completed" },
            { id: 89, booking_id: 285, amount: "70.41", payment_date: null, payment_status: "pending" },
            { id: 90, booking_id: 115, amount: "174.78", payment_date: null, payment_status: "pending" },
            { id: 91, booking_id: 60, amount: "1196.31", payment_date: null, payment_status: "pending" },
            { id: 92, booking_id: 130, amount: "184.27", payment_date: null, payment_status: "pending" },
            { id: 93, booking_id: 280, amount: "50.64", payment_date: null, payment_status: "pending" },
            { id: 94, booking_id: 142, amount: "50.04", payment_date: null, payment_status: "completed" },
            { id: 95, booking_id: 131, amount: "413.38", payment_date: null, payment_status: "completed" },
            { id: 96, booking_id: 254, amount: "1885.41", payment_date: null, payment_status: "pending" },
            { id: 97, booking_id: 22, amount: "71.93", payment_date: null, payment_status: "completed" },
            { id: 98, booking_id: 1, amount: "633.69", payment_date: null, payment_status: "completed" },
            { id: 99, booking_id: 154, amount: "461.73", payment_date: null, payment_status: "pending" },
            { id: 100, booking_id: 296, amount: "51.96", payment_date: null, payment_status: "completed" },
            { id: 101, booking_id: 20, amount: "1037.31", payment_date: null, payment_status: "completed" },
            { id: 102, booking_id: 121, amount: "1343.90", payment_date: null, payment_status: "pending" },
            { id: 103, booking_id: 214, amount: "1116.70", payment_date: new Date("2023-07-13T06:09:26Z"), payment_status: "failed" },
            { id: 104, booking_id: 250, amount: "253.74", payment_date: null, payment_status: "pending" },
            { id: 105, booking_id: 111, amount: "50.10", payment_date: null, payment_status: "completed" },
            { id: 106, booking_id: 171, amount: "1365.20", payment_date: null, payment_status: "completed" },
            { id: 107, booking_id: 70, amount: "61.30", payment_date: null, payment_status: "pending" },
            { id: 108, booking_id: 137, amount: "1869.67", payment_date: new Date("2023-10-18T06:14:57Z"), payment_status: "failed" },
            { id: 109, booking_id: 168, amount: "51.62", payment_date: null, payment_status: "completed" },
            { id: 110, booking_id: 280, amount: "813.67", payment_date: null, payment_status: "pending" },
            { id: 111, booking_id: 147, amount: "148.27", payment_date: null, payment_status: "completed" },
            { id: 112, booking_id: 183, amount: "1746.57", payment_date: null, payment_status: "pending" },
            { id: 113, booking_id: 22, amount: "167.41", payment_date: null, payment_status: "completed" },
            { id: 114, booking_id: 66, amount: "61.81", payment_date: null, payment_status: "completed" },
            { id: 115, booking_id: 8, amount: "947.56", payment_date: null, payment_status: "completed" },
            { id: 116, booking_id: 77, amount: "974.57", payment_date: null, payment_status: "completed" },
            { id: 117, booking_id: 145, amount: "51.76", payment_date: null, payment_status: "completed" },
            { id: 118, booking_id: 53, amount: "77.82", payment_date: null, payment_status: "pending" },
            { id: 119, booking_id: 146, amount: "660.78", payment_date: null, payment_status: "completed" },
            { id: 120, booking_id: 252, amount: "1008.82", payment_date: null, payment_status: "completed" },
            { id: 121, booking_id: 299, amount: "981.78", payment_date: null, payment_status: "completed" },
            { id: 122, booking_id: 127, amount: "62.94", payment_date: null, payment_status: "completed" },
            { id: 123, booking_id: 277, amount: "1389.82", payment_date: null, payment_status: "completed" },
            { id: 124, booking_id: 266, amount: "1695.58", payment_date: null, payment_status: "pending" },
            { id: 125, booking_id: 59, amount: "262.98", payment_date: null, payment_status: "completed" },
            { id: 126, booking_id: 240, amount: "56.68", payment_date: null, payment_status: "completed" },
            { id: 127, booking_id: 4, amount: "824.35", payment_date: null, payment_status: "pending" },
            { id: 128, booking_id: 135, amount: "239.05", payment_date: null, payment_status: "pending" },
            { id: 129, booking_id: 3, amount: "505.71", payment_date: new Date("2023-07-22T19:20:06Z"), payment_status: "failed" },
            { id: 130, booking_id: 56, amount: "163.92", payment_date: null, payment_status: "pending" },
            { id: 131, booking_id: 211, amount: "105.47", payment_date: null, payment_status: "completed" },
            { id: 132, booking_id: 3, amount: "535.06", payment_date: null, payment_status: "completed" },
            { id: 133, booking_id: 228, amount: "1713.68", payment_date: null, payment_status: "pending" },
            { id: 134, booking_id: 238, amount: "658.98", payment_date: null, payment_status: "completed" },
            { id: 135, booking_id: 187, amount: "1499.48", payment_date: null, payment_status: "completed" },
            { id: 136, booking_id: 107, amount: "1180.28", payment_date: null, payment_status: "completed" },
            { id: 137, booking_id: 209, amount: "52.60", payment_date: null, payment_status: "pending" },
            { id: 138, booking_id: 16, amount: "70.40", payment_date: null, payment_status: "completed" },
            { id: 139, booking_id: 207, amount: "1241.54", payment_date: null, payment_status: "pending" },
            { id: 140, booking_id: 271, amount: "1866.94", payment_date: null, payment_status: "completed" },
            { id: 141, booking_id: 72, amount: "970.89", payment_date: null, payment_status: "completed" },
            { id: 142, booking_id: 164, amount: "50.00", payment_date: null, payment_status: "pending" },
            { id: 143, booking_id: 269, amount: "1054.62", payment_date: null, payment_status: "completed" },
            { id: 144, booking_id: 136, amount: "391.45", payment_date: null, payment_status: "pending" },
            { id: 145, booking_id: 300, amount: "100.62", payment_date: null, payment_status: "completed" },
            { id: 146, booking_id: 192, amount: "1453.16", payment_date: null, payment_status: "pending" },
            { id: 147, booking_id: 286, amount: "721.08", payment_date: null, payment_status: "completed" },
            { id: 148, booking_id: 211, amount: "50.02", payment_date: null, payment_status: "pending" },
            { id: 149, booking_id: 99, amount: "119.23", payment_date: null, payment_status: "pending" },
            { id: 150, booking_id: 17, amount: "1930.15", payment_date: null, payment_status: "completed" },
            { id: 151, booking_id: 196, amount: "53.50", payment_date: null, payment_status: "pending" },
            { id: 152, booking_id: 234, amount: "53.34", payment_date: null, payment_status: "pending" },
            { id: 153, booking_id: 59, amount: "50.10", payment_date: null, payment_status: "completed" },
            { id: 154, booking_id: 281, amount: "50.08", payment_date: null, payment_status: "pending" },
            { id: 155, booking_id: 17, amount: "58.32", payment_date: null, payment_status: "pending" },
            { id: 156, booking_id: 271, amount: "743.44", payment_date: null, payment_status: "completed" },
            { id: 157, booking_id: 76, amount: "545.83", payment_date: null, payment_status: "pending" },
            { id: 158, booking_id: 48, amount: "50.32", payment_date: null, payment_status: "completed" },
            { id: 159, booking_id: 224, amount: "1142.04", payment_date: null, payment_status: "completed" },
            { id: 160, booking_id: 83, amount: "418.40", payment_date: null, payment_status: "completed" },
            { id: 161, booking_id: 140, amount: "461.08", payment_date: null, payment_status: "pending" },
            { id: 162, booking_id: 3, amount: "531.63", payment_date: null, payment_status: "completed" },
            { id: 163, booking_id: 104, amount: "50.03", payment_date: null, payment_status: "pending" },
            { id: 164, booking_id: 86, amount: "506.53", payment_date: null, payment_status: "pending" },
            { id: 165, booking_id: 146, amount: "308.77", payment_date: null, payment_status: "pending" },
            { id: 166, booking_id: 78, amount: "58.23", payment_date: null, payment_status: "completed" },
            { id: 167, booking_id: 45, amount: "234.18", payment_date: null, payment_status: "pending" },
            { id: 168, booking_id: 194, amount: "95.06", payment_date: new Date("2023-04-25T22:17:10Z"), payment_status: "failed" },
            { id: 169, booking_id: 161, amount: "215.69", payment_date: null, payment_status: "completed" },
            { id: 170, booking_id: 43, amount: "52.76", payment_date: null, payment_status: "completed" },
            { id: 171, booking_id: 17, amount: "860.55", payment_date: null, payment_status: "completed" },
            { id: 172, booking_id: 158, amount: "72.77", payment_date: null, payment_status: "pending" },
            { id: 173, booking_id: 260, amount: "71.15", payment_date: null, payment_status: "pending" },
            { id: 174, booking_id: 123, amount: "250.86", payment_date: null, payment_status: "completed" },
            { id: 175, booking_id: 151, amount: "105.99", payment_date: null, payment_status: "pending" },
            { id: 176, booking_id: 172, amount: "531.68", payment_date: null, payment_status: "completed" },
            { id: 177, booking_id: 278, amount: "759.40", payment_date: new Date("2023-09-25T09:04:56Z"), payment_status: "failed" },
            { id: 178, booking_id: 293, amount: "1207.24", payment_date: new Date("2023-09-11T15:27:57Z"), payment_status: "failed" },
            { id: 179, booking_id: 54, amount: "81.06", payment_date: null, payment_status: "pending" },
            { id: 180, booking_id: 158, amount: "97.87", payment_date: null, payment_status: "completed" },
            { id: 181, booking_id: 46, amount: "61.81", payment_date: null, payment_status: "completed" },
            { id: 182, booking_id: 287, amount: "70.61", payment_date: null, payment_status: "completed" },
            { id: 183, booking_id: 182, amount: "125.19", payment_date: new Date("2023-03-10T19:02:31Z"), payment_status: "failed" },
            { id: 184, booking_id: 4, amount: "117.33", payment_date: null, payment_status: "pending" },
            { id: 185, booking_id: 175, amount: "102.15", payment_date: null, payment_status: "completed" },
            { id: 186, booking_id: 54, amount: "288.94", payment_date: null, payment_status: "pending" },
            { id: 187, booking_id: 56, amount: "163.39", payment_date: null, payment_status: "completed" },
            { id: 188, booking_id: 22, amount: "1090.84", payment_date: null, payment_status: "completed" },
            { id: 189, booking_id: 128, amount: "1021.81", payment_date: null, payment_status: "completed" },
            { id: 190, booking_id: 78, amount: "214.59", payment_date: null, payment_status: "completed" },
            { id: 191, booking_id: 208, amount: "1625.05", payment_date: null, payment_status: "pending" },
            { id: 192, booking_id: 160, amount: "355.92", payment_date: null, payment_status: "completed" },
            { id: 193, booking_id: 158, amount: "188.53", payment_date: null, payment_status: "pending" },
            { id: 194, booking_id: 139, amount: "53.21", payment_date: null, payment_status: "completed" },
            { id: 195, booking_id: 224, amount: "81.31", payment_date: null, payment_status: "pending" },
            { id: 196, booking_id: 248, amount: "145.39", payment_date: null, payment_status: "completed" },
            { id: 197, booking_id: 288, amount: "55.29", payment_date: new Date("2023-09-25T20:37:58Z"), payment_status: "failed" },
            { id: 198, booking_id: 207, amount: "1785.86", payment_date: null, payment_status: "completed" },
            { id: 199, booking_id: 176, amount: "51.06", payment_date: null, payment_status: "completed" },
            { id: 200, booking_id: 37, amount: "53.34", payment_date: null, payment_status: "pending" },
            { id: 201, booking_id: 95, amount: "286.83", payment_date: null, payment_status: "pending" },
            { id: 202, booking_id: 70, amount: "57.65", payment_date: null, payment_status: "pending" },
            { id: 203, booking_id: 62, amount: "98.59", payment_date: null, payment_status: "completed" },
            { id: 204, booking_id: 149, amount: "121.97", payment_date: null, payment_status: "pending" },
            { id: 205, booking_id: 220, amount: "66.41", payment_date: null, payment_status: "completed" },
            { id: 206, booking_id: 140, amount: "556.30", payment_date: null, payment_status: "completed" },
            { id: 207, booking_id: 156, amount: "648.93", payment_date: null, payment_status: "pending" },
            { id: 208, booking_id: 25, amount: "255.73", payment_date: null, payment_status: "completed" },
            { id: 209, booking_id: 106, amount: "81.25", payment_date: null, payment_status: "pending" },
            { id: 210, booking_id: 235, amount: "50.00", payment_date: null, payment_status: "completed" },
            { id: 211, booking_id: 119, amount: "1476.56", payment_date: null, payment_status: "completed" },
            { id: 212, booking_id: 205, amount: "315.62", payment_date: null, payment_status: "completed" },
            { id: 213, booking_id: 215, amount: "846.20", payment_date: new Date("2023-10-28T15:43:58Z"), payment_status: "failed" },
            { id: 214, booking_id: 138, amount: "197.98", payment_date: null, payment_status: "pending" },
            { id: 215, booking_id: 73, amount: "570.84", payment_date: null, payment_status: "completed" },
            { id: 216, booking_id: 140, amount: "76.10", payment_date: null, payment_status: "completed" },
            { id: 217, booking_id: 270, amount: "100.11", payment_date: null, payment_status: "pending" },
            { id: 218, booking_id: 45, amount: "733.80", payment_date: null, payment_status: "completed" },
            { id: 219, booking_id: 282, amount: "637.14", payment_date: null, payment_status: "completed" },
            { id: 220, booking_id: 7, amount: "135.07", payment_date: null, payment_status: "pending" },
            { id: 221, booking_id: 204, amount: "256.46", payment_date: null, payment_status: "completed" },
            { id: 222, booking_id: 131, amount: "1455.36", payment_date: null, payment_status: "pending" },
            { id: 223, booking_id: 96, amount: "61.49", payment_date: null, payment_status: "completed" },
            { id: 224, booking_id: 123, amount: "296.23", payment_date: null, payment_status: "pending" },
            { id: 225, booking_id: 166, amount: "986.01", payment_date: null, payment_status: "completed" },
            { id: 226, booking_id: 148, amount: "59.64", payment_date: null, payment_status: "pending" },
            { id: 227, booking_id: 41, amount: "348.35", payment_date: null, payment_status: "pending" },
            { id: 228, booking_id: 23, amount: "142.52", payment_date: null, payment_status: "completed" },
            { id: 229, booking_id: 236, amount: "154.18", payment_date: null, payment_status: "completed" },
            { id: 230, booking_id: 67, amount: "1231.74", payment_date: new Date("2023-04-26T09:36:01Z"), payment_status: "failed" },
            { id: 231, booking_id: 74, amount: "1130.63", payment_date: null, payment_status: "completed" },
            { id: 232, booking_id: 195, amount: "1114.16", payment_date: null, payment_status: "completed" },
            { id: 233, booking_id: 186, amount: "589.63", payment_date: null, payment_status: "completed" },
            { id: 234, booking_id: 52, amount: "124.72", payment_date: null, payment_status: "pending" },
            { id: 235, booking_id: 63, amount: "87.30", payment_date: null, payment_status: "pending" },
            { id: 236, booking_id: 286, amount: "102.09", payment_date: null, payment_status: "pending" },
            { id: 237, booking_id: 62, amount: "75.82", payment_date: null, payment_status: "completed" },
            { id: 238, booking_id: 181, amount: "376.41", payment_date: null, payment_status: "completed" },
            { id: 239, booking_id: 188, amount: "186.30", payment_date: null, payment_status: "pending" },
            { id: 240, booking_id: 173, amount: "61.41", payment_date: null, payment_status: "pending" },
            { id: 241, booking_id: 213, amount: "84.98", payment_date: null, payment_status: "completed" },
            { id: 242, booking_id: 95, amount: "388.56", payment_date: null, payment_status: "completed" },
            { id: 243, booking_id: 102, amount: "554.42", payment_date: null, payment_status: "pending" },
            { id: 244, booking_id: 43, amount: "956.48", payment_date: null, payment_status: "completed" },
            { id: 245, booking_id: 91, amount: "531.16", payment_date: new Date("2023-06-22T19:50:51Z"), payment_status: "failed" },
            { id: 246, booking_id: 236, amount: "89.61", payment_date: null, payment_status: "pending" },
            { id: 247, booking_id: 285, amount: "1301.32", payment_date: null, payment_status: "pending" },
            { id: 248, booking_id: 221, amount: "67.16", payment_date: null, payment_status: "pending" },
            { id: 249, booking_id: 46, amount: "117.52", payment_date: null, payment_status: "pending" },
            { id: 250, booking_id: 61, amount: "966.28", payment_date: null, payment_status: "pending" },
            { id: 251, booking_id: 48, amount: "1285.45", payment_date: null, payment_status: "completed" },
            { id: 252, booking_id: 33, amount: "1239.53", payment_date: null, payment_status: "pending" },
            { id: 253, booking_id: 185, amount: "1634.25", payment_date: null, payment_status: "completed" },
            { id: 254, booking_id: 298, amount: "458.65", payment_date: null, payment_status: "pending" },
            { id: 255, booking_id: 57, amount: "370.35", payment_date: null, payment_status: "pending" },
            { id: 256, booking_id: 85, amount: "633.02", payment_date: null, payment_status: "completed" },
            { id: 257, booking_id: 286, amount: "1032.89", payment_date: null, payment_status: "pending" },
            { id: 258, booking_id: 229, amount: "197.51", payment_date: null, payment_status: "completed" },
            { id: 259, booking_id: 208, amount: "655.47", payment_date: null, payment_status: "pending" },
            { id: 260, booking_id: 218, amount: "573.40", payment_date: null, payment_status: "completed" },
            { id: 261, booking_id: 290, amount: "1654.41", payment_date: null, payment_status: "completed" },
            { id: 262, booking_id: 124, amount: "217.61", payment_date: null, payment_status: "pending" },
            { id: 263, booking_id: 150, amount: "282.80", payment_date: new Date("2023-07-04T08:31:00Z"), payment_status: "failed" },
            { id: 264, booking_id: 278, amount: "450.14", payment_date: null, payment_status: "completed" },
            { id: 265, booking_id: 60, amount: "106.02", payment_date: new Date("2023-08-25T18:20:19Z"), payment_status: "failed" },
            { id: 266, booking_id: 174, amount: "867.77", payment_date: null, payment_status: "completed" },
            { id: 267, booking_id: 111, amount: "58.84", payment_date: null, payment_status: "pending" },
            { id: 268, booking_id: 124, amount: "117.24", payment_date: null, payment_status: "completed" },
            { id: 269, booking_id: 209, amount: "641.11", payment_date: null, payment_status: "pending" },
            { id: 270, booking_id: 267, amount: "896.90", payment_date: null, payment_status: "completed" },
            { id: 271, booking_id: 273, amount: "477.12", payment_date: null, payment_status: "pending" },
            { id: 272, booking_id: 28, amount: "1680.40", payment_date: null, payment_status: "completed" },
            { id: 273, booking_id: 28, amount: "94.16", payment_date: null, payment_status: "completed" },
            { id: 274, booking_id: 193, amount: "653.95", payment_date: null, payment_status: "completed" },
            { id: 275, booking_id: 281, amount: "71.37", payment_date: null, payment_status: "completed" },
            { id: 276, booking_id: 247, amount: "411.28", payment_date: null, payment_status: "pending" },
            { id: 277, booking_id: 187, amount: "137.64", payment_date: null, payment_status: "completed" },
            { id: 278, booking_id: 153, amount: "1158.62", payment_date: null, payment_status: "completed" },
            { id: 279, booking_id: 252, amount: "1485.66", payment_date: null, payment_status: "pending" },
            { id: 280, booking_id: 270, amount: "673.97", payment_date: null, payment_status: "pending" },
            { id: 281, booking_id: 250, amount: "50.40", payment_date: null, payment_status: "completed" },
            { id: 282, booking_id: 96, amount: "448.58", payment_date: null, payment_status: "completed" },
            { id: 283, booking_id: 126, amount: "125.48", payment_date: null, payment_status: "completed" },
            { id: 284, booking_id: 45, amount: "223.69", payment_date: null, payment_status: "completed" },
            { id: 285, booking_id: 75, amount: "1873.68", payment_date: new Date("2023-03-01T12:58:06Z"), payment_status: "failed" },
            { id: 286, booking_id: 279, amount: "50.09", payment_date: null, payment_status: "completed" },
            { id: 287, booking_id: 40, amount: "106.02", payment_date: null, payment_status: "completed" },
            { id: 288, booking_id: 87, amount: "684.56", payment_date: null, payment_status: "pending" },
            { id: 289, booking_id: 243, amount: "1369.29", payment_date: null, payment_status: "completed" },
            { id: 290, booking_id: 24, amount: "67.22", payment_date: null, payment_status: "pending" },
            { id: 291, booking_id: 91, amount: "496.00", payment_date: null, payment_status: "pending" },
            { id: 292, booking_id: 33, amount: "50.36", payment_date: null, payment_status: "completed" },
            { id: 293, booking_id: 87, amount: "123.91", payment_date: null, payment_status: "completed" },
            { id: 294, booking_id: 138, amount: "213.33", payment_date: null, payment_status: "completed" },
            { id: 295, booking_id: 148, amount: "58.86", payment_date: null, payment_status: "completed" },
            { id: 296, booking_id: 199, amount: "64.84", payment_date: null, payment_status: "pending" },
            { id: 297, booking_id: 82, amount: "65.69", payment_date: null, payment_status: "completed" },
            { id: 298, booking_id: 166, amount: "129.24", payment_date: null, payment_status: "completed" },
            { id: 299, booking_id: 187, amount: "50.01", payment_date: null, payment_status: "completed" },
            { id: 300, booking_id: 189, amount: "454.68", payment_date: null, payment_status: "completed" },
        ],
    });
    await prisma.seasonal_rates.createMany({
        data: [
            { id: 1, room_id: 4, season: "low", seasonal_price: null, discount_percentage: "20.91", room_capacity: 3 },
            { id: 2, room_id: 37, season: "high", seasonal_price: "148.42", discount_percentage: "15.09", room_capacity: 2 },
            { id: 3, room_id: 42, season: "high", seasonal_price: "562.77", discount_percentage: "16.58", room_capacity: 2 },
            { id: 4, room_id: 43, season: "high", seasonal_price: "479.15", discount_percentage: "11.19", room_capacity: 2 },
            { id: 5, room_id: 17, season: "low", seasonal_price: null, discount_percentage: "16.25", room_capacity: 3 },
            { id: 6, room_id: 6, season: "high", seasonal_price: "179.32", discount_percentage: "11.45", room_capacity: 2 },
            { id: 7, room_id: 28, season: "low", seasonal_price: null, discount_percentage: "20.19", room_capacity: 2 },
            { id: 8, room_id: 37, season: "low", seasonal_price: null, discount_percentage: "19.29", room_capacity: 3 },
            { id: 9, room_id: 25, season: "low", seasonal_price: null, discount_percentage: "22.50", room_capacity: 3 },
            { id: 10, room_id: 3, season: "mid", seasonal_price: "53.27", discount_percentage: "15.29", room_capacity: 3 },
            { id: 11, room_id: 13, season: "low", seasonal_price: null, discount_percentage: "14.44", room_capacity: 2 },
            { id: 12, room_id: 22, season: "low", seasonal_price: null, discount_percentage: "10.54", room_capacity: 2 },
            { id: 13, room_id: 9, season: "high", seasonal_price: "239.92", discount_percentage: "18.12", room_capacity: 2 },
            { id: 14, room_id: 44, season: "mid", seasonal_price: "88.77", discount_percentage: "17.91", room_capacity: 3 },
            { id: 15, room_id: 7, season: "high", seasonal_price: "345.99", discount_percentage: "17.29", room_capacity: 2 },
            { id: 16, room_id: 32, season: "low", seasonal_price: null, discount_percentage: "7.07", room_capacity: 3 },
            { id: 17, room_id: 46, season: "low", seasonal_price: null, discount_percentage: "16.67", room_capacity: 3 },
            { id: 18, room_id: 29, season: "low", seasonal_price: null, discount_percentage: "14.08", room_capacity: 2 },
            { id: 19, room_id: 33, season: "low", seasonal_price: null, discount_percentage: "16.94", room_capacity: 2 },
            { id: 20, room_id: 26, season: "low", seasonal_price: null, discount_percentage: "20.85", room_capacity: 3 },
            { id: 21, room_id: 28, season: "low", seasonal_price: null, discount_percentage: "9.87", room_capacity: 2 },
            { id: 22, room_id: 39, season: "high", seasonal_price: "118.37", discount_percentage: "20.53", room_capacity: 3 },
            { id: 23, room_id: 49, season: "mid", seasonal_price: "305.36", discount_percentage: "22.63", room_capacity: 3 },
            { id: 24, room_id: 16, season: "low", seasonal_price: null, discount_percentage: "17.61", room_capacity: 2 },
            { id: 25, room_id: 25, season: "high", seasonal_price: "491.05", discount_percentage: "14.64", room_capacity: 2 },
            { id: 26, room_id: 15, season: "high", seasonal_price: "375.93", discount_percentage: "22.77", room_capacity: 3 },
            { id: 27, room_id: 42, season: "high", seasonal_price: "553.03", discount_percentage: "23.45", room_capacity: 3 },
            { id: 28, room_id: 2, season: "low", seasonal_price: null, discount_percentage: "17.49", room_capacity: 3 },
            { id: 29, room_id: 18, season: "low", seasonal_price: null, discount_percentage: "18.86", room_capacity: 3 },
            { id: 30, room_id: 3, season: "mid", seasonal_price: "309.18", discount_percentage: "19.85", room_capacity: 3 },
            { id: 31, room_id: 28, season: "low", seasonal_price: null, discount_percentage: "13.73", room_capacity: 2 },
            { id: 32, room_id: 12, season: "low", seasonal_price: null, discount_percentage: "18.63", room_capacity: 3 },
            { id: 33, room_id: 19, season: "low", seasonal_price: null, discount_percentage: "19.07", room_capacity: 2 },
            { id: 34, room_id: 29, season: "low", seasonal_price: null, discount_percentage: "18.10", room_capacity: 3 },
            { id: 35, room_id: 17, season: "low", seasonal_price: null, discount_percentage: "11.29", room_capacity: 3 },
            { id: 36, room_id: 22, season: "mid", seasonal_price: "596.60", discount_percentage: "18.38", room_capacity: 3 },
            { id: 37, room_id: 5, season: "low", seasonal_price: null, discount_percentage: "21.36", room_capacity: 2 },
            { id: 38, room_id: 19, season: "low", seasonal_price: null, discount_percentage: "14.73", room_capacity: 2 },
            { id: 39, room_id: 45, season: "high", seasonal_price: "573.30", discount_percentage: "17.38", room_capacity: 3 },
            { id: 40, room_id: 29, season: "low", seasonal_price: null, discount_percentage: "13.45", room_capacity: 3 },
            { id: 41, room_id: 14, season: "high", seasonal_price: "120.02", discount_percentage: "17.48", room_capacity: 2 },
            { id: 42, room_id: 37, season: "mid", seasonal_price: "327.22", discount_percentage: "15.81", room_capacity: 2 },
            { id: 43, room_id: 2, season: "low", seasonal_price: null, discount_percentage: "12.17", room_capacity: 2 },
            { id: 44, room_id: 33, season: "low", seasonal_price: null, discount_percentage: "16.05", room_capacity: 2 },
            { id: 45, room_id: 35, season: "high", seasonal_price: "478.41", discount_percentage: "13.39", room_capacity: 3 },
            { id: 46, room_id: 33, season: "low", seasonal_price: null, discount_percentage: "15.18", room_capacity: 3 },
            { id: 47, room_id: 17, season: "low", seasonal_price: null, discount_percentage: "18.73", room_capacity: 3 },
            { id: 48, room_id: 16, season: "low", seasonal_price: null, discount_percentage: "17.29", room_capacity: 2 },
            { id: 49, room_id: 2, season: "mid", seasonal_price: "324.07", discount_percentage: "20.82", room_capacity: 3 },
            { id: 50, room_id: 32, season: "low", seasonal_price: null, discount_percentage: "16.45", room_capacity: 2 },
            { id: 51, room_id: 15, season: "low", seasonal_price: null, discount_percentage: "17.12", room_capacity: 3 },
            { id: 52, room_id: 18, season: "mid", seasonal_price: "124.29", discount_percentage: "14.03", room_capacity: 3 },
            { id: 53, room_id: 4, season: "low", seasonal_price: null, discount_percentage: "15.40", room_capacity: 3 },
            { id: 54, room_id: 20, season: "mid", seasonal_price: "65.09", discount_percentage: "16.66", room_capacity: 3 },
            { id: 55, room_id: 25, season: "high", seasonal_price: "99.55", discount_percentage: "21.85", room_capacity: 3 },
            { id: 56, room_id: 45, season: "low", seasonal_price: null, discount_percentage: "15.56", room_capacity: 3 },
            { id: 57, room_id: 20, season: "mid", seasonal_price: "343.40", discount_percentage: "11.93", room_capacity: 2 },
            { id: 58, room_id: 31, season: "low", seasonal_price: null, discount_percentage: "18.83", room_capacity: 2 },
            { id: 59, room_id: 1, season: "low", seasonal_price: null, discount_percentage: "19.65", room_capacity: 3 },
            { id: 60, room_id: 8, season: "mid", seasonal_price: "393.58", discount_percentage: "23.17", room_capacity: 2 },
            { id: 61, room_id: 10, season: "mid", seasonal_price: "111.84", discount_percentage: "15.76", room_capacity: 2 },
            { id: 62, room_id: 18, season: "high", seasonal_price: "220.56", discount_percentage: "16.67", room_capacity: 3 },
            { id: 63, room_id: 24, season: "low", seasonal_price: null, discount_percentage: "17.66", room_capacity: 2 },
            { id: 64, room_id: 9, season: "mid", seasonal_price: "336.70", discount_percentage: "18.42", room_capacity: 2 },
            { id: 65, room_id: 31, season: "low", seasonal_price: null, discount_percentage: "15.91", room_capacity: 2 },
            { id: 66, room_id: 5, season: "high", seasonal_price: "68.51", discount_percentage: "16.98", room_capacity: 3 },
            { id: 67, room_id: 10, season: "mid", seasonal_price: "282.28", discount_percentage: "19.11", room_capacity: 2 },
            { id: 68, room_id: 41, season: "high", seasonal_price: "75.52", discount_percentage: "20.79", room_capacity: 2 },
            { id: 69, room_id: 24, season: "low", seasonal_price: null, discount_percentage: "14.69", room_capacity: 3 },
            { id: 70, room_id: 41, season: "low", seasonal_price: null, discount_percentage: "18.02", room_capacity: 3 },
            { id: 71, room_id: 15, season: "low", seasonal_price: null, discount_percentage: "20.08", room_capacity: 2 },
            { id: 72, room_id: 28, season: "mid", seasonal_price: "53.33", discount_percentage: "18.08", room_capacity: 3 },
            { id: 73, room_id: 42, season: "low", seasonal_price: null, discount_percentage: "24.75", room_capacity: 2 },
            { id: 74, room_id: 7, season: "low", seasonal_price: null, discount_percentage: "10.98", room_capacity: 3 },
            { id: 75, room_id: 46, season: "mid", seasonal_price: "106.81", discount_percentage: "12.53", room_capacity: 3 },
            { id: 76, room_id: 31, season: "low", seasonal_price: null, discount_percentage: "19.16", room_capacity: 3 },
            { id: 77, room_id: 10, season: "high", seasonal_price: "565.88", discount_percentage: "16.67", room_capacity: 3 },
            { id: 78, room_id: 41, season: "low", seasonal_price: null, discount_percentage: "15.31", room_capacity: 3 },
            { id: 79, room_id: 17, season: "mid", seasonal_price: "55.97", discount_percentage: "12.42", room_capacity: 3 },
            { id: 80, room_id: 47, season: "mid", seasonal_price: "568.86", discount_percentage: "21.47", room_capacity: 2 },
            { id: 81, room_id: 20, season: "low", seasonal_price: null, discount_percentage: "13.35", room_capacity: 2 },
            { id: 82, room_id: 23, season: "mid", seasonal_price: "55.60", discount_percentage: "13.94", room_capacity: 3 },
            { id: 83, room_id: 20, season: "high", seasonal_price: "54.75", discount_percentage: "15.00", room_capacity: 2 },
            { id: 84, room_id: 16, season: "high", seasonal_price: "179.80", discount_percentage: "19.83", room_capacity: 2 },
            { id: 85, room_id: 2, season: "low", seasonal_price: null, discount_percentage: "13.61", room_capacity: 3 },
            { id: 86, room_id: 1, season: "low", seasonal_price: null, discount_percentage: "15.32", room_capacity: 3 },
            { id: 87, room_id: 12, season: "mid", seasonal_price: "225.99", discount_percentage: "21.13", room_capacity: 3 },
            { id: 88, room_id: 27, season: "low", seasonal_price: null, discount_percentage: "21.90", room_capacity: 2 },
            { id: 89, room_id: 33, season: "low", seasonal_price: null, discount_percentage: "15.24", room_capacity: 2 },
            { id: 90, room_id: 42, season: "low", seasonal_price: null, discount_percentage: "20.80", room_capacity: 3 },
            { id: 91, room_id: 34, season: "mid", seasonal_price: "283.16", discount_percentage: "14.45", room_capacity: 2 },
            { id: 92, room_id: 45, season: "high", seasonal_price: "284.20", discount_percentage: "11.53", room_capacity: 3 },
            { id: 93, room_id: 1, season: "low", seasonal_price: null, discount_percentage: "17.54", room_capacity: 2 },
            { id: 94, room_id: 2, season: "low", seasonal_price: null, discount_percentage: "22.24", room_capacity: 3 },
            { id: 95, room_id: 1, season: "mid", seasonal_price: "273.15", discount_percentage: "21.18", room_capacity: 2 },
            { id: 96, room_id: 25, season: "mid", seasonal_price: "572.28", discount_percentage: "12.13", room_capacity: 3 },
            { id: 97, room_id: 46, season: "low", seasonal_price: null, discount_percentage: "19.10", room_capacity: 3 },
            { id: 98, room_id: 33, season: "high", seasonal_price: "271.99", discount_percentage: "12.33", room_capacity: 2 },
            { id: 99, room_id: 5, season: "low", seasonal_price: null, discount_percentage: "11.49", room_capacity: 2 },
            { id: 100, room_id: 48, season: "mid", seasonal_price: "371.63", discount_percentage: "15.43", room_capacity: 2 },
        ],
    });
}

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