-- ========================================
-- 02-insert-agents.sql
-- Segunda Carga Masiva Open Insurance
-- ========================================

-- IMPORTANT: 420 registros (371 Agents + 49 Agencies)
-- CRITICAL: DOS jerarquías de IDs separadas:
--   Jerarquía 1: person.id = real_person.id = legal_person.id
--   Jerarquía 2: general_agent.id = agent.id = agency.id
--   Vinculación: agent.real_person_id → person.id

-- Variables para IDs - DOS SECUENCIAS SEPARADAS
SET @person_id = (SELECT COALESCE(MAX(id), 0) + 1 FROM person);
SET @general_agent_id = (SELECT COALESCE(MAX(id), 0) + 1 FROM general_agent);
SET @email_id = (SELECT COALESCE(MAX(id), 0) + 1 FROM email);
SET @phone_id = (SELECT COALESCE(MAX(id), 0) + 1 FROM phone);
SET @address_id = (SELECT COALESCE(MAX(id), 0) + 1 FROM address);

-- [1/420] AGENCY: Open Insurance LLC

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Open Insurance LLC', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'support@openinsurances.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '954-632-6437', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Open Insurance LLC',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [2/420] AGENT: Jason Wagner

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jason Wagner', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jason@westcoastri.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '818-788-5353', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jason', 'Wagner');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jason Wagner',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [3/420] AGENT: Daniel Feigenbaum

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Daniel Feigenbaum', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'info@mibrk.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '866-729-1274', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Daniel', 'Feigenbaum');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Daniel Feigenbaum',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [4/420] AGENT: Juan Carlos Fernandez Aleman

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Juan Carlos Fernandez Aleman', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jJfernandez@openinsurances.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '582122665126', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Juan', 'Carlos', 'Fernandez Aleman');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Juan Carlos Fernandez Aleman',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [5/420] AGENT: Isabel Fernandez Aleman

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Isabel Fernandez Aleman', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'luganocorporation@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '52 212 9918889', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Isabel', 'Fernandez', 'Aleman');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Isabel Fernandez Aleman',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [6/420] AGENCY: La Coordinadora La Coordinadora

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'La Coordinadora La Coordinadora', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'juancarlos.hijo@lacoordinadora.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58212-9936629', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'La Coordinadora La Coordinadora',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [7/420] AGENT: Jose Felipe Herrera Calcano

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jose Felipe Herrera Calcano', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'josefherrera@herreradelasota.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '212-700-1062', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jose', 'Felipe', 'Herrera Calcano');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jose Felipe Herrera Calcano',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [8/420] AGENT: Gonzalo Veloz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gonzalo Veloz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gonzalovelozr@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4113220393', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Gonzalo', 'Veloz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gonzalo Veloz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [9/420] AGENT: Ricardo Salas Martinez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ricardo Salas Martinez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'RASALASM@GMAIL.COM', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '=58-212-993-5115', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ricardo', 'Salas', 'Martinez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ricardo Salas Martinez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [10/420] AGENT: Anna Fusella

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Anna Fusella', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'annafusella@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0424 260 9991', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Anna', 'Fusella');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Anna Fusella',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [11/420] AGENT: Maria del Pilar Avendano Cisneros

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria del Pilar Avendano Cisneros', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'maripili.avendano@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '198-818-9770', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'del', 'Pilar Avendano Cisneros');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria del Pilar Avendano Cisneros',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [12/420] AGENT: Alfredo Jose Martinez Bermudez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alfredo Jose Martinez Bermudez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'segurosalfredomartinez@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584123033606', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Alfredo', 'Jose', 'Martinez Bermudez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alfredo Jose Martinez Bermudez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [13/420] AGENT: Wendy Moya

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Wendy Moya', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'w.moya1986@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4241495616', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Wendy', 'Moya');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Wendy Moya',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [14/420] AGENT: Maria Ciniglio

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Ciniglio', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Mariaelisa_piccolina@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '954-225-0411', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Maria', 'Ciniglio');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Ciniglio',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [15/420] AGENT: Ana Teresa Fernandez Aleman

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ana Teresa Fernandez Aleman', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'anatfernandez@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0212-993-51515', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ana', 'Teresa', 'Fernandez Aleman');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ana Teresa Fernandez Aleman',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [16/420] AGENCY: Ysmerai Loundior

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ysmerai Loundior', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'asesorylh@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '041-255-2905', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ysmerai Loundior',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [17/420] AGENT: Raquel Munoz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Raquel Munoz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'raquel.munoz1@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '407-437-5919', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Raquel', 'Munoz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Raquel Munoz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [18/420] AGENT: Dale Neuenschwander

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Dale Neuenschwander', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ava@boomers-in-paradise.org', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '011-52-376-106-0900', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Dale', 'Neuenschwander');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Dale Neuenschwander',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [19/420] AGENT: Lenny Trivino

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Lenny Trivino', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lennytrivino@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '573-138-8052', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Lenny', 'Trivino');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Lenny Trivino',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [20/420] AGENT: Luis Avila Merino

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Luis Avila Merino', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'msaez@pfpdevzla.net', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 (212) 285-2066', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Luis', 'Avila', 'Merino');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Luis Avila Merino',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [21/420] AGENT: Guillermo Ochoa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Guillermo Ochoa', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'iremaca@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '786-271-8990', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Guillermo', 'Ochoa');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Guillermo Ochoa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [22/420] AGENT: Paolo Nicolicchia

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Paolo Nicolicchia', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'paolo@pninsure.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '954-406-0161', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Paolo', 'Nicolicchia');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Paolo Nicolicchia',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [23/420] AGENT: Gustavo Rojas

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gustavo Rojas', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gustavorojasr@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '212-952-6210', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Gustavo', 'Rojas');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gustavo Rojas',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [24/420] AGENT: Gustavo Rojas

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gustavo Rojas', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gustavorojasr@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '212-952-6529', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Gustavo', 'Rojas');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gustavo Rojas',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [25/420] AGENCY: Ainola Iturralde

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ainola Iturralde', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'info@creska.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0 212-740-2323', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ainola Iturralde',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [26/420] AGENT: Kevin Ryan

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Kevin Ryan', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, '805kevin@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Kevin', 'Ryan');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Kevin Ryan',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [27/420] AGENCY: Ranjeeta Singh

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ranjeeta Singh', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'operations@lowendticket.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '609-553-4716', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ranjeeta Singh',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [28/420] AGENT: David Waich

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'David Waich', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'david@itravel.net', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '305-432-9992', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'David', 'Waich');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'David Waich',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [29/420] AGENT: Antonio Sanchez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Antonio Sanchez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gerencia@hputerman.net', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584122631055', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Antonio', 'Sanchez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Antonio Sanchez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [30/420] AGENT: Miguel Ratini

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Miguel Ratini', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mratini@strenint.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0212-9855047', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Miguel', 'Ratini');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Miguel Ratini',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [31/420] AGENT: Mark Wiersma

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Mark Wiersma', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mark.aswyn@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '=34-674521533', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Mark', 'Wiersma');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Mark Wiersma',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [32/420] AGENT: Alejandro Pages

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alejandro Pages', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rtsrisk@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '582-277-1811', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Alejandro', 'Pages');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alejandro Pages',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [33/420] AGENT: Cesar Michelangeli Cesar Michelangeli

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Cesar Michelangeli Cesar Michelangeli', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'cmseguros@yahoo.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '01158-212-2653182', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Cesar', 'Michelangeli', 'Cesar Michelangeli');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Cesar Michelangeli Cesar Michelangeli',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [34/420] AGENT: Luis Cercos Ruiz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Luis Cercos Ruiz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mcapriles@inexco.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-2661204', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Luis', 'Cercos', 'Ruiz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Luis Cercos Ruiz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [35/420] AGENT: Anabelle Fernandez Soto

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Anabelle Fernandez Soto', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'aseini01@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '506-2441-8004', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Anabelle', 'Fernandez', 'Soto');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Anabelle Fernandez Soto',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [36/420] AGENT: Mayda Acosta

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Mayda Acosta', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mrsegurosglobal@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-921-7648', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Mayda', 'Acosta');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Mayda Acosta',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [37/420] AGENCY: Mikelander Aldecoa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Mikelander Aldecoa', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'aldecoa@gia-asesores.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '011-58-242-414-0904', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Mikelander Aldecoa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [38/420] AGENT: Laura Tinoco de Gonzalez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Laura Tinoco de Gonzalez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'LAURAITINOCO@GMAIL.COM', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '011-58-212-987-3702', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Laura', 'Tinoco', 'de Gonzalez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Laura Tinoco de Gonzalez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [39/420] AGENT: ADONIS TOMEY

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'ADONIS TOMEY', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'adonistomey@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-261-798-2882', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'ADONIS', 'TOMEY');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'ADONIS TOMEY',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [40/420] AGENT: Grecia Alejandra Chacon Duran

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Grecia Alejandra Chacon Duran', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'grecia.chacon@gvrasociados.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-709-2073', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Grecia', 'Alejandra', 'Chacon Duran');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Grecia Alejandra Chacon Duran',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [41/420] AGENT: Alfredo Benedettti Punceles

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alfredo Benedettti Punceles', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'alfredo_benedetti@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 4242136024', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Alfredo', 'Benedettti', 'Punceles');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alfredo Benedettti Punceles',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [42/420] AGENT: JORGE LUIS MIRELES CRESPO

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'JORGE LUIS MIRELES CRESPO', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jlmireles@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-1330799', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'JORGE', 'LUIS', 'MIRELES CRESPO');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'JORGE LUIS MIRELES CRESPO',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [43/420] AGENT: JOHAN LEAL SALGUERO

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'JOHAN LEAL SALGUERO', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'presidencia@corredorleal.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '965-604-0807', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'JOHAN', 'LEAL', 'SALGUERO');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'JOHAN LEAL SALGUERO',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [44/420] AGENT: Julio Canas

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Julio Canas', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rcordero@allianceinsuranceflorida.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '786-853-9876', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Julio', 'Canas');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Julio Canas',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [45/420] AGENT: RAFAEL CORDERO

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'RAFAEL CORDERO', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rcordero@alliance.sc', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '786-853-9876', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'RAFAEL', 'CORDERO');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'RAFAEL CORDERO',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [46/420] AGENT: Oriana Marino

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Oriana Marino', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'info@alliance.sc', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-286-1172', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Oriana', 'Marino');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Oriana Marino',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [47/420] AGENT: Johnny Blatt

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Johnny Blatt', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'blattjohnny@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '305-587-5974', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Johnny', 'Blatt');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Johnny Blatt',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [48/420] AGENT: Tony Sosa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Tony Sosa', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'tony2259@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-323-4073', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Tony', 'Sosa');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Tony Sosa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [49/420] AGENT: Ricardo Villarroel

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ricardo Villarroel', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'villarroelasesores@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-303-8655', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Ricardo', 'Villarroel');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ricardo Villarroel',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [50/420] AGENT: GUSTAVO MASSIANI

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'GUSTAVO MASSIANI', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'GMASSIANI@YAHOO.COM', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'GUSTAVO', 'MASSIANI');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'GUSTAVO MASSIANI',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [51/420] AGENT: Eduardo Montero Gonzalez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Eduardo Montero Gonzalez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'monterogeduardo@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-261-7929532-18', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Eduardo', 'Montero', 'Gonzalez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Eduardo Montero Gonzalez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [52/420] AGENT: REINALDO LAINVILLE TIRADO

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'REINALDO LAINVILLE TIRADO', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lainville@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '011-58-412-288-5448', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'REINALDO', 'LAINVILLE', 'TIRADO');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'REINALDO LAINVILLE TIRADO',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [53/420] AGENT: Carlos Cordero Vazquez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Carlos Cordero Vazquez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'floridaassurance@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '786-450-0500', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Carlos', 'Cordero', 'Vazquez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Carlos Cordero Vazquez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [54/420] AGENCY: Jackleny Castro

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jackleny Castro', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jacklenycastro@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '9548923446', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jackleny Castro',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [55/420] AGENT: Marisela Franzius

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Marisela Franzius', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'careto.careto@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '582123351509', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Marisela', 'Franzius');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Marisela Franzius',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [56/420] AGENT: John Fredy Sanchez Sepulveda

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'John Fredy Sanchez Sepulveda', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jhonfredy32@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '786-498-0983', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'John', 'Fredy', 'Sanchez Sepulveda');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'John Fredy Sanchez Sepulveda',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [57/420] AGENT: Julio Salas Reyes

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Julio Salas Reyes', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'salasreyes@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584242535384', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Julio', 'Salas', 'Reyes');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Julio Salas Reyes',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [58/420] AGENT: Isidro Nava

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Isidro Nava', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'isidro.nava@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Isidro', 'Nava');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Isidro Nava',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [59/420] AGENT: Walter Patricelli

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Walter Patricelli', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'wpatricelli@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584123283142', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Walter', 'Patricelli');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Walter Patricelli',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [60/420] AGENT: Carlos Velarde

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Carlos Velarde', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'dualinsurances@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '573222884211', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Carlos', 'Velarde');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Carlos Velarde',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [61/420] AGENT: Sarai Tovar Martinez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Sarai Tovar Martinez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'sarai.tovar@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584143203653', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Sarai', 'Tovar', 'Martinez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Sarai Tovar Martinez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [62/420] AGENT: Jose Oliveira

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jose Oliveira', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jho@jholiveira.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584122611171', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jose', 'Oliveira');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jose Oliveira',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [63/420] AGENT: John Johnson Fischel

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'John Johnson Fischel', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jmjohnson.jc@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584143162363', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'John', 'Johnson', 'Fischel');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'John Johnson Fischel',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [64/420] AGENT: Andrea Sofia Reyes Arvelo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Andrea Sofia Reyes Arvelo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'andrea.sofia.reyes@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-318-2640', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Andrea', 'Sofia', 'Reyes Arvelo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Andrea Sofia Reyes Arvelo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [65/420] AGENT: Servio Tulio Rangel

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Servio Tulio Rangel', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'serviorp@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Servio', 'Tulio', 'Rangel');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Servio Tulio Rangel',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [66/420] AGENT: Ana Clemencia Vivas

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ana Clemencia Vivas', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'anaclemencia.vivas@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-229-0030', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ana', 'Clemencia', 'Vivas');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ana Clemencia Vivas',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [67/420] AGENT: Adriana Rivas

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Adriana Rivas', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'unibrokers01@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-132-1132', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Adriana', 'Rivas');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Adriana Rivas',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [68/420] AGENT: Salomon Abadi

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Salomon Abadi', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'salomon.abadi@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '305-903-7245', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Salomon', 'Abadi');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Salomon Abadi',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [69/420] AGENT: Marysol Roca Marysol Roca

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Marysol Roca Marysol Roca', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'marysolroca73@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '305-888-9228', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Marysol', 'Roca', 'Marysol Roca');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Marysol Roca Marysol Roca',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [70/420] AGENT: Alvaro Sucre Guruceaga

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alvaro Sucre Guruceaga', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'alvaro.sucre@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Alvaro', 'Sucre', 'Guruceaga');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alvaro Sucre Guruceaga',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [71/420] AGENT: Sofia Alejandra Fernandez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Sofia Alejandra Fernandez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'sofifm@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '305-570-3571', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Sofia', 'Alejandra', 'Fernandez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Sofia Alejandra Fernandez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [72/420] AGENT: Angela Viviana Sanchez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Angela Viviana Sanchez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'vivsanchez3118@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '786-491-8737', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Angela', 'Viviana', 'Sanchez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Angela Viviana Sanchez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [73/420] AGENT: Monserrat Feliu

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Monserrat Feliu', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mfeliug@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '51-989-940-967', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Monserrat', 'Feliu');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Monserrat Feliu',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [74/420] AGENT: Jenny Alvarado

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jenny Alvarado', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jalvarado@jaseguros.net', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-2414-530-3659', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jenny', 'Alvarado');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jenny Alvarado',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [75/420] AGENT: Andrea Figueroa Ravell

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Andrea Figueroa Ravell', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'andreafigueroaravell@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-2818565', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Andrea', 'Figueroa', 'Ravell');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Andrea Figueroa Ravell',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [76/420] AGENT: Luis Alberto Ricaurte Chumo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Luis Alberto Ricaurte Chumo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'luisricaurte12@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '593-997-475-526', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Luis', 'Alberto', 'Ricaurte Chumo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Luis Alberto Ricaurte Chumo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [77/420] AGENT: Ana Maria Chiriboga

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ana Maria Chiriboga', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'achiriboga@risuss.net', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '593-99263-0598', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ana', 'Maria', 'Chiriboga');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ana Maria Chiriboga',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [78/420] AGENT: Thais Moreno

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Thais Moreno', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'thaisalvarezdel@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-249-5241', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Thais', 'Moreno');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Thais Moreno',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [79/420] AGENT: Jacob Mizrahi

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jacob Mizrahi', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jacobmb28@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-154-8555', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jacob', 'Mizrahi');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jacob Mizrahi',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [80/420] AGENT: Maria Elisa Monaco

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Elisa Monaco', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mmonacoa@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-953-6923', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Elisa', 'Monaco');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Elisa Monaco',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [81/420] AGENT: Andreina Avellaneda

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Andreina Avellaneda', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'avellaneda.andreina@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-250-6880', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Andreina', 'Avellaneda');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Andreina Avellaneda',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [82/420] AGENT: Ascensio Cercio

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ascensio Cercio', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'acercio@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-626-2566', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Ascensio', 'Cercio');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ascensio Cercio',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [83/420] AGENT: Oriana Gabriela Marino Morales

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Oriana Gabriela Marino Morales', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'orianammorales@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-905-4607', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Oriana', 'Gabriela', 'Marino Morales');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Oriana Gabriela Marino Morales',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [84/420] AGENT: Jennifer Tomassetti

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jennifer Tomassetti', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jennifer.tomassetti@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-621-9070', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jennifer', 'Tomassetti');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jennifer Tomassetti',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [85/420] AGENT: David Eline

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'David Eline', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'sales@my-matchmaker.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '33-0-182-833-858', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'David', 'Eline');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'David Eline',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [86/420] AGENT: Vanessa Jimenez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Vanessa Jimenez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'vaned1988@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '561-319-8286', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Vanessa', 'Jimenez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Vanessa Jimenez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [87/420] AGENT: Jaime Rafael Inciarte Molero

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jaime Rafael Inciarte Molero', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jaimeinciarte@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-642-3579', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jaime', 'Rafael', 'Inciarte Molero');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jaime Rafael Inciarte Molero',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [88/420] AGENT: Jose Vargas Hungria

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jose Vargas Hungria', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'familyglobalcare@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-283-6991', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jose', 'Vargas', 'Hungria');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jose Vargas Hungria',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [89/420] AGENT: Rafael Jose Urribarri

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rafael Jose Urribarri', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'segurinternacional.urribarri@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-235-6434', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Rafael', 'Jose', 'Urribarri');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rafael Jose Urribarri',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [90/420] AGENT: Sandra Rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Sandra Rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'sandracrp@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-2414-918-5108', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Sandra', 'Rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Sandra Rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [91/420] AGENT: Adriana Yumar

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Adriana Yumar', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'yumar.adriana@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 414 2596854', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Adriana', 'Yumar');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Adriana Yumar',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [92/420] AGENT: Alfredo Troconis

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alfredo Troconis', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'altroco2012@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 412 9565445', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Alfredo', 'Troconis');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alfredo Troconis',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [93/420] AGENT: Ana Borga

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ana Borga', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'carolinaborga@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 212 7204686', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Ana', 'Borga');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ana Borga',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [94/420] AGENT: Ana Elizabeth Coll de Casado

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ana Elizabeth Coll de Casado', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'anaelizabethcoll@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 1290690', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ana', 'Elizabeth', 'Coll de Casado');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ana Elizabeth Coll de Casado',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [95/420] AGENT: Ana Teresa Celis

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ana Teresa Celis', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'anatcelisa@yahoo.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 2097110', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ana', 'Teresa', 'Celis');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ana Teresa Celis',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [96/420] AGENT: Ana Victoria Borga

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ana Victoria Borga', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'anavborga@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '1 202 6446928', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ana', 'Victoria', 'Borga');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ana Victoria Borga',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [97/420] AGENT: Anastasia Romero Tovar

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Anastasia Romero Tovar', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'anastasiaromerot@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 412 6143341', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Anastasia', 'Romero', 'Tovar');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Anastasia Romero Tovar',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [98/420] AGENT: Andreina Sucre

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Andreina Sucre', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'asucrecastro@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 414 9018865', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Andreina', 'Sucre');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Andreina Sucre',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [99/420] AGENT: Anita Tantino

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Anita Tantino', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'atcasesores24@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 424 3249361', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Anita', 'Tantino');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Anita Tantino',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [100/420] AGENT: Arturo Chirinos

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Arturo Chirinos', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rjchsegurosach@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 424 5485872', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Arturo', 'Chirinos');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Arturo Chirinos',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [101/420] AGENT: Belisa Vegas

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Belisa Vegas', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'belisavegas@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 416 6138979', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Belisa', 'Vegas');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Belisa Vegas',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [102/420] AGENT: Blanca Marlene Mayorca

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Blanca Marlene Mayorca', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'bmmayorca@yahoo.es', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 412 6290694', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Blanca', 'Marlene', 'Mayorca');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Blanca Marlene Mayorca',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [103/420] AGENT: Carlos Eduardo Guerra

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Carlos Eduardo Guerra', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'charliewar1980@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 212 5177889', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Carlos', 'Eduardo', 'Guerra');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Carlos Eduardo Guerra',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [104/420] AGENT: Claudia Guanipa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Claudia Guanipa', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'atcasesores24@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 5893238', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Claudia', 'Guanipa');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Claudia Guanipa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [105/420] AGENCY: Dharla Maldonado

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Dharla Maldonado', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'dmagds@yahoo.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Dharla Maldonado',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [106/420] AGENT: Diana Sosa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Diana Sosa', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'dianasosadevalensi@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 424 1633040', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Diana', 'Sosa');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Diana Sosa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [107/420] AGENCY: Dixon Gonzalez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Dixon Gonzalez', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'dixon2909@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 426 5130885', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Dixon Gonzalez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [108/420] AGENT: Fernando Santos

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Fernando Santos', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Fjsantos1993@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 412 2187700', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Fernando', 'Santos');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Fernando Santos',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [109/420] AGENT: Gianni Russo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gianni Russo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'giannirussom@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Gianni', 'Russo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gianni Russo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [110/420] AGENT: Gladys Moros

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gladys Moros', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gladysmoros@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+57 316 2994925', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Gladys', 'Moros');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gladys Moros',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [111/420] AGENT: Guillermo Ponte

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Guillermo Ponte', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'guillermo_ponte@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 424 1959993', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Guillermo', 'Ponte');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Guillermo Ponte',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [112/420] AGENT: Hector Gonzalez Pineda

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Hector Gonzalez Pineda', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'hectorgonzalezpineda@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 325 6894', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Hector', 'Gonzalez', 'Pineda');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Hector Gonzalez Pineda',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [113/420] AGENT: Irma Fernandez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Irma Fernandez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'irmacfw@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 1402372', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Irma', 'Fernandez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Irma Fernandez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [114/420] AGENCY: Jeannie Pacheco

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jeannie Pacheco', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jeanniepacheco@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 9111991', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jeannie Pacheco',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [115/420] AGENCY: Jenisse Arellano

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jenisse Arellano', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jenissearellano@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jenisse Arellano',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [116/420] AGENT: Jose Antonio Madriz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jose Antonio Madriz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'joseamadriz@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 412 3880026', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jose', 'Antonio', 'Madriz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jose Antonio Madriz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [117/420] AGENT: Jose Ignacio Sucre

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jose Ignacio Sucre', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'joseisucre@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 2501650', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jose', 'Ignacio', 'Sucre');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jose Ignacio Sucre',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [118/420] AGENT: Juan Ignacio Sucre

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Juan Ignacio Sucre', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mercadeo@valuecareins.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+34 670367464', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Juan', 'Ignacio', 'Sucre');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Juan Ignacio Sucre',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [119/420] AGENT: Rebeca Payares

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rebeca Payares', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'leopayares.kiamv@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 412 2345108', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Rebeca', 'Payares');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rebeca Payares',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [120/420] AGENT: Beatriz Grau

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Beatriz Grau', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'bcgrau@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 412 6083074', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Beatriz', 'Grau');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Beatriz Grau',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [121/420] AGENT: Ligia Jaimes

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ligia Jaimes', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ligiajaimes@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 412 2345108', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Ligia', 'Jaimes');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ligia Jaimes',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [122/420] AGENT: Rodolfo Casado

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rodolfo Casado', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rodjcr@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 2640564', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Rodolfo', 'Casado');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rodolfo Casado',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [123/420] AGENT: Rafael Diaz Lovera

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rafael Diaz Lovera', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'segurosinternacionales00@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 3320905', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Rafael', 'Diaz', 'Lovera');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rafael Diaz Lovera',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [124/420] AGENT: Lisbeth Perez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Lisbeth Perez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lisbethkarina2@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 412 2280832', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Lisbeth', 'Perez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Lisbeth Perez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [125/420] AGENT: Lorena Bracho

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Lorena Bracho', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lbracho.seguros@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 3290265', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Lorena', 'Bracho');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Lorena Bracho',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [126/420] AGENT: Magin Rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Magin Rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rodrimagin11@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 4594371', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Magin', 'Rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Magin Rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [127/420] AGENT: Manuel Andres Diaz Sucre

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Manuel Andres Diaz Sucre', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mdiazsucre78@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58\xa0414 0273560', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Manuel', 'Andres', 'Diaz Sucre');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Manuel Andres Diaz Sucre',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [128/420] AGENT: Maria Gabriela Vega

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Gabriela Vega', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'arq.mgv@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 8173066', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Gabriela', 'Vega');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Gabriela Vega',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [129/420] AGENT: Maria Valentina Diaz Sucre

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Valentina Diaz Sucre', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mariavalentinadiazsucre@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 424 1956168', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Valentina', 'Diaz Sucre');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Valentina Diaz Sucre',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [130/420] AGENT: Mary Fiorellys Barrios

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Mary Fiorellys Barrios', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'barriosfiorellys@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 3412671', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Mary', 'Fiorellys', 'Barrios');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Mary Fiorellys Barrios',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [131/420] AGENT: Natascha Benavides

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Natascha Benavides', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'bitacoraviajes@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 212 9759602', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Natascha', 'Benavides');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Natascha Benavides',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [132/420] AGENT: Rene Selem

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rene Selem', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'reneselem@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 3044870', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Rene', 'Selem');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rene Selem',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [133/420] AGENT: Sandra Rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Sandra Rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'sr0772@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 412 8081120', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Sandra', 'Rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Sandra Rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [134/420] AGENT: Magaly Suarez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Magaly Suarez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'magalysua@yahoo.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 424 1591351', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Magaly', 'Suarez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Magaly Suarez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [135/420] AGENT: Antonio Sanz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Antonio Sanz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'aisanz@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 426 5198288', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Antonio', 'Sanz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Antonio Sanz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [136/420] AGENT: Charlie Correa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Charlie Correa', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ccorrea.mt@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 414 3705116', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Charlie', 'Correa');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Charlie Correa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [137/420] AGENT: Jose Rafael Ribas

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jose Rafael Ribas', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jribas17@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 424 1672445', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jose', 'Rafael', 'Ribas');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jose Rafael Ribas',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [138/420] AGENT: Claudia Diaz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Claudia Diaz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'cdiazp2774@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 424 2310883', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Claudia', 'Diaz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Claudia Diaz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [139/420] AGENT: Jose Enrique Diaz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jose Enrique Diaz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'neptunojedb@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 412 2370612', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jose', 'Enrique', 'Diaz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jose Enrique Diaz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [140/420] AGENT: Leonardo Lossada

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Leonardo Lossada', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'leonardolossada@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 414 2453535', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Leonardo', 'Lossada');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Leonardo Lossada',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [141/420] AGENT: Alberto Colina

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alberto Colina', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'alberto_c@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Alberto', 'Colina');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alberto Colina',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [142/420] AGENT: Victor Babino

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Victor Babino', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'vbabino97@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 414 1250307', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Victor', 'Babino');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Victor Babino',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [143/420] AGENT: Jesus Rondon Benaim

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jesus Rondon Benaim', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'asesores0520@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 414 8069755', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jesus', 'Rondon', 'Benaim');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jesus Rondon Benaim',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [144/420] AGENT: Maria Gabriela Neri Luciani

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Gabriela Neri Luciani', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gaby.seguros19@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-606-6785', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Gabriela', 'Neri Luciani');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Gabriela Neri Luciani',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [145/420] AGENT: Guillermo Marcano

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Guillermo Marcano', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'oficina.guillermomarcano@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 414 821 5800', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Guillermo', 'Marcano');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Guillermo Marcano',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [146/420] AGENT: Doris de Matattia

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Doris de Matattia', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'am@poliprima.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-285-92227', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Doris', 'de', 'Matattia');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Doris de Matattia',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [147/420] AGENT: Andreina Avila

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Andreina Avila', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'aavila@pfpdevzla.net', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-113-2571', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Andreina', 'Avila');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Andreina Avila',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [148/420] AGENCY: Nabis de Jesus Mendoza Garcia

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Nabis de Jesus Mendoza Garcia', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'nabismendoza@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-655-2241', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Nabis de Jesus Mendoza Garcia',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [149/420] AGENT: Ricardo Rafael Raven Matheus

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ricardo Rafael Raven Matheus', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ricardorraven@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-261-798-1031', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ricardo', 'Rafael', 'Raven Matheus');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ricardo Rafael Raven Matheus',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [150/420] AGENCY: Faine Coromoto Hernandez Sierra

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Faine Coromoto Hernandez Sierra', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'faine.hernandez@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-975-3713', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Faine Coromoto Hernandez Sierra',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [151/420] AGENCY: Nadeska Carolina Pina Garrido

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Nadeska Carolina Pina Garrido', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'nadeskapina@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-337-2914', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Nadeska Carolina Pina Garrido',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [152/420] AGENT: Erik Dupret

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Erik Dupret', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'dupretvdb@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-321-2677', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Erik', 'Dupret');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Erik Dupret',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [153/420] AGENT: Carlos Eduardo Boccaccini

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Carlos Eduardo Boccaccini', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ceboccaccini@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '507-686-06863', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Carlos', 'Eduardo', 'Boccaccini');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Carlos Eduardo Boccaccini',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [154/420] AGENT: Monica Cristina Lecuna

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Monica Cristina Lecuna', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lecunamonick@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '507-686-06863', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Monica', 'Cristina', 'Lecuna');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Monica Cristina Lecuna',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [155/420] AGENT: Hector Fernandez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Hector Fernandez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'hfernandez@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-10-5008', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Hector', 'Fernandez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Hector Fernandez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [156/420] AGENT: Hilda Ballester

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Hilda Ballester', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'hballester@pfpdevenezuela.net', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-270-2147', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Hilda', 'Ballester');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Hilda Ballester',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [157/420] AGENT: Jose Humberto Barazarte

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jose Humberto Barazarte', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jhbarazarte@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-274-658-1494', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jose', 'Humberto', 'Barazarte');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jose Humberto Barazarte',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [158/420] AGENT: Adrian Duque

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Adrian Duque', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'adrianduque90@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '011-58-242-414-0904', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Adrian', 'Duque');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Adrian Duque',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [159/420] AGENT: Andres Marquez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Andres Marquez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'andresmarquezc@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '011-58-242-414-0904', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Andres', 'Marquez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Andres Marquez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [160/420] AGENT: Maria Daniela Alcala Lis

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Daniela Alcala Lis', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'segurosdanielaalcala@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-300-6069', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Daniela', 'Alcala Lis');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Daniela Alcala Lis',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [161/420] AGENT: Manuela García de Carrasquero

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Manuela García de Carrasquero', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'carrasquerohoracio81@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-158-3620', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Manuela', 'García', 'de Carrasquero');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Manuela García de Carrasquero',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [162/420] AGENT: Barbara Velasquez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Barbara Velasquez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'byva3009@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-426-520-9778', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Barbara', 'Velasquez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Barbara Velasquez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [163/420] AGENT: Luis C. Dominguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Luis C. Dominguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lcdominguez@gblsmart.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '506-7174-4053', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Luis', 'C.', 'Dominguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Luis C. Dominguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [164/420] AGENT: Juan Alvaro Lopez Hernandez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Juan Alvaro Lopez Hernandez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-286-962-1025', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Juan', 'Alvaro', 'Lopez Hernandez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Juan Alvaro Lopez Hernandez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [165/420] AGENT: Luis Fernando Avila Boffil

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Luis Fernando Avila Boffil', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'luis.avila5590@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-109-5929', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Luis', 'Fernando', 'Avila Boffil');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Luis Fernando Avila Boffil',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [166/420] AGENT: Antonio Sotillo Rosales

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Antonio Sotillo Rosales', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'inversoti@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-124-4231', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Antonio', 'Sotillo', 'Rosales');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Antonio Sotillo Rosales',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [167/420] AGENT: Maria Auxiliadora Ramirez Maria Auxiliadora Ramirez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Auxiliadora Ramirez Maria Auxiliadora Ramirez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'maramirez@ofgservices.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-171-8729', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Auxiliadora', 'Ramirez Maria Auxiliadora Ramirez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Auxiliadora Ramirez Maria Auxiliadora Ramirez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [168/420] AGENT: Alvaro Cesar Almaral

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alvaro Cesar Almaral', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'aalmaralp@ofgservices.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-329-3383', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Alvaro', 'Cesar', 'Almaral');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alvaro Cesar Almaral',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [169/420] AGENT: Marisela Rincon

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Marisela Rincon', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mrincon@ofgservices.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-276-9087', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Marisela', 'Rincon');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Marisela Rincon',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [170/420] AGENT: Adriana Carolina Lorenzo Triana

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Adriana Carolina Lorenzo Triana', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'al.viajeseguro@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Adriana', 'Carolina', 'Lorenzo Triana');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Adriana Carolina Lorenzo Triana',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [171/420] AGENT: Maria Soledad Rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Soledad Rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'marisol.r.t@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-241-1343', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Soledad', 'Rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Soledad Rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [172/420] AGENT: Rosa Perez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rosa Perez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rosaperez03@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-223-5512', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Rosa', 'Perez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rosa Perez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [173/420] AGENT: Pilar Bello

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Pilar Bello', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'pbello@ofgservices.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-202-6316', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Pilar', 'Bello');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Pilar Bello',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [174/420] AGENT: Juan Carlos Sucre Chapellin

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Juan Carlos Sucre Chapellin', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jsucre21@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '34-607-34-9288', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Juan', 'Carlos', 'Sucre Chapellin');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Juan Carlos Sucre Chapellin',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [175/420] AGENT: Iliana Zeppenfeldt

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Iliana Zeppenfeldt', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'luis.a.dezabala@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-237-9694', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Iliana', 'Zeppenfeldt');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Iliana Zeppenfeldt',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [176/420] AGENT: Arnoldo Jimenez Canino

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Arnoldo Jimenez Canino', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jimenezenriquez.asesores@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-332-5286', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Arnoldo', 'Jimenez', 'Canino');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Arnoldo Jimenez Canino',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [177/420] AGENT: Maria Eugenia Coronado Garcia

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Eugenia Coronado Garcia', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'coronado.seguros2014@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-967-8417', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Eugenia', 'Coronado Garcia');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Eugenia Coronado Garcia',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [178/420] AGENT: Jorge Enrique Zafra Ramirez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jorge Enrique Zafra Ramirez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jorge.zafrapc@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-816-5669', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jorge', 'Enrique', 'Zafra Ramirez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jorge Enrique Zafra Ramirez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [179/420] AGENT: Beatriz Lopez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Beatriz Lopez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'bealofon@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-762-9687', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Beatriz', 'Lopez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Beatriz Lopez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [180/420] AGENT: Maria Fernanda Obediente

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Fernanda Obediente', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mfobediente@ofgservices.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-517-5294', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Fernanda', 'Obediente');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Fernanda Obediente',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [181/420] AGENT: Francisco Viloria

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Francisco Viloria', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'wilfredoviloria@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '507-676-53264', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Francisco', 'Viloria');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Francisco Viloria',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [182/420] AGENT: Karla Gamarra

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Karla Gamarra', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'kgamarra06@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '52-812-688-1501', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Karla', 'Gamarra');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Karla Gamarra',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [183/420] AGENT: Libe Pereira de Arriola

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Libe Pereira de Arriola', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'libe28pereira@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '954-663-3391', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Libe', 'Pereira', 'de Arriola');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Libe Pereira de Arriola',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [184/420] AGENT: Carlos Alfredo Noguera Gil

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Carlos Alfredo Noguera Gil', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'noguera.carlos@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-804-8073', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Carlos', 'Alfredo', 'Noguera Gil');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Carlos Alfredo Noguera Gil',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [185/420] AGENCY: Morella Garcia

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Morella Garcia', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'morella.garcia71@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-329-9828', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Morella Garcia',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [186/420] AGENT: Federica Iturriza

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Federica Iturriza', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'fiturriza@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-283-9972', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Federica', 'Iturriza');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Federica Iturriza',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [187/420] AGENT: Maria Alejandra Arriaga

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Alejandra Arriaga', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'majita2006@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-900-0750', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Alejandra', 'Arriaga');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Alejandra Arriaga',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [188/420] AGENT: Belkys Zuleta

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Belkys Zuleta', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'belkyszuleta@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-679-6455', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Belkys', 'Zuleta');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Belkys Zuleta',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [189/420] AGENT: Pablo Luis Ramos Fuentes

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Pablo Luis Ramos Fuentes', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'pabloramosf@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-105-2927', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Pablo', 'Luis', 'Ramos Fuentes');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Pablo Luis Ramos Fuentes',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [190/420] AGENT: Luis Armando Cerezo Soto

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Luis Armando Cerezo Soto', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'segurosgrove@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-614-0085', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Luis', 'Armando', 'Cerezo Soto');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Luis Armando Cerezo Soto',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [191/420] AGENT: Claudia Blanco

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Claudia Blanco', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'claudiablanco28@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-912-4972', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Claudia', 'Blanco');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Claudia Blanco',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [192/420] AGENT: Maria Fernanda Zuluaga

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Fernanda Zuluaga', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mfzuluaga@ofgservices.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '52-212-993-9701', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Fernanda', 'Zuluaga');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Fernanda Zuluaga',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [193/420] AGENT: Mayerling Sayago

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Mayerling Sayago', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mayer.sayago@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-224-1213', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Mayerling', 'Sayago');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Mayerling Sayago',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [194/420] AGENT: Monica Finol Monica Finol

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Monica Finol Monica Finol', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mfinolc@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0034-678-395702', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Monica', 'Finol', 'Monica Finol');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Monica Finol Monica Finol',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [195/420] AGENT: Gabriela Pernetz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gabriela Pernetz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gpernetz@wmagroup.net', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '1829-268-1479', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Gabriela', 'Pernetz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gabriela Pernetz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [196/420] AGENT: Ricardo Angles Perez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ricardo Angles Perez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ranglesp@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-435-9486', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ricardo', 'Angles', 'Perez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ricardo Angles Perez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [197/420] AGENT: Belisa Vegas Castro

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Belisa Vegas Castro', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'belisavegas@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-9513125', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Belisa', 'Vegas', 'Castro');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Belisa Vegas Castro',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [198/420] AGENT: Diana Cordero

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Diana Cordero', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'dcordero@alliance.sc', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-1366766', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Diana', 'Cordero');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Diana Cordero',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [199/420] AGENCY: Valenttina Fernandes

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Valenttina Fernandes', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'valenttinafr@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 414 2453705', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Valenttina Fernandes',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [200/420] AGENT: Jacqueline Marvez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jacqueline Marvez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jacquelinemarvez@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-3375097', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jacqueline', 'Marvez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jacqueline Marvez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [201/420] AGENT: Luis Manuel Vargas Marcano

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Luis Manuel Vargas Marcano', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lmvmcomm@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-6344857', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Luis', 'Manuel', 'Vargas Marcano');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Luis Manuel Vargas Marcano',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [202/420] AGENCY: Alains Figueroa Alains Figueroa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alains Figueroa Alains Figueroa', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'alains.figueroam@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alains Figueroa Alains Figueroa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [203/420] AGENT: Eliana Yanez Angel

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Eliana Yanez Angel', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'elianamyanez@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-2501047', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Eliana', 'Yanez', 'Angel');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Eliana Yanez Angel',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [204/420] AGENT: Alejandro Sandoval

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alejandro Sandoval', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ajsu100@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-593-0144', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Alejandro', 'Sandoval');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alejandro Sandoval',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [205/420] AGENT: Domingo Morales

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Domingo Morales', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'domingoamoralesm@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '52-558-449-8698', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Domingo', 'Morales');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Domingo Morales',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [206/420] AGENT: Pedro Luis Tineo Marcano

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Pedro Luis Tineo Marcano', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'pltm1972@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Pedro', 'Luis', 'Tineo Marcano');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Pedro Luis Tineo Marcano',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [207/420] AGENT: Rodolfo Vera Vera

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rodolfo Vera Vera', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rodvera2@icloud.com.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '52-722-139-8108', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Rodolfo', 'Vera', 'Vera');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rodolfo Vera Vera',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [208/420] AGENCY: Damelys Dadiotis

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Damelys Dadiotis', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ddadiotis@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-277-5926', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Damelys Dadiotis',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [209/420] AGENT: Carlos Scott

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Carlos Scott', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'carlos3scott@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-205-6777', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Carlos', 'Scott');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Carlos Scott',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [210/420] AGENT: Guillermo Schutte

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Guillermo Schutte', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'guillermo.schutte@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-618-11691', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Guillermo', 'Schutte');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Guillermo Schutte',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [211/420] AGENT: Mercedes Palacios

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Mercedes Palacios', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mercedeselenapalaciospalacios14@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-279-0066', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Mercedes', 'Palacios');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Mercedes Palacios',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [212/420] AGENT: Maria Carolina Vega Colina

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Carolina Vega Colina', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mariacarolinavegacolina@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-152-1255', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Carolina', 'Vega Colina');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Carolina Vega Colina',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [213/420] AGENCY: Noraima Colmenares

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Noraima Colmenares', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ncolmenares@ofgservices.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-331-2218', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Noraima Colmenares',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [214/420] AGENT: Isabela Sequera

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Isabela Sequera', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'isasudeza@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-255-1133', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Isabela', 'Sequera');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Isabela Sequera',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [215/420] AGENT: Gustavo Bandes

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gustavo Bandes', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gbandes3@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-323-2159', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Gustavo', 'Bandes');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gustavo Bandes',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [216/420] AGENT: Cristian Milagro Guedez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Cristian Milagro Guedez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'cristian09guedez@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-644-8484', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Cristian', 'Milagro', 'Guedez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Cristian Milagro Guedez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [217/420] AGENT: Regina Friedman

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Regina Friedman', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'regifv57@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-288-7220', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Regina', 'Friedman');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Regina Friedman',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [218/420] AGENT: Kira Kariakin

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Kira Kariakin', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'kira.kariakin@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-128-7374', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Kira', 'Kariakin');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Kira Kariakin',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [219/420] AGENT: Yasmin Mesa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Yasmin Mesa', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'yasminmesa@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-129-0086', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Yasmin', 'Mesa');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Yasmin Mesa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [220/420] AGENCY: Yanubis Luc Yanubis Luc

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Yanubis Luc Yanubis Luc', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'nainal@yahoo.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-235-3365', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Yanubis Luc Yanubis Luc',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [221/420] AGENT: Maria Schutte

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Schutte', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mgsm10@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '57-414-30-5033', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Maria', 'Schutte');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Schutte',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [222/420] AGENCY: Corini Pantoja

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Corini Pantoja', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'corinicp@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-753-5231', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Corini Pantoja',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [223/420] AGENT: Gustavo Gomez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gustavo Gomez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ggomez@5124seguros.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '507-6512-1626', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Gustavo', 'Gomez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gustavo Gomez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [224/420] AGENT: Mario Leon Chirinos

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Mario Leon Chirinos', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'marioleon1967@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '=58-414-362-9660', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Mario', 'Leon', 'Chirinos');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Mario Leon Chirinos',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [225/420] AGENT: Agustin Da Silva-Diaz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Agustin Da Silva-Diaz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'acardenas@ofgservices.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-993-9701', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Agustin', 'Da', 'Silva-Diaz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Agustin Da Silva-Diaz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [226/420] AGENT: Larry Padron

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Larry Padron', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ayilar96@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-993-9701', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Larry', 'Padron');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Larry Padron',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [227/420] AGENT: Adrian Lopez De Aguiar

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Adrian Lopez De Aguiar', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'adrianlopezseguros@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-244-321-6093', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Adrian', 'Lopez', 'De Aguiar');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Adrian Lopez De Aguiar',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [228/420] AGENT: Jose Uzcategui Amare

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jose Uzcategui Amare', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jm.uzcategui@conergroup.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-494-0959', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jose', 'Uzcategui', 'Amare');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jose Uzcategui Amare',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [229/420] AGENT: Sandra Rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Sandra Rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'sr0772@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-808-1120', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Sandra', 'Rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Sandra Rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [230/420] AGENT: Doris Perez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Doris Perez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'dorisrequenaperez@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-179-1481', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Doris', 'Perez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Doris Perez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [231/420] AGENT: Johann Gomez Sanchez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Johann Gomez Sanchez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jgomez@capitalfin.net', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-246-0312', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Johann', 'Gomez', 'Sanchez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Johann Gomez Sanchez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [232/420] AGENT: Valerie Obregon Aguilera

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Valerie Obregon Aguilera', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'valerieoa@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-397-8784', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Valerie', 'Obregon', 'Aguilera');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Valerie Obregon Aguilera',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [233/420] AGENT: Ivan Vezga

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ivan Vezga', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ivanvezga@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-600-7804', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Ivan', 'Vezga');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ivan Vezga',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [234/420] AGENT: Fernando Vera Useche

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Fernando Vera Useche', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'fernandov19@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '=58-424-730-7786', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Fernando', 'Vera', 'Useche');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Fernando Vera Useche',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [235/420] AGENCY: Elimar Hung Nieves

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Elimar Hung Nieves', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'elimarhung@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-297-3417', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Elimar Hung Nieves',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [236/420] AGENT: Fabiola Tejada

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Fabiola Tejada', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'fabiolachaparroconsulting@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '310-476-5777', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Fabiola', 'Tejada');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Fabiola Tejada',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [237/420] AGENT: Patricia Arriete V.

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Patricia Arriete V.', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'patriciaarriete@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-213-9948', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Patricia', 'Arriete', 'V.');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Patricia Arriete V.',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [238/420] AGENT: Luz Tarborda B.

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Luz Tarborda B.', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'tabordal64@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-200-4847', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Luz', 'Tarborda', 'B.');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Luz Tarborda B.',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [239/420] AGENT: Maria Mineses Contreras

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Mineses Contreras', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mariameneses.0@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-0140135', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Mineses', 'Contreras');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Mineses Contreras',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [240/420] AGENT: Jorge Chacon L

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jorge Chacon L', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'georgech@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-215-8071', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jorge', 'Chacon', 'L');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jorge Chacon L',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [241/420] AGENT: Andrea Leon

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Andrea Leon', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'leon.am13@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '=34-643-199-406', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Andrea', 'Leon');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Andrea Leon',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [242/420] AGENT: Claudia De Urdaneta

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Claudia De Urdaneta', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'suseguro.int@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-614-6713', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Claudia', 'De', 'Urdaneta');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Claudia De Urdaneta',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [243/420] AGENT: Juan Mila de la Roca

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Juan Mila de la Roca', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'presidencia@miladelaroca.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-323-6068', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Juan', 'Mila', 'de la Roca');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Juan Mila de la Roca',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [244/420] AGENT: Jorge Ojeda

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jorge Ojeda', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jorge.ojeda.s@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-320-4145', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jorge', 'Ojeda');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jorge Ojeda',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [245/420] AGENT: Ricardo Gomez Otto

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ricardo Gomez Otto', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rgomez@ofgservices.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-435-6420', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ricardo', 'Gomez', 'Otto');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ricardo Gomez Otto',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [246/420] AGENT: Maribel Briceno

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maribel Briceno', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mcbricenodahdah@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-334-2044', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Maribel', 'Briceno');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maribel Briceno',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [247/420] AGENCY: Ginett Luces

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ginett Luces', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ginett.carolina@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '786-486-8824', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ginett Luces',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [248/420] AGENT: Juan Targa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Juan Targa', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jtarga67@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-200-0024', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Juan', 'Targa');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Juan Targa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [249/420] AGENT: Jose Narvaez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jose Narvaez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jose.narvaez@asesoriadeseguros.com.ve', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-761-4410', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jose', 'Narvaez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jose Narvaez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [250/420] AGENCY: Nerio Socorro

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Nerio Socorro', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Neriosocorro@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Nerio Socorro',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [251/420] AGENT: Cecilio Rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Cecilio Rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'cero68@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Cecilio', 'Rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Cecilio Rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [252/420] AGENCY: Tannya Lisseth Sierra Quiroga

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Tannya Lisseth Sierra Quiroga', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'talisiqui16@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Tannya Lisseth Sierra Quiroga',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [253/420] AGENT: Lisbeth Josefina Seijas Pineda

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Lisbeth Josefina Seijas Pineda', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'asmanagement41@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-475-8265', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Lisbeth', 'Josefina', 'Seijas Pineda');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Lisbeth Josefina Seijas Pineda',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [254/420] AGENT: Jacqueline Bali Jacqueline Bali

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jacqueline Bali Jacqueline Bali', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jacquibali84@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 212 4952426', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jacqueline', 'Bali', 'Jacqueline Bali');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jacqueline Bali Jacqueline Bali',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [255/420] AGENCY: MARIELYS SEMPRUN

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'MARIELYS SEMPRUN', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'marielysemprun@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'MARIELYS SEMPRUN',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [256/420] AGENT: Maria Jose Couri Araujo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Jose Couri Araujo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mariacouri629@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-574-8264', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Jose', 'Couri Araujo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Jose Couri Araujo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [257/420] AGENT: Oscar Freites

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Oscar Freites', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ofreites53@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Oscar', 'Freites');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Oscar Freites',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [258/420] AGENT: Guido Pena

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Guido Pena', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'presidencia@lamda.com.ve', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-285-5585', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Guido', 'Pena');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Guido Pena',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [259/420] AGENT: Maria Gracia Cruz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Gracia Cruz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mariagraciacruz@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-909-4733', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Gracia', 'Cruz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Gracia Cruz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [260/420] AGENT: Cesareo Belsol

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Cesareo Belsol', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'cesareo.belsol@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-219-3111', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Cesareo', 'Belsol');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Cesareo Belsol',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [261/420] AGENT: Ana Isabel Rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ana Isabel Rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rodriguez.anaisabel@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-233-5054', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ana', 'Isabel', 'Rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ana Isabel Rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [262/420] AGENT: Jorge Villamizar

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jorge Villamizar', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'villamizar_perez_jorge@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jorge', 'Villamizar');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jorge Villamizar',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [263/420] AGENT: MARIA TERESA RIVAS

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'MARIA TERESA RIVAS', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mariateresa.rivas@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-821-6707', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'MARIA', 'TERESA', 'RIVAS');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'MARIA TERESA RIVAS',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [264/420] AGENT: Cesar Hulett

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Cesar Hulett', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mtseguroshulett@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-303-0068', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Cesar', 'Hulett');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Cesar Hulett',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [265/420] AGENT: Maria Elvia Becerra Maria Elvia Becerra

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Elvia Becerra Maria Elvia Becerra', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mariaelviabecerra@yahoo.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-611-7246', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Elvia', 'Becerra Maria Elvia Becerra');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Elvia Becerra Maria Elvia Becerra',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [266/420] AGENT: Kassandra Fagundez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Kassandra Fagundez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'kassandrafagundez@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-3832214', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Kassandra', 'Fagundez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Kassandra Fagundez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [267/420] AGENT: Julian Gonzalez Balbo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Julian Gonzalez Balbo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jant9110@gmail.commail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '6949-9144', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Julian', 'Gonzalez', 'Balbo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Julian Gonzalez Balbo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [268/420] AGENT: Omar Alfredo Gutierrez Guerrero Gutierrez Guerrero

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Omar Alfredo Gutierrez Guerrero Gutierrez Guerrero', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'omargutierrez@maxitraveltours.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4246393831', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Omar', 'Alfredo', 'Gutierrez Guerrero Gutierrez Guerrero');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Omar Alfredo Gutierrez Guerrero Gutierrez Guerrero',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [269/420] AGENT: Ignacio Jaramillo Abondano

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ignacio Jaramillo Abondano', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'insurance@travelmedicalinsurances.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '573158300680', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Ignacio', 'Jaramillo', 'Abondano');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ignacio Jaramillo Abondano',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [270/420] AGENT: Adolfo Cumana

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Adolfo Cumana', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'acumana@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58416 6102006', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Adolfo', 'Cumana');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Adolfo Cumana',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [271/420] AGENCY: Kenic Narvarro

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Kenic Narvarro', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'kenicnavarro@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4149144722', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Kenic Narvarro',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [272/420] AGENT: Carlos Montero

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Carlos Montero', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'monteroasegurador@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '2129529436', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Carlos', 'Montero');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Carlos Montero',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [273/420] AGENT: Jesus Ugas

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jesus Ugas', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jesusramon.ugas@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-281-281-2136', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jesus', 'Ugas');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jesus Ugas',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [274/420] AGENT: Karelia Gomez Martinez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Karelia Gomez Martinez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'kareliaingridgomez@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-260-6342', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Karelia', 'Gomez', 'Martinez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Karelia Gomez Martinez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [275/420] AGENT: David Waich

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'David Waich', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'david@itravelagency.net', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '305-432-9992', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'David', 'Waich');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'David Waich',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [276/420] AGENT: Maria Alejandra Tovar Ojeda

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Alejandra Tovar Ojeda', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'marialetovar77@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Alejandra', 'Tovar Ojeda');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Alejandra Tovar Ojeda',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [277/420] AGENT: Maria Idalina Rodriguez Rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Idalina Rodriguez Rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'marilynrr@asercorredores.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-124-0872', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Idalina', 'Rodriguez Rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Idalina Rodriguez Rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [278/420] AGENT: Gabriella Lopez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gabriella Lopez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gabriella_lopez@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-320-7460', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Gabriella', 'Lopez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gabriella Lopez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [279/420] AGENT: Roberto Aldecoa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Roberto Aldecoa', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'aldecoaroberto@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Roberto', 'Aldecoa');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Roberto Aldecoa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [280/420] AGENT: Miguel Pasquariello

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Miguel Pasquariello', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'miguel_pnc@yahoo.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-251-4882', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Miguel', 'Pasquariello');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Miguel Pasquariello',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [281/420] AGENT: Pascual Miguel Quagliano

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Pascual Miguel Quagliano', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'quagliano.p@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-245-6704', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Pascual', 'Miguel', 'Quagliano');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Pascual Miguel Quagliano',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [282/420] AGENCY: Heremar Mercedes Morales Daal

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Heremar Mercedes Morales Daal', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'heremar@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-985-8406', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Heremar Mercedes Morales Daal',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [283/420] AGENT: Maria Carolina Crespo Gonzalez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Carolina Crespo Gonzalez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'carocrespog@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-634-8779', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Carolina', 'Crespo Gonzalez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Carolina Crespo Gonzalez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [284/420] AGENT: Hector Alfredo Reyes Franco

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Hector Alfredo Reyes Franco', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'hectorareyesf@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-426-534-0509', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Hector', 'Alfredo', 'Reyes Franco');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Hector Alfredo Reyes Franco',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [285/420] AGENT: Evelyn Josefina Rondon Benaim

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Evelyn Josefina Rondon Benaim', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'evelynrondonb@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-324-0647', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Evelyn', 'Josefina', 'Rondon Benaim');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Evelyn Josefina Rondon Benaim',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [286/420] AGENT: Marianne Delgado

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Marianne Delgado', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mdelgado@usabecas.org', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-905-6321', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Marianne', 'Delgado');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Marianne Delgado',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [287/420] AGENT: Gustavo Bergstrom

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gustavo Bergstrom', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gbergstrom@cabalasesores.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-750-1391', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Gustavo', 'Bergstrom');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gustavo Bergstrom',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [288/420] AGENT: Gladys Moros Nieto

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gladys Moros Nieto', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gladysmoros@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-239-8113', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Gladys', 'Moros', 'Nieto');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gladys Moros Nieto',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [289/420] AGENT: Giovanni Rossomando de la Rosa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Giovanni Rossomando de la Rosa', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'giorossom@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-607-7557', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Giovanni', 'Rossomando', 'de la Rosa');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Giovanni Rossomando de la Rosa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [290/420] AGENT: Enzo Isaias Herrera Fernandez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Enzo Isaias Herrera Fernandez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'aefi.transparency@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Enzo', 'Isaias', 'Herrera Fernandez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Enzo Isaias Herrera Fernandez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [291/420] AGENT: ROBERTO BAEZ DUARTE

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'ROBERTO BAEZ DUARTE', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rbdipad@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-223-4005', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'ROBERTO', 'BAEZ', 'DUARTE');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'ROBERTO BAEZ DUARTE',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [292/420] AGENT: Alejandro Osorio

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alejandro Osorio', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'alejandrosr33@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-601-3333', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Alejandro', 'Osorio');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alejandro Osorio',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [293/420] AGENCY: Marelvis Coraspe

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Marelvis Coraspe', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'marelvyscoraspe@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Marelvis Coraspe',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [294/420] AGENT: Jose Manuel Galanton Hernandez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jose Manuel Galanton Hernandez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'josemanuelgalanton@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-8202969', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jose', 'Manuel', 'Galanton Hernandez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jose Manuel Galanton Hernandez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [295/420] AGENT: Ivan Gonima

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ivan Gonima', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'igonima@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '407-429-8659', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Ivan', 'Gonima');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ivan Gonima',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [296/420] AGENT: Oswaldo Prada

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Oswaldo Prada', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'pradasamuel@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Oswaldo', 'Prada');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Oswaldo Prada',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [297/420] AGENT: Alfredo Osiglia

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alfredo Osiglia', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'a.osiglia.cal@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584248269633', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Alfredo', 'Osiglia');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alfredo Osiglia',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [298/420] AGENCY: MARYOLEY CAROLINA VIVAS GIL

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'MARYOLEY CAROLINA VIVAS GIL', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'maryoleyvivasgil@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-4242391977', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'MARYOLEY CAROLINA VIVAS GIL',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [299/420] AGENCY: LIZZET RICCARDI

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'LIZZET RICCARDI', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lis1072@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-0325989', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'LIZZET RICCARDI',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [300/420] AGENT: Nathaly Rojas Aguilera

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Nathaly Rojas Aguilera', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rojasaguilera79@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-6944362', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Nathaly', 'Rojas', 'Aguilera');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Nathaly Rojas Aguilera',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [301/420] AGENT: Wilson Molina Sanguino

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Wilson Molina Sanguino', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'wilsonms2531@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '=58-412-7621897', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Wilson', 'Molina', 'Sanguino');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Wilson Molina Sanguino',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [302/420] AGENT: Jon Olabeaga Urresti

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jon Olabeaga Urresti', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jolur1955@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-242-2469355', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Jon', 'Olabeaga', 'Urresti');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jon Olabeaga Urresti',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [303/420] AGENT: Oswaldo Figueroa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Oswaldo Figueroa', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'oswaldo@loyaltygroup.net', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '507-669-1654', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Oswaldo', 'Figueroa');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Oswaldo Figueroa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [304/420] AGENT: German Villarreal

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'German Villarreal', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'germanv@germanv.ca', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '627-258-2836', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'German', 'Villarreal');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'German Villarreal',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [305/420] AGENT: John Nathan Marin Gonzalez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'John Nathan Marin Gonzalez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'John', 'Nathan', 'Marin Gonzalez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'John Nathan Marin Gonzalez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [306/420] AGENCY: Dainazet Robespierre

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Dainazet Robespierre', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'daina.robespierre@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-907-1110', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Dainazet Robespierre',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [307/420] AGENT: Tomas Andara

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Tomas Andara', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'tomasandara@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '54-424-897-6655', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Tomas', 'Andara');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Tomas Andara',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [308/420] AGENCY: Lenis Silva

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Lenis Silva', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lenis_silva@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Lenis Silva',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [309/420] AGENT: Bernardo Rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Bernardo Rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'bernardorodriguez158@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-287-7956', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Bernardo', 'Rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Bernardo Rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [310/420] AGENT: Carlos Tagliaferro

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Carlos Tagliaferro', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'tagliaferrocarlos@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-612-2892', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Carlos', 'Tagliaferro');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Carlos Tagliaferro',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [311/420] AGENT: Antonio Jose Osorio Sifontes

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Antonio Jose Osorio Sifontes', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'agents@openinsurances.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-556-7126', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Antonio', 'Jose', 'Osorio Sifontes');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Antonio Jose Osorio Sifontes',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [312/420] AGENT: Beatriz Gabriela Arias Petit

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Beatriz Gabriela Arias Petit', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gabrielaarpet@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-232-2027', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Beatriz', 'Gabriela', 'Arias Petit');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Beatriz Gabriela Arias Petit',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [313/420] AGENT: Castor Fernandez Rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Castor Fernandez Rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'kas0955@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-3115310', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Castor', 'Fernandez', 'Rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Castor Fernandez Rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [314/420] AGENT: Jesus Rodrigues

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jesus Rodrigues', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jesusrodriguess1978@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-236-8467', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jesus', 'Rodrigues');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jesus Rodrigues',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [315/420] AGENT: Rocco Nardulli

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rocco Nardulli', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gruponardulli@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '=58-4120827949', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Rocco', 'Nardulli');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rocco Nardulli',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [316/420] AGENCY: Excellence Asesores CA

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Excellence Asesores CA', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'volavarri@gia-asesores.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '=58-212-7505051', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Excellence Asesores CA',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [317/420] AGENT: Luisa Viso

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Luisa Viso', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 's.care.ccs.lmosquera@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4142466669', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Luisa', 'Viso');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Luisa Viso',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [318/420] AGENT: Elizabeth Johnson

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Elizabeth Johnson', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'tetejohnson29@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-963-1361', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Elizabeth', 'Johnson');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Elizabeth Johnson',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [319/420] AGENCY: Audry Gonzalez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Audry Gonzalez', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'aug2092@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0424-140-3831', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Audry Gonzalez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [320/420] AGENT: Cristobal Alvelo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Cristobal Alvelo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'cris.alvelo@yahoo.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '+58 412-992-32-33', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Cristobal', 'Alvelo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Cristobal Alvelo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [321/420] AGENT: Marlene Fernandez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Marlene Fernandez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'm.c.f.lobo@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0424-166-8589', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Marlene', 'Fernandez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Marlene Fernandez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [322/420] AGENT: Ambar Arredondo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ambar Arredondo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'chefambarnardulli@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-082-7949', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Ambar', 'Arredondo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ambar Arredondo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [323/420] AGENT: ELVIA MORENO

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'ELVIA MORENO', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'elviamoren30@yahoo.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '5-8416-632-2801', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'ELVIA', 'MORENO');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'ELVIA MORENO',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [324/420] AGENT: Olga Herrera

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Olga Herrera', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'olgaalida02@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0414-258-5807', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Olga', 'Herrera');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Olga Herrera',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [325/420] AGENT: kristen Pena

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'kristen Pena', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'penabenefits@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '678-7493-801', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'kristen', 'Pena');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'kristen Pena',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [326/420] AGENT: Johnny Paz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Johnny Paz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'johnnypazseguros@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '1-832-672-0378', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Johnny', 'Paz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Johnny Paz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [327/420] AGENT: Jhoanna Querales

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jhoanna Querales', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jhoannaquerales0582@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4245630908', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jhoanna', 'Querales');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jhoanna Querales',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [328/420] AGENT: Ariadna Quroz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ariadna Quroz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ariigonzalez1923@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0416-3724826', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Ariadna', 'Quroz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ariadna Quroz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [329/420] AGENCY: Marycarmen Hurtado

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Marycarmen Hurtado', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'hurtadomarycarmen@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4122051206', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Marycarmen Hurtado',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [330/420] AGENT: Rosangela Diaz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rosangela Diaz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rosangeladiazs18@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-618-9883', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Rosangela', 'Diaz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rosangela Diaz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [331/420] AGENT: Elisa Baez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Elisa Baez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'elisacarolina10@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-456-6899', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Elisa', 'Baez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Elisa Baez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [332/420] AGENT: Erick Oropeza

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Erick Oropeza', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'erickoropeza@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-211-7779', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Erick', 'Oropeza');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Erick Oropeza',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [333/420] AGENCY: Andreyna Molla

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Andreyna Molla', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'andreamoya05@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4245900511', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Andreyna Molla',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [334/420] AGENT: Gisel Morillo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Gisel Morillo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'morilloyovera@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0254-5610571', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Gisel', 'Morillo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Gisel Morillo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [335/420] AGENCY: Mariangie Reverol

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Mariangie Reverol', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Mariangie_e@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 4244585398', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Mariangie Reverol',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [336/420] AGENCY: Mariangie Reverol

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Mariangie Reverol', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Mariangie_e@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58 4244585398', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Mariangie Reverol',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [337/420] AGENT: ANTONIO SIFONTES

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'ANTONIO SIFONTES', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'no_email@no-email.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4125567126', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'ANTONIO', 'SIFONTES');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'ANTONIO SIFONTES',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [338/420] AGENT: Maria Arenas

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Arenas', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'gaby300684@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0424-8896236', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Maria', 'Arenas');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Arenas',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [339/420] AGENT: Joselyn Aguilar

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Joselyn Aguilar', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'davidjesusec24@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4268584549', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Joselyn', 'Aguilar');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Joselyn Aguilar',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [340/420] AGENT: Anabella Vazquez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Anabella Vazquez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Anabella.vazquez@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0412-232-1335', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Anabella', 'Vazquez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Anabella Vazquez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [341/420] AGENT: Patricia Gil Porto

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Patricia Gil Porto', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Patty050913@gmail.con', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '51910884925', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Patricia', 'Gil', 'Porto');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Patricia Gil Porto',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [342/420] AGENCY: Marys Soto

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Marys Soto', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'msoto1@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '593993286463', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Marys Soto',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [343/420] AGENT: Johana Sanchez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Johana Sanchez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'josanchez19.js@goldfarb.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '786-326-1586', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Johana', 'Sanchez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Johana Sanchez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [344/420] AGENT: Vicente Emilio Alvarez Jimenez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Vicente Emilio Alvarez Jimenez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'vicentealvarezasesor@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-9901495', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Vicente', 'Emilio', 'Alvarez Jimenez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Vicente Emilio Alvarez Jimenez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [345/420] AGENCY: ELIZBETH MARTORELLI

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'ELIZBETH MARTORELLI', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'martorellielizbeth@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4246352216', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'ELIZBETH MARTORELLI',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [346/420] AGENT: Liseth Segovia

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Liseth Segovia', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lisethsegovia13@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4146488111', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Liseth', 'Segovia');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Liseth Segovia',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [347/420] AGENT: Paulo Tabares Ramirez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Paulo Tabares Ramirez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'pcesartabares@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-6282597', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Paulo', 'Tabares', 'Ramirez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Paulo Tabares Ramirez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [348/420] AGENT: Elena Socorro Flores

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Elena Socorro Flores', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'elenitasf@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-6150621', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Elena', 'Socorro', 'Flores');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Elena Socorro Flores',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [349/420] AGENT: Jenny VivasVasquez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jenny VivasVasquez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jennyvivas@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '34603758410', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jenny', 'VivasVasquez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jenny VivasVasquez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [350/420] AGENCY: Mabelis Del Valle Suarez Viloria

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Mabelis Del Valle Suarez Viloria', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mabelis8507@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-6530974', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Mabelis Del Valle Suarez Viloria',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [351/420] AGENT: Anibal Valero

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Anibal Valero', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'anibalvalero07@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-014-9817', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Anibal', 'Valero');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Anibal Valero',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [352/420] AGENT: Antonio Guruceaga

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Antonio Guruceaga', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'antonioguruceaga@yahoo.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '582129756228', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Antonio', 'Guruceaga');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Antonio Guruceaga',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [353/420] AGENT: Claudia Diaz Picon

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Claudia Diaz Picon', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'cdiazp2779@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4129722420', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Claudia', 'Diaz', 'Picon');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Claudia Diaz Picon',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [354/420] AGENT: Larissa Pinto Pina

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Larissa Pinto Pina', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'larissapinto2605@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4124709968', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Larissa', 'Pinto', 'Pina');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Larissa Pinto Pina',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [355/420] AGENT: DANIELLA NAVA RUBIANO

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'DANIELLA NAVA RUBIANO', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'daniellanavar@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-6428987', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'DANIELLA', 'NAVA', 'RUBIANO');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'DANIELLA NAVA RUBIANO',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [356/420] AGENT: THAIS DELGADO

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'THAIS DELGADO', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'delgadothais5@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4146422093', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'THAIS', 'DELGADO');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'THAIS DELGADO',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [357/420] AGENT: Pablo Martinez-Acero

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Pablo Martinez-Acero', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'pabmacero@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4122342949', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Pablo', 'Martinez-Acero');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Pablo Martinez-Acero',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [358/420] AGENT: Claudia Tosta Vargas

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Claudia Tosta Vargas', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'clautv@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-3775749', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Claudia', 'Tosta', 'Vargas');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Claudia Tosta Vargas',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [359/420] AGENCY: Aitza Medina

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Aitza Medina', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'aitzamed@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-255-6223045', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Aitza Medina',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [360/420] AGENT: Veronica Camacho

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Veronica Camacho', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'camachoveronica2@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '5804168297241', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Veronica', 'Camacho');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Veronica Camacho',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [361/420] AGENCY: Bianeys Barreto Centeno

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Bianeys Barreto Centeno', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'bianeysb@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-4414-0650080', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Bianeys Barreto Centeno',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [362/420] AGENT: Fernando Zuleta

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Fernando Zuleta', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'martinez_zuleta2@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-6125532', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Fernando', 'Zuleta');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Fernando Zuleta',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [363/420] AGENT: Maria Rubiano

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Rubiano', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'pitusa61@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4146388507', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Maria', 'Rubiano');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Rubiano',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [364/420] AGENT: Rosalyn Fonseca

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rosalyn Fonseca', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rosalynmolleda@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-9609115', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Rosalyn', 'Fonseca');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rosalyn Fonseca',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [365/420] AGENT: Veronica Suarez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Veronica Suarez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'vcsv20@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-6349764', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Veronica', 'Suarez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Veronica Suarez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [366/420] AGENT: Manuel De Pablos Barboza

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Manuel De Pablos Barboza', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'manudepablos777@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-6867882', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Manuel', 'De', 'Pablos Barboza');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Manuel De Pablos Barboza',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [367/420] AGENT: Maria Isolina Martinez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Isolina Martinez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Marimafe07@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-6336082', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Isolina', 'Martinez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Isolina Martinez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [368/420] AGENCY: Yeraldit Barreto

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Yeraldit Barreto', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'yeraldit@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '=58-416-3647963', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Yeraldit Barreto',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [369/420] AGENT: Rafael Antonio Jimenez Gonzalez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rafael Antonio Jimenez Gonzalez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rafajimenezve@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-0740709', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Rafael', 'Antonio', 'Jimenez Gonzalez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rafael Antonio Jimenez Gonzalez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [370/420] AGENT: ALLYSON HERNANDO ALCON

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'ALLYSON HERNANDO ALCON', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ALLYSONHERNANDO@HOTMAIL.COM', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '=58-414-235-8264', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'ALLYSON', 'HERNANDO', 'ALCON');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'ALLYSON HERNANDO ALCON',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [371/420] AGENT: AMERICA CLORINDA BECK RODRIGUEZ

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'AMERICA CLORINDA BECK RODRIGUEZ', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'abeckve@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-337100', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'AMERICA', 'CLORINDA', 'BECK RODRIGUEZ');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'AMERICA CLORINDA BECK RODRIGUEZ',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [372/420] AGENT: Ramon Cabrera

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ramon Cabrera', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Ramong.Cabrera@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '1-809-481-5742', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Ramon', 'Cabrera');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ramon Cabrera',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [373/420] AGENT: ana rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'ana rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'anarg42@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '412-528-9060', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'ana', 'rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'ana rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [374/420] AGENT: Dacio Sosa

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Dacio Sosa', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'daciopop@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-334-7431', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Dacio', 'Sosa');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Dacio Sosa',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [375/420] AGENT: Jeanette Garcia

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Jeanette Garcia', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jgarm18@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-932-2060', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Jeanette', 'Garcia');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Jeanette Garcia',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [376/420] AGENT: Carlos Garcia Romero

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Carlos Garcia Romero', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'carlosgarciar02@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-340-3003', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Carlos', 'Garcia', 'Romero');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Carlos Garcia Romero',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [377/420] AGENT: Raiza Marlene Villegas

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Raiza Marlene Villegas', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'marlenevillegas2011@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4147905785', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Raiza', 'Marlene', 'Villegas');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Raiza Marlene Villegas',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [378/420] AGENT: Vanessa Rendón

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Vanessa Rendón', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'vjrh13@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584241089582', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Vanessa', 'Rendón');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Vanessa Rendón',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [379/420] AGENT: Rodolfo Montero

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rodolfo Montero', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rodolfodelgado2007@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-6438433', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Rodolfo', 'Montero');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rodolfo Montero',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [380/420] AGENT: Tamara Gonzalez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Tamara Gonzalez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'tamaragardines20@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '34-675524143', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Tamara', 'Gonzalez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Tamara Gonzalez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [381/420] AGENT: Vanessa Rendón

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Vanessa Rendón', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'vjrh13@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584241089582', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Vanessa', 'Rendón');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Vanessa Rendón',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [382/420] AGENT: Maria Vasquez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Vasquez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mariacarolinavasquez@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-416-6215877', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Maria', 'Vasquez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Vasquez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [383/420] AGENT: Rosa Prado

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rosa Prado', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rprado0821@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4241824035', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Rosa', 'Prado');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rosa Prado',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [384/420] AGENCY: Tahiruma Colina

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Tahiruma Colina', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'TAHICOLINA@GMAIL.COM', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '0426-1940772', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Tahiruma Colina',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [385/420] AGENT: CARLA VIRGINIA GUTIERREZ SOCORRO

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'CARLA VIRGINIA GUTIERREZ SOCORRO', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'carlavg23@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-6130029', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'CARLA', 'VIRGINIA', 'GUTIERREZ SOCORRO');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'CARLA VIRGINIA GUTIERREZ SOCORRO',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [386/420] AGENT: LUZ MALDONADO

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'LUZ MALDONADO', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'luzma58maldonado@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-261-4176274', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'LUZ', 'MALDONADO');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'LUZ MALDONADO',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [387/420] AGENT: MARIA BETHINA SARCOS

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'MARIA BETHINA SARCOS', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'msarcos02@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-6936304', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'MARIA', 'BETHINA', 'SARCOS');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'MARIA BETHINA SARCOS',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [388/420] AGENT: Nancy Almanzar

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Nancy Almanzar', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'iliana58@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '201-283-7599', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Nancy', 'Almanzar');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Nancy Almanzar',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [389/420] AGENT: Lidiana Fernandez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Lidiana Fernandez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lidianafernandez@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-7912315', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Lidiana', 'Fernandez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Lidiana Fernandez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [390/420] AGENT: Liz Perozo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Liz Perozo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'lperozo@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '=58-412-1231944', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Liz', 'Perozo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Liz Perozo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [391/420] AGENT: Amir Asaff

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Amir Asaff', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'amir_asaff@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-6359212', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Amir', 'Asaff');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Amir Asaff',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [392/420] AGENT: Javier Garcia

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Javier Garcia', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'jgarcia.mcbo@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-0756270', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Javier', 'Garcia');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Javier Garcia',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [393/420] AGENT: Douglas Gonzalez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Douglas Gonzalez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'douglasleong@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-5398526', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Douglas', 'Gonzalez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Douglas Gonzalez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [394/420] AGENCY: Marielina Herrera

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Marielina Herrera', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'marielinam@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-6085208', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Marielina Herrera',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [395/420] AGENT: Fabiana Pacheco

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Fabiana Pacheco', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'a26_fabiana@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-6029707', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Fabiana', 'Pacheco');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Fabiana Pacheco',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [396/420] AGENT: Miguel Indavec

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Miguel Indavec', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'miguelindavec@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-6416964', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Miguel', 'Indavec');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Miguel Indavec',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [397/420] AGENCY: Estepfanny Castillo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Estepfanny Castillo', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'stefyglenn@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-6788375', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Estepfanny Castillo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [398/420] AGENT: Rebeca Oxford de Yrureta

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Rebeca Oxford de Yrureta', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'rebeca_oxford@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-3860259', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Rebeca', 'Oxford', 'de Yrureta');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Rebeca Oxford de Yrureta',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [399/420] AGENT: SAMIR GHANNOUM HITTI

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'SAMIR GHANNOUM HITTI', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'ghannoumsam@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-302-7359', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'SAMIR', 'GHANNOUM', 'HITTI');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'SAMIR GHANNOUM HITTI',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [400/420] AGENCY: Naskary Granadillo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Naskary Granadillo', 'legalperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'naskarygranadillo@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4162196300', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO legal_person (id)
VALUES (@person_id);

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Naskary Granadillo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agency', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agency (id, legal_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [401/420] AGENT: Alfredo Carrillo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alfredo Carrillo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'acarrillo@wiacapital.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '57-3107985623', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Alfredo', 'Carrillo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alfredo Carrillo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [402/420] AGENT: JOEL GARCIA

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'JOEL GARCIA', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'GARCIAJOELR@GMAIL.COM', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584261261134', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'JOEL', 'GARCIA');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'JOEL GARCIA',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [403/420] AGENT: Maria Milagros Vazquez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Maria Milagros Vazquez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'milyvp@yahoo.es', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-327-9911', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Maria', 'Milagros', 'Vazquez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Maria Milagros Vazquez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [404/420] AGENT: Milagros Valladares de Figueira

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Milagros Valladares de Figueira', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'management@openinsurances.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '407-4438328', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Milagros', 'Valladares', 'de Figueira');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Milagros Valladares de Figueira',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [405/420] AGENT: Francis Restrepo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Francis Restrepo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Dayana.restrepoleon@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-101-2794', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Francis', 'Restrepo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Francis Restrepo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [406/420] AGENT: Natasha Gabriela Prince Quero

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Natasha Gabriela Prince Quero', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Princenatacha@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '4244682028', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Natasha', 'Gabriela', 'Prince Quero');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Natasha Gabriela Prince Quero',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [407/420] AGENT: Hector Jose Ramirez Bravo

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Hector Jose Ramirez Bravo', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'hjramirezb@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-1851217', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Hector', 'Jose', 'Ramirez Bravo');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Hector Jose Ramirez Bravo',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [408/420] AGENT: Paolo Hamann

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Paolo Hamann', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'paolohc91@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '989-01-3323', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Paolo', 'Hamann');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Paolo Hamann',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [409/420] AGENT: ROMAN ARTURO ROMERO MEZA

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'ROMAN ARTURO ROMERO MEZA', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'roman.romero1@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-142-0354', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'ROMAN', 'ARTURO', 'ROMERO MEZA');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'ROMAN ARTURO ROMERO MEZA',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [410/420] AGENT: Silvia E. Bukowitz

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Silvia E. Bukowitz', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'silvia.bukowitz15@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-424-699-7866', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Silvia', 'E.', 'Bukowitz');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Silvia E. Bukowitz',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [411/420] AGENT: Johana Andrade

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Johana Andrade', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'Joa.moyeda17@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '786-740-3778', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Johana', 'Andrade');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Johana Andrade',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [412/420] AGENT: Ernesto Martinez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ernesto Martinez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'emartinez@facebank.pr', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-751-1978', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Ernesto', 'Martinez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ernesto Martinez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [413/420] AGENT: Beatriz Leon

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Beatriz Leon', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'beathree2@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-372-9856', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Beatriz', 'Leon');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Beatriz Leon',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [414/420] AGENT: Pedro Chavez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Pedro Chavez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'chavezycagnoli@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Pedro', 'Chavez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Pedro Chavez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [415/420] AGENT: Liliana Rodriguez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Liliana Rodriguez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'mafali29@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '584123439210', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Liliana', 'Rodriguez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Liliana Rodriguez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [416/420] AGENT: GISELA PEREZ GOMES

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'GISELA PEREZ GOMES', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'giseloschorros@hotmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-412-541-0115', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'GISELA', 'PEREZ', 'GOMES');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'GISELA PEREZ GOMES',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [417/420] AGENT: Ibrahim Gonzalez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Ibrahim Gonzalez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'igonzalez@agbinsurance.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '561-447-0338', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Ibrahim', 'Gonzalez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Ibrahim Gonzalez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [418/420] AGENT: Alfredo Ramirez

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Alfredo Ramirez', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'acardenas@ofgservices.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-212-993-1711', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Alfredo', 'Ramirez');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Alfredo Ramirez',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [419/420] AGENT: Fernando Contreras

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Fernando Contreras', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'fercon@telcel.net.ve', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414 - 420 2151', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, last_name)
VALUES (@person_id, 'Fernando', 'Contreras');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Fernando Contreras',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;

-- [420/420] AGENT: Eduardo Acosta Barreto

INSERT INTO person (id, full_name, dtype, is_active, created_at, updated_at, deleted_at)
VALUES (@person_id, 'Eduardo Acosta Barreto', 'realperson', 1, NOW(), NOW(), NULL);

INSERT INTO email (id, person_id, value, is_active, created_at, updated_at, deleted_at)
VALUES (@email_id, @person_id, 'acostaeduar@gmail.com', 1, NOW(), NOW(), NULL);
SET @email_id = @email_id + 1;

INSERT INTO phone (id, person_id, number, is_active, created_at, updated_at, deleted_at)
VALUES (@phone_id, @person_id, '58-414-341-5497', 1, NOW(), NOW(), NULL);
SET @phone_id = @phone_id + 1;

INSERT INTO real_person (id, first_name, middle_name, last_name)
VALUES (@person_id, 'Eduardo', 'Acosta', 'Barreto');

INSERT INTO general_agent (id, full_name, code, dtype, is_active,
                          has_checking_account, has_corporate_account,
                          created_at, updated_at, deleted_at)
VALUES (@general_agent_id, 'Eduardo Acosta Barreto',
        CONCAT('QRM', LPAD(@general_agent_id, 6, '0')),
        'agent', 1, 0, 0, NOW(), NOW(), NULL);

INSERT INTO agent (id, real_person_id)
VALUES (@general_agent_id, @person_id);

SET @person_id = @person_id + 1;
SET @general_agent_id = @general_agent_id + 1;
