From a84fd670836a590bdf1c60db1eded3ced08358ea Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Thu, 9 Jan 2025 15:27:24 +0100 Subject: [PATCH 01/20] add migration --- .../migrations/20250109152531_email_array.sql | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 supabase/migrations/20250109152531_email_array.sql diff --git a/supabase/migrations/20250109152531_email_array.sql b/supabase/migrations/20250109152531_email_array.sql new file mode 100644 index 0000000..c0778fd --- /dev/null +++ b/supabase/migrations/20250109152531_email_array.sql @@ -0,0 +1,44 @@ +alter table contacts add column email_array text[]; + +update contacts set email_array = array[email]; + +drop view contacts_summary; + +alter table contacts drop column email; + +alter table contacts rename column email_array to email; + +create view contacts_summary +as +select + co.id, + co.first_name, + co.last_name, + co.gender, + co.title, + co.email, + co.phone_1_number, + co.phone_1_type, + co.phone_2_number, + co.phone_2_type, + co.background, + co.avatar, + co.first_seen, + co.last_seen, + co.has_newsletter, + co.status, + co.tags, + co.company_id, + co.sales_id, + co.linkedin_url, + c.name as company_name, + count(distinct t.id) as nb_tasks +from + contacts co +left join + tasks t on co.id = t.contact_id +left join + companies c on co.company_id = c.id +group by + co.id, c.name; + From 21450cd8bfe371ad1f6c926de9229c9aeb25bdef Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Thu, 9 Jan 2025 17:26:43 +0100 Subject: [PATCH 02/20] update the app --- doc/user/import-contacts.md | 2 +- src/contacts/ContactAside.tsx | 37 +++++++++++++------ src/contacts/ContactInputs.tsx | 21 +++++++---- src/contacts/contacts_export.csv | 2 +- src/contacts/useContactImport.tsx | 4 +- .../commons/getContactAvatar.spec.ts | 29 ++++++++++++--- src/providers/commons/getContactAvatar.ts | 36 +++++++++--------- .../fakerest/dataGenerator/contacts.ts | 2 +- src/providers/fakerest/dataProvider.ts | 2 +- src/providers/supabase/dataProvider.ts | 16 +++++--- src/types.ts | 2 +- .../functions/postmark/addNoteToContact.ts | 4 +- test-data/contacts.csv | 2 +- 13 files changed, 104 insertions(+), 55 deletions(-) diff --git a/doc/user/import-contacts.md b/doc/user/import-contacts.md index badc896..786e941 100644 --- a/doc/user/import-contacts.md +++ b/doc/user/import-contacts.md @@ -14,7 +14,7 @@ An example of the expected CSV file is available in the contact import modal: first_name,last_name,gender,title,company,email,phone_1_number,phone_1_type,phone_2_number,phone_2_type,background,first_seen,last_seen,has_newsletter,status,tags,linkedin_url John,Doe,male,Sales Executive,Acme,john@doe.example,659-980-2015,work,740.645.3807,home,,2024-07-01,2024-07-01T11:54:49.950Z,FALSE,in-contract,"influencer, developer",https://www.linkedin.com/in/johndoe Jane,Doe,female,Designer,Acme,jane@doe.example,659-980-2020,work,740.647.3802,home,,2024-07-01,2024-07-01T11:54:49.950Z,FALSE,in-contract,"UI, design",https://www.linkedin.com/in/janedoe -Camille,Brown,nonbinary,Accountant,Atomic Corp,person@doe.example,659-910-3010,work,740.698.3752,home,,2024-07-01,2024-07-01T11:54:49.950Z,FALSE,in-contract,"payroll, accountant",, +Camille,Brown,nonbinary,Accountant,Atomic Corp,camille.brown@atomic.corp;person@doe.example,659-910-3010,work,740.698.3752,home,,2024-07-01,2024-07-01T11:54:49.950Z,FALSE,in-contract,"payroll, accountant", ``` When importing contacts, companies and tags will be automatically matched if they exist on the system, or imported ortherwise. diff --git a/src/contacts/ContactAside.tsx b/src/contacts/ContactAside.tsx index 2b35029..febe7ec 100644 --- a/src/contacts/ContactAside.tsx +++ b/src/contacts/ContactAside.tsx @@ -3,18 +3,22 @@ import LinkedInIcon from '@mui/icons-material/LinkedIn'; import PhoneIcon from '@mui/icons-material/Phone'; import { Box, Divider, Stack, SvgIcon, Typography } from '@mui/material'; import { + ArrayField, DateField, DeleteButton, EditButton, EmailField, FunctionField, + RecordContextProvider, ReferenceField, ReferenceManyField, SelectField, ShowButton, + SingleFieldList, TextField, UrlField, useRecordContext, + WithRecord, } from 'react-admin'; import { AddTask } from '../tasks/AddTask'; import { TasksIterator } from '../tasks/TasksIterator'; @@ -40,17 +44,28 @@ export const ContactAside = ({ link = 'edit' }: { link?: 'edit' | 'show' }) => { Personal info - {record.email && ( - - - - - )} + + + ( + + + + + + + )} + /> + + {record.has_newsletter && ( Subscribed to newsletter diff --git a/src/contacts/ContactInputs.tsx b/src/contacts/ContactInputs.tsx index d327fc9..d77379d 100644 --- a/src/contacts/ContactInputs.tsx +++ b/src/contacts/ContactInputs.tsx @@ -7,11 +7,13 @@ import { useTheme, } from '@mui/material'; import { + ArrayInput, AutocompleteInput, BooleanInput, RadioButtonGroupInput, ReferenceInput, SelectInput, + SimpleFormIterator, TextInput, email, required, @@ -148,13 +150,18 @@ const ContactPersonalInformationInputs = () => { return ( Personal info - + + + + + { - const singleEmail = email.split(',')[0]; + const emailArray = email.split(';'); const company = companyName?.trim() ? companies.get(companyName.trim()) : undefined; @@ -117,7 +117,7 @@ export function useContactImport() { last_name, gender, title, - email: singleEmail, + email: emailArray, phone_1_number, phone_1_type, phone_2_number, diff --git a/src/providers/commons/getContactAvatar.spec.ts b/src/providers/commons/getContactAvatar.spec.ts index 3de1eb3..45fcba2 100644 --- a/src/providers/commons/getContactAvatar.spec.ts +++ b/src/providers/commons/getContactAvatar.spec.ts @@ -16,18 +16,18 @@ Object.defineProperty(globalThis, 'crypto', { }); it('should return gravatar URL for anthony@marmelab.com', async () => { - const email = 'anthony@marmelab.com'; + const email = ['anthony@marmelab.com']; const record: Partial = { email }; const avatarUrl = await getContactAvatar(record); - const hashedEmail = await hash(email); + const hashedEmail = await hash(email[0]); expect(avatarUrl).toBe( `https://www.gravatar.com/avatar/${hashedEmail}?d=404` ); }); it('should return favicon URL if gravatar does not exist', async () => { - const email = 'no-gravatar@gravatar.com'; + const email = ['no-gravatar@gravatar.com']; const record: Partial = { email }; const avatarUrl = await getContactAvatar(record); @@ -35,7 +35,7 @@ it('should return favicon URL if gravatar does not exist', async () => { }); it('should not return favicon URL if not domain not allowed', async () => { - const email = 'no-gravatar@gmail.com'; + const email = ['no-gravatar@gmail.com']; const record: Partial = { email }; const avatarUrl = await getContactAvatar(record); @@ -49,10 +49,29 @@ it('should return null if no email is provided', async () => { expect(avatarUrl).toBeNull(); }); +it('should return null if an empty array is provided', async () => { + const email: string[] = []; + const record: Partial = { email }; + + const avatarUrl = await getContactAvatar(record); + expect(avatarUrl).toBeNull(); +}); + it('should return null if email has no gravatar or validate domain', async () => { - const email = 'anthony@fake-domain-marmelab.com'; + const email = ['anthony@fake-domain-marmelab.com']; const record: Partial = { email }; const avatarUrl = await getContactAvatar(record); expect(avatarUrl).toBeNull(); }); + +it('should return gravatar URL for 2nd email if 1st email has no gravatar nor valid domain', async () => { + const email = ['anthony@fake-domain-marmelab.com', 'anthony@marmelab.com']; + const record: Partial = { email }; + + const avatarUrl = await getContactAvatar(record); + const hashedEmail = await hash(email[1]); + expect(avatarUrl).toBe( + `https://www.gravatar.com/avatar/${hashedEmail}?d=404` + ); +}); diff --git a/src/providers/commons/getContactAvatar.ts b/src/providers/commons/getContactAvatar.ts index 5390961..93370bb 100644 --- a/src/providers/commons/getContactAvatar.ts +++ b/src/providers/commons/getContactAvatar.ts @@ -40,29 +40,31 @@ async function getFaviconUrl(domain: string): Promise { export async function getContactAvatar( record: Partial ): Promise { - if (!record.email) { + if (!record.email || !record.email.length) { return null; } - // Step 1: Try to get Gravatar image - const gravatarUrl = await getGravatarUrl(record.email); - try { - const gravatarResponse = await fetch(gravatarUrl); - if (gravatarResponse.ok) { - return gravatarUrl; + for (const email of record.email) { + // Step 1: Try to get Gravatar image + const gravatarUrl = await getGravatarUrl(email); + try { + const gravatarResponse = await fetch(gravatarUrl); + if (gravatarResponse.ok) { + return gravatarUrl; + } + } catch (error) { + // Gravatar not found } - } catch (error) { - // Gravatar not found - } - // Step 2: Try to get favicon from email domain - const domain = record.email.split('@')[1]; - const faviconUrl = await getFaviconUrl(domain); - if (faviconUrl) { - return faviconUrl; - } + // Step 2: Try to get favicon from email domain + const domain = email.split('@')[1]; + const faviconUrl = await getFaviconUrl(domain); + if (faviconUrl) { + return faviconUrl; + } - // TODO: Step 3: Try to get image from LinkedIn. + // TODO: Step 3: Try to get image from LinkedIn. + } return null; } diff --git a/src/providers/fakerest/dataGenerator/contacts.ts b/src/providers/fakerest/dataGenerator/contacts.ts index 1f7fba5..24bb59b 100644 --- a/src/providers/fakerest/dataGenerator/contacts.ts +++ b/src/providers/fakerest/dataGenerator/contacts.ts @@ -33,7 +33,7 @@ export const generateContacts = (db: Db, size = 500): Required[] => { const gender = random.arrayElement(defaultContactGender).value; const first_name = name.firstName(gender as any); const last_name = name.lastName(); - const email = internet.email(first_name, last_name); + const email = [internet.email(first_name, last_name)]; const avatar = { src: has_avatar ? 'https://marmelab.com/posters/avatar-' + diff --git a/src/providers/fakerest/dataProvider.ts b/src/providers/fakerest/dataProvider.ts index f43e8ed..193e41a 100644 --- a/src/providers/fakerest/dataProvider.ts +++ b/src/providers/fakerest/dataProvider.ts @@ -62,7 +62,7 @@ async function processContactAvatar( params: CreateParams | UpdateParams ): Promise | UpdateParams> { const { data } = params; - if (!data.avatar && !data.email) { + if (data.avatar || !data.email || !data.email.length) { return params; } const avatarUrl = await getContactAvatar(data); diff --git a/src/providers/supabase/dataProvider.ts b/src/providers/supabase/dataProvider.ts index 79a6bca..cc55d83 100644 --- a/src/providers/supabase/dataProvider.ts +++ b/src/providers/supabase/dataProvider.ts @@ -70,7 +70,7 @@ async function processContactAvatar( params: CreateParams | UpdateParams ): Promise | UpdateParams> { const { data } = params; - if (!data.avatar && !data.email) { + if (data.avatar || !data.email || !data.email.length) { return params; } const avatarUrl = await getContactAvatar(data); @@ -339,10 +339,16 @@ const applyFullTextSearch = (columns: string[]) => (params: GetListParams) => { filter: { ...filter, '@or': columns.reduce( - (acc, column) => ({ - ...acc, - [`${column}@ilike`]: q, - }), + (acc, column) => + column === 'email' + ? { + ...acc, + [`${column}@cs`]: `{${q}}`, + } + : { + ...acc, + [`${column}@ilike`]: q, + }, {} ), }, diff --git a/src/types.ts b/src/types.ts index c2c88ee..f72cdbd 100644 --- a/src/types.ts +++ b/src/types.ts @@ -75,7 +75,7 @@ export type Contact = { last_name: string; title: string; company_id: Identifier; - email: string; + email: string[]; avatar?: Partial; linkedin_url?: string | null; first_seen: string; diff --git a/supabase/functions/postmark/addNoteToContact.ts b/supabase/functions/postmark/addNoteToContact.ts index 605800e..1650362 100644 --- a/supabase/functions/postmark/addNoteToContact.ts +++ b/supabase/functions/postmark/addNoteToContact.ts @@ -40,7 +40,7 @@ export const addNoteToContact = async ({ await supabaseAdmin .from('contacts') .select('*') - .eq('email', email) + .overlaps('email', [email]) .maybeSingle(); if (fetchContactError) return new Response( @@ -93,7 +93,7 @@ export const addNoteToContact = async ({ .insert({ first_name: firstName, last_name: lastName, - email, + email: [email], company_id: company.id, sales_id: sales.id, first_seen: new Date(), diff --git a/test-data/contacts.csv b/test-data/contacts.csv index 083235a..8e3cbf1 100644 --- a/test-data/contacts.csv +++ b/test-data/contacts.csv @@ -216,4 +216,4 @@ id,first_name,last_name,gender,title,company_id,company_name,email,phone_number1 245,Gene,Bauch,male,Mission-critical,33,Rosenbaum - Olson,Gene44@yahoo.com,645.867.5865 x5402,Home,(828) 711-2698,Other,Quia cum temporibus minima enim dolore repudiandae iure blanditiis.,,2023-10-27T00:26:50.134Z,2023-10-27T00:26:50.134Z,false,cold,,0,0,2,Rosenbaum - Olson,Jane Doe 451,Dennis,Doyle,male,Back-end,12,"Price, Macejkovic and Bahringer",Dennis31@gmail.com,1-995-686-2065 x2887,Other,246-440-3035 x60384,Home,Excepturi eos harum.,https://marmelab.com/posters/avatar-112.jpeg,2023-09-21T05:00:53.338Z,2023-09-21T05:00:53.338Z,false,cold,musician,0,0,0,"Price, Macejkovic and Bahringer",Jane Doe 439,Tommie,Bayer,male,User-centric,54,"Howe, Predovic and Hessel",Tommie_Bayer20@yahoo.com,206.660.2139,Home,(961) 659-1995 x7847,Home,Iure fugiat excepturi asperiores deserunt in dolorum.,,2023-05-11T05:04:47.175Z,2023-05-11T05:04:47.175Z,true,in-contract,,0,0,1,"Howe, Predovic and Hessel",Jane Doe -221,Noel,Steuber,nonbinary,Next-generation,33,Rosenbaum - Olson,Noel.Steuber9@yahoo.com,748-666-3394,Home,(713) 756-9351,Home,Quidem non maiores qui iste pariatur.,,2022-06-30T08:35:08.060Z,2022-06-30T08:35:08.060Z,false,in-contract,,0,0,1,Rosenbaum - Olson,Jane Doe \ No newline at end of file +221,Noel,Steuber,nonbinary,Next-generation,33,Rosenbaum - Olson,Noel.Steuber9@yahoo.com;noel.steuber9@gmail.com,748-666-3394,Home,(713) 756-9351,Home,Quidem non maiores qui iste pariatur.,,2022-06-30T08:35:08.060Z,2022-06-30T08:35:08.060Z,false,in-contract,,0,0,1,Rosenbaum - Olson,Jane Doe \ No newline at end of file From a7a644a7f51396c56519ffe7ca203d794727e2c3 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Fri, 10 Jan 2025 17:10:05 +0100 Subject: [PATCH 03/20] update migration to include type --- supabase/migrations/20250109152531_email_array.sql | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/supabase/migrations/20250109152531_email_array.sql b/supabase/migrations/20250109152531_email_array.sql index c0778fd..be5a74e 100644 --- a/supabase/migrations/20250109152531_email_array.sql +++ b/supabase/migrations/20250109152531_email_array.sql @@ -1,13 +1,11 @@ -alter table contacts add column email_array text[]; +alter table contacts add column email_jsonb jsonb; -update contacts set email_array = array[email]; +update contacts set email_jsonb = ('[{"email": ' || email || ', "type": "Other"}]')::jsonb; drop view contacts_summary; alter table contacts drop column email; -alter table contacts rename column email_array to email; - create view contacts_summary as select @@ -16,7 +14,8 @@ select co.last_name, co.gender, co.title, - co.email, + co.email_jsonb, + jsonb_path_query_array(co.email_jsonb, '$[*].email')::text as email_fts, co.phone_1_number, co.phone_1_type, co.phone_2_number, From 7c6822bbeff820270943c182bc810fae4c8fabf3 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Fri, 10 Jan 2025 17:41:15 +0100 Subject: [PATCH 04/20] wip: add email type --- src/contacts/ContactAside.tsx | 42 ++++++++++--------- src/contacts/ContactInputs.tsx | 42 ++++++++++++++----- .../commons/getContactAvatar.spec.ts | 41 +++++++++++------- src/providers/commons/getContactAvatar.ts | 4 +- .../fakerest/dataGenerator/contacts.ts | 9 +++- src/providers/fakerest/dataProvider.ts | 2 +- src/providers/supabase/dataProvider.ts | 4 +- src/types.ts | 7 +++- .../functions/postmark/addNoteToContact.ts | 2 +- ...ray.sql => 20250109152531_email_jsonb.sql} | 0 10 files changed, 98 insertions(+), 55 deletions(-) rename supabase/migrations/{20250109152531_email_array.sql => 20250109152531_email_jsonb.sql} (100%) diff --git a/src/contacts/ContactAside.tsx b/src/contacts/ContactAside.tsx index febe7ec..403f6cb 100644 --- a/src/contacts/ContactAside.tsx +++ b/src/contacts/ContactAside.tsx @@ -9,7 +9,6 @@ import { EditButton, EmailField, FunctionField, - RecordContextProvider, ReferenceField, ReferenceManyField, SelectField, @@ -44,26 +43,29 @@ export const ContactAside = ({ link = 'edit' }: { link?: 'edit' | 'show' }) => { Personal info - + - ( - - - - - - - )} - /> + + + + {' '} + + row.type !== 'Other' && ( + + ) + } + /> + + {record.has_newsletter && ( diff --git a/src/contacts/ContactInputs.tsx b/src/contacts/ContactInputs.tsx index d77379d..c3d29d4 100644 --- a/src/contacts/ContactInputs.tsx +++ b/src/contacts/ContactInputs.tsx @@ -35,8 +35,8 @@ export const ContactInputs = () => { return ( - - + + @@ -44,7 +44,7 @@ export const ContactInputs = () => { orientation={isMobile ? 'horizontal' : 'vertical'} flexItem /> - + @@ -150,15 +150,31 @@ const ContactPersonalInformationInputs = () => { return ( Personal info - - + + + @@ -172,9 +188,11 @@ const ContactPersonalInformationInputs = () => { source="phone_1_type" label="Type" helperText={false} - optionText={choice => choice.id} + optionText="id" choices={[{ id: 'Work' }, { id: 'Home' }, { id: 'Other' }]} - defaultValue={'Work'} + defaultValue="Work" + fullWidth={false} + sx={{ width: 130, minWidth: 130 }} /> @@ -187,9 +205,11 @@ const ContactPersonalInformationInputs = () => { source="phone_2_type" label="Type" helperText={false} - optionText={choice => choice.id} + optionText="id" choices={[{ id: 'Work' }, { id: 'Home' }, { id: 'Other' }]} - defaultValue={'Work'} + defaultValue="Work" + fullWidth={false} + sx={{ width: 130, minWidth: 130 }} /> { - const email = ['anthony@marmelab.com']; - const record: Partial = { email }; + const email: EmailAndType[] = [ + { email: 'anthony@marmelab.com', type: 'Work' }, + ]; + const record: Partial = { email_jsonb: email }; const avatarUrl = await getContactAvatar(record); - const hashedEmail = await hash(email[0]); + const hashedEmail = await hash(email[0].email); expect(avatarUrl).toBe( `https://www.gravatar.com/avatar/${hashedEmail}?d=404` ); }); it('should return favicon URL if gravatar does not exist', async () => { - const email = ['no-gravatar@gravatar.com']; - const record: Partial = { email }; + const email: EmailAndType[] = [ + { email: 'no-gravatar@gravatar.com', type: 'Work' }, + ]; + const record: Partial = { email_jsonb: email }; const avatarUrl = await getContactAvatar(record); expect(avatarUrl).toBe('https://gravatar.com/favicon.ico'); }); it('should not return favicon URL if not domain not allowed', async () => { - const email = ['no-gravatar@gmail.com']; - const record: Partial = { email }; + const email: EmailAndType[] = [ + { email: 'no-gravatar@gmail.com', type: 'Work' }, + ]; + const record: Partial = { email_jsonb: email }; const avatarUrl = await getContactAvatar(record); expect(avatarUrl).toBeNull(); @@ -50,27 +56,32 @@ it('should return null if no email is provided', async () => { }); it('should return null if an empty array is provided', async () => { - const email: string[] = []; - const record: Partial = { email }; + const email: EmailAndType[] = []; + const record: Partial = { email_jsonb: email }; const avatarUrl = await getContactAvatar(record); expect(avatarUrl).toBeNull(); }); it('should return null if email has no gravatar or validate domain', async () => { - const email = ['anthony@fake-domain-marmelab.com']; - const record: Partial = { email }; + const email: EmailAndType[] = [ + { email: 'anthony@fake-domain-marmelab.com', type: 'Work' }, + ]; + const record: Partial = { email_jsonb: email }; const avatarUrl = await getContactAvatar(record); expect(avatarUrl).toBeNull(); }); it('should return gravatar URL for 2nd email if 1st email has no gravatar nor valid domain', async () => { - const email = ['anthony@fake-domain-marmelab.com', 'anthony@marmelab.com']; - const record: Partial = { email }; + const email: EmailAndType[] = [ + { email: 'anthony@fake-domain-marmelab.com', type: 'Work' }, + { email: 'anthony@marmelab.com', type: 'Work' }, + ]; + const record: Partial = { email_jsonb: email }; const avatarUrl = await getContactAvatar(record); - const hashedEmail = await hash(email[1]); + const hashedEmail = await hash(email[1].email); expect(avatarUrl).toBe( `https://www.gravatar.com/avatar/${hashedEmail}?d=404` ); diff --git a/src/providers/commons/getContactAvatar.ts b/src/providers/commons/getContactAvatar.ts index 93370bb..417ba18 100644 --- a/src/providers/commons/getContactAvatar.ts +++ b/src/providers/commons/getContactAvatar.ts @@ -40,11 +40,11 @@ async function getFaviconUrl(domain: string): Promise { export async function getContactAvatar( record: Partial ): Promise { - if (!record.email || !record.email.length) { + if (!record.email_jsonb || !record.email_jsonb.length) { return null; } - for (const email of record.email) { + for (const { email } of record.email_jsonb) { // Step 1: Try to get Gravatar image const gravatarUrl = await getGravatarUrl(email); try { diff --git a/src/providers/fakerest/dataGenerator/contacts.ts b/src/providers/fakerest/dataGenerator/contacts.ts index 24bb59b..dbd51af 100644 --- a/src/providers/fakerest/dataGenerator/contacts.ts +++ b/src/providers/fakerest/dataGenerator/contacts.ts @@ -33,7 +33,12 @@ export const generateContacts = (db: Db, size = 500): Required[] => { const gender = random.arrayElement(defaultContactGender).value; const first_name = name.firstName(gender as any); const last_name = name.lastName(); - const email = [internet.email(first_name, last_name)]; + const email = [ + { + email: internet.email(first_name, last_name), + type: 'Work' as const, + }, + ]; const avatar = { src: has_avatar ? 'https://marmelab.com/posters/avatar-' + @@ -67,7 +72,7 @@ export const generateContacts = (db: Db, size = 500): Required[] => { title: title.charAt(0).toUpperCase() + title.substr(1), company_id: company.id, company_name: company.name, - email, + email_jsonb: email, phone_1_number: phone.phoneNumber(), phone_1_type: random.arrayElement(['Work', 'Home', 'Other']), phone_2_number: phone.phoneNumber(), diff --git a/src/providers/fakerest/dataProvider.ts b/src/providers/fakerest/dataProvider.ts index 193e41a..ad3c062 100644 --- a/src/providers/fakerest/dataProvider.ts +++ b/src/providers/fakerest/dataProvider.ts @@ -62,7 +62,7 @@ async function processContactAvatar( params: CreateParams | UpdateParams ): Promise | UpdateParams> { const { data } = params; - if (data.avatar || !data.email || !data.email.length) { + if (data.avatar || !data.email_jsonb || !data.email_jsonb.length) { return params; } const avatarUrl = await getContactAvatar(data); diff --git a/src/providers/supabase/dataProvider.ts b/src/providers/supabase/dataProvider.ts index cc55d83..7ee126c 100644 --- a/src/providers/supabase/dataProvider.ts +++ b/src/providers/supabase/dataProvider.ts @@ -70,7 +70,7 @@ async function processContactAvatar( params: CreateParams | UpdateParams ): Promise | UpdateParams> { const { data } = params; - if (data.avatar || !data.email || !data.email.length) { + if (data.avatar || !data.email_jsonb || !data.email_jsonb.length) { return params; } const avatarUrl = await getContactAvatar(data); @@ -343,7 +343,7 @@ const applyFullTextSearch = (columns: string[]) => (params: GetListParams) => { column === 'email' ? { ...acc, - [`${column}@cs`]: `{${q}}`, + [`email_fts@ilike`]: q, } : { ...acc, diff --git a/src/types.ts b/src/types.ts index f72cdbd..bcd14dc 100644 --- a/src/types.ts +++ b/src/types.ts @@ -70,12 +70,17 @@ export type Company = { nb_deals?: number; } & Pick; +export type EmailAndType = { + email: string; + type: 'Work' | 'Home' | 'Other'; +}; + export type Contact = { first_name: string; last_name: string; title: string; company_id: Identifier; - email: string[]; + email_jsonb: EmailAndType[]; avatar?: Partial; linkedin_url?: string | null; first_seen: string; diff --git a/supabase/functions/postmark/addNoteToContact.ts b/supabase/functions/postmark/addNoteToContact.ts index 1650362..15c5b3c 100644 --- a/supabase/functions/postmark/addNoteToContact.ts +++ b/supabase/functions/postmark/addNoteToContact.ts @@ -40,7 +40,7 @@ export const addNoteToContact = async ({ await supabaseAdmin .from('contacts') .select('*') - .overlaps('email', [email]) + .overlaps('email', [email]) // FIXME .maybeSingle(); if (fetchContactError) return new Response( diff --git a/supabase/migrations/20250109152531_email_array.sql b/supabase/migrations/20250109152531_email_jsonb.sql similarity index 100% rename from supabase/migrations/20250109152531_email_array.sql rename to supabase/migrations/20250109152531_email_jsonb.sql From 9df632a59fc16371f7af3e6a5266ed47be470a98 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 13:16:30 +0100 Subject: [PATCH 05/20] fix processContactAvatar --- src/providers/fakerest/dataProvider.ts | 2 +- src/providers/supabase/dataProvider.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/providers/fakerest/dataProvider.ts b/src/providers/fakerest/dataProvider.ts index ad3c062..e66fe88 100644 --- a/src/providers/fakerest/dataProvider.ts +++ b/src/providers/fakerest/dataProvider.ts @@ -62,7 +62,7 @@ async function processContactAvatar( params: CreateParams | UpdateParams ): Promise | UpdateParams> { const { data } = params; - if (data.avatar || !data.email_jsonb || !data.email_jsonb.length) { + if (data.avatar?.src || !data.email_jsonb || !data.email_jsonb.length) { return params; } const avatarUrl = await getContactAvatar(data); diff --git a/src/providers/supabase/dataProvider.ts b/src/providers/supabase/dataProvider.ts index 7ee126c..57af8d6 100644 --- a/src/providers/supabase/dataProvider.ts +++ b/src/providers/supabase/dataProvider.ts @@ -70,7 +70,7 @@ async function processContactAvatar( params: CreateParams | UpdateParams ): Promise | UpdateParams> { const { data } = params; - if (data.avatar || !data.email_jsonb || !data.email_jsonb.length) { + if (data.avatar?.src || !data.email_jsonb || !data.email_jsonb.length) { return params; } const avatarUrl = await getContactAvatar(data); From c96af6c17647c81d64688b5e637ee1fe43a09c20 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 13:40:21 +0100 Subject: [PATCH 06/20] fix inbound email --- supabase/functions/postmark/addNoteToContact.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supabase/functions/postmark/addNoteToContact.ts b/supabase/functions/postmark/addNoteToContact.ts index 15c5b3c..e11858c 100644 --- a/supabase/functions/postmark/addNoteToContact.ts +++ b/supabase/functions/postmark/addNoteToContact.ts @@ -40,7 +40,7 @@ export const addNoteToContact = async ({ await supabaseAdmin .from('contacts') .select('*') - .overlaps('email', [email]) // FIXME + .contains('email_jsonb', JSON.stringify([{ email }])) .maybeSingle(); if (fetchContactError) return new Response( From d3c9cfc0737d6579bd8b2a9f2efa6957533513a8 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 14:09:50 +0100 Subject: [PATCH 07/20] phone_jsonb migration --- .../migrations/20250113132531_phone_jsonb.sql | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 supabase/migrations/20250113132531_phone_jsonb.sql diff --git a/supabase/migrations/20250113132531_phone_jsonb.sql b/supabase/migrations/20250113132531_phone_jsonb.sql new file mode 100644 index 0000000..95a24ed --- /dev/null +++ b/supabase/migrations/20250113132531_phone_jsonb.sql @@ -0,0 +1,67 @@ +alter table contacts add column phone_jsonb jsonb; + +update contacts set phone_jsonb = + concat( + '[', + case when phone_1_number is not null then + concat( + '{"number":"', + phone_1_number, + '","type":"', + phone_1_type, + '"}' + ) + else null end, + case when phone_2_number is not null then + concat( + ',', + '{"number":"', + phone_2_number, + '","type":"', + phone_2_type, + '"}' + ) + else null end, + ']' + )::jsonb; + +drop view contacts_summary; + +alter table contacts drop column phone_1_number; +alter table contacts drop column phone_1_type; +alter table contacts drop column phone_2_number; +alter table contacts drop column phone_2_type; + +create view contacts_summary +as +select + co.id, + co.first_name, + co.last_name, + co.gender, + co.title, + co.email_jsonb, + jsonb_path_query_array(co.email_jsonb, '$[*].email')::text as email_fts, + co.phone_jsonb, + jsonb_path_query_array(co.phone_jsonb, '$[*].number')::text as phone_fts, + co.background, + co.avatar, + co.first_seen, + co.last_seen, + co.has_newsletter, + co.status, + co.tags, + co.company_id, + co.sales_id, + co.linkedin_url, + c.name as company_name, + count(distinct t.id) as nb_tasks +from + contacts co +left join + tasks t on co.id = t.contact_id +left join + companies c on co.company_id = c.id +group by + co.id, c.name; + From e3ded1c91ca53af8e484d9971307ea534f832295 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 15:02:00 +0100 Subject: [PATCH 08/20] use phone_jsonb in CRM --- src/contacts/ContactAside.tsx | 51 +++++++---------- src/contacts/ContactInputs.tsx | 56 ++++++++----------- .../fakerest/dataGenerator/contacts.ts | 24 +++++--- src/providers/supabase/dataProvider.ts | 33 ++++++----- src/types.ts | 10 ++-- 5 files changed, 82 insertions(+), 92 deletions(-) diff --git a/src/contacts/ContactAside.tsx b/src/contacts/ContactAside.tsx index 403f6cb..4f99dc8 100644 --- a/src/contacts/ContactAside.tsx +++ b/src/contacts/ContactAside.tsx @@ -90,39 +90,26 @@ export const ContactAside = ({ link = 'edit' }: { link?: 'edit' | 'show' }) => { /> )} - {record.phone_1_number && ( - - - - {' '} - {record.phone_1_type !== 'Other' && ( - - )} - - - )} - {record.phone_2_number && ( - - - - {' '} - {record.phone_2_type !== 'Other' && ( - + + + + + {' '} + + row.type !== 'Other' && ( + + ) + } /> - )} - - - )} + + + + { /> - - - - - - - - + + + + + + + random.arrayElement(['Work', 'Home', 'Other']) as 'Work' | 'Home' | 'Other'; + export const generateContacts = (db: Db, size = 500): Required[] => { const nbAvailblePictures = 223; let numberOfContacts = 0; @@ -33,10 +36,20 @@ export const generateContacts = (db: Db, size = 500): Required[] => { const gender = random.arrayElement(defaultContactGender).value; const first_name = name.firstName(gender as any); const last_name = name.lastName(); - const email = [ + const email_jsonb = [ { email: internet.email(first_name, last_name), - type: 'Work' as const, + type: getRandomContactDetailsType(), + }, + ]; + const phone_jsonb = [ + { + number: phone.phoneNumber(), + type: getRandomContactDetailsType(), + }, + { + number: phone.phoneNumber(), + type: getRandomContactDetailsType(), }, ]; const avatar = { @@ -72,11 +85,8 @@ export const generateContacts = (db: Db, size = 500): Required[] => { title: title.charAt(0).toUpperCase() + title.substr(1), company_id: company.id, company_name: company.name, - email_jsonb: email, - phone_1_number: phone.phoneNumber(), - phone_1_type: random.arrayElement(['Work', 'Home', 'Other']), - phone_2_number: phone.phoneNumber(), - phone_2_type: random.arrayElement(['Work', 'Home', 'Other']), + email_jsonb, + phone_jsonb, background: lorem.sentence(), acquisition: random.arrayElement(['inbound', 'outbound']), avatar, diff --git a/src/providers/supabase/dataProvider.ts b/src/providers/supabase/dataProvider.ts index 57af8d6..6e77fa8 100644 --- a/src/providers/supabase/dataProvider.ts +++ b/src/providers/supabase/dataProvider.ts @@ -279,8 +279,7 @@ export const dataProvider = withLifecycleCallbacks( 'company_name', 'title', 'email', - 'phone_1_number', - 'phone_2_number', + 'phone', 'background', ])(params); }, @@ -338,19 +337,23 @@ const applyFullTextSearch = (columns: string[]) => (params: GetListParams) => { ...params, filter: { ...filter, - '@or': columns.reduce( - (acc, column) => - column === 'email' - ? { - ...acc, - [`email_fts@ilike`]: q, - } - : { - ...acc, - [`${column}@ilike`]: q, - }, - {} - ), + '@or': columns.reduce((acc, column) => { + if (column === 'email') + return { + ...acc, + [`email_fts@ilike`]: q, + }; + if (column === 'phone') + return { + ...acc, + [`phone_fts@ilike`]: q, + }; + else + return { + ...acc, + [`${column}@ilike`]: q, + }; + }, {}), }, }; }; diff --git a/src/types.ts b/src/types.ts index bcd14dc..3d80739 100644 --- a/src/types.ts +++ b/src/types.ts @@ -75,6 +75,11 @@ export type EmailAndType = { type: 'Work' | 'Home' | 'Other'; }; +export type PhoneNumberAndType = { + number: string; + type: 'Work' | 'Home' | 'Other'; +}; + export type Contact = { first_name: string; last_name: string; @@ -91,10 +96,7 @@ export type Contact = { sales_id: Identifier; status: string; background: string; - phone_1_type: 'Work' | 'Home' | 'Other'; - phone_1_number: string; - phone_2_type: 'Work' | 'Home' | 'Other'; - phone_2_number: string; + phone_jsonb: PhoneNumberAndType[]; nb_tasks?: number; company_name?: string; From 8c0534c41a4dc4a82e1f7e705ab4a29f744b5040 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 15:21:22 +0100 Subject: [PATCH 09/20] fix export --- src/contacts/ContactList.tsx | 43 +++++++++++++++++++++++++++--------- 1 file changed, 32 insertions(+), 11 deletions(-) diff --git a/src/contacts/ContactList.tsx b/src/contacts/ContactList.tsx index 227fde6..fe398ea 100644 --- a/src/contacts/ContactList.tsx +++ b/src/contacts/ContactList.tsx @@ -92,17 +92,38 @@ const exporter: Exporter = async (records, fetchRelatedRecords) => { const sales = await fetchRelatedRecords(records, 'sales_id', 'sales'); const tags = await fetchRelatedRecords(records, 'tags', 'tags'); - const contacts = records.map(contact => ({ - ...contact, - company: - contact.company_id != null - ? companies[contact.company_id].name - : undefined, - sales: `${sales[contact.sales_id].first_name} ${ - sales[contact.sales_id].last_name - }`, - tags: contact.tags.map(tagId => tags[tagId].name).join(', '), - })); + const contacts = records.map(contact => { + const exportedContact = { + ...contact, + company: + contact.company_id != null + ? companies[contact.company_id].name + : undefined, + sales: `${sales[contact.sales_id].first_name} ${ + sales[contact.sales_id].last_name + }`, + tags: contact.tags.map(tagId => tags[tagId].name).join(', '), + email_work: contact.email_jsonb.find(email => email.type === 'Work') + ?.email, + email_home: contact.email_jsonb.find(email => email.type === 'Home') + ?.email, + email_other: contact.email_jsonb.find( + email => email.type === 'Other' + )?.email, + email_jsonb: undefined, + phone_work: contact.phone_jsonb.find(phone => phone.type === 'Work') + ?.number, + phone_home: contact.phone_jsonb.find(phone => phone.type === 'Home') + ?.number, + phone_other: contact.phone_jsonb.find( + phone => phone.type === 'Other' + )?.number, + phone_jsonb: undefined, + }; + delete exportedContact.email_jsonb; + delete exportedContact.phone_jsonb; + return exportedContact; + }); return jsonExport(contacts, {}, (_err: any, csv: string) => { downloadCSV(csv, 'contacts'); }); From a222412f070bc0cd5e777c2add5e01828089cd72 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 15:37:38 +0100 Subject: [PATCH 10/20] fix import --- doc/user/import-contacts.md | 7 +++--- src/contacts/contacts_export.csv | 7 +++--- src/contacts/useContactImport.tsx | 40 ++++++++++++++++++------------- 3 files changed, 30 insertions(+), 24 deletions(-) diff --git a/doc/user/import-contacts.md b/doc/user/import-contacts.md index 786e941..13918d0 100644 --- a/doc/user/import-contacts.md +++ b/doc/user/import-contacts.md @@ -11,10 +11,9 @@ Atomic CRM displays an import contact buttons in the initial user onboarding pag An example of the expected CSV file is available in the contact import modal: ```csv -first_name,last_name,gender,title,company,email,phone_1_number,phone_1_type,phone_2_number,phone_2_type,background,first_seen,last_seen,has_newsletter,status,tags,linkedin_url -John,Doe,male,Sales Executive,Acme,john@doe.example,659-980-2015,work,740.645.3807,home,,2024-07-01,2024-07-01T11:54:49.950Z,FALSE,in-contract,"influencer, developer",https://www.linkedin.com/in/johndoe -Jane,Doe,female,Designer,Acme,jane@doe.example,659-980-2020,work,740.647.3802,home,,2024-07-01,2024-07-01T11:54:49.950Z,FALSE,in-contract,"UI, design",https://www.linkedin.com/in/janedoe -Camille,Brown,nonbinary,Accountant,Atomic Corp,camille.brown@atomic.corp;person@doe.example,659-910-3010,work,740.698.3752,home,,2024-07-01,2024-07-01T11:54:49.950Z,FALSE,in-contract,"payroll, accountant", +first_name,last_name,gender,title,background,first_seen,last_seen,has_newsletter,status,tags,linkedin_url,company,email_work,email_home,email_other,phone_work,phone_home,phone_other +John,Doe,male,Sales Executive,,2024-07-01T00:00:00+00:00,2024-07-01T11:54:49.95+00:00,false,in-contract,"influencer, developer",https://www.linkedin.com/in/johndoe,Acme,john@doe.example,john.doe@gmail.com,jdoe@caramail.com,659-980-2015,740.645.3807,(446) 758-2122 +Jane,Doe,female,Designer,,2024-07-01T00:00:00+00:00,2024-07-01T11:54:49.95+00:00,false,in-contract,"UI, design",https://www.linkedin.com/in/janedoe,Acme,,,jane@doe.example,659-980-2020,740.647.3802, ``` When importing contacts, companies and tags will be automatically matched if they exist on the system, or imported ortherwise. diff --git a/src/contacts/contacts_export.csv b/src/contacts/contacts_export.csv index 4075705..06eb169 100644 --- a/src/contacts/contacts_export.csv +++ b/src/contacts/contacts_export.csv @@ -1,4 +1,3 @@ -first_name,last_name,gender,title,company,email,phone_1_number,phone_1_type,phone_2_number,phone_2_type,background,first_seen,last_seen,has_newsletter,status,tags,linkedin_url -John,Doe,male,Sales Executive,Acme,john@doe.example,659-980-2015,work,740.645.3807,home,,2024-07-01,2024-07-01T11:54:49.950Z,FALSE,in-contract,"influencer, developer",https://www.linkedin.com/in/johndoe -Jane,Doe,female,Designer,Acme,jane@doe.example,659-980-2020,work,740.647.3802,home,,2024-07-01,2024-07-01T11:54:49.950Z,FALSE,in-contract,"UI, design",https://www.linkedin.com/in/janedoe -Camille,Brown,nonbinary,Accountant,Atomic Corp,camille.brown@atomic.corp;person@doe.example,659-910-3010,work,740.698.3752,home,,2024-07-01,2024-07-01T11:54:49.950Z,FALSE,in-contract,"payroll, accountant", \ No newline at end of file +first_name,last_name,gender,title,background,first_seen,last_seen,has_newsletter,status,tags,linkedin_url,company,email_work,email_home,email_other,phone_work,phone_home,phone_other +John,Doe,male,Sales Executive,,2024-07-01T00:00:00+00:00,2024-07-01T11:54:49.95+00:00,false,in-contract,"influencer, developer",https://www.linkedin.com/in/johndoe,Acme,john@doe.example,john.doe@gmail.com,jdoe@caramail.com,659-980-2015,740.645.3807,(446) 758-2122 +Jane,Doe,female,Designer,,2024-07-01T00:00:00+00:00,2024-07-01T11:54:49.95+00:00,false,in-contract,"UI, design",https://www.linkedin.com/in/janedoe,Acme,,,jane@doe.example,659-980-2020,740.647.3802, \ No newline at end of file diff --git a/src/contacts/useContactImport.tsx b/src/contacts/useContactImport.tsx index 6ebfa2d..13640e4 100644 --- a/src/contacts/useContactImport.tsx +++ b/src/contacts/useContactImport.tsx @@ -9,11 +9,12 @@ export type ContactImportSchema = { gender: string; title: string; company: string; - email: string; - phone_1_number: string; - phone_1_type: string; - phone_2_number: string; - phone_2_type: string; + email_work: string; + email_home: string; + email_other: string; + phone_work: string; + phone_home: string; + phone_other: string; background: string; avatar: string; first_seen: string; @@ -89,11 +90,12 @@ export function useContactImport() { last_name, gender, title, - email, - phone_1_number, - phone_1_type, - phone_2_number, - phone_2_type, + email_work, + email_home, + email_other, + phone_work, + phone_home, + phone_other, background, first_seen, last_seen, @@ -103,7 +105,16 @@ export function useContactImport() { tags: tagNames, linkedin_url, }) => { - const emailArray = email.split(';'); + const email_jsonb = [ + { email: email_work, type: 'Work' }, + { email: email_home, type: 'Home' }, + { email: email_other, type: 'Other' }, + ].filter(({ email }) => email); + const phone_jsonb = [ + { number: phone_work, type: 'Work' }, + { number: phone_home, type: 'Home' }, + { number: phone_other, type: 'Other' }, + ].filter(({ number }) => number); const company = companyName?.trim() ? companies.get(companyName.trim()) : undefined; @@ -117,11 +128,8 @@ export function useContactImport() { last_name, gender, title, - email: emailArray, - phone_1_number, - phone_1_type, - phone_2_number, - phone_2_type, + email_jsonb, + phone_jsonb, background, first_seen: first_seen ? new Date(first_seen).toISOString() From f2ce035a226f523d520a2aadbe880a013be647d4 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 16:08:34 +0100 Subject: [PATCH 11/20] fix email migration script --- makefile | 6 ++++++ supabase/migrations/20250109152531_email_jsonb.sql | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 454f1ff..d87dd7f 100644 --- a/makefile +++ b/makefile @@ -12,6 +12,12 @@ start-supabase: ## start supabase locally start-supabase-functions: ## start the supabase Functions watcher npx supabase functions serve --env-file supabase/functions/.env.development +supabase-migrate-database: ## apply the migrations to the database + npx supabase migration up + +supabase-reset-database: ## reset (and clear!) the database + npx supabase db reset + start-app: ## start the app locally npm run dev diff --git a/supabase/migrations/20250109152531_email_jsonb.sql b/supabase/migrations/20250109152531_email_jsonb.sql index be5a74e..435bca2 100644 --- a/supabase/migrations/20250109152531_email_jsonb.sql +++ b/supabase/migrations/20250109152531_email_jsonb.sql @@ -1,6 +1,6 @@ alter table contacts add column email_jsonb jsonb; -update contacts set email_jsonb = ('[{"email": ' || email || ', "type": "Other"}]')::jsonb; +update contacts set email_jsonb = ('[{"email": "' || email || '", "type": "Other"}]')::jsonb; drop view contacts_summary; From afb1730526ffe6bed42d07e2e198e2595d889dc8 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 16:08:56 +0100 Subject: [PATCH 12/20] fix export should not include fts --- src/contacts/ContactList.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/contacts/ContactList.tsx b/src/contacts/ContactList.tsx index fe398ea..1120a64 100644 --- a/src/contacts/ContactList.tsx +++ b/src/contacts/ContactList.tsx @@ -111,6 +111,7 @@ const exporter: Exporter = async (records, fetchRelatedRecords) => { email => email.type === 'Other' )?.email, email_jsonb: undefined, + email_fts: undefined, phone_work: contact.phone_jsonb.find(phone => phone.type === 'Work') ?.number, phone_home: contact.phone_jsonb.find(phone => phone.type === 'Home') @@ -119,9 +120,12 @@ const exporter: Exporter = async (records, fetchRelatedRecords) => { phone => phone.type === 'Other' )?.number, phone_jsonb: undefined, + phone_fts: undefined, }; delete exportedContact.email_jsonb; + delete exportedContact.email_fts; delete exportedContact.phone_jsonb; + delete exportedContact.phone_fts; return exportedContact; }); return jsonExport(contacts, {}, (_err: any, csv: string) => { From 6b72c3bf0e267ef3a2818b512725b84c579052fa Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 16:09:11 +0100 Subject: [PATCH 13/20] update sample csv data --- test-data/contacts.csv | 720 ++++++++++++++++++++++++++++------------- 1 file changed, 501 insertions(+), 219 deletions(-) diff --git a/test-data/contacts.csv b/test-data/contacts.csv index 8e3cbf1..b58dfd9 100644 --- a/test-data/contacts.csv +++ b/test-data/contacts.csv @@ -1,219 +1,501 @@ -id,first_name,last_name,gender,title,company_id,company_name,email,phone_number1.number,phone_number1.type,phone_number2.number,phone_number2.type,background,avatar,first_seen,last_seen,has_newsletter,status,tags,sales_id,nb_notes,nb_tasks,company,sales -301,Manuel,Goyette,male,Strategic,50,"Kuhn, Koelpin and Osinski",Manuel_Goyette@yahoo.com,264-600-4031,Home,(484) 491-4638 x417,Home,Vel eveniet eum quidem sit.,https://marmelab.com/posters/avatar-141.jpeg,2024-08-01T02:50:46.854Z,2024-08-01T08:26:19.131Z,true,hot,,0,5,1,"Kuhn, Koelpin and Osinski",Jane Doe -95,Walter,Orn,male,Proactive,39,Armstrong and Sons,Walter31@gmail.com,510.863.7227 x152,Work,(660) 483-0733 x82828,Other,Tenetur aut voluptatibus.,,2024-06-06T01:31:40.756Z,2024-08-01T08:15:49.206Z,false,hot,,0,3,0,Armstrong and Sons,Jane Doe -36,Bruce,Kohler,male,E-business,53,Baumbach - Gibson,Bruce_Kohler93@hotmail.com,1-589-233-6081,Other,926.743.6909 x102,Home,Delectus asperiores quo molestias explicabo.,https://marmelab.com/posters/avatar-216.jpeg,2024-07-31T00:25:11.250Z,2024-08-01T07:59:36.658Z,false,hot,,0,3,1,Baumbach - Gibson,Jane Doe -173,Silvia,Anderson,female,Frictionless,26,"Nienow, Kuhic and Wunsch",Silvia16@hotmail.com,1-787-299-9241 x198,Work,876.548.6520,Work,Id sunt veniam sint.,https://marmelab.com/posters/avatar-171.jpeg,2024-07-20T16:07:08.754Z,2024-08-01T07:59:15.991Z,false,hot,manager,0,3,0,"Nienow, Kuhic and Wunsch",Jane Doe -230,Richard,Durgan,male,User-centric,5,Heidenreich and Sons,Richard75@yahoo.com,471.330.5978 x775,Home,1-691-894-1995,Other,Voluptas in et nemo et explicabo enim.,,2024-07-26T22:56:45.383Z,2024-08-01T06:50:55.268Z,true,hot,,0,3,3,Heidenreich and Sons,Jane Doe -493,Jayson,Nader,nonbinary,Revolutionary,50,"Kuhn, Koelpin and Osinski",Jayson_Nader52@yahoo.com,510-235-4669 x62908,Home,1-469-870-2877 x07594,Other,Suscipit quia non quia sint architecto ut et aut tempore.,,2024-07-26T02:26:57.871Z,2024-08-01T05:49:01.947Z,true,hot,vip,0,1,2,"Kuhn, Koelpin and Osinski",Jane Doe -325,Theresa,Von,female,Cutting-edge,50,"Kuhn, Koelpin and Osinski",Theresa24@hotmail.com,712.377.3423,Other,1-230-615-4022 x845,Work,Exercitationem possimus iste.,,2024-07-31T05:30:39.303Z,2024-08-01T04:39:45.772Z,true,warm,,0,2,1,"Kuhn, Koelpin and Osinski",Jane Doe -83,Nadine,Legros,female,Bricks-and-clicks,45,"Rogahn, Homenick and Ward",Nadine_Legros@hotmail.com,267.410.0156 x2004,Work,383-886-7884,Work,Vel et quam omnis voluptates.,,2024-05-02T09:57:12.185Z,2024-08-01T03:25:41.274Z,true,cold,"football-fan, musician",0,2,1,"Rogahn, Homenick and Ward",Jane Doe -404,Darren,Jacobi,male,End-to-end,50,"Kuhn, Koelpin and Osinski",Darren1@gmail.com,223-744-2851 x114,Home,(775) 875-0214 x007,Work,Nemo velit ex in non maiores totam et.,,2024-07-30T01:40:51.321Z,2024-08-01T03:19:26.992Z,false,hot,musician,0,4,2,"Kuhn, Koelpin and Osinski",Jane Doe -391,Delia,Schiller,female,Proactive,50,"Kuhn, Koelpin and Osinski",Delia10@gmail.com,1-889-252-9570,Work,911.512.5897,Other,Quidem non dolores et tempora repudiandae impedit odio suscipit enim.,,2024-07-27T12:50:27.374Z,2024-08-01T02:04:01.238Z,false,in-contract,,0,5,0,"Kuhn, Koelpin and Osinski",Jane Doe -413,Loretta,Lehner,female,Scalable,50,"Kuhn, Koelpin and Osinski",Loretta.Lehner@gmail.com,1-861-533-9932 x664,Home,1-922-770-2749,Other,Odio asperiores aut omnis.,,2024-07-28T20:03:26.473Z,2024-08-01T01:18:55.522Z,true,hot,,0,5,1,"Kuhn, Koelpin and Osinski",Jane Doe -279,Doug,Jacobson,male,Rich,50,"Kuhn, Koelpin and Osinski",Doug39@hotmail.com,353.902.4192 x3826,Home,1-585-218-4487 x0468,Work,Voluptatem quo ut voluptatem sint qui.,,2024-07-29T00:23:50.856Z,2024-07-31T23:54:53.214Z,true,hot,,0,2,0,"Kuhn, Koelpin and Osinski",Jane Doe -228,Betsy,Luettgen,female,User-centric,50,"Kuhn, Koelpin and Osinski",Betsy_Luettgen@hotmail.com,358.712.9121 x452,Other,734-482-5012 x636,Other,Repudiandae doloremque aperiam odit.,https://marmelab.com/posters/avatar-157.jpeg,2024-07-19T05:21:24.044Z,2024-07-31T23:18:12.396Z,false,hot,holiday-card,0,1,2,"Kuhn, Koelpin and Osinski",Jane Doe -238,Blake,Oberbrunner,male,Ubiquitous,10,"Koch, Carter and Cummings",Blake_Oberbrunner23@yahoo.com,708-953-3201 x46883,Work,325-476-5527,Other,Enim atque ad et exercitationem harum voluptas impedit in maxime.,https://marmelab.com/posters/avatar-155.jpeg,2024-05-29T14:23:36.700Z,2024-07-31T22:13:40.787Z,false,hot,,0,1,0,"Koch, Carter and Cummings",Jane Doe -468,Yesenia,Miller,nonbinary,Dynamic,24,Kihn LLC,Yesenia0@hotmail.com,877.770.7073 x9174,Home,210.452.0730 x1720,Work,Nam sint quibusdam reprehenderit magnam.,,2024-05-29T07:54:28.792Z,2024-07-31T22:06:57.366Z,false,in-contract,,0,1,0,Kihn LLC,Jane Doe -153,Adella,Breitenberg,nonbinary,Leading-edge,5,Heidenreich and Sons,Adella88@yahoo.com,(563) 619-2463 x09908,Work,755.946.9998 x516,Work,Unde quia placeat at ratione amet atque.,,2024-07-23T17:55:20.114Z,2024-07-31T20:55:38.379Z,true,warm,,0,5,0,Heidenreich and Sons,Jane Doe -30,Cecilia,Morissette,female,Mission-critical,24,Kihn LLC,Cecilia.Morissette48@gmail.com,211.206.5533 x1339,Home,398.909.3226 x4638,Home,Minima et quae fugit nostrum molestiae.,,2024-07-25T08:47:03.481Z,2024-07-31T19:45:31.635Z,true,cold,,0,1,1,Kihn LLC,Jane Doe -125,Rashawn,Lehner,nonbinary,Scalable,26,"Nienow, Kuhic and Wunsch",Rashawn_Lehner@gmail.com,366.210.2843 x3798,Work,1-564-715-9558 x122,Work,Et doloremque optio ipsa iure et.,https://marmelab.com/posters/avatar-188.jpeg,2024-07-29T03:28:22.607Z,2024-07-31T19:18:51.235Z,false,warm,football-fan,0,4,1,"Nienow, Kuhic and Wunsch",Jane Doe -235,Brennon,Deckow,nonbinary,Holistic,26,"Nienow, Kuhic and Wunsch",Brennon.Deckow95@yahoo.com,653.434.6030,Home,1-531-811-6245 x73550,Work,Impedit assumenda atque eaque est eius in.,,2024-07-26T22:45:33.553Z,2024-07-31T17:34:05.342Z,false,warm,,0,6,2,"Nienow, Kuhic and Wunsch",Jane Doe -201,Nettie,Murray,female,Frictionless,5,Heidenreich and Sons,Nettie.Murray@hotmail.com,1-706-367-5350 x534,Home,323-450-2788,Work,Ad doloremque voluptas sed.,https://marmelab.com/posters/avatar-162.jpeg,2024-07-23T10:07:06.575Z,2024-07-31T17:20:34.837Z,false,cold,,0,2,0,Heidenreich and Sons,Jane Doe -382,Cassie,Leffler,nonbinary,Back-end,11,Von Group,Cassie19@hotmail.com,770-662-1762 x523,Other,429.896.0703 x9399,Home,Voluptas quia laudantium distinctio.,,2024-06-09T19:42:36.791Z,2024-07-31T14:08:10.174Z,false,warm,"manager, musician",0,6,0,Von Group,Jane Doe -320,Brandon,Satterfield,male,Magnetic,33,Rosenbaum - Olson,Brandon87@gmail.com,1-523-542-0743,Work,686.991.5975,Home,Eaque rerum soluta qui dolorem porro sit earum vel.,,2023-03-19T09:42:38.730Z,2024-07-31T12:36:11.008Z,true,hot,,0,2,0,Rosenbaum - Olson,Jane Doe -196,Shawn,Wyman,male,Scalable,45,"Rogahn, Homenick and Ward",Shawn35@hotmail.com,632-871-6098 x874,Other,789-973-4859 x58771,Work,Quis architecto cupiditate quia dolorem delectus.,,2024-06-11T04:40:21.093Z,2024-07-31T11:55:12.011Z,true,warm,,0,3,0,"Rogahn, Homenick and Ward",Jane Doe -38,Darren,Romaguera,male,B2B,45,"Rogahn, Homenick and Ward",Darren64@yahoo.com,1-498-811-7702,Home,553.990.2307 x162,Other,Dolorem deserunt sed qui placeat cupiditate vero magni optio.,,2024-07-27T11:39:51.894Z,2024-07-31T11:00:20.524Z,false,in-contract,,0,3,1,"Rogahn, Homenick and Ward",Jane Doe -388,Warren,Morar,male,24/7,26,"Nienow, Kuhic and Wunsch",Warren_Morar@yahoo.com,(981) 463-8438 x160,Home,(736) 932-6918,Home,Nihil sed voluptatem quis.,,2024-07-24T02:08:50.462Z,2024-07-31T09:31:44.335Z,false,cold,football-fan,0,2,0,"Nienow, Kuhic and Wunsch",Jane Doe -453,Royal,Senger,nonbinary,User-centric,50,"Kuhn, Koelpin and Osinski",Royal83@gmail.com,522-707-1411,Work,621.656.8395 x508,Work,Id sapiente dolorem quia aut facere corporis harum.,,2024-07-24T09:28:08.851Z,2024-07-31T09:06:08.901Z,true,warm,,0,6,1,"Kuhn, Koelpin and Osinski",Jane Doe -184,Elijah,Grant,male,World-class,6,Lemke - Thompson,Elijah55@hotmail.com,868.549.6044 x93974,Home,666-895-1099 x36733,Other,Dolore nobis dolor inventore ipsam molestias quidem.,,2024-05-17T07:23:42.143Z,2024-07-31T08:08:32.034Z,true,in-contract,,0,2,0,Lemke - Thompson,Jane Doe -383,Leonard,Parker,male,Front-end,54,"Howe, Predovic and Hessel",Leonard91@yahoo.com,936.560.7450,Other,239.375.6920 x13709,Work,Quo dolore cumque temporibus perspiciatis officia possimus.,,2023-03-27T11:51:11.202Z,2024-07-31T07:59:56.340Z,false,hot,,0,1,0,"Howe, Predovic and Hessel",Jane Doe -463,Alberta,Blanda,female,Ubiquitous,54,"Howe, Predovic and Hessel",Alberta.Blanda@yahoo.com,792.889.3148 x003,Other,1-491-563-0457,Work,Sit incidunt totam aliquid in minima quia.,,2023-03-08T02:54:49.823Z,2024-07-31T04:36:04.776Z,false,cold,football-fan,0,3,0,"Howe, Predovic and Hessel",Jane Doe -234,Wilson,Buckridge,male,Scalable,39,Armstrong and Sons,Wilson.Buckridge@hotmail.com,287-370-1011,Work,(507) 447-0225,Work,Aut ea ex facere.,,2024-07-24T22:31:04.647Z,2024-07-31T04:22:29.877Z,true,warm,,0,1,3,Armstrong and Sons,Jane Doe -457,Fannie,Mohr,female,Leading-edge,26,"Nienow, Kuhic and Wunsch",Fannie65@hotmail.com,1-704-435-8251,Other,1-787-584-3182,Work,Aut exercitationem deleniti veniam reprehenderit est atque a numquam et.,https://marmelab.com/posters/avatar-109.jpeg,2024-07-20T20:01:39.001Z,2024-07-31T04:07:50.912Z,true,cold,"holiday-card, vip",0,3,1,"Nienow, Kuhic and Wunsch",Jane Doe -114,Graham,Kautzer,nonbinary,Mission-critical,26,"Nienow, Kuhic and Wunsch",Graham74@gmail.com,882.854.6745,Home,1-244-661-6854 x043,Home,Mollitia libero et aliquam aliquid et corporis.,https://marmelab.com/posters/avatar-193.jpeg,2024-07-13T04:02:08.537Z,2024-07-31T02:37:20.803Z,false,hot,,0,1,0,"Nienow, Kuhic and Wunsch",Jane Doe -473,Ava,Rutherford,nonbinary,Open-source,26,"Nienow, Kuhic and Wunsch",Ava_Rutherford27@gmail.com,(474) 684-7909 x74564,Home,(906) 346-5858 x378,Work,Recusandae ex voluptate tenetur iusto nulla dignissimos asperiores.,,2024-07-27T19:49:48.141Z,2024-07-31T00:49:08.986Z,false,cold,,0,3,0,"Nienow, Kuhic and Wunsch",Jane Doe -142,Terrill,Purdy,nonbinary,E-business,50,"Kuhn, Koelpin and Osinski",Terrill.Purdy52@gmail.com,600.582.1843 x3926,Other,(880) 307-1452 x468,Home,Non ab libero aliquam nemo et consequatur.,https://marmelab.com/posters/avatar-182.jpeg,2024-07-29T08:14:47.574Z,2024-07-31T00:44:26.543Z,false,hot,"musician, vip",0,2,2,"Kuhn, Koelpin and Osinski",Jane Doe -35,Jason,McDermott,male,Scalable,45,"Rogahn, Homenick and Ward",Jason.McDermott@hotmail.com,837.952.8372 x84412,Work,658-766-8340,Home,Quae ducimus dolorem eos excepturi.,https://marmelab.com/posters/avatar-217.jpeg,2024-07-11T18:11:05.457Z,2024-07-31T00:16:02.590Z,false,warm,,0,5,0,"Rogahn, Homenick and Ward",Jane Doe -305,Lela,Dare,female,Front-end,12,"Price, Macejkovic and Bahringer",Lela_Dare99@yahoo.com,865.578.9727,Work,884.803.6321,Home,Reiciendis eaque quis nihil quibusdam modi a iste.,,2023-10-14T17:44:10.166Z,2024-07-30T23:03:31.826Z,false,in-contract,,0,2,0,"Price, Macejkovic and Bahringer",Jane Doe -342,George,Goodwin,male,Viral,24,Kihn LLC,George98@yahoo.com,411-832-3705,Work,(802) 396-1900,Home,Neque ducimus aliquid sunt a.,,2024-05-16T19:00:20.430Z,2024-07-30T20:50:01.032Z,false,cold,"influencer, manager",0,3,1,Kihn LLC,Jane Doe -281,Joanne,Buckridge,female,Frictionless,54,"Howe, Predovic and Hessel",Joanne33@hotmail.com,1-716-507-3034,Home,979.328.5253 x9057,Work,Quas quia incidunt quasi inventore distinctio maxime ducimus.,,2024-07-25T03:39:37.375Z,2024-07-30T18:37:11.125Z,false,warm,"holiday-card, manager",0,3,1,"Howe, Predovic and Hessel",Jane Doe -316,Caesar,Bruen,nonbinary,Vertical,24,Kihn LLC,Caesar.Bruen@hotmail.com,1-601-611-5008,Home,1-827-208-3557,Work,Ut recusandae quidem vero.,,2024-04-12T08:31:50.618Z,2024-07-30T17:33:57.492Z,true,in-contract,,0,1,1,Kihn LLC,Jane Doe -65,Barry,Kozey,male,Bricks-and-clicks,45,"Rogahn, Homenick and Ward",Barry.Kozey20@hotmail.com,766.474.2383 x26114,Other,287-461-5210,Other,Expedita similique totam velit.,,2024-04-11T20:40:34.284Z,2024-07-30T17:02:47.973Z,false,warm,"influencer, musician",0,5,0,"Rogahn, Homenick and Ward",Jane Doe -345,Edyth,Grady,nonbinary,Proactive,4,Corkery - Considine,Edyth_Grady@yahoo.com,(482) 943-1349,Home,986-964-7470,Other,Nam et dignissimos saepe in quidem.,,2024-05-23T17:40:32.346Z,2024-07-30T12:19:02.286Z,false,cold,manager,0,2,1,Corkery - Considine,Jane Doe -206,Antonia,Torp,female,Clicks-and-mortar,4,Corkery - Considine,Antonia_Torp15@gmail.com,1-384-767-8772,Work,(328) 303-4008 x179,Work,Cumque quo itaque.,,2024-07-13T18:50:28.876Z,2024-07-30T12:04:54.136Z,false,cold,,0,5,0,Corkery - Considine,Jane Doe -430,Sarina,Nicolas,nonbinary,Integrated,13,Predovic - Cummerata,Sarina48@yahoo.com,1-386-375-6273,Other,766.522.4635 x1808,Home,Sunt voluptatibus eaque eligendi est sit facilis qui aspernatur.,,2024-06-05T05:32:35.515Z,2024-07-30T08:35:55.207Z,false,hot,musician,0,5,1,Predovic - Cummerata,Jane Doe -482,Justin,Kilback,male,Synergistic,24,Kihn LLC,Justin_Kilback@gmail.com,826-683-4413,Other,(379) 469-5502,Work,Eligendi totam excepturi nam.,,2024-07-03T18:58:54.407Z,2024-07-30T06:59:10.889Z,false,cold,,0,3,1,Kihn LLC,Jane Doe -309,Josephine,Witting,female,Cross-platform,26,"Nienow, Kuhic and Wunsch",Josephine_Witting@gmail.com,1-956-260-8163 x03506,Work,852-942-2897,Work,Magnam debitis nemo repellat perferendis nam reprehenderit eos.,,2024-07-22T17:29:36.522Z,2024-07-30T04:14:43.677Z,false,hot,,0,1,1,"Nienow, Kuhic and Wunsch",Jane Doe -443,Sanford,Rowe,nonbinary,24/365,24,Kihn LLC,Sanford31@yahoo.com,(625) 278-6680 x8434,Other,(673) 881-2381,Other,Ducimus pariatur tempora nulla quia sit nesciunt aperiam.,https://marmelab.com/posters/avatar-113.jpeg,2024-07-02T22:03:00.571Z,2024-07-29T23:40:36.018Z,true,in-contract,holiday-card,0,4,0,Kihn LLC,Jane Doe -152,Vernon,Jast,male,Vertical,26,"Nienow, Kuhic and Wunsch",Vernon.Jast@yahoo.com,760-817-8891 x025,Other,(568) 334-2168,Home,Enim maxime quaerat blanditiis error nihil.,,2024-07-29T17:28:47.734Z,2024-07-29T17:28:47.734Z,false,in-contract,,0,0,2,"Nienow, Kuhic and Wunsch",Jane Doe -364,Santos,Shanahan,male,End-to-end,4,Corkery - Considine,Santos_Shanahan@hotmail.com,1-639-908-7189,Other,730-273-3097 x847,Other,Impedit vitae sit voluptate suscipit.,,2024-06-30T20:10:17.527Z,2024-07-29T16:42:54.442Z,false,hot,,0,2,3,Corkery - Considine,Jane Doe -470,Joana,Treutel,nonbinary,Value-added,5,Heidenreich and Sons,Joana.Treutel96@yahoo.com,482-514-3852,Home,(469) 218-5147 x69039,Home,Aut iste quia qui ut voluptatem quae explicabo.,https://marmelab.com/posters/avatar-105.jpeg,2024-07-17T01:23:22.998Z,2024-07-29T16:29:37.325Z,false,cold,"holiday-card, influencer",0,4,1,Heidenreich and Sons,Jane Doe -381,Erik,Keebler,male,Mission-critical,12,"Price, Macejkovic and Bahringer",Erik10@gmail.com,628.915.3664 x376,Home,(620) 952-6562,Other,Corporis ut quos repudiandae fugiat fugiat.,,2024-06-19T03:08:50.042Z,2024-07-29T16:16:25.575Z,true,in-contract,football-fan,0,3,2,"Price, Macejkovic and Bahringer",Jane Doe -363,Janet,Bednar,female,Magnetic,39,Armstrong and Sons,Janet63@gmail.com,1-469-903-3956,Other,808.489.6922,Work,Exercitationem et architecto exercitationem aut eligendi et et quis.,,2024-07-26T04:25:59.780Z,2024-07-29T15:11:47.600Z,true,in-contract,"holiday-card, manager",0,2,0,Armstrong and Sons,Jane Doe -360,Rachel,McClure,female,Seamless,12,"Price, Macejkovic and Bahringer",Rachel.McClure75@hotmail.com,(990) 573-6739,Other,1-603-580-6646,Other,Impedit eum ut velit quo ducimus ipsa et quia iure.,,2024-03-15T21:09:46.482Z,2024-07-29T14:53:55.776Z,false,cold,vip,0,4,0,"Price, Macejkovic and Bahringer",Jane Doe -41,Lester,Hoppe,male,Next-generation,54,"Howe, Predovic and Hessel",Lester_Hoppe55@gmail.com,1-201-860-2376,Work,1-548-239-5405,Other,Tempore repellendus quia sunt qui repudiandae iure sint voluptas.,,2023-10-13T07:52:57.198Z,2024-07-29T05:26:22.773Z,true,cold,football-fan,0,10,1,"Howe, Predovic and Hessel",Jane Doe -366,Laverna,Durgan,nonbinary,Plug-and-play,5,Heidenreich and Sons,Laverna24@hotmail.com,501.794.4927 x274,Work,981-691-0484 x3719,Other,Labore id est libero tempora sequi debitis libero.,,2024-06-26T07:24:28.518Z,2024-07-29T05:03:03.571Z,false,cold,,0,1,1,Heidenreich and Sons,Jane Doe -33,Faye,Cassin,female,Next-generation,13,Predovic - Cummerata,Faye_Cassin96@yahoo.com,881.972.6582 x3246,Work,902.536.9724 x362,Other,Voluptatem et harum dicta sint impedit aut.,,2024-06-04T23:14:55.733Z,2024-07-29T04:15:33.794Z,false,warm,,0,3,1,Predovic - Cummerata,Jane Doe -341,Sylvester,Graham,male,Frictionless,26,"Nienow, Kuhic and Wunsch",Sylvester17@yahoo.com,669-485-4158,Work,868-303-3191,Work,Temporibus sint voluptatem qui autem et.,,2024-07-17T10:03:58.970Z,2024-07-29T04:12:42.298Z,false,hot,,0,2,1,"Nienow, Kuhic and Wunsch",Jane Doe -494,Kayley,Kling,nonbinary,User-centric,24,Kihn LLC,Kayley.Kling@gmail.com,617-373-1742,Home,(590) 396-2739 x041,Work,Qui modi ipsam omnis deserunt.,,2024-06-30T08:19:09.532Z,2024-07-29T04:02:00.145Z,false,hot,musician,0,4,0,Kihn LLC,Jane Doe -397,Garett,Lockman,nonbinary,Bricks-and-clicks,26,"Nienow, Kuhic and Wunsch",Garett.Lockman@yahoo.com,1-245-651-6852,Other,(689) 446-2954 x6940,Other,Aut debitis excepturi.,,2024-07-26T02:35:14.581Z,2024-07-29T01:42:07.599Z,false,warm,,0,1,1,"Nienow, Kuhic and Wunsch",Jane Doe -445,Javier,Abernathy,male,Turn-key,4,Corkery - Considine,Javier.Abernathy@yahoo.com,875.713.7984,Other,1-889-554-9553 x2828,Home,Et deserunt blanditiis.,,2024-07-10T01:28:34.791Z,2024-07-29T01:05:41.164Z,true,in-contract,,0,2,0,Corkery - Considine,Jane Doe -223,Floyd,Rutherford,nonbinary,Granular,50,"Kuhn, Koelpin and Osinski",Floyd70@gmail.com,908.549.3821 x648,Other,600.411.3352 x01538,Home,Nam quibusdam est assumenda occaecati.,,2024-07-20T02:15:45.693Z,2024-07-28T19:57:28.005Z,true,in-contract,"football-fan, manager",0,3,1,"Kuhn, Koelpin and Osinski",Jane Doe -496,Stella,Christiansen,female,Seamless,24,Kihn LLC,Stella89@hotmail.com,880.729.4930,Work,(817) 566-2258 x45377,Other,Qui rerum voluptatem ratione vel.,,2024-04-16T02:55:50.801Z,2024-07-28T18:38:23.163Z,true,in-contract,,0,3,0,Kihn LLC,Jane Doe -218,Colleen,Aufderhar,female,User-centric,45,"Rogahn, Homenick and Ward",Colleen_Aufderhar@yahoo.com,317-466-1270,Other,1-927-507-8388 x58761,Work,Ab quos ut.,,2024-02-06T21:03:24.910Z,2024-07-28T16:03:15.729Z,false,hot,,0,4,0,"Rogahn, Homenick and Ward",Jane Doe -272,Aubree,Langosh,nonbinary,Back-end,39,Armstrong and Sons,Aubree_Langosh@hotmail.com,778.389.8658 x5505,Other,643.850.7603 x5224,Home,Ut nemo dolores quidem.,https://marmelab.com/posters/avatar-147.jpeg,2024-04-17T14:17:15.876Z,2024-07-28T15:54:28.636Z,false,cold,football-fan,0,2,0,Armstrong and Sons,Jane Doe -219,Rudolph,Lindgren,nonbinary,Global,45,"Rogahn, Homenick and Ward",Rudolph.Lindgren@hotmail.com,312.929.7151 x44021,Home,777-634-6611 x945,Other,Consequatur ipsum sapiente.,,2024-07-08T05:00:28.480Z,2024-07-28T11:32:32.790Z,true,cold,vip,0,3,0,"Rogahn, Homenick and Ward",Jane Doe -428,Raegan,Jones,nonbinary,Next-generation,24,Kihn LLC,Raegan23@gmail.com,307.443.6853,Work,788.269.9203,Home,Sit itaque magni quibusdam quis nihil vitae illum illum.,https://marmelab.com/posters/avatar-116.jpeg,2024-06-22T02:25:31.482Z,2024-07-28T06:36:11.918Z,false,in-contract,,0,3,1,Kihn LLC,Jane Doe -490,Esther,Prosacco,nonbinary,Real-time,24,Kihn LLC,Esther_Prosacco@hotmail.com,1-338-328-8918 x088,Home,403-924-5936 x784,Work,Repellat et natus minima qui cumque.,,2024-07-06T19:55:39.731Z,2024-07-28T02:05:25.435Z,false,warm,,0,5,1,Kihn LLC,Jane Doe -189,Florence,Koelpin,female,Enterprise,24,Kihn LLC,Florence_Koelpin24@gmail.com,983.529.2433 x118,Home,934.478.7285 x060,Work,Earum facilis veniam delectus ut aspernatur dolor sequi aspernatur.,,2024-05-02T22:40:20.285Z,2024-07-28T01:46:21.928Z,true,cold,,0,3,0,Kihn LLC,Jane Doe -202,Estelle,Dooley,female,Collaborative,50,"Kuhn, Koelpin and Osinski",Estelle19@hotmail.com,1-245-979-0615 x223,Work,(342) 669-5241 x1139,Other,Quia ullam non repellat ut corporis occaecati voluptatibus soluta.,,2024-07-22T07:18:54.726Z,2024-07-27T20:46:05.017Z,false,warm,,0,2,1,"Kuhn, Koelpin and Osinski",Jane Doe -319,Green,Ratke,nonbinary,Distributed,4,Corkery - Considine,Green_Ratke@gmail.com,723-634-5078 x0070,Other,(817) 515-7064 x0995,Work,Dicta labore ducimus odit facere quae est reprehenderit aut.,,2023-10-30T08:00:01.794Z,2024-07-27T19:36:15.050Z,false,in-contract,"football-fan, vip",0,5,2,Corkery - Considine,Jane Doe -217,Cory,Wolf,male,Sticky,4,Corkery - Considine,Cory22@gmail.com,829-839-3002 x878,Work,(754) 425-8084 x1683,Other,Nemo veritatis quas et provident.,,2024-07-05T10:17:24.984Z,2024-07-27T17:52:26.021Z,true,hot,,0,2,0,Corkery - Considine,Jane Doe -291,Jean,Torphy,male,Transparent,26,"Nienow, Kuhic and Wunsch",Jean26@hotmail.com,(348) 454-5620,Work,1-433-227-4651 x861,Home,Veritatis ullam neque.,,2024-07-12T22:46:40.425Z,2024-07-27T15:20:57.631Z,true,in-contract,"holiday-card, manager",0,2,0,"Nienow, Kuhic and Wunsch",Jane Doe -354,Sherri,Hartmann,female,Sexy,13,Predovic - Cummerata,Sherri.Hartmann@hotmail.com,934.809.1815 x263,Home,1-420-207-4383 x71296,Other,Et rerum corrupti perspiciatis a et adipisci.,https://marmelab.com/posters/avatar-130.jpeg,2024-05-19T09:52:37.332Z,2024-07-27T14:23:05.201Z,false,warm,vip,0,1,1,Predovic - Cummerata,Jane Doe -205,Loren,Simonis,male,Open-source,35,Lynch and Sons,Loren_Simonis87@hotmail.com,1-957-874-4285 x0097,Home,1-483-291-9596,Work,Natus distinctio sequi incidunt ut occaecati quia suscipit numquam earum.,,2024-02-06T09:03:41.836Z,2024-07-27T14:15:29.941Z,false,cold,"influencer, musician",0,2,0,Lynch and Sons,Jane Doe -487,Earl,O'Kon,male,Compelling,4,Corkery - Considine,Earl_OKon@hotmail.com,341-349-2838 x93055,Home,297-944-0608 x6020,Work,Ut excepturi dicta voluptas eum eveniet animi accusamus.,,2024-04-25T13:44:37.132Z,2024-07-27T12:02:48.284Z,false,hot,,0,3,2,Corkery - Considine,Jane Doe -60,Ruben,Gislason,male,Cutting-edge,35,Lynch and Sons,Ruben_Gislason5@yahoo.com,789-417-9018 x45862,Work,(202) 414-4437 x27507,Home,Cumque odit magnam distinctio.,,2024-07-10T02:45:45.668Z,2024-07-27T11:36:50.083Z,true,hot,manager,0,3,0,Lynch and Sons,Jane Doe -20,Kathleen,Legros,nonbinary,World-class,15,Stokes and Sons,Kathleen.Legros25@yahoo.com,799.278.5700 x81994,Other,1-521-851-2244,Home,Laboriosam non eos voluptas.,https://marmelab.com/posters/avatar-219.jpeg,2024-07-18T02:17:49.449Z,2024-07-27T06:18:51.782Z,true,cold,musician,0,3,0,Stokes and Sons,Jane Doe -124,Whitney,Lueilwitz,female,Out-of-the-box,10,"Koch, Carter and Cummings",Whitney79@yahoo.com,1-801-947-5510 x4444,Other,1-986-252-4317 x8446,Other,Dolores dolorem libero recusandae id asperiores commodi.,,2024-01-17T16:48:33.687Z,2024-07-27T05:56:37.326Z,false,warm,,0,4,0,"Koch, Carter and Cummings",Jane Doe -91,Rita,Hahn,nonbinary,Impactful,50,"Kuhn, Koelpin and Osinski",Rita_Hahn@yahoo.com,404-771-3527 x20705,Work,768.442.9908 x4241,Home,Qui vel quia a esse iusto saepe.,,2024-07-22T18:37:15.654Z,2024-07-27T01:50:26.835Z,false,warm,,0,2,2,"Kuhn, Koelpin and Osinski",Jane Doe -427,Philip,Gerlach,nonbinary,Leading-edge,11,Von Group,Philip.Gerlach1@gmail.com,1-314-570-0435 x1881,Other,1-783-709-2219,Home,Libero omnis totam voluptas placeat sed impedit harum suscipit placeat.,,2024-04-28T19:24:54.891Z,2024-07-27T01:01:23.329Z,true,in-contract,,0,3,1,Von Group,Jane Doe -190,Valentin,Dickens,nonbinary,Out-of-the-box,5,Heidenreich and Sons,Valentin37@hotmail.com,(523) 615-3053,Other,943-366-5570,Work,Saepe voluptatem praesentium magni.,,2024-07-13T14:21:40.007Z,2024-07-26T22:42:11.731Z,false,in-contract,holiday-card,0,2,0,Heidenreich and Sons,Jane Doe -116,Esther,Hintz,female,Viral,53,Baumbach - Gibson,Esther30@gmail.com,1-632-362-3981 x422,Other,627-759-7061 x95227,Other,Consequatur doloremque aliquam exercitationem et asperiores est et.,https://marmelab.com/posters/avatar-192.jpeg,2024-07-13T19:01:09.830Z,2024-07-26T22:07:39.307Z,false,cold,"influencer, manager",0,2,2,Baumbach - Gibson,Jane Doe -170,Estell,Walker,nonbinary,Vertical,24,Kihn LLC,Estell13@yahoo.com,1-865-535-1972 x681,Work,817.999.3094 x41851,Work,Eius voluptatem amet sint recusandae sint repudiandae aut.,https://marmelab.com/posters/avatar-173.jpeg,2024-05-24T06:48:58.084Z,2024-07-26T11:09:37.127Z,false,hot,,0,5,0,Kihn LLC,Jane Doe -244,Stacey,Padberg,female,Extensible,4,Corkery - Considine,Stacey_Padberg@hotmail.com,523-551-7163 x0091,Other,285-231-0961 x5177,Work,Et nostrum sit ea non quas.,,2024-07-05T20:07:46.108Z,2024-07-26T10:08:33.440Z,true,hot,,0,5,1,Corkery - Considine,Jane Doe -75,Raul,Stiedemann,nonbinary,Seamless,4,Corkery - Considine,Raul.Stiedemann78@gmail.com,(812) 303-7139,Home,691.565.1767 x433,Home,Voluptatem commodi nihil et.,,2024-06-14T17:19:20.509Z,2024-07-26T08:21:11.000Z,true,hot,,0,1,0,Corkery - Considine,Jane Doe -200,Johnathan,Corkery,male,Best-of-breed,39,Armstrong and Sons,Johnathan.Corkery43@yahoo.com,430.891.7151 x7471,Home,290.492.7512,Home,Voluptatem in et dolorem cumque rerum est in.,,2024-07-26T04:58:49.997Z,2024-07-26T04:58:49.997Z,false,cold,manager,0,0,1,Armstrong and Sons,Jane Doe -322,Shelly,Sipes,female,Dynamic,54,"Howe, Predovic and Hessel",Shelly.Sipes@gmail.com,990-804-0920,Other,803-200-6314,Work,Sapiente numquam aliquid est.,,2024-05-22T03:35:04.617Z,2024-07-26T01:30:07.143Z,true,hot,,0,2,0,"Howe, Predovic and Hessel",Jane Doe -144,Tammy,Nicolas,female,Visionary,45,"Rogahn, Homenick and Ward",Tammy.Nicolas@gmail.com,394-974-2678,Home,446-721-8313 x6193,Other,Error temporibus maxime et earum assumenda reprehenderit modi minus ut.,,2024-06-04T03:37:28.411Z,2024-07-26T00:48:21.154Z,true,hot,vip,0,2,0,"Rogahn, Homenick and Ward",Jane Doe -454,Mavis,Lueilwitz,nonbinary,Plug-and-play,13,Predovic - Cummerata,Mavis1@gmail.com,505.459.1128,Other,329-569-0055,Other,Natus voluptate repellat quidem placeat consequatur voluptate a.,https://marmelab.com/posters/avatar-111.jpeg,2024-06-06T10:18:28.312Z,2024-07-25T22:30:02.886Z,false,cold,,0,3,0,Predovic - Cummerata,Jane Doe -409,Johnnie,Durgan,female,Virtual,24,Kihn LLC,Johnnie_Durgan@hotmail.com,538.836.7783,Work,1-466-315-3453,Other,Ut dolores temporibus eius ratione ipsam unde aut laudantium.,,2024-05-19T02:47:33.672Z,2024-07-25T20:30:18.307Z,true,in-contract,,0,4,0,Kihn LLC,Jane Doe -455,Lamar,Hackett,male,Holistic,39,Armstrong and Sons,Lamar.Hackett97@hotmail.com,1-374-289-9162,Home,202-491-1223 x9313,Work,Ut beatae dolores vitae.,,2024-05-05T08:42:22.199Z,2024-07-25T19:21:37.058Z,false,warm,"holiday-card, vip",0,2,2,Armstrong and Sons,Jane Doe -423,Lesley,Swaniawski,nonbinary,Robust,24,Kihn LLC,Lesley.Swaniawski@hotmail.com,(574) 963-6279,Other,1-934-265-2769 x36317,Other,Reiciendis ut esse.,https://marmelab.com/posters/avatar-117.jpeg,2024-05-15T04:27:22.910Z,2024-07-25T14:20:25.811Z,true,warm,"football-fan, manager",0,2,1,Kihn LLC,Jane Doe -323,Flora,Schaefer,female,Clicks-and-mortar,5,Heidenreich and Sons,Flora.Schaefer@yahoo.com,1-505-886-6940,Other,737-583-3990,Other,Libero eveniet dolorem animi molestiae modi quia et sed.,https://marmelab.com/posters/avatar-138.jpeg,2024-06-16T17:33:08.145Z,2024-07-25T13:00:20.281Z,true,warm,,0,2,0,Heidenreich and Sons,Jane Doe -344,Lee,Beahan,nonbinary,Robust,13,Predovic - Cummerata,Lee_Beahan@gmail.com,433.549.5633 x5812,Home,777.656.6622 x545,Work,Hic sequi animi minus odio culpa ut dignissimos.,,2024-06-16T16:13:34.184Z,2024-07-25T08:23:16.357Z,false,cold,,0,4,2,Predovic - Cummerata,Jane Doe -474,Regina,Beer,female,Magnetic,4,Corkery - Considine,Regina.Beer22@gmail.com,(394) 423-2426 x046,Home,780.545.3409 x109,Other,Dicta tempora nobis sequi et ut.,,2024-04-23T14:19:16.925Z,2024-07-25T05:33:29.656Z,false,hot,"manager, vip",0,3,2,Corkery - Considine,Jane Doe -498,Geraldine,Boehm,nonbinary,Out-of-the-box,45,"Rogahn, Homenick and Ward",Geraldine_Boehm75@yahoo.com,519-479-8676,Home,523-578-8717 x20269,Home,Est consequatur nesciunt est facilis aperiam dolorem ut.,https://marmelab.com/posters/avatar-101.jpeg,2024-04-26T13:23:03.908Z,2024-07-25T03:05:53.767Z,true,hot,,0,4,0,"Rogahn, Homenick and Ward",Jane Doe -68,Meta,Hagenes,nonbinary,Plug-and-play,39,Armstrong and Sons,Meta_Hagenes@hotmail.com,456-512-8435 x2073,Home,619.628.8267,Other,Omnis aut perferendis vero enim.,,2024-07-02T17:27:07.894Z,2024-07-24T13:44:56.715Z,false,in-contract,manager,0,3,0,Armstrong and Sons,Jane Doe -229,Velma,Luettgen,female,Plug-and-play,12,"Price, Macejkovic and Bahringer",Velma.Luettgen@yahoo.com,1-294-792-4668 x92760,Other,253.249.2109 x46358,Other,Est necessitatibus ea vel iste ab quaerat.,,2023-11-28T22:20:17.288Z,2024-07-24T13:39:31.845Z,false,cold,,0,2,0,"Price, Macejkovic and Bahringer",Jane Doe -486,Ernie,Orn,nonbinary,Virtual,24,Kihn LLC,Ernie_Orn@gmail.com,969.760.9671,Home,941.205.9967,Other,Et porro nihil dolores nihil.,,2024-06-20T23:22:15.510Z,2024-07-24T13:22:49.547Z,false,warm,football-fan,0,3,1,Kihn LLC,Jane Doe -303,Kiara,Simonis,nonbinary,Cross-media,5,Heidenreich and Sons,Kiara_Simonis80@gmail.com,(241) 561-1516,Other,592-545-4738 x72580,Other,Quidem aliquam molestiae.,,2024-07-15T12:24:39.092Z,2024-07-24T12:04:53.681Z,false,cold,"football-fan, vip",0,3,1,Heidenreich and Sons,Jane Doe -385,Gabriel,Kuhic,nonbinary,B2B,13,Predovic - Cummerata,Gabriel15@gmail.com,748-650-9161 x1023,Work,(357) 534-7163 x56549,Work,Libero ut reiciendis aut qui reiciendis numquam quos explicabo nulla.,,2024-04-22T14:52:54.100Z,2024-07-24T11:05:47.631Z,true,in-contract,influencer,0,4,1,Predovic - Cummerata,Jane Doe -155,Jim,Kilback,male,Clicks-and-mortar,35,Lynch and Sons,Jim.Kilback15@hotmail.com,516-977-5490 x8289,Other,456-664-6888,Work,Accusamus iste omnis numquam dicta et odio pariatur molestias repellendus.,https://marmelab.com/posters/avatar-179.jpeg,2024-02-28T05:30:33.289Z,2024-07-24T09:41:25.022Z,false,in-contract,holiday-card,0,1,0,Lynch and Sons,Jane Doe -442,Shayna,Block,nonbinary,Collaborative,12,"Price, Macejkovic and Bahringer",Shayna.Block@gmail.com,808.832.5267,Work,352.664.7411 x978,Work,Dolorum optio modi.,https://marmelab.com/posters/avatar-114.jpeg,2024-02-28T20:37:44.728Z,2024-07-24T09:34:18.071Z,false,cold,"influencer, manager",0,6,0,"Price, Macejkovic and Bahringer",Jane Doe -417,Jamie,Mann,female,Compelling,4,Corkery - Considine,Jamie72@yahoo.com,1-408-741-6426,Home,1-576-382-3800 x501,Other,Consequatur id aspernatur sit et quia quasi doloribus hic quia.,https://marmelab.com/posters/avatar-120.jpeg,2024-06-16T19:07:33.633Z,2024-07-23T19:18:00.034Z,true,in-contract,,0,1,1,Corkery - Considine,Jane Doe -350,Celia,Murphy,female,B2C,54,"Howe, Predovic and Hessel",Celia_Murphy@hotmail.com,(999) 845-0411,Home,888-454-1419,Other,Minus sequi et laudantium molestiae quia odio.,,2024-06-10T23:30:22.926Z,2024-07-23T03:55:55.408Z,false,cold,,0,3,0,"Howe, Predovic and Hessel",Jane Doe -273,Katrina,Johnson,female,Viral,5,Heidenreich and Sons,Katrina.Johnson78@gmail.com,277-371-6605 x2207,Home,786.244.8282,Work,Vitae aut id quia.,,2024-06-29T22:13:31.817Z,2024-07-22T08:09:29.526Z,false,warm,musician,0,1,0,Heidenreich and Sons,Jane Doe -476,Matthew,Corwin,male,Back-end,10,"Koch, Carter and Cummings",Matthew.Corwin34@hotmail.com,554.792.5444 x5533,Other,989.711.6119 x714,Other,Atque ut et.,https://marmelab.com/posters/avatar-104.jpeg,2024-04-06T03:18:24.186Z,2024-07-21T21:39:31.999Z,false,cold,,0,6,1,"Koch, Carter and Cummings",Jane Doe -416,Jacquelyn,Ortiz,nonbinary,Visionary,39,Armstrong and Sons,Jacquelyn_Ortiz13@yahoo.com,1-902-602-6441 x5904,Work,593.721.7942,Other,Nam ut odio numquam recusandae.,,2024-02-11T04:28:34.720Z,2024-07-21T12:32:46.992Z,false,warm,vip,0,5,3,Armstrong and Sons,Jane Doe -146,Dallas,Shields,male,Rich,45,"Rogahn, Homenick and Ward",Dallas_Shields76@hotmail.com,857.898.1573 x26977,Other,941.727.8174 x4314,Work,Harum deleniti modi.,https://marmelab.com/posters/avatar-181.jpeg,2024-05-30T23:01:12.871Z,2024-07-21T10:52:47.025Z,false,warm,,0,1,0,"Rogahn, Homenick and Ward",Jane Doe -100,Gustavo,Hane,male,Granular,53,Baumbach - Gibson,Gustavo64@yahoo.com,439-457-1512 x98118,Work,1-995-706-1086 x3352,Home,Dolor voluptas pariatur dolorum dolor occaecati eveniet quos.,,2024-05-23T03:18:06.960Z,2024-07-21T05:23:09.125Z,true,hot,"holiday-card, influencer",0,2,0,Baumbach - Gibson,Jane Doe -138,Amos,Reynolds,male,Interactive,53,Baumbach - Gibson,Amos_Reynolds@gmail.com,1-409-901-8208 x9902,Work,(574) 914-6034 x49805,Work,Totam ut velit quas.,,2024-04-21T16:56:11.560Z,2024-07-20T23:51:10.485Z,false,in-contract,football-fan,0,3,0,Baumbach - Gibson,Jane Doe -137,Morgan,Homenick,nonbinary,Magnetic,45,"Rogahn, Homenick and Ward",Morgan_Homenick26@yahoo.com,274-900-1698,Work,602-233-4579 x2940,Home,Vitae quod non facere hic hic vitae dolor.,https://marmelab.com/posters/avatar-183.jpeg,2024-07-17T07:53:14.394Z,2024-07-20T23:09:58.997Z,false,in-contract,,0,1,1,"Rogahn, Homenick and Ward",Jane Doe -441,Ivan,Feil,male,Cross-media,54,"Howe, Predovic and Hessel",Ivan0@yahoo.com,1-328-571-6984 x9394,Home,1-236-245-3831,Home,Architecto soluta veritatis dolores quis.,,2024-03-15T13:55:48.602Z,2024-07-20T20:29:35.221Z,false,in-contract,"football-fan, manager",0,2,1,"Howe, Predovic and Hessel",Jane Doe -469,Don,Wolff,male,Scalable,45,"Rogahn, Homenick and Ward",Don68@yahoo.com,834.204.3800 x5245,Other,203-284-4190,Other,Quo provident occaecati.,https://marmelab.com/posters/avatar-106.jpeg,2024-04-23T07:28:28.566Z,2024-07-20T09:38:47.454Z,false,in-contract,manager,0,2,1,"Rogahn, Homenick and Ward",Jane Doe -268,Gustavo,Moore,male,Scalable,24,Kihn LLC,Gustavo79@gmail.com,784-592-0583,Home,(795) 631-2637 x18341,Home,Aut vel autem.,,2024-06-18T13:22:49.227Z,2024-07-19T17:42:05.511Z,true,hot,,0,2,0,Kihn LLC,Jane Doe -296,Regina,Lind,female,Enterprise,12,"Price, Macejkovic and Bahringer",Regina76@hotmail.com,1-961-943-7820,Home,1-796-504-0993,Other,Dolores suscipit hic porro atque nostrum.,,2024-02-29T01:36:07.878Z,2024-07-19T12:45:58.386Z,false,warm,,0,1,2,"Price, Macejkovic and Bahringer",Jane Doe -436,Marco,Harvey,male,Bleeding-edge,5,Heidenreich and Sons,Marco56@hotmail.com,1-616-690-1832,Work,267-393-9368 x84230,Home,Quae autem adipisci.,,2024-07-19T11:40:04.301Z,2024-07-19T11:40:04.301Z,true,hot,influencer,0,0,0,Heidenreich and Sons,Jane Doe -101,Loren,McClure,male,Wireless,12,"Price, Macejkovic and Bahringer",Loren.McClure@yahoo.com,619-393-2797 x9494,Other,1-807-255-3167 x69104,Other,Vel quas incidunt.,https://marmelab.com/posters/avatar-199.jpeg,2023-09-13T21:07:05.299Z,2024-07-18T08:37:53.542Z,false,in-contract,"holiday-card, vip",0,2,1,"Price, Macejkovic and Bahringer",Jane Doe -40,Lisa,Wisozk,female,Magnetic,45,"Rogahn, Homenick and Ward",Lisa.Wisozk@gmail.com,359.497.5157 x00307,Other,(501) 413-5674,Home,Aut quisquam error sint odio quam neque vero sunt excepturi.,,2024-01-16T02:13:18.985Z,2024-07-17T20:28:26.755Z,true,cold,football-fan,0,1,1,"Rogahn, Homenick and Ward",Jane Doe -375,Earnest,Koss,male,B2B,4,Corkery - Considine,Earnest_Koss@gmail.com,524-241-0197,Home,868-381-4660,Work,Est ut cum sunt aut facilis sed rerum dolor aut.,,2024-03-17T20:53:56.165Z,2024-07-17T10:13:17.073Z,false,cold,"football-fan, vip",0,2,3,Corkery - Considine,Jane Doe -174,Jaime,Goodwin,male,Cutting-edge,6,Lemke - Thompson,Jaime_Goodwin24@yahoo.com,286-728-9142,Other,(265) 932-0211,Other,Corporis placeat sequi rerum ratione aut vel aut inventore.,,2024-07-02T02:01:20.934Z,2024-07-16T16:41:11.398Z,true,hot,,0,1,3,Lemke - Thompson,Jane Doe -446,Myrna,Christiansen,nonbinary,Ubiquitous,54,"Howe, Predovic and Hessel",Myrna_Christiansen97@gmail.com,(586) 574-5685 x79418,Home,322.603.3679 x602,Work,Quo molestiae numquam architecto quibusdam culpa sunt dicta reprehenderit id.,,2024-06-13T17:19:20.629Z,2024-07-16T02:51:24.553Z,false,cold,,0,1,0,"Howe, Predovic and Hessel",Jane Doe -72,Jayde,Morar,nonbinary,Dot-com,10,"Koch, Carter and Cummings",Jayde_Morar21@gmail.com,980.470.0264,Work,1-549-388-7112,Work,Unde illum nostrum ab.,,2023-11-29T12:46:17.482Z,2024-07-16T02:22:43.406Z,false,hot,influencer,0,1,0,"Koch, Carter and Cummings",Jane Doe -299,Elbert,Steuber,male,Sexy,13,Predovic - Cummerata,Elbert.Steuber64@gmail.com,736.210.7141,Other,1-913-601-8235,Work,Aspernatur quis officia perferendis.,,2024-06-18T07:39:36.898Z,2024-07-15T16:49:48.452Z,true,warm,,0,2,2,Predovic - Cummerata,Jane Doe -140,Stacy,Murazik,nonbinary,Holistic,12,"Price, Macejkovic and Bahringer",Stacy64@yahoo.com,489.369.2209 x464,Home,(519) 982-2918 x97638,Work,Ipsam repudiandae laudantium ullam voluptatem.,,2024-07-14T22:00:08.805Z,2024-07-14T22:00:08.805Z,false,hot,influencer,0,0,3,"Price, Macejkovic and Bahringer",Jane Doe -0,Irma,Kiehn,female,Enterprise,32,Schaden LLC,Irma60@yahoo.com,324-598-4065 x223,Home,784-409-7776 x1888,Other,Autem excepturi illum tempora deserunt aspernatur magnam deleniti.,,2024-05-13T21:26:57.695Z,2024-07-14T20:37:06.124Z,false,hot,,0,2,3,Schaden LLC,Jane Doe -406,Cody,Abernathy,male,Intuitive,45,"Rogahn, Homenick and Ward",Cody31@gmail.com,(904) 901-2932 x4877,Other,1-979-538-2413,Other,Ut libero sit deleniti consequuntur corrupti.,,2024-02-10T20:08:30.398Z,2024-07-14T14:37:35.456Z,false,in-contract,,0,2,0,"Rogahn, Homenick and Ward",Jane Doe -488,Rebecca,Harris,female,Strategic,11,Von Group,Rebecca.Harris@hotmail.com,486.352.2541 x57681,Other,1-981-492-1441,Home,Aut sed voluptas numquam iure eos blanditiis et.,,2024-01-25T05:10:19.392Z,2024-07-14T12:32:03.686Z,false,hot,influencer,0,1,1,Von Group,Jane Doe -479,Hazel,Fahey,nonbinary,Web-enabled,33,Rosenbaum - Olson,Hazel99@hotmail.com,(373) 908-7825 x0453,Work,224.201.3290 x01037,Other,Ab sint voluptatum.,,2024-02-28T02:11:37.568Z,2024-07-13T23:20:51.736Z,false,cold,holiday-card,0,2,2,Rosenbaum - Olson,Jane Doe -194,Elsa,Wehner,female,Sexy,6,Lemke - Thompson,Elsa.Wehner90@gmail.com,994.667.8806 x76417,Home,1-623-679-3165,Other,Fugit reiciendis qui nam.,,2024-05-16T01:31:40.863Z,2024-07-13T16:35:29.932Z,true,hot,,0,3,1,Lemke - Thompson,Jane Doe -165,Kali,Wintheiser,nonbinary,Value-added,33,Rosenbaum - Olson,Kali57@yahoo.com,788.724.7372 x4357,Other,(941) 920-3426 x1635,Home,Suscipit delectus incidunt.,,2022-09-20T18:03:42.360Z,2024-07-12T22:53:34.719Z,false,warm,,0,3,0,Rosenbaum - Olson,Jane Doe -128,Timothy,Johns,male,E-business,13,Predovic - Cummerata,Timothy_Johns@gmail.com,615.570.7943 x166,Home,(272) 924-0033 x57383,Work,Necessitatibus voluptatem blanditiis eligendi aut deserunt.,,2024-02-26T21:36:05.105Z,2024-07-12T22:41:29.656Z,false,hot,,0,4,0,Predovic - Cummerata,Jane Doe -321,Angela,Turner,female,B2B,5,Heidenreich and Sons,Angela.Turner72@gmail.com,1-224-778-1858 x460,Work,637-714-7751 x111,Other,Voluptas et quia odio blanditiis sit et quae voluptas.,https://marmelab.com/posters/avatar-139.jpeg,2024-07-11T23:52:49.733Z,2024-07-11T23:52:49.733Z,true,in-contract,manager,0,0,1,Heidenreich and Sons,Jane Doe -148,Timothy,Mann,male,World-class,54,"Howe, Predovic and Hessel",Timothy.Mann5@yahoo.com,524-563-7757,Other,421.945.8952 x3305,Work,Cum tenetur vero velit quia autem qui voluptates.,https://marmelab.com/posters/avatar-180.jpeg,2024-06-11T06:44:27.823Z,2024-07-11T20:08:35.084Z,false,hot,holiday-card,0,2,2,"Howe, Predovic and Hessel",Jane Doe -54,Nicolette,Greenholt,nonbinary,Visionary,24,Kihn LLC,Nicolette34@gmail.com,1-394-440-5544,Work,1-395-861-7254,Work,Enim accusantium quis sunt voluptas eligendi.,,2024-02-22T11:42:44.041Z,2024-07-11T13:15:31.618Z,true,in-contract,musician,0,1,1,Kihn LLC,Jane Doe -370,Gideon,Hyatt,nonbinary,Customized,10,"Koch, Carter and Cummings",Gideon55@hotmail.com,511-983-9681,Home,680-545-4110 x6005,Home,Nihil iure sunt iusto id voluptatem.,,2023-12-29T05:36:33.756Z,2024-07-10T23:08:02.403Z,false,warm,,0,3,1,"Koch, Carter and Cummings",Jane Doe -213,Delpha,Heidenreich,nonbinary,Open-source,45,"Rogahn, Homenick and Ward",Delpha.Heidenreich6@gmail.com,(233) 570-8211 x495,Other,858.351.9616 x2763,Home,Consectetur quisquam sit delectus qui corporis.,,2024-05-11T19:22:18.090Z,2024-07-10T21:51:07.098Z,false,cold,vip,0,3,1,"Rogahn, Homenick and Ward",Jane Doe -14,Noemi,Kovacek,nonbinary,Integrated,43,O'Hara - Terry,Noemi_Kovacek@yahoo.com,784-466-8027,Other,844.617.1561,Work,Tempora unde culpa alias nobis iste et maiores et voluptates.,,2023-12-05T16:19:38.021Z,2024-07-10T10:38:12.048Z,false,hot,holiday-card,0,1,1,O'Hara - Terry,Jane Doe -313,Stuart,Zboncak,nonbinary,World-class,54,"Howe, Predovic and Hessel",Stuart_Zboncak63@gmail.com,1-306-576-9744,Work,610-741-3053,Home,Quo at aut quis rem dicta.,,2024-01-25T11:43:48.112Z,2024-07-08T13:59:49.008Z,false,in-contract,"influencer, musician",0,2,2,"Howe, Predovic and Hessel",Jane Doe -395,Jake,Carroll,nonbinary,Dot-com,24,Kihn LLC,Jake.Carroll30@gmail.com,(639) 480-3111,Home,762-482-2159,Work,Alias consectetur assumenda.,https://marmelab.com/posters/avatar-122.jpeg,2024-03-22T23:34:41.062Z,2024-07-08T11:26:53.136Z,true,warm,,0,4,1,Kihn LLC,Jane Doe -96,Merle,Hackett,male,Robust,5,Heidenreich and Sons,Merle.Hackett23@yahoo.com,916.870.9131 x0760,Home,(230) 304-6975,Home,Doloremque iste explicabo facilis dolore velit est consequatur vel.,,2024-06-05T05:56:41.400Z,2024-07-06T18:53:56.159Z,false,in-contract,holiday-card,0,1,2,Heidenreich and Sons,Jane Doe -318,Monica,Zulauf,female,Frictionless,4,Corkery - Considine,Monica65@hotmail.com,(626) 388-1458 x521,Home,285.251.8718 x909,Work,Ea incidunt eveniet.,,2024-04-29T16:37:37.734Z,2024-07-06T13:44:35.310Z,true,warm,,0,2,0,Corkery - Considine,Jane Doe -182,Iris,Dickens,female,Integrated,54,"Howe, Predovic and Hessel",Iris.Dickens26@hotmail.com,1-397-478-0574,Work,1-280-976-9794 x31893,Work,Saepe dolor tempore unde.,,2023-06-24T04:41:59.115Z,2024-07-06T04:41:00.164Z,false,warm,,0,4,0,"Howe, Predovic and Hessel",Jane Doe -425,Carrie,Steuber,female,Bleeding-edge,39,Armstrong and Sons,Carrie.Steuber31@hotmail.com,367-467-1751 x38257,Other,951.390.8886,Work,Et praesentium saepe repellendus.,,2024-02-29T06:02:36.175Z,2024-07-04T14:26:08.865Z,false,cold,,0,2,0,Armstrong and Sons,Jane Doe -271,Connie,Cormier,female,Global,12,"Price, Macejkovic and Bahringer",Connie64@yahoo.com,1-854-649-3470 x662,Home,1-323-725-4279 x925,Home,Eligendi eaque cum autem qui vero totam possimus quaerat quis.,,2023-05-04T08:43:02.249Z,2024-07-03T05:46:36.752Z,true,in-contract,,0,5,1,"Price, Macejkovic and Bahringer",Jane Doe -260,Nancy,Kirlin,female,Visionary,24,Kihn LLC,Nancy_Kirlin7@gmail.com,1-806-380-3093 x07023,Work,841.277.4650 x52565,Home,Consequatur magni quo dolore omnis et deleniti placeat et.,https://marmelab.com/posters/avatar-149.jpeg,2024-04-17T13:13:05.998Z,2024-07-02T22:23:00.520Z,false,hot,"holiday-card, manager",0,2,0,Kihn LLC,Jane Doe -336,Rosie,Tromp,nonbinary,Plug-and-play,13,Predovic - Cummerata,Rosie.Tromp64@gmail.com,840-573-2941 x501,Work,1-837-646-7457 x2939,Other,Delectus earum similique.,,2024-03-05T20:08:41.846Z,2024-07-02T11:21:00.353Z,true,warm,,0,1,2,Predovic - Cummerata,Jane Doe -4,Anderson,Jaskolski,nonbinary,B2C,40,"Prohaska, Nienow and Langworth",Anderson_Jaskolski@hotmail.com,858.930.2361 x30452,Other,1-755-530-0260,Other,Sint inventore dignissimos sapiente sed ea nam porro.,https://marmelab.com/posters/avatar-222.jpeg,2023-06-29T06:47:07.884Z,2024-07-02T06:35:05.260Z,false,hot,"manager, musician",0,1,0,"Prohaska, Nienow and Langworth",Jane Doe -77,Cesar,Howe,male,Visionary,13,Predovic - Cummerata,Cesar.Howe79@hotmail.com,269.719.6579 x057,Work,501-875-0788 x868,Work,Quos possimus temporibus aperiam officia tenetur sit.,,2024-03-20T14:50:47.214Z,2024-06-29T18:06:48.679Z,false,warm,influencer,0,3,1,Predovic - Cummerata,Jane Doe -134,Clifton,Jaskolski,male,B2C,14,Kuhlman and Sons,Clifton72@yahoo.com,290-703-5312,Work,684-734-7412 x81541,Work,Illo sit quam iure est amet.,https://marmelab.com/posters/avatar-184.jpeg,2024-02-25T05:04:54.581Z,2024-06-27T21:33:49.518Z,false,warm,,0,5,3,Kuhlman and Sons,Jane Doe -362,Cordell,Grant,nonbinary,Dot-com,39,Armstrong and Sons,Cordell_Grant@yahoo.com,1-800-742-0197,Work,301-253-8055 x17861,Other,Pariatur est omnis amet.,,2024-05-21T22:07:28.567Z,2024-06-27T09:37:43.465Z,false,hot,influencer,0,2,1,Armstrong and Sons,Jane Doe -399,Timmothy,O'Reilly,nonbinary,24/365,11,Von Group,Timmothy44@hotmail.com,984.556.7730,Work,916-917-5691 x5311,Other,Voluptatem eius asperiores ab aspernatur ad enim.,,2023-09-10T04:48:58.512Z,2024-06-27T09:05:06.433Z,false,cold,,0,3,3,Von Group,Jane Doe -136,Kobe,King,nonbinary,Ubiquitous,24,Kihn LLC,Kobe.King@gmail.com,204.577.3353 x69131,Home,702.320.6151 x2304,Home,Libero omnis sunt est non deleniti quo.,,2024-06-26T03:40:16.357Z,2024-06-26T03:40:16.357Z,false,hot,musician,0,0,1,Kihn LLC,Jane Doe -227,Raquel,Green,nonbinary,Distributed,45,"Rogahn, Homenick and Ward",Raquel36@gmail.com,463-793-8057 x528,Home,1-963-697-9523,Work,Eius qui sint ut laborum aut quae neque et.,https://marmelab.com/posters/avatar-158.jpeg,2024-05-19T18:22:02.725Z,2024-06-25T05:56:50.074Z,false,cold,,0,1,0,"Rogahn, Homenick and Ward",Jane Doe -293,Rochelle,Toy,female,Seamless,33,Rosenbaum - Olson,Rochelle.Toy79@yahoo.com,928.208.1651 x55064,Work,456.926.3898 x339,Work,Aspernatur consequatur sed praesentium expedita eum.,https://marmelab.com/posters/avatar-143.jpeg,2023-02-17T18:02:36.162Z,2024-06-23T15:46:23.943Z,true,warm,influencer,0,3,0,Rosenbaum - Olson,Jane Doe -37,Doyle,Oberbrunner,male,Out-of-the-box,24,Kihn LLC,Doyle_Oberbrunner@yahoo.com,796-786-3732,Other,989-556-4440 x474,Other,Alias quia rerum hic fugit id incidunt.,,2024-03-18T20:08:06.464Z,2024-06-23T07:48:05.131Z,false,warm,holiday-card,0,2,2,Kihn LLC,Jane Doe -23,Emory,Feeney,nonbinary,Web-enabled,13,Predovic - Cummerata,Emory49@yahoo.com,493.941.1252,Home,770-706-0724,Work,Sunt sit totam aperiam sapiente et sunt explicabo odio.,,2023-06-19T12:53:34.887Z,2024-06-21T18:21:31.747Z,true,in-contract,manager,0,5,1,Predovic - Cummerata,Jane Doe -253,Alberta,Dare,female,Seamless,33,Rosenbaum - Olson,Alberta30@yahoo.com,1-536-538-5692 x74931,Work,489-240-0618 x2333,Other,Dolores tenetur voluptatem aut aut accusantium deserunt ullam est occaecati.,,2024-06-02T18:57:50.352Z,2024-06-21T14:01:12.038Z,false,cold,football-fan,0,2,0,Rosenbaum - Olson,Jane Doe -180,Jeanne,Abshire,female,Dot-com,12,"Price, Macejkovic and Bahringer",Jeanne_Abshire85@hotmail.com,926.854.6870,Other,1-692-892-9138 x4493,Other,Quos ut velit repellat aut sed explicabo iste accusantium.,,2024-04-19T12:10:15.015Z,2024-06-21T12:30:59.858Z,false,in-contract,holiday-card,0,1,2,"Price, Macejkovic and Bahringer",Jane Doe -13,Noel,Hane,male,Intuitive,54,"Howe, Predovic and Hessel",Noel_Hane14@yahoo.com,1-825-332-5607 x972,Other,937.244.6179 x419,Home,Similique dolorum consequatur magnam odio.,,2023-06-07T16:14:55.052Z,2024-06-21T10:24:14.318Z,true,hot,vip,0,4,2,"Howe, Predovic and Hessel",Jane Doe -396,Jamie,Donnelly,female,Cross-platform,45,"Rogahn, Homenick and Ward",Jamie57@yahoo.com,972-653-3018 x32469,Home,216.791.4846 x1509,Home,Sit eaque eum ipsum culpa.,,2024-06-20T06:00:08.495Z,2024-06-20T06:00:08.495Z,false,cold,,0,0,0,"Rogahn, Homenick and Ward",Jane Doe -86,Isidro,Kovacek,nonbinary,Rich,24,Kihn LLC,Isidro20@yahoo.com,(548) 665-8912 x387,Home,653-507-8131 x9801,Home,Est corrupti sit unde eveniet sed architecto recusandae inventore.,,2024-02-22T16:08:45.284Z,2024-06-19T03:23:09.277Z,true,warm,,0,4,0,Kihn LLC,Jane Doe -447,Joshua,Oberbrunner,male,Sexy,5,Heidenreich and Sons,Joshua40@gmail.com,545.410.3427 x710,Other,(762) 932-3331 x781,Home,Optio reiciendis facere aliquid voluptatum quia.,,2024-06-18T17:48:07.165Z,2024-06-18T17:48:07.165Z,false,cold,"musician, vip",0,0,1,Heidenreich and Sons,Jane Doe -19,Chandler,Lind,nonbinary,Dynamic,45,"Rogahn, Homenick and Ward",Chandler.Lind46@hotmail.com,669-810-4744,Other,447-819-7019,Other,Tempora id consequatur tempore qui dolorem.,,2024-05-03T07:47:51.385Z,2024-06-16T17:54:23.811Z,false,hot,,0,2,0,"Rogahn, Homenick and Ward",Jane Doe -18,Kent,Homenick,male,Leading-edge,11,Von Group,Kent.Homenick57@hotmail.com,659.461.2635,Home,866.695.7839 x15369,Work,Tempora voluptates dolorem.,,2023-06-26T11:20:25.354Z,2024-06-13T03:43:28.087Z,true,in-contract,,0,3,0,Von Group,Jane Doe -374,Devin,Johns,male,Killer,54,"Howe, Predovic and Hessel",Devin55@gmail.com,(728) 448-6900,Home,395-748-9740 x754,Other,Porro libero quo labore architecto.,,2024-06-11T14:25:31.793Z,2024-06-11T14:25:31.793Z,true,cold,musician,0,0,0,"Howe, Predovic and Hessel",Jane Doe -129,Reginald,Abshire,nonbinary,Impactful,13,Predovic - Cummerata,Reginald12@hotmail.com,260-377-4575 x92226,Other,830-530-5169 x038,Other,Aut sunt delectus voluptatem et sint explicabo quisquam illo in.,https://marmelab.com/posters/avatar-187.jpeg,2023-10-08T14:25:36.161Z,2024-06-09T00:46:56.864Z,true,hot,,0,4,2,Predovic - Cummerata,Jane Doe -102,Conrad,Howell,male,Impactful,6,Lemke - Thompson,Conrad.Howell@hotmail.com,766.705.1120,Work,(633) 325-1091 x5829,Work,Laborum nesciunt qui mollitia et tenetur.,,2024-04-27T06:22:46.985Z,2024-06-04T19:52:37.083Z,false,cold,,0,1,0,Lemke - Thompson,Jane Doe -352,Pat,McClure,male,End-to-end,39,Armstrong and Sons,Pat_McClure28@yahoo.com,436.557.1956 x15253,Work,715.383.2101,Home,Consectetur autem reprehenderit occaecati commodi earum.,,2024-03-19T10:17:11.056Z,2024-06-04T06:37:01.486Z,false,warm,holiday-card,0,4,0,Armstrong and Sons,Jane Doe -415,Maggie,Fadel,nonbinary,Seamless,13,Predovic - Cummerata,Maggie26@gmail.com,729-397-3648 x789,Other,767.964.2550,Other,Nihil eligendi cum dolores corrupti eum qui accusantium officia.,,2024-01-13T23:46:56.421Z,2024-06-03T22:23:42.211Z,true,warm,"holiday-card, musician",0,2,0,Predovic - Cummerata,Jane Doe -277,Nathan,Miller,male,Ubiquitous,10,"Koch, Carter and Cummings",Nathan56@gmail.com,212-413-1136,Home,1-364-416-5097 x608,Other,Et magnam sunt aliquam ipsa voluptate odio.,,2024-03-03T13:52:55.216Z,2024-05-31T04:05:40.395Z,false,cold,"football-fan, manager",0,1,1,"Koch, Carter and Cummings",Jane Doe -3,Kayden,Fisher,nonbinary,Enterprise,13,Predovic - Cummerata,Kayden.Fisher@gmail.com,(709) 565-9442 x76250,Home,289.672.5729 x5976,Home,Consequatur odit cupiditate accusantium eligendi esse est.,https://marmelab.com/posters/avatar-223.jpeg,2023-10-18T22:11:26.984Z,2024-05-27T03:38:08.637Z,true,warm,,0,2,0,Predovic - Cummerata,Jane Doe -51,Wellington,Strosin,nonbinary,Visionary,35,Lynch and Sons,Wellington_Strosin@hotmail.com,(486) 387-7634,Work,(637) 763-9370 x825,Home,Aut quia iure quo dolor laborum corrupti dolor rem.,https://marmelab.com/posters/avatar-211.jpeg,2024-05-26T15:00:04.614Z,2024-05-26T15:00:04.614Z,false,in-contract,influencer,0,0,0,Lynch and Sons,Jane Doe -139,Herman,Schoen,male,Customized,13,Predovic - Cummerata,Herman.Schoen22@hotmail.com,1-380-708-3372,Work,1-549-622-3505,Home,Quo fuga cum rerum id et nulla officiis doloremque.,,2024-05-25T17:14:02.828Z,2024-05-25T17:14:02.828Z,false,in-contract,vip,0,0,0,Predovic - Cummerata,Jane Doe -403,Marsha,Gislason,female,Customized,13,Predovic - Cummerata,Marsha89@gmail.com,608-413-4687 x23250,Work,1-854-618-4541 x4173,Work,Aut ad tempora omnis corporis provident.,,2023-07-20T17:19:23.786Z,2024-05-24T20:34:52.223Z,true,hot,musician,0,1,0,Predovic - Cummerata,Jane Doe -394,Jon,Schimmel,nonbinary,End-to-end,10,"Koch, Carter and Cummings",Jon12@gmail.com,(963) 415-2715,Work,1-978-285-1718,Other,Ullam voluptatibus voluptas optio.,,2023-10-30T08:10:06.267Z,2024-05-24T05:44:07.082Z,false,cold,vip,0,2,0,"Koch, Carter and Cummings",Jane Doe -481,Beulah,Grady,female,Collaborative,33,Rosenbaum - Olson,Beulah68@gmail.com,469-654-5841 x1429,Work,1-355-552-9563,Home,Dolorem aut qui.,,2023-12-02T21:34:16.902Z,2024-05-23T18:59:00.975Z,false,hot,vip,0,2,0,Rosenbaum - Olson,Jane Doe -233,Susanna,Murphy,nonbinary,Killer,12,"Price, Macejkovic and Bahringer",Susanna.Murphy42@yahoo.com,1-901-474-4428 x9825,Other,832-257-6225 x8294,Home,Possimus odio a.,,2024-05-21T03:27:51.422Z,2024-05-21T03:27:51.422Z,false,hot,"manager, vip",0,0,0,"Price, Macejkovic and Bahringer",Jane Doe -27,Andrea,Padberg,female,End-to-end,12,"Price, Macejkovic and Bahringer",Andrea_Padberg@gmail.com,966-548-2758 x045,Work,533-296-5921,Home,Ipsa beatae consequatur ad eligendi non quaerat enim.,,2023-07-18T22:59:36.374Z,2024-05-19T21:50:14.264Z,false,hot,"holiday-card, vip",0,3,1,"Price, Macejkovic and Bahringer",Jane Doe -286,Cecil,Spencer,male,Cross-media,12,"Price, Macejkovic and Bahringer",Cecil_Spencer86@gmail.com,1-251-345-0377,Work,542.550.6487,Other,Molestiae et mollitia nisi eius doloremque.,https://marmelab.com/posters/avatar-144.jpeg,2023-09-29T12:14:57.537Z,2024-05-17T09:23:15.723Z,true,hot,,0,1,0,"Price, Macejkovic and Bahringer",Jane Doe -377,Minnie,Hegmann,nonbinary,Impactful,13,Predovic - Cummerata,Minnie84@yahoo.com,1-753-689-4802 x950,Home,771.358.2431,Other,Quisquam dolor nesciunt libero enim nulla id.,,2023-10-25T14:10:10.360Z,2024-05-16T04:58:43.912Z,true,hot,"influencer, musician",0,3,0,Predovic - Cummerata,Jane Doe -162,Grant,Casper,male,Efficient,54,"Howe, Predovic and Hessel",Grant67@hotmail.com,(845) 894-5392,Work,281-316-9601 x744,Other,Quam ullam laboriosam est molestias ex est nihil natus.,,2023-10-28T19:56:02.195Z,2024-05-13T13:50:05.113Z,false,cold,football-fan,0,2,1,"Howe, Predovic and Hessel",Jane Doe -143,Carlo,Lindgren,nonbinary,Intuitive,12,"Price, Macejkovic and Bahringer",Carlo_Lindgren67@yahoo.com,(542) 685-3424 x548,Work,1-626-812-9122,Other,Molestias tempore temporibus recusandae.,,2023-03-29T00:21:40.410Z,2024-05-12T15:10:30.104Z,true,in-contract,"football-fan, influencer",0,2,1,"Price, Macejkovic and Bahringer",Jane Doe -438,Lora,Monahan,nonbinary,Mission-critical,4,Corkery - Considine,Lora.Monahan@yahoo.com,(901) 262-5878 x569,Home,933.529.1007 x1140,Other,Esse ut consequatur cupiditate ab magni ut aut fugit sit.,,2024-03-11T19:49:45.508Z,2024-05-04T22:27:30.447Z,false,in-contract,,0,1,1,Corkery - Considine,Jane Doe -329,Carla,Dicki,female,User-centric,10,"Koch, Carter and Cummings",Carla82@yahoo.com,494.658.6290 x570,Work,(248) 813-5972,Home,Officia sequi earum reiciendis.,https://marmelab.com/posters/avatar-136.jpeg,2023-11-24T07:57:02.240Z,2024-05-04T09:32:46.713Z,false,warm,manager,0,3,3,"Koch, Carter and Cummings",Jane Doe -458,Maiya,Kilback,nonbinary,Transparent,10,"Koch, Carter and Cummings",Maiya.Kilback32@yahoo.com,1-733-387-0883 x920,Home,1-676-906-4972 x0654,Work,Quisquam quis aut eaque officia quia debitis illum in.,,2024-02-28T00:34:42.484Z,2024-05-03T04:10:29.981Z,false,cold,,0,1,0,"Koch, Carter and Cummings",Jane Doe -215,Jean,Thiel,male,Virtual,10,"Koch, Carter and Cummings",Jean.Thiel86@hotmail.com,1-577-448-1378,Home,(328) 512-4601 x78051,Home,Iusto adipisci fugiat id voluptas similique voluptatem id.,,2023-09-05T03:21:41.687Z,2024-05-01T19:54:43.703Z,false,warm,,0,1,2,"Koch, Carter and Cummings",Jane Doe -59,Allan,Sipes,male,Efficient,13,Predovic - Cummerata,Allan.Sipes@hotmail.com,466.527.6024,Home,737.995.5313,Other,Quisquam temporibus rerum pariatur numquam.,,2024-02-09T08:32:31.135Z,2024-04-30T08:50:01.816Z,false,hot,,0,2,1,Predovic - Cummerata,Jane Doe -440,Tracy,Hayes,male,Frictionless,54,"Howe, Predovic and Hessel",Tracy.Hayes48@gmail.com,901-629-8023,Home,1-860-480-5802 x080,Home,Deserunt provident dolor laudantium vel sit aliquid corrupti.,https://marmelab.com/posters/avatar-115.jpeg,2022-09-01T08:53:16.431Z,2024-04-27T18:35:13.222Z,false,cold,,0,1,1,"Howe, Predovic and Hessel",Jane Doe -326,Karla,Huel,female,Efficient,11,Von Group,Karla54@gmail.com,549-771-0094,Work,(870) 538-7021 x879,Work,Vel nulla nisi aut quia error qui.,,2022-04-23T08:16:54.917Z,2024-04-25T04:32:00.327Z,true,cold,,0,4,1,Von Group,Jane Doe -259,Tara,Mayert,nonbinary,Back-end,33,Rosenbaum - Olson,Tara93@hotmail.com,(700) 625-0371 x54185,Other,(905) 946-1902 x050,Work,Quae id harum itaque iste repudiandae maxime consequatur.,,2022-12-16T04:33:40.847Z,2024-04-14T23:22:48.110Z,false,hot,,0,2,0,Rosenbaum - Olson,Jane Doe -424,Esta,Turcotte,nonbinary,Clicks-and-mortar,13,Predovic - Cummerata,Esta_Turcotte@hotmail.com,639.382.7223,Home,1-901-757-3503 x8250,Home,Temporibus est nam omnis ex ut nostrum.,,2024-03-03T06:40:31.291Z,2024-04-06T20:45:38.092Z,false,cold,,0,1,1,Predovic - Cummerata,Jane Doe -160,Rylee,Cremin,nonbinary,Global,11,Von Group,Rylee73@yahoo.com,(534) 585-7783,Other,1-691-955-8506 x178,Other,Minus debitis vitae.,,2022-10-19T04:55:05.820Z,2024-04-04T04:01:01.199Z,true,hot,,0,3,1,Von Group,Jane Doe -258,Andy,Walter,male,Dynamic,33,Rosenbaum - Olson,Andy.Walter@gmail.com,222.954.2239,Work,411.766.5260 x543,Home,Adipisci qui quo nemo distinctio provident et soluta.,,2023-02-26T18:06:11.369Z,2024-04-03T05:35:12.161Z,false,cold,,0,1,1,Rosenbaum - Olson,Jane Doe -483,Maggie,Schumm,female,Distributed,33,Rosenbaum - Olson,Maggie_Schumm@gmail.com,934.430.0464,Other,(712) 730-4764 x58973,Other,Hic iure fuga.,,2023-11-17T09:09:33.843Z,2024-04-02T18:10:10.517Z,false,in-contract,football-fan,0,3,1,Rosenbaum - Olson,Jane Doe -130,Saul,Wehner,male,Best-of-breed,11,Von Group,Saul.Wehner16@hotmail.com,308-754-6671,Other,1-515-396-7799 x50033,Work,Distinctio non praesentium.,https://marmelab.com/posters/avatar-186.jpeg,2023-06-20T06:56:33.010Z,2024-04-01T01:54:35.704Z,true,hot,,0,1,0,Von Group,Jane Doe -429,Daniel,Kling,male,Holistic,33,Rosenbaum - Olson,Daniel_Kling@gmail.com,230-901-6488,Other,(819) 830-7557 x4912,Work,Ut quas qui magni illo in.,,2022-02-27T09:53:49.445Z,2024-03-31T03:33:41.140Z,false,warm,"football-fan, influencer",0,2,0,Rosenbaum - Olson,Jane Doe -11,Tina,Farrell,nonbinary,Customized,10,"Koch, Carter and Cummings",Tina36@hotmail.com,1-699-397-5099 x132,Work,(454) 847-7713 x3492,Work,Quia error deleniti vero quo ut.,https://marmelab.com/posters/avatar-220.jpeg,2024-03-27T03:41:23.541Z,2024-03-27T03:41:23.541Z,false,warm,"holiday-card, musician",0,0,1,"Koch, Carter and Cummings",Jane Doe -254,Gregory,Willms,male,Wireless,11,Von Group,Gregory_Willms63@yahoo.com,335-359-8057 x7272,Work,213-559-1217,Other,Et doloribus omnis quo aliquid vel eveniet et.,,2023-12-15T02:47:48.720Z,2024-03-24T03:44:08.412Z,false,hot,,0,1,0,Von Group,Jane Doe -434,Hassan,Bartell,nonbinary,User-centric,12,"Price, Macejkovic and Bahringer",Hassan_Bartell98@gmail.com,757-804-2028,Home,1-366-666-0353,Other,Qui omnis qui vel sit perspiciatis doloribus ad harum.,,2023-03-19T11:54:48.689Z,2024-03-12T16:56:21.845Z,false,cold,,0,1,1,"Price, Macejkovic and Bahringer",Jane Doe -497,Adalberto,Bauch,nonbinary,End-to-end,12,"Price, Macejkovic and Bahringer",Adalberto.Bauch63@hotmail.com,767-471-9618,Work,1-274-617-6670 x996,Other,Saepe consectetur culpa accusantium rerum necessitatibus.,,2024-03-10T12:22:06.846Z,2024-03-10T12:22:06.846Z,false,in-contract,,0,0,0,"Price, Macejkovic and Bahringer",Jane Doe -149,Wilber,O'Kon,nonbinary,Compelling,45,"Rogahn, Homenick and Ward",Wilber13@hotmail.com,(488) 442-3631 x9305,Work,421.585.7600,Home,Esse asperiores dolorem magnam harum nobis perspiciatis pariatur.,,2024-01-20T19:44:39.893Z,2024-03-06T00:26:32.214Z,false,in-contract,"holiday-card, manager",0,1,2,"Rogahn, Homenick and Ward",Jane Doe -462,Silvia,Krajcik,female,Global,10,"Koch, Carter and Cummings",Silvia23@hotmail.com,(526) 678-7418,Home,(916) 799-6177,Home,Itaque iusto nemo.,https://marmelab.com/posters/avatar-108.jpeg,2023-12-27T02:39:36.843Z,2024-02-24T07:02:20.712Z,false,in-contract,,0,1,0,"Koch, Carter and Cummings",Jane Doe -131,Joanny,Hagenes,nonbinary,Enterprise,4,Corkery - Considine,Joanny.Hagenes51@yahoo.com,662-279-1321 x26538,Home,1-863-451-4164,Home,Id rerum quas necessitatibus distinctio mollitia quia soluta debitis.,https://marmelab.com/posters/avatar-185.jpeg,2023-11-16T09:28:24.080Z,2024-02-16T14:43:30.176Z,true,hot,musician,0,1,0,Corkery - Considine,Jane Doe -338,Ruth,Ullrich,female,End-to-end,12,"Price, Macejkovic and Bahringer",Ruth42@hotmail.com,988-914-8766 x15156,Other,227-907-0237,Home,Est placeat nulla aliquam officia tempora culpa fugit.,,2024-02-16T00:08:50.053Z,2024-02-16T00:08:50.053Z,true,warm,"musician, vip",0,0,0,"Price, Macejkovic and Bahringer",Jane Doe -466,Gerardo,Lynch,male,B2B,4,Corkery - Considine,Gerardo.Lynch@yahoo.com,1-901-251-9891 x80414,Other,(340) 319-2431,Home,Aperiam nihil quae sit.,,2024-02-09T07:10:25.778Z,2024-02-09T07:10:25.778Z,false,cold,vip,0,0,1,Corkery - Considine,Jane Doe -109,Latoya,Cole,female,End-to-end,13,Predovic - Cummerata,Latoya.Cole50@yahoo.com,493.606.6320 x646,Other,1-977-533-0948 x1300,Other,Enim totam ea et ut optio.,,2024-02-06T17:14:43.540Z,2024-02-06T17:14:43.540Z,false,cold,,0,0,2,Predovic - Cummerata,Jane Doe -437,Thomas,Predovic,male,User-centric,39,Armstrong and Sons,Thomas7@yahoo.com,(482) 443-0625,Work,639-768-8860,Home,Incidunt similique laborum ea nostrum.,,2024-02-04T09:48:58.262Z,2024-02-04T09:48:58.262Z,false,in-contract,,0,0,0,Armstrong and Sons,Jane Doe -419,Dangelo,Lindgren,nonbinary,Turn-key,12,"Price, Macejkovic and Bahringer",Dangelo69@hotmail.com,(396) 387-3871 x8914,Work,976-441-7450,Home,Voluptas sint adipisci minima dolorem maiores.,,2022-08-30T16:57:59.016Z,2024-01-15T07:48:49.107Z,false,cold,,0,2,1,"Price, Macejkovic and Bahringer",Jane Doe -284,Avery,Weber,nonbinary,Clicks-and-mortar,13,Predovic - Cummerata,Avery97@gmail.com,(728) 910-5618 x6652,Other,678-510-3132 x418,Work,Sit laboriosam aperiam praesentium.,,2024-01-11T06:32:58.626Z,2024-01-11T06:32:58.626Z,false,in-contract,,0,0,2,Predovic - Cummerata,Jane Doe -347,Dana,Swift,female,Robust,12,"Price, Macejkovic and Bahringer",Dana_Swift@hotmail.com,(221) 252-7091 x698,Other,1-388-426-6985 x58641,Home,Dolorum voluptatem qui totam accusamus.,https://marmelab.com/posters/avatar-133.jpeg,2023-04-20T03:09:26.894Z,2024-01-09T21:20:21.719Z,false,cold,,0,1,1,"Price, Macejkovic and Bahringer",Jane Doe -31,Lucy,McLaughlin,female,Sticky,4,Corkery - Considine,Lucy.McLaughlin28@hotmail.com,(427) 342-9767 x013,Work,1-969-200-6391,Other,Quam nam earum soluta sint.,,2024-01-04T04:50:15.793Z,2024-01-04T04:50:15.793Z,false,hot,,0,0,3,Corkery - Considine,Jane Doe -252,Louis,Bergstrom,male,World-class,4,Corkery - Considine,Louis.Bergstrom23@gmail.com,707.551.2189 x833,Other,(222) 559-0221 x1178,Other,Assumenda est vel officia incidunt.,,2023-12-23T13:27:52.779Z,2023-12-23T13:27:52.779Z,false,in-contract,,0,0,2,Corkery - Considine,Jane Doe -79,Kim,Emmerich,female,Cross-platform,54,"Howe, Predovic and Hessel",Kim.Emmerich26@hotmail.com,412-977-3515 x821,Home,646-517-0225,Home,Quia fuga qui.,,2023-03-16T12:40:25.005Z,2023-11-16T12:48:01.205Z,false,warm,football-fan,0,1,1,"Howe, Predovic and Hessel",Jane Doe -52,Kate,Hilll,female,Strategic,12,"Price, Macejkovic and Bahringer",Kate_Hilll78@gmail.com,233-435-5912 x861,Home,300.971.3653 x938,Home,Aut et ad excepturi non.,,2023-11-09T10:22:22.204Z,2023-11-09T10:22:22.204Z,false,hot,holiday-card,0,0,0,"Price, Macejkovic and Bahringer",Jane Doe -245,Gene,Bauch,male,Mission-critical,33,Rosenbaum - Olson,Gene44@yahoo.com,645.867.5865 x5402,Home,(828) 711-2698,Other,Quia cum temporibus minima enim dolore repudiandae iure blanditiis.,,2023-10-27T00:26:50.134Z,2023-10-27T00:26:50.134Z,false,cold,,0,0,2,Rosenbaum - Olson,Jane Doe -451,Dennis,Doyle,male,Back-end,12,"Price, Macejkovic and Bahringer",Dennis31@gmail.com,1-995-686-2065 x2887,Other,246-440-3035 x60384,Home,Excepturi eos harum.,https://marmelab.com/posters/avatar-112.jpeg,2023-09-21T05:00:53.338Z,2023-09-21T05:00:53.338Z,false,cold,musician,0,0,0,"Price, Macejkovic and Bahringer",Jane Doe -439,Tommie,Bayer,male,User-centric,54,"Howe, Predovic and Hessel",Tommie_Bayer20@yahoo.com,206.660.2139,Home,(961) 659-1995 x7847,Home,Iure fugiat excepturi asperiores deserunt in dolorum.,,2023-05-11T05:04:47.175Z,2023-05-11T05:04:47.175Z,true,in-contract,,0,0,1,"Howe, Predovic and Hessel",Jane Doe -221,Noel,Steuber,nonbinary,Next-generation,33,Rosenbaum - Olson,Noel.Steuber9@yahoo.com;noel.steuber9@gmail.com,748-666-3394,Home,(713) 756-9351,Home,Quidem non maiores qui iste pariatur.,,2022-06-30T08:35:08.060Z,2022-06-30T08:35:08.060Z,false,in-contract,,0,0,1,Rosenbaum - Olson,Jane Doe \ No newline at end of file +id,first_name,last_name,gender,title,background,first_seen,last_seen,has_newsletter,status,tags,company_id,sales_id,linkedin_url,company_name,nb_tasks,company,sales,email_work,email_home,email_other,phone_work,phone_home,phone_other +2,Shelley,Kerluke,female,Ubiquitous,Eaque ipsa velit.,2024-08-13T18:04:34.666+00:00,2024-08-14T11:39:02.318+00:00,false,warm,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Shelley_Kerluke47@hotmail.com,,1-955-371-0847 x371, +4,Leah,Boehm,female,Cutting-edge,Nobis ut quis magnam nesciunt necessitatibus voluptates consequatur.,2024-08-14T01:56:00.484+00:00,2024-08-14T11:37:45.65+00:00,false,warm,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Leah93@yahoo.com,(415) 293-3313,(980) 494-7423, +8,Margaret,Haley,female,Seamless,Ab hic omnis inventore.,2024-08-13T20:40:50.404+00:00,2024-08-14T11:36:09.222+00:00,true,warm,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Margaret32@hotmail.com,1-365-756-9410 x4781,262.397.7937, +3,Faith,Leuschke,female,Cross-media,Autem consequuntur voluptas molestiae.,2024-08-14T04:18:25.313+00:00,2024-08-14T11:33:41.344+00:00,false,cold,vip,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Faith72@yahoo.com,,1-597-372-4380 x491,(441) 954-5172 +1,Robin,Fritsch,nonbinary,Global,Est tempore magni porro modi tenetur temporibus rerum est molestiae.,2024-07-04T03:27:41.778+00:00,2024-08-14T11:29:00.839+00:00,true,cold,"football-fan, musician",4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Robin27@gmail.com,,,621.669.1184 +6,Dolores,Larson,nonbinary,Holistic,Doloribus at dignissimos quia ut nisi.,2024-08-14T05:09:56.179+00:00,2024-08-14T11:10:07.686+00:00,false,hot,,3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Dolores79@gmail.com,,(628) 774-3169 x3406,1-897-300-1976 x14675 +9,Brett,Connelly,male,Bricks-and-clicks,Consequuntur dolores eos rerum et mollitia.,2024-08-13T20:17:00.897+00:00,2024-08-14T10:10:34.905+00:00,false,in-contract,,7,1,,"Huels, Durgan and Auer",0,"Huels, Durgan and Auer",Jane Doe,,,Brett_Connelly@hotmail.com,1-536-917-1736 x9835,(970) 566-9885, +10,Suzanne,Bode,female,Bleeding-edge,Enim nisi molestiae.,2024-02-21T22:56:51.761+00:00,2024-08-14T09:54:05.242+00:00,false,hot,manager,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Suzanne51@hotmail.com,,1-721-729-7857 x33993, +7,Brent,Kilback,male,Turn-key,Dolor aut ut officiis similique et deleniti.,2024-08-09T16:10:35.105+00:00,2024-08-14T09:34:58.587+00:00,false,in-contract,"influencer, vip",5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Brent99@yahoo.com,(858) 408-1343 x66286,266-646-6878, +5,Martin,Turner,male,Scalable,Tempora corporis ipsa laudantium.,2024-05-24T04:58:25.627+00:00,2024-08-14T09:34:13.343+00:00,true,in-contract,"manager, musician",6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Martin.Turner@gmail.com,(304) 233-6784,605.848.8461 x404, +12,Darwin,Turner,nonbinary,Enterprise,Est sunt aut aut distinctio dicta omnis sapiente dolore.,2024-08-14T01:40:41.607+00:00,2024-08-14T09:23:58.224+00:00,false,hot,"manager, musician",4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Darwin45@gmail.com,969.739.9067 x63801,,1-912-724-7774 x5584 +11,Craig,Rau,male,Ubiquitous,Eaque voluptatem cum aut.,2024-08-12T17:05:11.936+00:00,2024-08-14T09:11:11.798+00:00,false,in-contract,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Craig32@gmail.com,(842) 617-0540 x93113,,733.241.7390 +13,Jana,McDermott,female,Collaborative,Quam ipsa voluptatum aut suscipit in.,2024-08-11T01:59:21.572+00:00,2024-08-14T09:10:38.281+00:00,false,cold,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Jana6@yahoo.com,,661-371-8890 x8932,864-787-8472 x0765 +14,Harvey,Rice,male,Front-end,Occaecati quia ipsa accusantium asperiores sunt ut eum.,2024-07-23T00:35:59.522+00:00,2024-08-14T09:02:06.873+00:00,false,in-contract,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Harvey.Rice53@yahoo.com,970-923-7605,1-233-218-7205, +15,Shaina,Denesik,nonbinary,B2B,Nemo aliquid architecto dolor ut impedit consequuntur aliquam architecto.,2024-07-13T14:19:19.209+00:00,2024-08-14T08:28:38.131+00:00,false,cold,,9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Shaina.Denesik60@yahoo.com,,(494) 900-8529, +16,Idella,Lang,nonbinary,Impactful,Eos veritatis iusto quae modi laudantium.,2024-08-12T19:25:48.572+00:00,2024-08-14T07:53:58.187+00:00,false,warm,,5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Idella_Lang@gmail.com,,(870) 917-5745 x484,381.761.9064 x03559 +18,Nick,Lebsack,male,Integrated,Quibusdam ad consequuntur dolore aut esse.,2024-05-25T14:40:45.111+00:00,2024-08-14T07:19:19.271+00:00,true,warm,football-fan,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Nick.Lebsack@hotmail.com,(233) 480-2770,,1-833-385-6061 +17,Clayton,Bins,male,Innovative,Illum est doloribus numquam est harum porro eos.,2024-08-10T23:29:52.777+00:00,2024-08-14T07:18:37.586+00:00,false,hot,"football-fan, vip",10,1,,"Barton, Johnson and Wiegand",0,"Barton, Johnson and Wiegand",Jane Doe,,,Clayton_Bins@hotmail.com,,(385) 310-0634 x9283,454.956.1817 x105 +20,Lena,VonRueden,female,B2B,Rerum saepe ut quisquam ipsum consequatur.,2024-08-11T07:05:37.389+00:00,2024-08-14T07:14:24.002+00:00,true,warm,"influencer, manager",1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Lena_VonRueden70@yahoo.com,(428) 686-6633,811-443-9591 x3606, +19,Wanda,Lind,female,Bricks-and-clicks,Ea porro accusantium velit ut.,2024-04-02T16:49:33.406+00:00,2024-08-14T06:46:26.259+00:00,true,hot,"football-fan, influencer",3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Wanda.Lind@gmail.com,,747-682-3634, +21,Peter,Konopelski,male,Distributed,Quod labore distinctio hic error.,2024-08-11T19:39:47.782+00:00,2024-08-14T06:44:26.409+00:00,false,hot,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Peter.Konopelski47@yahoo.com,,1-753-493-4837 x3237, +22,Celia,Fisher,nonbinary,Collaborative,Sequi quis consequatur non voluptas sed ea.,2024-08-12T20:18:32.498+00:00,2024-08-14T06:42:05.866+00:00,false,in-contract,"manager, musician",11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Celia_Fisher@hotmail.com,,1-406-714-6467, +23,Brayan,Cremin,nonbinary,Robust,Perferendis tenetur minus in autem ex eum magni inventore saepe.,2024-08-06T22:57:31.88+00:00,2024-08-14T06:27:36.854+00:00,false,cold,holiday-card,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Brayan.Cremin87@gmail.com,,408-219-1773, +25,John,Weber,male,Bricks-and-clicks,Ex dicta necessitatibus accusantium sint reiciendis voluptatem error.,2024-08-10T20:23:44.064+00:00,2024-08-14T05:35:34.049+00:00,true,in-contract,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,John.Weber0@yahoo.com,,,996-721-5579 x955 +24,Bernadette,Hills,female,Robust,Excepturi ut exercitationem deleniti fuga officiis excepturi velit debitis nemo.,2024-02-29T19:26:46.808+00:00,2024-08-14T05:33:31.879+00:00,false,warm,"musician, vip",13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Bernadette.Hills@gmail.com,,,823.571.7563 x60351 +26,Ruby,Hintz,female,Ubiquitous,In atque cupiditate magni adipisci quaerat optio ut ullam.,2024-07-24T19:06:00.66+00:00,2024-08-14T05:19:02.761+00:00,false,warm,"musician, vip",12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Ruby24@gmail.com,378.683.8319,,(432) 967-6584 x529 +30,Ebony,Raynor,nonbinary,Strategic,Ab eaque blanditiis officia esse ut ut.,2024-08-13T05:51:27.854+00:00,2024-08-14T04:41:35.901+00:00,true,warm,influencer,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Ebony.Raynor36@gmail.com,(232) 877-6203,,1-263-444-5326 +27,Johnathan,Stamm,male,Transparent,Voluptatem quisquam molestiae quos nobis enim architecto.,2024-08-12T08:14:09.356+00:00,2024-08-14T04:26:15.778+00:00,false,warm,,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Johnathan20@yahoo.com,1-664-514-2279 x95543,, +29,Ray,Weber,male,Efficient,Autem nam neque quia quae natus aspernatur placeat.,2024-07-27T17:17:38.367+00:00,2024-08-14T04:02:13.853+00:00,false,hot,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Ray.Weber@hotmail.com,294.757.2314 x242,,(446) 758-2122 x5237 +28,Jake,Schaden,male,Ubiquitous,Ratione cum non aut et dignissimos aliquid quaerat quisquam.,2024-08-12T13:54:40.109+00:00,2024-08-14T03:44:44.744+00:00,true,hot,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Jake.Schaden@gmail.com,734.936.5094,, +33,Elena,Windler,female,B2B,Est suscipit qui autem et aut et illo.,2024-02-09T09:17:49.393+00:00,2024-08-14T03:30:54.22+00:00,false,cold,football-fan,15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Elena_Windler@hotmail.com,(733) 235-0010,, +31,Viola,Weissnat,female,Seamless,Similique error iure quia.,2024-08-11T11:54:18.621+00:00,2024-08-14T03:21:39.018+00:00,true,warm,,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Viola2@hotmail.com,,820-542-1135, +32,Derek,Nader,nonbinary,24/365,Fugiat consequatur porro voluptas occaecati veritatis.,2024-08-07T02:03:23.977+00:00,2024-08-14T02:34:59.39+00:00,true,in-contract,"holiday-card, musician",1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Derek_Nader@gmail.com,759.650.4008 x28412,(355) 752-8192, +34,Jason,Rippin,male,Wireless,Libero quia odio porro eveniet quis est debitis sed.,2024-07-20T16:41:13.615+00:00,2024-08-14T01:32:51.976+00:00,false,in-contract,holiday-card,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Jason.Rippin@gmail.com,354.362.7535 x906,1-237-844-9721, +36,Cyrus,Murphy,nonbinary,Proactive,Delectus ipsa aut voluptas voluptatem et veritatis.,2024-07-24T21:03:44.445+00:00,2024-08-14T01:07:42.296+00:00,false,warm,football-fan,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Cyrus28@yahoo.com,(598) 497-1538,, +37,Marlon,Reichel,male,Cross-platform,Eligendi dicta ipsa maxime voluptas id qui repudiandae perspiciatis quo.,2024-02-07T06:08:07.44+00:00,2024-08-14T00:03:25.352+00:00,true,in-contract,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Marlon_Reichel40@hotmail.com,,495.334.3958, +38,Judy,Hammes,female,Global,Id voluptatibus et animi veritatis magnam at.,2024-07-19T15:17:09.982+00:00,2024-08-13T23:49:42.328+00:00,false,hot,,17,1,,Renner - Keebler,0,Renner - Keebler,Jane Doe,,,Judy_Hammes57@hotmail.com,1-516-809-4231,(918) 532-1805, +35,Heber,Pfeffer,nonbinary,Interactive,Suscipit quaerat placeat eaque eaque.,2024-06-19T10:25:48.147+00:00,2024-08-13T21:46:24.539+00:00,false,warm,,18,1,,Steuber - Smitham,0,Steuber - Smitham,Jane Doe,,,Heber57@yahoo.com,960-594-8621,, +39,Sonia,Pfeffer,female,Sticky,Quidem quia autem dolorem pariatur.,2024-07-28T14:07:35.937+00:00,2024-08-13T21:44:45.047+00:00,false,warm,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Sonia.Pfeffer@hotmail.com,,1-635-332-9929 x12769,(486) 779-0688 x453 +40,May,Hudson,female,Scalable,Qui ut exercitationem dolor doloremque sed molestias enim eligendi non.,2024-07-22T15:38:30.581+00:00,2024-08-13T21:15:28.962+00:00,true,cold,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,May51@hotmail.com,(764) 897-7572 x57506,,553.436.1487 +41,Adrian,Morar,male,Mission-critical,Accusantium eaque voluptatem quis perspiciatis et.,2024-08-05T17:21:14.058+00:00,2024-08-13T20:28:18.987+00:00,false,hot,vip,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Adrian_Morar22@yahoo.com,,,557-760-5339 x297 +42,Kerry,Steuber,female,Dynamic,Animi explicabo neque quia quibusdam a totam numquam.,2024-07-20T15:03:26.931+00:00,2024-08-13T20:19:47.398+00:00,true,in-contract,"football-fan, manager",2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Kerry.Steuber76@gmail.com,,368-977-9235,681-744-2974 +43,Maxine,Gerhold,female,Synergistic,Sunt ut ullam.,2024-08-02T00:58:56.748+00:00,2024-08-13T20:02:36.26+00:00,false,cold,holiday-card,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Maxine.Gerhold56@gmail.com,1-565-279-3761 x1148,(677) 333-6539 x0774, +45,Fannie,Pfeffer,female,Bricks-and-clicks,Et earum animi.,2024-08-13T10:13:30.758+00:00,2024-08-13T19:42:44.44+00:00,false,in-contract,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Fannie.Pfeffer89@hotmail.com,,,372.613.0768 x042 +44,Ettie,Ritchie,nonbinary,Extensible,Aut dolorem praesentium aut non nihil quas.,2024-08-11T14:44:42.852+00:00,2024-08-13T19:13:36.426+00:00,true,cold,,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Ettie.Ritchie@gmail.com,366-958-1379 x96066,666-622-3794 x510, +47,Lorena,Kuhn,female,Virtual,Maiores quibusdam cumque sit nihil amet nobis culpa.,2024-07-18T01:08:24.836+00:00,2024-08-13T18:00:50.292+00:00,true,cold,"football-fan, vip",10,1,,"Barton, Johnson and Wiegand",0,"Barton, Johnson and Wiegand",Jane Doe,,,Lorena.Kuhn@yahoo.com,,877.918.6266 x398,779-676-2578 +46,Janet,Orn,female,Frictionless,Et qui sit voluptatem autem deserunt.,2024-07-20T09:21:57.652+00:00,2024-08-13T17:22:50.971+00:00,true,cold,manager,15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Janet.Orn76@yahoo.com,1-625-546-4240 x936,,(967) 865-7314 +50,Enrique,Trantow,male,Impactful,Sint architecto et nam nihil tempore amet qui.,2024-07-12T08:14:27.246+00:00,2024-08-13T17:05:15.831+00:00,true,in-contract,,19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Enrique.Trantow76@yahoo.com,665.472.5842,, +49,Maxine,Mueller,female,B2B,Incidunt deserunt quidem architecto quasi ullam non mollitia.,2024-08-11T18:06:23.326+00:00,2024-08-13T16:32:12.776+00:00,true,in-contract,holiday-card,20,1,,Stracke Inc,0,Stracke Inc,Jane Doe,,,Maxine_Mueller@yahoo.com,447.893.4084,, +48,Elias,O'Hara,male,Next-generation,Hic reprehenderit eligendi quibusdam.,2024-07-21T17:39:38.704+00:00,2024-08-13T16:28:13.841+00:00,false,warm,holiday-card,5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Elias.OHara@gmail.com,,990-705-8175 x040,476.380.6411 +51,Franklin,Schowalter,male,24/365,Maxime impedit occaecati praesentium laboriosam ullam ab voluptas in.,2022-12-24T02:43:55.727+00:00,2024-08-13T16:12:21.376+00:00,false,cold,"holiday-card, vip",9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Franklin.Schowalter@gmail.com,(576) 672-2195,,303-407-2492 x7432 +53,Terrell,Rohan,male,Strategic,Rem et totam.,2024-07-27T04:35:26.2+00:00,2024-08-13T14:56:46.696+00:00,false,hot,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Terrell.Rohan@hotmail.com,947-814-4562 x82533,1-569-841-4016 x451, +52,Stacey,Kihn,female,Transparent,Ipsum accusamus vel in ut optio et commodi quidem.,2024-08-02T01:54:02.56+00:00,2024-08-13T14:43:12.369+00:00,false,warm,holiday-card,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Stacey.Kihn79@yahoo.com,,,1-632-538-0399 +54,Gilbert,Dickens,male,E-business,Reprehenderit voluptatibus quia autem corporis possimus qui ipsam.,2024-08-12T14:48:11.547+00:00,2024-08-13T14:08:11.296+00:00,true,hot,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Gilbert.Dickens7@yahoo.com,,967-342-6779 x1970, +55,Santiago,Mosciski,nonbinary,Vertical,Ipsa recusandae aliquid necessitatibus.,2024-07-08T00:33:04.155+00:00,2024-08-13T14:06:30.178+00:00,false,warm,"football-fan, musician",21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Santiago44@yahoo.com,774.956.8892,, +57,Kaden,Waelchi,nonbinary,Killer,Rerum molestias numquam laudantium ipsum nulla id consectetur.,2024-06-11T00:56:51.001+00:00,2024-08-13T13:41:40.721+00:00,false,in-contract,"influencer, musician",6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Kaden.Waelchi@hotmail.com,,927-301-3903 x27153, +58,Margaret,Olson,nonbinary,Cross-platform,Impedit doloremque omnis provident accusamus et voluptas.,2024-06-28T10:45:11.003+00:00,2024-08-13T12:32:24.515+00:00,true,warm,"football-fan, holiday-card",2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Margaret.Olson@yahoo.com,690.225.9000 x43477,,619.851.8966 x6336 +56,Nathan,Hamill,male,B2C,Aspernatur eum ab illum voluptatem voluptatem et quo.,2024-07-10T12:59:44.946+00:00,2024-08-13T12:32:20.806+00:00,true,in-contract,,22,1,,"Johns, Runte and Abernathy",0,"Johns, Runte and Abernathy",Jane Doe,,,Nathan80@yahoo.com,1-284-420-5288,,806.558.8212 +60,Opal,Gaylord,female,Strategic,Assumenda quia illo beatae totam rerum enim.,2024-07-22T04:34:32.824+00:00,2024-08-13T12:19:34.868+00:00,true,hot,,17,1,,Renner - Keebler,0,Renner - Keebler,Jane Doe,,,Opal_Gaylord71@hotmail.com,,771-895-1328,619.463.0764 x279 +59,Patrick,Fritsch,male,World-class,Quo reprehenderit omnis quas.,2024-07-06T02:12:28.497+00:00,2024-08-13T12:02:35.313+00:00,true,warm,,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Patrick_Fritsch14@gmail.com,1-284-283-7144,, +62,Elfrieda,Predovic,nonbinary,B2C,Dolores nemo temporibus quisquam et deleniti molestias minima.,2024-05-02T19:22:47.28+00:00,2024-08-13T12:00:40.399+00:00,false,cold,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Elfrieda17@yahoo.com,(392) 675-2117 x00057,,(934) 348-5314 x940 +64,Anita,Hayes,female,Seamless,Mollitia ad itaque distinctio.,2024-07-31T23:07:51.229+00:00,2024-08-13T11:28:22.414+00:00,false,hot,,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Anita.Hayes3@gmail.com,1-450-744-0876 x1377,,729-477-6991 +63,Opal,Marks,female,Turn-key,Porro reprehenderit sed aut voluptatem itaque.,2024-08-12T05:44:45.136+00:00,2024-08-13T11:26:21.817+00:00,false,in-contract,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Opal_Marks50@gmail.com,1-421-904-7947 x667,,569.843.7654 +61,Stuart,Romaguera,male,Sexy,Labore et perspiciatis aut commodi est rerum sit eaque.,2024-08-05T02:53:36.873+00:00,2024-08-13T09:25:53.752+00:00,false,cold,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Stuart90@yahoo.com,672-812-6623 x4810,912.345.2012, +68,Monica,Willms,nonbinary,Dynamic,Esse a a est.,2024-06-27T23:57:42.234+00:00,2024-08-13T09:05:48.911+00:00,true,cold,,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Monica_Willms@hotmail.com,,,1-828-538-5524 x72368 +65,Kenneth,Wyman,nonbinary,Cutting-edge,Qui impedit eius qui.,2024-07-22T18:45:49.543+00:00,2024-08-13T08:11:46.069+00:00,false,warm,,24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Kenneth.Wyman@gmail.com,,,221.834.6480 +67,Alford,Tremblay,nonbinary,Integrated,Tempore veniam aliquam non.,2024-07-14T09:27:10.184+00:00,2024-08-13T08:11:43.001+00:00,false,in-contract,football-fan,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Alford.Tremblay74@gmail.com,828-289-7649 x4879,849.744.5558 x75814, +66,Abel,Bartoletti,male,Killer,Nobis nam inventore nihil id quo optio quia voluptatibus.,2023-10-27T05:12:34.127+00:00,2024-08-13T07:30:14.951+00:00,false,hot,,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Abel_Bartoletti@hotmail.com,(433) 762-2963,,(829) 358-7955 +69,Heidi,Botsford,female,Cutting-edge,Dolorum aliquam voluptatem non.,2024-07-08T13:40:33.572+00:00,2024-08-13T07:00:07.815+00:00,true,in-contract,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Heidi_Botsford@yahoo.com,,761.268.3522 x4449, +70,Toy,Morar,nonbinary,Customized,Dolore omnis eveniet ea accusantium repellendus provident et quia dolore.,2024-08-07T03:00:34.709+00:00,2024-08-13T06:43:17.246+00:00,false,warm,,25,1,,Casper - Pfannerstill,0,Casper - Pfannerstill,Jane Doe,,,Toy.Morar@gmail.com,(220) 607-6047 x5041,, +71,Margaret,Ritchie,female,Integrated,Quam dicta eos iste.,2024-04-04T19:21:37.516+00:00,2024-08-13T04:50:51.098+00:00,false,in-contract,,3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Margaret_Ritchie@hotmail.com,(349) 726-7852 x018,1-588-621-4643 x285, +72,Neil,Langworth,male,24/365,Repellendus eaque blanditiis est perferendis iure excepturi maiores mollitia natus.,2024-07-26T05:37:23.885+00:00,2024-08-13T04:30:13.847+00:00,false,cold,vip,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Neil_Langworth46@gmail.com,,1-640-659-7390 x9994,205-910-6259 x6868 +73,Julie,Skiles,nonbinary,Open-source,Facere aut in dolor adipisci culpa rerum.,2024-07-27T06:00:52.547+00:00,2024-08-13T02:19:22.5+00:00,true,cold,"manager, vip",8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Julie_Skiles@hotmail.com,,,1-230-459-5988 x96537 +74,Rochelle,Hirthe,female,World-class,Ut voluptatem dolores et vitae et quia occaecati.,2024-07-22T20:38:37.776+00:00,2024-08-13T01:31:53.12+00:00,true,hot,football-fan,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Rochelle_Hirthe@gmail.com,1-767-882-3473,,677.474.3580 +75,Alfred,Shanahan,male,Collaborative,Illum officiis nam aliquam eius.,2024-03-17T17:40:31.935+00:00,2024-08-13T00:28:14.863+00:00,false,hot,,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Alfred6@yahoo.com,(473) 995-8453,, +76,Mindy,Ullrich,female,Best-of-breed,Corporis omnis harum aut quo vel sunt qui.,2024-08-05T08:40:32.237+00:00,2024-08-12T23:34:29.959+00:00,true,cold,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Mindy_Ullrich@yahoo.com,,(951) 760-3884,778-338-7993 x35113 +77,Caroline,Boyle,nonbinary,Dynamic,Nihil ratione sed totam velit dicta.,2024-07-25T17:07:01.748+00:00,2024-08-12T23:15:14.478+00:00,false,in-contract,"holiday-card, musician",12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Caroline54@hotmail.com,,(556) 765-4223 x26237, +78,Sherman,Jacobson,nonbinary,Cutting-edge,Quia optio amet aliquid assumenda autem.,2024-07-25T07:17:36.73+00:00,2024-08-12T22:46:19.848+00:00,true,hot,,27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Sherman76@yahoo.com,704-595-9022 x45617,626.964.3819, +79,Dwayne,Feeney,male,Visionary,Pariatur velit et atque.,2024-05-11T21:17:55.264+00:00,2024-08-12T22:25:32.694+00:00,false,cold,influencer,28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Dwayne81@yahoo.com,447.650.0814 x757,,599-983-0918 x271 +80,Lorene,Collier,female,Efficient,Est omnis aut.,2024-07-29T14:57:33.55+00:00,2024-08-12T19:46:49.317+00:00,false,hot,"holiday-card, vip",12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Lorene.Collier19@hotmail.com,(930) 541-5098,,635-828-3151 x8219 +82,Wm,Marvin,male,Sexy,Unde dolores dicta velit odit occaecati inventore eos.,2024-08-08T21:41:13.324+00:00,2024-08-12T17:26:50.743+00:00,false,in-contract,musician,25,1,,Casper - Pfannerstill,0,Casper - Pfannerstill,Jane Doe,,,Wm_Marvin@hotmail.com,626.503.5928,1-485-838-7349 x63861, +81,Ed,Johnston,male,End-to-end,Perspiciatis totam iure adipisci.,2024-08-06T01:00:47.748+00:00,2024-08-12T17:22:16.047+00:00,true,cold,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Ed_Johnston1@yahoo.com,(827) 273-2034 x5657,1-511-259-2082 x9628, +84,Franklin,Bartoletti,male,Integrated,Quia saepe dolore ducimus sit omnis minus numquam veniam qui.,2024-08-11T19:41:43.764+00:00,2024-08-12T17:00:48.291+00:00,false,in-contract,"holiday-card, vip",2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Franklin.Bartoletti86@gmail.com,(377) 824-3420,1-422-926-0154, +83,Estelle,Abshire,female,World-class,Eum itaque ipsum sint non.,2024-07-27T08:32:56.164+00:00,2024-08-12T17:00:37.638+00:00,true,hot,influencer,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Estelle_Abshire67@yahoo.com,497.685.6800 x572,, +85,Lena,Padberg,female,Interactive,Dolor ad saepe et esse corporis natus voluptatem maxime.,2024-07-20T06:32:24.727+00:00,2024-08-12T16:23:46.199+00:00,false,hot,,9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Lena.Padberg84@gmail.com,,(910) 585-0517 x473,241-433-6273 +90,America,Doyle,nonbinary,Next-generation,Sit sapiente iure.,2024-08-09T10:04:21.248+00:00,2024-08-12T15:42:14.643+00:00,false,in-contract,"influencer, manager",1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,America84@hotmail.com,(737) 613-5553 x5031,,(519) 472-0955 x003 +86,Robin,Lind,female,B2C,Doloribus omnis enim eos eum.,2023-12-25T17:26:51.097+00:00,2024-08-12T15:40:34.115+00:00,false,cold,musician,30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Robin88@gmail.com,(314) 286-2883 x127,, +89,Nicklaus,Kuhic,nonbinary,Transparent,Ullam aut perspiciatis expedita vero voluptatem nam veritatis quo.,2024-04-11T04:41:43.156+00:00,2024-08-12T15:20:54.437+00:00,false,cold,influencer,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Nicklaus.Kuhic@hotmail.com,,604.657.2607,1-727-299-1969 x05329 +87,Willie,Kozey,female,Back-end,Deleniti libero rerum quia.,2024-01-26T19:49:11.621+00:00,2024-08-12T15:11:44.807+00:00,true,cold,,3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Willie88@yahoo.com,813.574.2289 x72033,,1-511-655-1939 +88,Eloise,West,female,E-business,Aperiam quaerat aliquam.,2024-08-01T00:57:27.46+00:00,2024-08-12T13:26:44.921+00:00,false,cold,,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Eloise.West@hotmail.com,1-987-990-4914 x5270,,1-910-243-1323 +91,Rachel,Reichert,female,Collaborative,Rem necessitatibus voluptatem dolore reiciendis.,2024-07-11T07:11:41.556+00:00,2024-08-12T13:13:25.788+00:00,false,cold,manager,3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Rachel4@gmail.com,,458-916-1807,1-250-867-0756 x25885 +92,Wendy,Stiedemann,female,B2B,Dolorem velit est nobis maxime.,2024-03-26T15:51:07.139+00:00,2024-08-12T12:51:06.123+00:00,false,warm,football-fan,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Wendy_Stiedemann57@yahoo.com,764.264.0598,1-384-378-1631 x8205, +94,Leon,Kirlin,male,Vertical,Enim consequuntur culpa ut provident ut.,2023-12-25T23:07:52.835+00:00,2024-08-12T12:18:56.606+00:00,true,hot,manager,19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Leon1@gmail.com,,,319.901.4232 +93,Cassandre,Aufderhar,nonbinary,Out-of-the-box,Tempora ut fuga quisquam consectetur delectus distinctio sit.,2024-08-08T04:16:57.766+00:00,2024-08-12T12:01:37.402+00:00,true,cold,,27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Cassandre_Aufderhar13@hotmail.com,(573) 595-8225 x756,1-409-926-6639 x3380, +95,Destinee,Kertzmann,nonbinary,Killer,Non quis et nam.,2024-08-05T07:31:27.639+00:00,2024-08-12T11:35:59.142+00:00,false,in-contract,vip,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Destinee.Kertzmann46@gmail.com,,,497-715-5154 x856 +97,Mitchell,McKenzie,male,Synergistic,Maiores et vel tenetur expedita.,2024-06-24T12:31:07.07+00:00,2024-08-12T10:54:02.062+00:00,false,hot,,19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Mitchell.McKenzie@yahoo.com,,(942) 378-8728 x788,(510) 906-7887 x41551 +96,Carlos,Klocko,male,Next-generation,Maxime est tempora animi alias at ea.,2024-06-23T00:44:09.968+00:00,2024-08-12T10:44:17.475+00:00,true,in-contract,,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Carlos_Klocko@hotmail.com,974-871-5551 x528,,551-711-8182 x47251 +98,Rex,Krajcik,male,Scalable,Soluta id veniam magnam reiciendis quis praesentium.,2024-07-02T11:34:43.524+00:00,2024-08-12T10:21:47.63+00:00,true,hot,influencer,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Rex.Krajcik34@hotmail.com,,(211) 491-4804 x429, +99,Jaeden,Swift,nonbinary,Magnetic,Rerum vel exercitationem ut iste tempore excepturi.,2024-07-18T00:02:11.913+00:00,2024-08-12T08:40:59.532+00:00,false,in-contract,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Jaeden_Swift1@hotmail.com,(660) 460-1847 x643,939-307-3853 x750, +100,Bryan,Wolff,male,Cutting-edge,Quia voluptates itaque incidunt dolor numquam sit ea.,2024-05-15T13:06:52.572+00:00,2024-08-12T08:24:54.797+00:00,false,cold,football-fan,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Bryan68@gmail.com,,,738-992-2103 x4655 +101,Ella,Bergnaum,female,Mission-critical,Quod quia facere et dolorem ut.,2024-07-20T12:07:48.518+00:00,2024-08-12T07:36:24.462+00:00,true,cold,,30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Ella_Bergnaum@hotmail.com,(832) 343-5024 x246,, +103,Tremaine,Keeling,nonbinary,Strategic,Qui enim aliquam at.,2024-04-29T19:36:36.936+00:00,2024-08-12T06:14:45.859+00:00,true,in-contract,"manager, vip",31,1,,"Davis, Bartell and Turner",0,"Davis, Bartell and Turner",Jane Doe,,,Tremaine24@gmail.com,1-291-416-1451 x305,,521-665-6603 x10900 +104,Desmond,Bode,nonbinary,User-centric,Quia qui sequi.,2024-07-20T21:50:50.587+00:00,2024-08-12T05:22:37.027+00:00,true,in-contract,,17,1,,Renner - Keebler,0,Renner - Keebler,Jane Doe,,,Desmond.Bode95@gmail.com,(423) 333-7463 x820,763.401.9211, +102,Loyal,Johns,nonbinary,User-centric,Qui iure molestias.,2024-08-02T04:09:10.458+00:00,2024-08-12T04:32:56.139+00:00,true,warm,influencer,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Loyal13@gmail.com,(284) 551-8415 x1064,1-966-747-5430 x63163, +105,Natasha,Durgan,female,Bleeding-edge,Sint exercitationem optio mollitia voluptatem ut.,2024-07-21T23:18:50.248+00:00,2024-08-12T04:22:07.67+00:00,true,cold,musician,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Natasha.Durgan74@yahoo.com,946-969-6965,,490-375-7760 x54481 +106,Rafael,Ruecker,male,Killer,Exercitationem nemo exercitationem nihil eos asperiores.,2023-06-10T13:09:46.344+00:00,2024-08-12T01:02:36.696+00:00,false,warm,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Rafael67@gmail.com,,314.961.5405 x1769,553.926.5640 +107,Melissa,Kemmer,female,Impactful,Aut expedita culpa qui asperiores eius.,2024-07-13T08:16:36.003+00:00,2024-08-12T00:20:27.742+00:00,false,warm,"holiday-card, influencer",2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Melissa69@gmail.com,,460.748.0774 x9037,(977) 731-1545 +108,Juanita,Rolfson,female,Customized,Et aut nisi.,2024-07-24T11:55:24.915+00:00,2024-08-11T23:55:53.626+00:00,false,cold,,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Juanita_Rolfson66@yahoo.com,391.426.0140,824.958.3401 x11111, +109,Enrique,Haley,male,User-centric,Voluptatem odit voluptatem quos corporis voluptatum maxime enim et eius.,2024-08-02T00:00:43.325+00:00,2024-08-11T23:21:52.666+00:00,false,hot,vip,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Enrique_Haley@yahoo.com,,518-402-3175 x01038, +110,Anita,Hilpert,nonbinary,Front-end,Quis omnis fugiat qui.,2024-07-04T18:49:33.835+00:00,2024-08-11T23:20:12.677+00:00,true,warm,vip,32,1,,Davis - Hilpert,0,Davis - Hilpert,Jane Doe,,,Anita.Hilpert93@yahoo.com,,1-914-341-7202 x50900,981-318-0816 +112,Marjorie,Carroll,nonbinary,World-class,Corrupti non enim doloremque eum vel ea.,2024-07-10T22:57:14.648+00:00,2024-08-11T20:45:25.616+00:00,false,warm,influencer,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Marjorie87@yahoo.com,1-759-388-4134 x02525,,(775) 675-3281 +111,Arnold,Mante,nonbinary,Global,Autem consectetur distinctio nemo fuga fuga.,2024-07-23T17:56:48.645+00:00,2024-08-11T19:37:35.798+00:00,false,cold,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Arnold_Mante@yahoo.com,,(725) 203-8639 x8487,350-234-6463 +113,Leona,Spencer,female,Integrated,Fuga et dolores.,2024-08-08T00:53:18.416+00:00,2024-08-11T18:40:10.621+00:00,false,warm,vip,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Leona30@gmail.com,1-760-844-7632 x7719,, +114,Phyllis,O'Connell,female,Enterprise,Impedit earum est dolore quo.,2023-11-30T02:02:44.479+00:00,2024-08-11T17:44:58.474+00:00,false,hot,musician,28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Phyllis_OConnell@gmail.com,(738) 896-6946,789.960.6600 x38018, +115,Annamarie,Bode,nonbinary,Transparent,Ipsum enim consectetur reiciendis voluptatem sit incidunt quidem.,2024-08-08T14:31:50.863+00:00,2024-08-11T16:52:02.43+00:00,true,warm,,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Annamarie_Bode@gmail.com,594-276-3481 x606,404-229-9862, +119,Arturo,Hills,male,Viral,Vel molestiae vel et ipsum architecto veritatis sed et at.,2024-07-20T07:39:35.526+00:00,2024-08-11T16:28:04.516+00:00,false,in-contract,influencer,33,1,,"Bergnaum, Wisoky and Prohaska",0,"Bergnaum, Wisoky and Prohaska",Jane Doe,,,Arturo40@hotmail.com,(428) 558-9800,(212) 691-2539 x065, +117,Jazlyn,Hand,nonbinary,World-class,Sequi sit vel non quia explicabo et molestias voluptatem omnis.,2024-07-11T06:29:05.375+00:00,2024-08-11T15:25:57.316+00:00,true,warm,,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Jazlyn78@gmail.com,,555-858-6210 x102, +118,Christine,Hackett,female,Wireless,Beatae ipsa dolor neque quaerat rem facere.,2024-08-08T02:44:57.358+00:00,2024-08-11T14:18:00.367+00:00,true,in-contract,"influencer, vip",25,1,,Casper - Pfannerstill,0,Casper - Pfannerstill,Jane Doe,,,Christine_Hackett54@yahoo.com,(664) 566-7605,892.612.5321, +120,Luella,Muller,nonbinary,Open-source,Asperiores et ullam amet aliquid ut atque et neque ipsa.,2024-04-29T07:49:21.911+00:00,2024-08-11T13:22:54.606+00:00,true,warm,,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Luella32@hotmail.com,1-784-350-9336 x38844,, +116,Johnny,Kerluke,male,Intuitive,Aut aut autem autem.,2024-02-05T22:09:31.879+00:00,2024-08-11T12:24:48.018+00:00,false,in-contract,"football-fan, manager",34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Johnny_Kerluke50@hotmail.com,,,646-858-2581 x82953 +121,Tremayne,Kreiger,nonbinary,Best-of-breed,Eos rerum et eos neque ipsum optio.,2024-07-22T21:09:07.076+00:00,2024-08-11T08:16:51.858+00:00,true,in-contract,musician,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Tremayne.Kreiger3@yahoo.com,,(971) 391-8476,750.905.8412 x484 +130,Hortense,Renner,nonbinary,Robust,A incidunt pariatur aut saepe nostrum.,2024-07-10T17:47:53.724+00:00,2024-08-11T07:18:28.783+00:00,true,cold,,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Hortense41@yahoo.com,,(604) 274-1096 x066,(440) 483-1080 +122,Leo,Satterfield,male,Robust,Vel praesentium ipsum.,2024-08-11T05:42:49.576+00:00,2024-08-11T05:42:49.576+00:00,false,warm,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Leo32@gmail.com,1-413-420-4376 x1999,, +124,Leta,Steuber,nonbinary,Viral,Tenetur aut perspiciatis odit odio labore numquam qui nesciunt.,2024-07-25T22:33:23.217+00:00,2024-08-11T04:57:07.732+00:00,false,in-contract,,17,1,,Renner - Keebler,0,Renner - Keebler,Jane Doe,,,Leta_Steuber35@gmail.com,,674.964.3870 x471,320.924.9038 x9504 +123,Clint,Gusikowski,male,Real-time,Et a dolorem molestias.,2024-06-06T14:08:13.903+00:00,2024-08-11T03:59:47.06+00:00,true,hot,holiday-card,3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Clint36@hotmail.com,,(799) 803-8888 x0859,(728) 503-1369 x9375 +125,Alexandria,Hayes,nonbinary,Bleeding-edge,Quia ut recusandae ipsum perspiciatis.,2024-07-11T18:06:56.201+00:00,2024-08-11T00:29:22.29+00:00,false,cold,"influencer, vip",19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Alexandria.Hayes11@hotmail.com,,,285-309-3125 x928 +126,Emil,Jerde,nonbinary,Cross-media,Fugiat non ducimus est suscipit non dolorum minus dolor.,2024-07-11T06:52:56.295+00:00,2024-08-10T22:20:34.381+00:00,true,hot,"football-fan, vip",11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Emil.Jerde17@yahoo.com,664.788.9832 x22067,1-594-614-1882 x3871, +127,Irvin,Rohan,male,User-centric,Rerum impedit maxime incidunt quibusdam rerum officia.,2024-07-14T18:10:35.555+00:00,2024-08-10T21:57:09.342+00:00,false,warm,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Irvin76@yahoo.com,,,233-440-4590 +129,Jean,Streich,male,Sexy,Sapiente voluptatibus expedita enim et reiciendis ut ad.,2023-03-14T16:51:52.327+00:00,2024-08-10T21:46:50.72+00:00,false,hot,,34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Jean.Streich@hotmail.com,1-845-383-5299,,200-210-9407 x84442 +128,Derrick,Mitchell,male,Extensible,Minus magni cumque nesciunt eos deleniti sit.,2024-08-03T01:17:25.748+00:00,2024-08-10T21:42:45.603+00:00,false,warm,"musician, vip",11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Derrick_Mitchell52@yahoo.com,821.683.5643 x876,352.674.5100 x9571, +131,Lynne,Runolfsson,female,World-class,Voluptatem et voluptas ipsam voluptas id.,2023-10-30T09:47:58.477+00:00,2024-08-10T20:47:48.633+00:00,false,warm,"football-fan, manager",23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Lynne76@gmail.com,1-207-281-2445 x90369,, +132,Tommy,Wuckert,male,Best-of-breed,Veritatis eius a rerum animi et cum deleniti.,2024-07-08T17:49:19.099+00:00,2024-08-10T20:47:43.918+00:00,false,warm,,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Tommy_Wuckert48@gmail.com,,249-843-9083 x38838,(382) 675-6368 x7985 +133,Ellis,Kuhic,male,Cutting-edge,Iure natus qui eligendi soluta nulla placeat ex sed.,2024-06-12T07:44:26.225+00:00,2024-08-10T18:33:32.197+00:00,false,cold,musician,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Ellis_Kuhic@yahoo.com,,(241) 643-8296 x56242,991.630.3732 +134,Catherine,Dickinson,nonbinary,Rich,Harum provident eius eos omnis aspernatur.,2024-07-03T09:18:41.904+00:00,2024-08-10T15:11:53.935+00:00,false,warm,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Catherine80@hotmail.com,257-211-1540 x555,,(288) 329-8286 x772 +135,Blaze,Quigley,nonbinary,Robust,Tenetur ullam quis optio natus voluptatum nihil.,2024-08-10T14:52:20.955+00:00,2024-08-10T14:52:20.955+00:00,false,cold,,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Blaze15@gmail.com,1-669-606-6354 x69890,, +136,Ivan,Moen,male,World-class,Qui dolorum hic magni laborum impedit dolores voluptatem sit.,2024-08-03T19:54:49.037+00:00,2024-08-10T13:56:27.411+00:00,true,hot,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Ivan_Moen@yahoo.com,753-863-7702 x661,,(230) 529-3392 x07439 +137,Greg,Bauch,male,Collaborative,Architecto officiis rerum nemo sed sunt aliquam eligendi suscipit dolor.,2024-08-04T01:50:11.62+00:00,2024-08-10T12:59:19.338+00:00,false,warm,,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Greg_Bauch84@gmail.com,,677-277-3945 x2864,1-984-354-3325 +140,Emile,Howe,nonbinary,Intuitive,Quos molestiae ducimus et voluptatem et aliquam.,2024-03-14T11:05:14.875+00:00,2024-08-10T12:56:17.334+00:00,false,cold,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Emile.Howe@gmail.com,,521-802-9424 x6812,580-813-1122 +138,Jordan,Herman,male,Rich,Qui consectetur odit et nihil.,2024-07-24T08:59:30.608+00:00,2024-08-10T12:31:45.009+00:00,false,hot,,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Jordan_Herman15@yahoo.com,,986.877.2486,986.687.3622 +139,Sheryl,Dare,female,Synergistic,Esse eveniet voluptatem odio sint autem cupiditate aut.,2024-01-10T00:46:23.606+00:00,2024-08-10T12:27:18.052+00:00,false,hot,,35,1,,"Boyer, Hackett and Durgan",0,"Boyer, Hackett and Durgan",Jane Doe,,,Sheryl31@gmail.com,,249.592.3302 x837,1-643-886-8189 +141,Randolph,Balistreri,male,Dot-com,Enim molestiae voluptatem vel.,2024-08-10T11:48:38.959+00:00,2024-08-10T11:48:38.959+00:00,true,hot,football-fan,25,1,,Casper - Pfannerstill,0,Casper - Pfannerstill,Jane Doe,,,Randolph.Balistreri96@yahoo.com,,1-206-258-1560, +143,Charlie,Jaskolski,male,Integrated,Tempore ea aut.,2024-07-23T07:38:57.802+00:00,2024-08-10T11:47:32.504+00:00,false,warm,musician,5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Charlie_Jaskolski59@hotmail.com,,1-838-694-0241 x25736,(766) 641-5984 x23445 +144,Rebecca,O'Kon,female,Scalable,Quia voluptas qui sit consequatur consequuntur.,2024-05-19T23:49:01.377+00:00,2024-08-10T10:56:40.021+00:00,false,hot,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Rebecca93@hotmail.com,975-967-6617 x23043,, +147,Glenda,O'Conner,female,Frictionless,Sed non et saepe consequatur debitis eveniet.,2024-06-30T11:48:27.701+00:00,2024-08-10T10:45:03.374+00:00,false,hot,musician,19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Glenda.OConner@hotmail.com,610.616.2223 x33071,,873.755.4064 x66982 +142,Marie,Mills,female,Impactful,Debitis et rem est.,2023-06-20T09:32:22.464+00:00,2024-08-10T10:18:23.14+00:00,false,hot,,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Marie24@yahoo.com,425.333.9448,1-384-940-8066 x964, +149,Terri,Lesch,female,B2B,Eos nobis ut optio sit.,2024-07-08T00:32:57.568+00:00,2024-08-10T08:39:31.445+00:00,true,warm,,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Terri.Lesch52@gmail.com,,597.521.6403 x33981,667.698.8589 +150,Marlon,Schmidt,male,24/365,Reiciendis aut atque.,2024-07-30T05:52:08.96+00:00,2024-08-10T07:03:38.662+00:00,false,cold,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Marlon_Schmidt@gmail.com,,1-293-951-2622,686-507-3104 x40923 +148,Brittany,Braun,female,Efficient,Nulla molestias ea distinctio veniam perferendis distinctio reiciendis dolor.,2024-05-24T23:39:11.021+00:00,2024-08-10T05:37:02.844+00:00,false,in-contract,,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Brittany_Braun@gmail.com,,,741-608-8628 x59750 +146,Walter,Abernathy,male,Extensible,Sapiente quia sit et molestiae deserunt magni.,2024-06-27T17:55:22.478+00:00,2024-08-10T05:11:15.107+00:00,true,warm,football-fan,36,1,,"Gaylord, Abbott and Walter",0,"Gaylord, Abbott and Walter",Jane Doe,,,Walter.Abernathy@gmail.com,,871-259-1535, +145,Lorena,Homenick,female,Next-generation,Voluptas voluptatem et ut modi repudiandae nisi totam aliquid eum.,2024-05-21T08:42:17.697+00:00,2024-08-10T04:03:00.846+00:00,false,warm,holiday-card,19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Lorena93@gmail.com,223.771.9579 x513,,(300) 716-4182 x9071 +151,Gloria,Cassin,female,Dot-com,Adipisci eos fugiat sapiente et facilis eligendi aperiam earum rerum.,2024-07-17T03:34:36.469+00:00,2024-08-10T03:23:28.285+00:00,false,warm,"football-fan, manager",21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Gloria82@yahoo.com,,(475) 440-7477,(589) 358-6610 x184 +152,Bethel,Connelly,nonbinary,B2C,Voluptatem officiis dolores perferendis.,2023-09-24T01:57:47.746+00:00,2024-08-10T00:55:54.236+00:00,false,cold,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Bethel.Connelly48@yahoo.com,522-811-0873 x61938,285.220.3039, +153,Donny,Douglas,nonbinary,Out-of-the-box,Laborum eos incidunt reiciendis voluptates qui accusantium animi qui.,2024-06-30T19:02:26.7+00:00,2024-08-09T23:45:54.9+00:00,false,warm,,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Donny16@gmail.com,,1-892-858-6356, +154,Gilbert,Tillman,nonbinary,24/365,Dicta tenetur aut itaque.,2024-01-22T05:55:53.057+00:00,2024-08-09T23:14:19.699+00:00,false,hot,"football-fan, holiday-card",16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Gilbert.Tillman10@hotmail.com,826.364.8363 x66501,, +155,Jane,Walker,female,Holistic,Consequuntur delectus sequi rerum porro.,2024-01-26T18:30:12.633+00:00,2024-08-09T22:52:41.515+00:00,false,in-contract,,15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Jane.Walker96@gmail.com,,348.592.8329 x7926, +156,Marlon,Schmidt,male,Visionary,Ut voluptas qui et repellendus sit accusantium ut.,2024-07-14T16:32:34.779+00:00,2024-08-09T20:12:26.038+00:00,true,cold,vip,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Marlon99@hotmail.com,938.616.4150,,1-523-539-0272 x54613 +158,Quinn,Keebler,nonbinary,Sticky,Dolorum excepturi odio labore omnis quia rerum ad eius.,2024-06-12T15:45:11.728+00:00,2024-08-09T19:19:13.288+00:00,false,in-contract,"influencer, manager",24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Quinn47@hotmail.com,1-898-979-8327 x48795,,(671) 346-8783 +157,Dominick,Carroll,male,24/7,Ipsam ad rem et deserunt perferendis commodi reprehenderit.,2024-05-20T21:19:28.195+00:00,2024-08-09T18:17:45.408+00:00,false,in-contract,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Dominick63@gmail.com,921.360.0146 x838,507-350-7869, +160,Alex,Nienow,male,Bleeding-edge,Doloribus ullam quas.,2023-12-30T13:07:49.462+00:00,2024-08-09T17:34:58.326+00:00,false,in-contract,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Alex_Nienow79@yahoo.com,,,472-279-5303 +159,Leonard,Collier,male,Efficient,Consequatur qui saepe.,2024-07-22T07:40:39.626+00:00,2024-08-09T17:21:45.019+00:00,false,in-contract,"holiday-card, musician",5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Leonard.Collier@gmail.com,,655-713-6159,1-411-270-3153 x1250 +162,Alan,Parker,male,Next-generation,Libero in ut exercitationem aut aspernatur ut vel necessitatibus quam.,2024-05-19T08:37:55.512+00:00,2024-08-09T17:15:30.33+00:00,false,in-contract,"football-fan, manager",38,1,,Langosh and Sons,0,Langosh and Sons,Jane Doe,,,Alan_Parker90@yahoo.com,,(714) 577-6290 x75296,226-961-7997 x00392 +161,Amy,Kassulke,female,Real-time,Delectus nemo quo corrupti eveniet consequatur voluptatem omnis.,2024-07-24T02:04:39.693+00:00,2024-08-09T16:32:19.277+00:00,false,in-contract,,3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Amy19@hotmail.com,618-483-1021 x520,,209-798-7585 x867 +163,Ludwig,Little,nonbinary,Virtual,Sunt dolorum numquam sed voluptatem ut.,2024-04-12T04:07:22.459+00:00,2024-08-09T15:29:07.904+00:00,false,in-contract,,15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Ludwig98@yahoo.com,,,793.975.5684 +164,Loren,Ortiz,male,End-to-end,Et quam sed praesentium velit repellat.,2024-06-28T16:03:27.491+00:00,2024-08-09T14:35:14.327+00:00,false,warm,,5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Loren82@hotmail.com,,1-298-308-2098 x04960,652-812-5192 +165,Freda,Treutel,female,Customized,Similique nemo dolorem aut.,2024-08-01T02:25:15.928+00:00,2024-08-09T09:05:02.52+00:00,false,in-contract,,19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Freda.Treutel51@hotmail.com,646.658.1846,, +166,Agnes,Rogahn,female,Virtual,Error iure rerum ex laudantium.,2024-08-03T04:54:36.771+00:00,2024-08-09T08:36:30.636+00:00,false,cold,musician,5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Agnes_Rogahn33@gmail.com,,446-854-9912 x9981,(835) 288-4461 x727 +167,Jermain,Hilll,nonbinary,24/365,Voluptas omnis dolores magnam aliquid quia explicabo aspernatur.,2023-11-23T21:27:30.894+00:00,2024-08-09T08:13:25.085+00:00,false,cold,,30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Jermain.Hilll@yahoo.com,1-756-996-8383 x4659,,831.536.1589 +169,Kristen,Bayer,female,Bricks-and-clicks,Possimus officia veritatis recusandae nam.,2024-05-28T21:32:21.189+00:00,2024-08-09T08:03:50.807+00:00,false,warm,vip,28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Kristen_Bayer@gmail.com,1-257-360-7498,(503) 930-2244, +168,Kali,Greenfelder,nonbinary,Granular,Neque est tempora odio iusto.,2024-03-25T06:06:30.257+00:00,2024-08-09T06:32:22.481+00:00,false,in-contract,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Kali11@hotmail.com,,,268.534.6955 +170,Emily,Schuster,female,Innovative,Omnis beatae error et facere.,2024-07-09T17:23:43.886+00:00,2024-08-09T06:15:06.936+00:00,true,in-contract,,24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Emily.Schuster@yahoo.com,329-857-6963 x27660,, +172,Theron,Abbott,nonbinary,Killer,Alias explicabo laboriosam eos suscipit et quia numquam et.,2024-03-28T21:40:20.236+00:00,2024-08-09T05:23:32.198+00:00,true,in-contract,,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Theron_Abbott77@yahoo.com,(728) 728-1637 x25049,, +180,Marlon,Schmidt,male,Extensible,Aliquid necessitatibus eum numquam distinctio sint odit soluta dicta.,2024-07-24T13:54:11.876+00:00,2024-08-09T02:39:33.353+00:00,false,hot,"holiday-card, vip",2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Marlon1@gmail.com,(512) 696-3354 x09189,(458) 494-9200 x76718, +174,Claire,Kuhic,female,Dynamic,Voluptatem assumenda eius.,2024-02-26T17:27:48.134+00:00,2024-08-09T01:57:07.077+00:00,false,in-contract,,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Claire_Kuhic@hotmail.com,209.969.0120,, +171,Heidi,Denesik,female,Out-of-the-box,Debitis saepe magni quaerat voluptas ut.,2024-06-21T06:20:48.464+00:00,2024-08-09T00:48:26.508+00:00,false,in-contract,"manager, vip",12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Heidi_Denesik84@gmail.com,(280) 713-6876 x420,1-439-268-6093 x178, +175,Margaret,Veum,female,Frictionless,Et qui dolor nemo autem.,2024-07-17T00:04:18.691+00:00,2024-08-08T21:39:19.386+00:00,false,in-contract,influencer,3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Margaret_Veum6@yahoo.com,,,398.598.9527 x92009 +173,Esther,Kautzer,female,Value-added,Expedita aut ad dicta vero sint voluptatem sit.,2024-07-18T09:28:54.936+00:00,2024-08-08T20:47:14.158+00:00,true,warm,,10,1,,"Barton, Johnson and Wiegand",0,"Barton, Johnson and Wiegand",Jane Doe,,,Esther.Kautzer32@yahoo.com,1-544-239-6351,,733.506.2680 x953 +179,Guadalupe,Leuschke,female,Interactive,Facilis quo in doloremque sunt et reiciendis.,2024-03-11T14:25:01.927+00:00,2024-08-08T19:41:59.978+00:00,true,hot,football-fan,39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Guadalupe_Leuschke@yahoo.com,235.394.1971 x63732,(639) 204-3976, +177,Kaia,Romaguera,nonbinary,Transparent,Nihil a non qui in est ab impedit nulla eum.,2024-06-28T08:52:42.46+00:00,2024-08-08T19:17:49.453+00:00,true,warm,manager,34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Kaia0@yahoo.com,634-283-6823,, +178,Johnathan,VonRueden,nonbinary,B2C,Nihil eos praesentium ratione sunt odit.,2024-07-07T16:08:41.155+00:00,2024-08-08T18:01:55.177+00:00,false,in-contract,musician,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Johnathan_VonRueden24@hotmail.com,(353) 568-3459,,1-922-966-2704 +176,Brian,Langosh,male,B2C,Similique iste nesciunt minus ratione ad.,2023-07-08T18:27:13.293+00:00,2024-08-08T17:58:19.393+00:00,false,in-contract,,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Brian_Langosh@gmail.com,,689-742-0810 x562, +184,Marc,Mayer,male,Wireless,Aut ut non atque deleniti nobis facere quia at a.,2024-05-24T02:37:06.029+00:00,2024-08-08T17:25:19.184+00:00,false,warm,"football-fan, holiday-card",4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Marc_Mayer33@gmail.com,,453.973.9923 x5680,256-911-0960 +182,Jody,Corkery,female,Viral,Nihil vel quis qui esse.,2023-03-06T22:28:02.854+00:00,2024-08-08T15:46:28.908+00:00,false,hot,,28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Jody_Corkery@hotmail.com,,,(406) 776-4890 +185,Rita,Dicki,female,Turn-key,Quos consequatur et autem odit qui quod.,2024-07-12T05:35:23.817+00:00,2024-08-08T13:33:23.424+00:00,true,in-contract,influencer,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Rita_Dicki24@gmail.com,(900) 776-4755 x884,,1-597-927-7484 +181,Merle,Anderson,male,24/365,Nihil natus nisi et voluptas sit.,2024-06-28T04:00:27.628+00:00,2024-08-08T09:48:44.001+00:00,true,cold,,40,1,,Sauer - Farrell,0,Sauer - Farrell,Jane Doe,,,Merle.Anderson@gmail.com,,683.709.1658 x38641,964-433-8615 x69183 +183,Lindsay,Schuster,female,Real-time,Pariatur et corporis voluptatem sed est.,2024-06-20T11:34:06.339+00:00,2024-08-08T06:04:46.789+00:00,false,cold,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Lindsay56@yahoo.com,1-790-221-7463 x5158,, +188,Katlynn,Kertzmann,nonbinary,Viral,Architecto laborum perferendis est labore corrupti possimus consequuntur enim nisi.,2024-02-11T13:50:40.697+00:00,2024-08-08T05:31:35.893+00:00,false,in-contract,,24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Katlynn38@yahoo.com,(856) 681-5384 x50514,716.689.1450 x440, +186,Jena,Funk,nonbinary,Wireless,Dolorum hic modi.,2024-08-03T08:09:38.294+00:00,2024-08-08T04:05:46.609+00:00,false,warm,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Jena81@yahoo.com,1-915-258-1628 x405,(655) 961-5994 x7656, +190,Shana,Hartmann,nonbinary,Wireless,Ipsa ex at ad beatae voluptatem dignissimos.,2024-06-23T10:12:50.587+00:00,2024-08-08T01:10:31.208+00:00,false,in-contract,,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Shana90@hotmail.com,,(943) 418-1171,(297) 622-3960 x4455 +187,Maxime,Pagac,nonbinary,Extensible,Necessitatibus iste quis qui.,2024-03-07T02:28:12.028+00:00,2024-08-07T23:14:50.262+00:00,false,warm,influencer,39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Maxime.Pagac7@yahoo.com,(407) 481-5078 x038,,286-365-7093 +189,Wilma,Kautzer,nonbinary,Bleeding-edge,Repellat ut quos cumque dolorum fugit.,2024-07-23T15:31:10.336+00:00,2024-08-07T23:08:55.69+00:00,false,hot,manager,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Wilma.Kautzer71@hotmail.com,,599.940.1481 x9094,1-457-416-7500 x082 +191,Thelma,Hettinger,female,Mission-critical,Qui dolorem esse et autem repudiandae deleniti voluptate.,2023-12-30T02:42:24.065+00:00,2024-08-07T18:57:04.214+00:00,true,warm,,41,1,,Tillman - Senger,0,Tillman - Senger,Jane Doe,,,Thelma.Hettinger@hotmail.com,(833) 987-1526,,511-654-0539 x97246 +192,Bertrand,Runolfsdottir,nonbinary,Cross-media,Qui corporis consequatur sed.,2024-03-15T02:43:49.099+00:00,2024-08-07T18:03:53.577+00:00,true,warm,,27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Bertrand35@yahoo.com,,1-485-944-4200,(277) 305-4639 +193,Hilario,Orn,nonbinary,Strategic,Ullam voluptas labore iure veniam sed magnam quos.,2024-07-28T18:07:23.608+00:00,2024-08-07T15:46:25.194+00:00,true,hot,"football-fan, musician",2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Hilario96@gmail.com,(374) 974-6229 x0362,,520.885.0768 +194,Adonis,Thompson,nonbinary,Real-time,Quos in architecto minus et eos dolores sit unde.,2024-04-19T19:22:10.187+00:00,2024-08-07T15:43:30.966+00:00,false,cold,football-fan,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Adonis_Thompson5@yahoo.com,,(578) 617-6144,336.403.8353 x14494 +195,Oscar,Lakin,nonbinary,Transparent,Molestiae error totam et aut.,2024-07-01T08:36:36.094+00:00,2024-08-07T15:20:31.457+00:00,false,in-contract,vip,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Oscar.Lakin@yahoo.com,1-824-323-8519 x3428,474-928-7073, +196,June,Schuppe,female,Holistic,Praesentium nam eos repellat ad.,2024-04-26T10:43:44.736+00:00,2024-08-07T10:58:17.196+00:00,false,cold,manager,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,June.Schuppe34@gmail.com,1-845-609-5625,,1-778-593-2344 +197,Audrey,Funk,female,Rich,Sint et eum consequatur ab eos incidunt facilis sit modi.,2024-07-03T21:00:38.331+00:00,2024-08-07T09:47:41.29+00:00,false,in-contract,,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Audrey_Funk25@gmail.com,1-929-376-5393 x95700,956.435.2485 x9833, +198,Gretchen,Swift,female,Back-end,In quae quam.,2024-06-28T01:22:25.305+00:00,2024-08-07T07:14:02.194+00:00,true,in-contract,,42,1,,Daugherty - Beier,0,Daugherty - Beier,Jane Doe,,,Gretchen.Swift@gmail.com,,391.483.4427 x3327,1-748-686-1419 +200,Denise,Bahringer,female,Wireless,Hic et nesciunt dolore est excepturi.,2024-07-31T01:28:47.44+00:00,2024-08-07T04:48:36.497+00:00,true,cold,influencer,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Denise_Bahringer@hotmail.com,,792-436-7263,(253) 820-6206 x746 +199,Natalie,Abshire,female,User-centric,Aut enim consectetur tenetur unde nisi sed ut nihil cum.,2024-07-07T04:56:56.301+00:00,2024-08-07T04:32:43.077+00:00,true,warm,,27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Natalie1@hotmail.com,,,1-338-688-8751 x08884 +201,Katharina,Mraz,nonbinary,Open-source,Quam excepturi aut iure repudiandae sit libero alias libero recusandae.,2024-02-22T16:46:11.351+00:00,2024-08-07T03:07:29.049+00:00,true,warm,,3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Katharina48@yahoo.com,902-449-3889 x47039,,284.663.3794 x907 +202,Dillan,Purdy,nonbinary,Intuitive,Sint quae rem dolore sit eos.,2024-06-29T06:20:58.772+00:00,2024-08-07T00:59:14.698+00:00,false,warm,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Dillan_Purdy@hotmail.com,,,(336) 612-2519 +203,Sylvia,Daniel,nonbinary,Dynamic,Aut voluptatem explicabo voluptatibus sit eius et.,2024-06-09T09:07:00.161+00:00,2024-08-07T00:43:31.264+00:00,false,warm,football-fan,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Sylvia.Daniel62@hotmail.com,938-627-0632 x0356,,(482) 427-7729 x4363 +204,Kelly,Steuber,male,Efficient,Dolore iure commodi.,2024-07-19T04:40:12.793+00:00,2024-08-06T23:52:14.625+00:00,false,in-contract,,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Kelly5@hotmail.com,,1-340-394-9831 x99133, +205,Javier,Ruecker,male,Killer,Maiores reprehenderit harum sequi.,2024-06-26T03:07:47.019+00:00,2024-08-06T23:01:56.573+00:00,false,hot,vip,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Javier_Ruecker89@gmail.com,(614) 519-1246 x0203,, +207,Eloise,Bayer,female,Mission-critical,Autem vero ipsum id vel autem dolorum facere consequatur.,2023-11-12T17:54:43.832+00:00,2024-08-06T18:06:59.025+00:00,false,hot,manager,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Eloise_Bayer43@yahoo.com,(923) 916-9955,,(399) 224-0609 x26055 +206,Tabitha,Keebler,female,Web-enabled,Voluptas et ipsam.,2024-07-03T22:36:48.156+00:00,2024-08-06T16:42:39.664+00:00,false,cold,holiday-card,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Tabitha.Keebler35@yahoo.com,260.476.0426,,1-308-683-5196 x717 +208,Anne,McGlynn,female,Bleeding-edge,Qui omnis alias quo commodi.,2024-05-04T11:07:00.874+00:00,2024-08-06T14:25:43.624+00:00,false,hot,,30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Anne_McGlynn52@gmail.com,966-720-2440,, +210,Isabel,Collier,female,Dynamic,Officiis et reiciendis voluptas et temporibus.,2022-09-12T23:18:47.663+00:00,2024-08-06T09:42:00.501+00:00,true,warm,manager,9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Isabel86@gmail.com,,228.821.5783, +209,Nora,Harber,female,Integrated,Sit dignissimos omnis necessitatibus necessitatibus itaque voluptatem minima in vitae.,2024-02-24T18:11:37.202+00:00,2024-08-06T08:21:05.109+00:00,true,in-contract,holiday-card,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Nora_Harber46@hotmail.com,,,1-322-818-4433 x533 +212,Percy,Leannon,male,Customized,Non voluptatem quia.,2023-07-14T10:21:01.363+00:00,2024-08-06T07:16:36.927+00:00,false,warm,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Percy78@hotmail.com,233-795-1225,,625-314-6890 x23831 +213,Robin,Brakus,female,Magnetic,Aut voluptatem voluptates.,2024-06-05T01:48:02.597+00:00,2024-08-06T05:43:45.054+00:00,false,in-contract,"holiday-card, vip",8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Robin.Brakus79@gmail.com,332-521-3815,330.767.1966, +211,Dana,Rau,female,Collaborative,Voluptas quam autem blanditiis illum sit dignissimos doloribus modi porro.,2023-07-13T03:00:35.383+00:00,2024-08-06T05:04:40.112+00:00,true,warm,,28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Dana.Rau89@gmail.com,,1-775-721-5457,704-662-4856 x3157 +215,Lula,Abshire,female,Best-of-breed,Voluptas ut quaerat velit qui quod.,2024-07-10T02:22:25.072+00:00,2024-08-06T04:28:36.712+00:00,true,hot,football-fan,15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Lula.Abshire@hotmail.com,522.836.2640 x1334,1-620-518-8899 x797, +214,Katie,Pagac,female,Dot-com,Repellat sint dolor quia.,2024-07-10T23:40:01.83+00:00,2024-08-06T02:08:18.247+00:00,false,hot,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Katie4@yahoo.com,686.593.9485,, +217,Rolando,Doyle,nonbinary,Seamless,Libero aut asperiores quidem quis ab et dolorem tenetur incidunt.,2024-07-11T05:07:02.825+00:00,2024-08-06T02:00:39.707+00:00,true,warm,holiday-card,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Rolando83@yahoo.com,717.553.0467,, +216,Max,Steuber,male,Viral,Itaque deserunt dignissimos.,2024-06-10T18:13:11.277+00:00,2024-08-05T17:52:58.772+00:00,true,cold,manager,5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Max89@gmail.com,356-958-3204 x4001,401-564-7330 x759, +219,Jerrell,Hansen,nonbinary,Scalable,Illo dignissimos ipsam sed sed eaque qui magnam quasi.,2024-08-05T17:20:50.148+00:00,2024-08-05T17:20:50.148+00:00,true,in-contract,,1,1,,Gottlieb and Sons,0,Gottlieb and Sons,Jane Doe,,,Jerrell95@hotmail.com,832-785-0517 x237,,723.786.5352 x258 +220,Gonzalo,Connelly,nonbinary,B2B,Est nihil voluptate et totam suscipit eos.,2024-06-14T10:08:32.819+00:00,2024-08-05T16:07:16.141+00:00,false,hot,manager,27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Gonzalo56@yahoo.com,(810) 365-6174,, +218,Thomas,King,male,Best-of-breed,Pariatur eos fuga optio nostrum repellendus aut qui.,2024-07-26T07:43:26.183+00:00,2024-08-05T14:42:02.209+00:00,false,in-contract,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Thomas.King@hotmail.com,995.243.1653,,(885) 708-5007 x7659 +222,Eugene,Robel,nonbinary,Enterprise,Repellat natus consequatur consectetur a.,2024-03-13T16:23:53.209+00:00,2024-08-05T12:22:03.481+00:00,false,warm,"holiday-card, musician",20,1,,Stracke Inc,0,Stracke Inc,Jane Doe,,,Eugene.Robel@yahoo.com,742-219-3120,, +221,Federico,Turner,nonbinary,Rich,Amet labore reprehenderit optio atque ut vel.,2024-08-05T09:30:08.976+00:00,2024-08-05T09:30:08.976+00:00,false,cold,,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Federico15@gmail.com,837.488.5900,210-255-3599, +223,Luna,Little,nonbinary,Sexy,In incidunt laudantium fugit nam nihil quia odit.,2024-05-22T02:07:39.996+00:00,2024-08-05T06:10:43.274+00:00,false,in-contract,"holiday-card, influencer",15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Luna51@hotmail.com,,805-356-4992 x959,206.888.6968 +228,Garland,Koss,nonbinary,Enterprise,Quae magni quam quidem magni enim aut omnis tempora adipisci.,2024-02-01T18:14:29.86+00:00,2024-08-05T06:04:28.3+00:00,false,hot,"football-fan, manager",30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Garland_Koss@hotmail.com,936-988-3776,,408.713.2138 x155 +224,Joanne,Smitham,female,Interactive,Cum consequatur amet animi id.,2024-06-25T00:05:25.979+00:00,2024-08-05T02:29:29.773+00:00,false,warm,,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Joanne_Smitham@hotmail.com,,(604) 415-6823 x78459,385.304.3037 x78330 +225,Armani,Haley,nonbinary,Revolutionary,Sit voluptatem aut est.,2024-03-07T01:51:50.51+00:00,2024-08-05T02:21:59.2+00:00,false,cold,,27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Armani_Haley@yahoo.com,476.252.1768,658.251.9550, +227,Raquel,Nitzsche,female,Visionary,Necessitatibus quia ea ea dicta eaque sed amet atque repellendus.,2023-09-24T07:12:28.234+00:00,2024-08-05T02:09:13.6+00:00,false,hot,,32,1,,Davis - Hilpert,0,Davis - Hilpert,Jane Doe,,,Raquel71@hotmail.com,,,(205) 671-1467 x392 +230,Barry,Schmitt,nonbinary,Customized,Sint repudiandae facere aliquam pariatur dignissimos quis ipsa excepturi ut.,2024-07-16T23:42:35.181+00:00,2024-08-04T22:52:19.718+00:00,false,warm,manager,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Barry29@hotmail.com,1-707-738-2876 x10765,,1-443-401-6341 +226,Cecil,Jones,male,Best-of-breed,Omnis dolore culpa sit.,2024-06-24T14:40:51.082+00:00,2024-08-04T22:41:00.695+00:00,true,in-contract,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Cecil41@yahoo.com,,,(211) 735-6938 +229,Seth,Little,male,Web-enabled,Sapiente et sed expedita nemo voluptas soluta quas placeat quod.,2024-05-22T02:52:42.178+00:00,2024-08-04T20:42:54.355+00:00,true,warm,football-fan,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Seth_Little32@hotmail.com,851.811.5179,527.915.1137 x3852, +231,Luna,Bernier,nonbinary,Plug-and-play,In quisquam voluptatem doloremque dignissimos.,2024-06-02T00:23:59.251+00:00,2024-08-04T20:31:54.746+00:00,false,in-contract,,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Luna.Bernier27@yahoo.com,449.531.9117,589-491-3453 x5971, +233,Glenda,Connelly,female,Open-source,Eligendi quibusdam ea omnis repudiandae reiciendis est et.,2024-06-02T10:06:39.546+00:00,2024-08-04T20:15:27.48+00:00,false,in-contract,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Glenda50@hotmail.com,,371-215-2315 x63740,1-899-454-4022 x9349 +232,Garett,Dare,nonbinary,Dot-com,Quo illo iure aut veniam et sit sit reiciendis.,2024-04-21T13:17:18.7+00:00,2024-08-04T10:54:42.206+00:00,false,warm,,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Garett_Dare9@yahoo.com,(832) 654-5743 x75929,,(575) 952-5029 x5592 +234,Lucia,Keebler,female,Cross-platform,Quis reprehenderit eos qui consequatur reprehenderit vero et.,2023-04-21T19:19:45.32+00:00,2024-08-04T10:27:43.124+00:00,false,warm,,34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Lucia_Keebler95@gmail.com,,504-210-9535,585-456-6344 x310 +235,Danny,Kerluke,nonbinary,Ubiquitous,Aspernatur sint voluptatem facilis.,2023-12-04T10:52:41.365+00:00,2024-08-04T08:20:07.801+00:00,true,in-contract,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Danny35@gmail.com,1-405-241-2715,823.591.2882, +236,Daryl,Collins,male,Global,Eum accusantium veritatis dolorum praesentium amet in et ut.,2024-06-28T01:23:50.388+00:00,2024-08-04T08:11:04.408+00:00,false,hot,musician,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Daryl_Collins@gmail.com,,,(742) 758-6826 x0520 +237,Viola,Yost,nonbinary,Back-end,Ipsum possimus est quo quam at ut aut exercitationem eaque.,2024-07-13T03:08:09.932+00:00,2024-08-04T07:37:14.375+00:00,true,cold,"holiday-card, vip",27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Viola39@hotmail.com,,1-763-952-1821, +239,Zachary,Ortiz,male,Customized,Quas rerum voluptates minima aliquid.,2024-07-12T06:18:14.361+00:00,2024-08-04T06:47:01.943+00:00,false,hot,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Zachary98@gmail.com,(521) 811-3582 x515,935-710-9438 x36177, +238,Colin,Morar,male,Efficient,Impedit atque repudiandae occaecati sunt iste deleniti.,2024-07-01T20:37:34.537+00:00,2024-08-04T06:17:19.353+00:00,true,warm,"manager, musician",5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Colin14@yahoo.com,,1-557-926-9438 x4595,1-892-703-5106 +240,Nicolas,Turner,male,Sticky,Neque fugiat voluptas cum.,2023-09-14T19:43:23.551+00:00,2024-08-04T05:07:57.678+00:00,false,hot,,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Nicolas_Turner@hotmail.com,1-285-253-6681 x46270,(334) 562-7309 x682, +244,Kristy,Okuneva,female,Virtual,Ea illum necessitatibus dolores quia natus ea et.,2024-05-17T02:25:12.016+00:00,2024-08-04T03:26:36.29+00:00,false,in-contract,vip,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Kristy14@hotmail.com,226-413-0774 x790,,925.446.3508 x55432 +243,Ruben,Pollich,male,Synergistic,A odit numquam quia sunt eligendi omnis saepe.,2024-07-13T09:18:10.449+00:00,2024-08-03T23:58:24.642+00:00,false,in-contract,musician,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Ruben.Pollich87@yahoo.com,(605) 846-6679,,(588) 822-3889 x4686 +241,Bette,Goyette,nonbinary,Open-source,Nihil dolorem assumenda libero qui cupiditate eum.,2024-07-30T12:46:55.049+00:00,2024-08-03T23:05:21.697+00:00,false,hot,football-fan,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Bette_Goyette15@gmail.com,,878-325-8640 x0120,884-612-4778 +242,Erika,Abernathy,nonbinary,Visionary,Qui quam et aut officiis.,2024-01-01T16:25:09.685+00:00,2024-08-03T22:59:37.913+00:00,false,hot,,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Erika59@gmail.com,,513.507.4406 x67742,(835) 858-0516 x426 +248,Marcella,Hermann,female,Impactful,Voluptates facere quo ullam quos omnis.,2024-06-14T05:45:45.472+00:00,2024-08-03T22:37:58.779+00:00,false,cold,,15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Marcella_Hermann51@gmail.com,,312-297-9485 x095,1-250-853-7394 x42389 +245,Gust,Kihn,nonbinary,Customized,Dolor in rerum qui et et unde.,2024-07-01T15:58:25.038+00:00,2024-08-03T21:51:37.887+00:00,true,hot,"holiday-card, musician",8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Gust.Kihn70@gmail.com,,1-827-797-1428 x012, +247,Brent,Gottlieb,male,Frictionless,Aut eius labore libero totam velit ratione sint autem cumque.,2023-09-16T18:06:31.599+00:00,2024-08-03T19:46:33.421+00:00,false,warm,musician,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Brent.Gottlieb@gmail.com,,355-659-6985,805-789-4801 x797 +246,Matthew,Hackett,male,Leading-edge,Et aliquid molestiae et voluptatem amet nemo.,2024-07-24T15:59:49.662+00:00,2024-08-03T17:25:17.176+00:00,true,warm,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Matthew57@gmail.com,971-702-4558 x2292,, +249,Gabriel,Carroll,nonbinary,Cross-media,Et ducimus ad sit consectetur voluptatibus porro quis ipsam iusto.,2023-11-29T23:07:18.136+00:00,2024-08-03T15:13:27.827+00:00,false,cold,,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Gabriel72@gmail.com,1-390-532-4825 x328,,436-391-6671 x42635 +250,Nora,Gerhold,female,Clicks-and-mortar,Voluptatem praesentium vel occaecati voluptatem deserunt et ut.,2023-04-26T10:34:43.741+00:00,2024-08-03T12:44:01.193+00:00,false,cold,influencer,35,1,,"Boyer, Hackett and Durgan",0,"Boyer, Hackett and Durgan",Jane Doe,,,Nora_Gerhold@yahoo.com,,,837.489.0019 x888 +251,Kari,Wintheiser,female,Killer,Aut sint repellendus error aut vel.,2024-06-07T07:00:18.798+00:00,2024-08-03T12:35:51.029+00:00,true,cold,"musician, vip",8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Kari.Wintheiser@yahoo.com,(800) 836-3507 x590,,734-823-0942 +252,Myra,Lynch,female,One-to-one,Doloremque enim quod et veniam veniam.,2024-03-15T10:58:12.906+00:00,2024-08-03T05:57:37.138+00:00,false,hot,"manager, vip",4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Myra_Lynch@gmail.com,,(530) 585-8045 x959,541-235-6876 +253,Morris,Klocko,male,Out-of-the-box,Repudiandae vero minus rem repellat ab iure cum.,2024-06-25T02:40:24.85+00:00,2024-08-03T01:12:34.516+00:00,true,hot,football-fan,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Morris94@hotmail.com,1-379-649-4214 x47303,343.281.1227 x1264, +254,Jaron,Braun,nonbinary,Integrated,Assumenda vel voluptas qui possimus magni.,2024-06-24T16:44:43.887+00:00,2024-08-02T22:57:35.522+00:00,false,hot,"football-fan, vip",11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Jaron60@hotmail.com,,,(558) 250-0773 +255,Ramona,Shanahan,female,24/7,Excepturi necessitatibus expedita enim natus aliquam qui.,2024-06-13T08:11:18.457+00:00,2024-08-02T18:54:04.448+00:00,false,warm,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Ramona_Shanahan9@yahoo.com,201.773.4881 x074,,923-775-4259 +260,Casey,Rau,female,Bricks-and-clicks,Debitis modi eos suscipit error laboriosam iste perferendis illo.,2024-05-27T17:55:55.027+00:00,2024-08-02T16:16:31.321+00:00,false,in-contract,"influencer, manager",8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Casey_Rau63@gmail.com,,394.471.9735,780.962.7280 x300 +258,Melinda,Collins,female,Holistic,Reiciendis sit nam voluptas dolores doloribus est distinctio omnis.,2024-07-10T10:46:16.669+00:00,2024-08-02T12:22:42.979+00:00,true,cold,vip,15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Melinda.Collins@hotmail.com,,756-696-1392 x0324, +257,Ervin,Kihn,male,Compelling,Distinctio qui odio commodi.,2023-11-20T00:09:55.013+00:00,2024-08-02T10:07:33.917+00:00,false,cold,football-fan,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Ervin_Kihn62@hotmail.com,888-370-3965,, +256,Jeanette,Stehr,female,Leading-edge,Dolores perspiciatis repudiandae mollitia dolor.,2024-07-06T03:34:32.611+00:00,2024-08-02T08:41:09.543+00:00,false,in-contract,musician,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Jeanette51@hotmail.com,1-528-821-0129,813.658.3316 x7856, +259,Hermann,Hodkiewicz,nonbinary,Collaborative,Rerum voluptatem unde quo impedit expedita quidem.,2023-10-05T16:48:06.449+00:00,2024-08-02T05:57:21.741+00:00,true,warm,"influencer, vip",13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Hermann82@gmail.com,,914.226.2734 x488, +261,Frances,Kihn,female,Revolutionary,Voluptatem fugit magni iste inventore ea.,2023-05-30T16:16:42.61+00:00,2024-08-01T23:47:33.995+00:00,false,in-contract,"musician, vip",6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Frances.Kihn@gmail.com,(401) 463-0362,(682) 866-9314 x64851, +262,Donnie,Kertzmann,male,Efficient,Ipsa corporis placeat.,2024-05-08T10:16:40.198+00:00,2024-08-01T18:44:49.628+00:00,false,hot,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Donnie47@hotmail.com,,726-336-4812,909.880.5596 x32387 +263,Dale,Wyman,male,Frictionless,Culpa laudantium temporibus labore modi.,2024-04-11T05:39:34.02+00:00,2024-08-01T14:06:24.828+00:00,true,warm,,15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Dale_Wyman@yahoo.com,653.325.1230 x14380,, +264,Carroll,Bogan,male,Magnetic,Voluptatem quasi non in nihil consequatur maxime nemo aliquam.,2024-07-08T19:09:45.65+00:00,2024-08-01T02:48:38.686+00:00,true,hot,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Carroll12@gmail.com,1-624-980-5372,,361.202.0042 x968 +266,Doreen,Harber,female,Next-generation,Consectetur excepturi ut.,2024-05-29T18:39:23.411+00:00,2024-08-01T02:48:11.977+00:00,false,in-contract,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Doreen.Harber@hotmail.com,(820) 508-7721,,639-681-0442 +265,Clementine,O'Connell,nonbinary,Distributed,Dolores consequatur architecto vitae error dolor eligendi consectetur qui.,2024-06-22T17:38:59.483+00:00,2024-08-01T01:09:17.364+00:00,false,warm,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Clementine.OConnell53@yahoo.com,1-649-941-0367,,1-661-785-5349 +267,Sandra,Marvin,female,Magnetic,Dolor et nihil ut cum et vitae laborum.,2024-05-11T19:53:54.151+00:00,2024-08-01T01:03:13.356+00:00,true,in-contract,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Sandra61@gmail.com,,,1-915-657-0895 x1241 +269,Kurt,Maggio,nonbinary,Revolutionary,Exercitationem delectus deleniti provident ullam.,2023-12-09T17:23:55.472+00:00,2024-08-01T00:44:06.459+00:00,false,in-contract,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Kurt4@yahoo.com,(531) 786-6604 x607,(475) 281-9601, +268,Mona,Bradtke,female,Sticky,Est velit excepturi eligendi doloribus sint.,2024-07-31T18:35:45.305+00:00,2024-07-31T18:35:45.305+00:00,false,warm,,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Mona_Bradtke@yahoo.com,1-960-890-6499,,826-271-2786 x4248 +270,Phillip,Leffler,male,Revolutionary,Consequatur dolorum numquam.,2024-07-03T21:51:35.273+00:00,2024-07-31T17:06:54.687+00:00,false,warm,musician,27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Phillip.Leffler@hotmail.com,,920-272-4571 x4724,702-673-9151 x408 +271,Renee,Blanda,nonbinary,Revolutionary,Nulla esse fuga in et.,2024-06-15T13:14:48.21+00:00,2024-07-31T15:41:15.584+00:00,true,warm,,5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Renee52@yahoo.com,,,1-217-380-9475 x908 +273,Deron,Koss,nonbinary,Cross-platform,Non voluptatem aut est voluptates vel laudantium iusto rerum.,2024-04-15T19:17:27.622+00:00,2024-07-31T15:36:05.878+00:00,true,cold,"influencer, vip",27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Deron.Koss2@gmail.com,240-480-4588 x163,,912.463.1089 +275,Cory,Wuckert,male,Integrated,Enim quod et molestias.,2024-05-26T19:49:18.053+00:00,2024-07-31T13:34:34.235+00:00,false,cold,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Cory.Wuckert16@yahoo.com,,739.876.4225,(616) 229-4433 x782 +272,Craig,Weber,male,Plug-and-play,Aliquid debitis natus.,2024-06-28T09:43:28.517+00:00,2024-07-31T12:01:40.294+00:00,false,cold,"influencer, vip",8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Craig.Weber74@yahoo.com,784.432.2488 x68094,532-425-0438, +274,Jared,Rutherford,male,Integrated,Neque vel quae aut dolorum.,2023-10-19T02:17:20.094+00:00,2024-07-31T08:19:56.963+00:00,false,in-contract,"manager, musician",37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Jared58@hotmail.com,640.808.3782,,(811) 272-0879 x74264 +276,Madeline,Rath,female,Rich,Sunt beatae illo quia ut natus sunt iusto.,2024-07-31T08:19:35.975+00:00,2024-07-31T08:19:35.975+00:00,false,hot,,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Madeline89@gmail.com,,(399) 232-9762,1-456-853-0500 x85619 +278,Jerome,Macejkovic,male,World-class,Ipsam reiciendis deserunt doloribus sit.,2024-07-06T19:20:43.632+00:00,2024-07-31T05:26:03.528+00:00,false,cold,,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Jerome1@hotmail.com,1-719-371-0095 x512,(444) 620-0297 x5690, +277,Jonathon,Hessel,male,User-centric,Perspiciatis neque beatae ducimus reprehenderit aut quos adipisci voluptas.,2024-06-14T22:58:50.001+00:00,2024-07-31T05:17:21.73+00:00,true,in-contract,,5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Jonathon85@yahoo.com,,(352) 983-6284 x468, +280,Lisette,Johns,nonbinary,Intuitive,Expedita explicabo pariatur consectetur doloremque.,2024-07-03T21:22:53.599+00:00,2024-07-31T02:10:37.149+00:00,false,cold,influencer,5,1,,Schmeler - Raynor,0,Schmeler - Raynor,Jane Doe,,,Lisette.Johns@hotmail.com,,1-622-778-9057 x9655, +279,Tammy,Feil,female,Turn-key,Aut veniam culpa quis cupiditate numquam modi corrupti.,2023-09-18T06:08:52.467+00:00,2024-07-31T00:28:52.156+00:00,false,warm,"football-fan, vip",21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Tammy.Feil28@hotmail.com,800.731.8989 x918,, +281,Tracy,Emmerich,female,Intuitive,Ut deserunt est accusantium.,2024-05-20T04:12:00.61+00:00,2024-07-30T23:23:21.381+00:00,false,cold,,41,1,,Tillman - Senger,0,Tillman - Senger,Jane Doe,,,Tracy.Emmerich@hotmail.com,1-995-239-0102 x46107,,1-627-464-0226 x3217 +286,Marian,Leuschke,nonbinary,24/365,Sequi neque explicabo dolores et facere sunt.,2023-12-21T18:38:09.267+00:00,2024-07-30T12:06:22.942+00:00,false,cold,,24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Marian_Leuschke92@hotmail.com,1-522-958-0269 x0107,488-685-9309, +285,Cristina,Schoen,female,One-to-one,Beatae ut esse et non consequatur distinctio.,2024-04-08T06:39:49.938+00:00,2024-07-29T18:27:58.664+00:00,false,hot,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Cristina92@hotmail.com,,819-495-7185 x7533,1-447-753-8120 +284,Matt,Hahn,male,Next-generation,Non non assumenda et reprehenderit.,2024-02-16T05:26:52.179+00:00,2024-07-29T16:23:34.11+00:00,false,warm,"holiday-card, manager",39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Matt_Hahn16@gmail.com,,234-349-3557 x59745,1-301-814-2416 x69959 +282,Jesus,Roberts,male,Customized,Quis tenetur nam aut temporibus vel.,2024-07-16T07:23:39.35+00:00,2024-07-29T13:13:57.971+00:00,true,in-contract,,9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Jesus73@yahoo.com,,798.488.0121 x052,1-501-652-2368 +283,Alexander,Lockman,male,Collaborative,Soluta perspiciatis recusandae iusto.,2024-06-18T19:12:52.514+00:00,2024-07-29T11:11:25.087+00:00,false,cold,football-fan,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Alexander_Lockman61@hotmail.com,,203.565.2423 x20031,554.686.6196 x3018 +290,Benjamin,Hegmann,male,Virtual,Et nemo aliquam autem illum ducimus qui unde.,2024-04-30T17:09:41.218+00:00,2024-07-29T00:02:24.608+00:00,true,cold,holiday-card,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Benjamin63@hotmail.com,,248.464.8253 x5143,1-240-771-2472 x20926 +287,Winifred,Muller,female,Front-end,Voluptas et minima recusandae est.,2024-05-09T07:25:16.479+00:00,2024-07-28T22:20:24.697+00:00,false,warm,"football-fan, holiday-card",28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Winifred.Muller@yahoo.com,1-581-346-8188,548-645-9959, +288,Angie,Shields,female,24/7,Natus amet sequi sunt.,2024-06-19T20:20:26.174+00:00,2024-07-28T07:07:46.377+00:00,false,warm,football-fan,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Angie.Shields@gmail.com,(310) 211-7020,(758) 713-6461 x24530, +289,Madeline,Parker,female,Killer,Voluptas repellendus error rerum quaerat quae est est veniam non.,2024-05-10T14:14:44.806+00:00,2024-07-27T23:01:18.69+00:00,true,cold,football-fan,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Madeline41@yahoo.com,1-715-497-4164,,545-338-7411 x7698 +291,Delbert,McCullough,male,Revolutionary,Magnam quis atque quae illo.,2024-04-19T03:41:44.302+00:00,2024-07-27T22:39:55.804+00:00,false,hot,,30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Delbert31@hotmail.com,219.465.2913 x2406,249.498.5522 x19604, +296,Dasia,Steuber,nonbinary,Vertical,Nihil et ut et.,2022-08-13T10:14:41.199+00:00,2024-07-27T20:16:10.337+00:00,false,warm,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Dasia_Steuber7@gmail.com,374-428-0616 x02667,523.710.8215 x89230, +293,Judith,Schulist,female,Efficient,Iure qui eum ut sit.,2024-07-13T13:55:14.335+00:00,2024-07-27T16:42:38.634+00:00,true,hot,"football-fan, musician",10,1,,"Barton, Johnson and Wiegand",0,"Barton, Johnson and Wiegand",Jane Doe,,,Judith23@yahoo.com,1-415-436-8742,, +300,Sammy,Bartell,nonbinary,Wireless,Cumque corporis qui animi sit modi minima.,2024-06-13T12:11:23.675+00:00,2024-07-27T05:48:11.075+00:00,false,cold,,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Sammy46@gmail.com,1-543-953-4126 x36340,,1-416-279-3567 +294,Candice,Kozey,female,Customized,Dolorem laborum iure fuga sunt ut qui.,2024-07-01T21:37:50.53+00:00,2024-07-27T03:26:40.151+00:00,false,hot,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Candice85@hotmail.com,,,1-952-479-6508 x332 +292,Pat,Effertz,male,Collaborative,Atque repellendus non aut.,2024-05-17T23:56:14.515+00:00,2024-07-25T14:57:46.669+00:00,false,in-contract,,19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Pat56@gmail.com,,490.996.2847 x7351, +295,Meghan,Rippin,female,Best-of-breed,Et est illum rerum sunt culpa aperiam aut veniam qui.,2024-04-18T12:16:32.592+00:00,2024-07-25T07:21:46.97+00:00,true,hot,,19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Meghan_Rippin37@gmail.com,495-304-4841 x60526,,595.978.7257 +297,Patsy,Miller,female,Front-end,Accusantium et ex et dolores consequuntur.,2023-10-08T00:06:59.799+00:00,2024-07-25T06:35:56.287+00:00,false,cold,musician,9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Patsy_Miller@gmail.com,,,(323) 324-1816 x324 +298,May,Kiehn,female,Intuitive,Odit ut laborum nesciunt quod molestiae aut sed placeat beatae.,2024-01-21T17:48:06.111+00:00,2024-07-25T05:38:14.178+00:00,false,in-contract,,35,1,,"Boyer, Hackett and Durgan",0,"Boyer, Hackett and Durgan",Jane Doe,,,May_Kiehn93@yahoo.com,(422) 363-5311,,851-829-9580 x2717 +299,Johnny,Hills,nonbinary,Front-end,Inventore cumque illo ut accusantium quisquam quisquam perferendis quibusdam.,2024-04-18T20:53:00.367+00:00,2024-07-25T05:33:06.081+00:00,true,in-contract,vip,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Johnny.Hills17@gmail.com,409-806-9555,, +301,Kristin,Metz,female,Out-of-the-box,Veritatis illum ad.,2022-12-02T02:18:19.434+00:00,2024-07-25T02:30:31.342+00:00,false,cold,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Kristin.Metz11@gmail.com,,,(270) 693-3159 x717 +302,Thelma,Roob,female,Innovative,Suscipit qui voluptatem excepturi incidunt voluptatem accusamus.,2024-06-18T19:38:46.355+00:00,2024-07-24T18:16:56.584+00:00,false,in-contract,,38,1,,Langosh and Sons,0,Langosh and Sons,Jane Doe,,,Thelma_Roob4@hotmail.com,,700-780-0063 x4153, +304,Mackenzie,Kshlerin,nonbinary,Back-end,Illum reprehenderit dolor esse.,2024-03-26T11:18:28.786+00:00,2024-07-23T21:13:46.639+00:00,false,cold,influencer,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Mackenzie_Kshlerin22@yahoo.com,,,1-409-926-9126 x4188 +303,Clayton,Ullrich,male,Granular,Rerum quia et aperiam sit cum.,2024-01-03T13:50:01.641+00:00,2024-07-23T21:10:12.693+00:00,true,warm,vip,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Clayton.Ullrich@yahoo.com,587-836-0870 x71039,(463) 609-0827 x718, +305,Marshall,Wilderman,male,B2B,Expedita ducimus saepe iste eum.,2024-03-10T09:27:05.369+00:00,2024-07-23T20:23:50.2+00:00,false,in-contract,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Marshall.Wilderman18@gmail.com,1-376-252-2909,,(793) 813-8655 +308,Shirley,Runolfsdottir,female,Clicks-and-mortar,Qui itaque repellendus beatae possimus.,2024-04-21T03:03:07.831+00:00,2024-07-23T17:33:23.594+00:00,true,warm,,24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Shirley_Runolfsdottir@yahoo.com,(469) 680-9868 x09749,,418-541-7500 x618 +307,Ivan,MacGyver,male,Frictionless,Magnam reprehenderit ut dolores perferendis perspiciatis quo animi.,2023-09-27T07:41:43.633+00:00,2024-07-23T14:01:58.66+00:00,false,hot,holiday-card,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Ivan.MacGyver4@yahoo.com,791-404-8394 x815,,914.382.6100 x9555 +306,Gertrude,Trantow,nonbinary,Intuitive,Dicta atque voluptatibus molestiae sint qui magni.,2024-07-23T06:29:03.47+00:00,2024-07-23T06:29:03.47+00:00,false,cold,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Gertrude_Trantow@hotmail.com,568.863.6808 x32763,,1-876-528-1844 x27079 +309,Elena,Carroll,female,Plug-and-play,Eligendi ut assumenda ipsam.,2023-09-07T20:45:47.584+00:00,2024-07-22T08:33:32.888+00:00,true,hot,"football-fan, vip",29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Elena.Carroll@yahoo.com,,,(413) 335-3294 +310,Myrtle,Sipes,female,Front-end,Blanditiis optio corporis aperiam molestiae praesentium ut.,2024-07-14T10:29:33.743+00:00,2024-07-22T07:41:03.459+00:00,true,warm,,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Myrtle.Sipes@yahoo.com,994.914.5315 x5066,(679) 974-1949, +312,Nick,Schuster,male,Revolutionary,Corrupti et aut ut libero et non.,2023-09-23T03:31:35.838+00:00,2024-07-22T07:34:34.229+00:00,true,cold,,43,1,,Bailey and Sons,0,Bailey and Sons,Jane Doe,,,Nick_Schuster@gmail.com,,1-819-706-0463 x08315,1-897-783-2565 x38172 +311,Minnie,Hoeger,female,Out-of-the-box,Suscipit similique delectus doloremque quod id corrupti molestias dolore.,2024-05-16T06:12:45.428+00:00,2024-07-22T05:07:25.638+00:00,true,in-contract,"manager, musician",29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Minnie34@hotmail.com,,,379.344.5454 x974 +313,Jeramie,O'Keefe,nonbinary,Intuitive,Ut et velit ullam aliquam rerum.,2024-05-26T13:35:32.47+00:00,2024-07-22T03:59:19.013+00:00,false,warm,,27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Jeramie20@hotmail.com,,854.237.2774, +314,Kristine,Tremblay,female,Clicks-and-mortar,Numquam laboriosam velit aut asperiores nulla eaque.,2024-06-10T02:12:04.383+00:00,2024-07-21T23:12:29.75+00:00,false,hot,,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Kristine.Tremblay@yahoo.com,,496-749-7750,1-985-611-5880 +315,Omar,Johns,male,Holistic,Sed sed autem enim et aut nisi quam.,2024-05-10T12:28:54.541+00:00,2024-07-21T22:10:57.666+00:00,false,in-contract,,24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Omar67@yahoo.com,(704) 527-0942 x844,,(707) 585-5894 +318,Candido,West,nonbinary,Revolutionary,Voluptas aut non laboriosam hic eligendi aut illum.,2024-07-21T20:21:51.58+00:00,2024-07-21T20:21:51.58+00:00,false,in-contract,,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Candido_West@gmail.com,1-863-920-1696 x313,1-230-645-0810, +317,Leslie,Deckow,female,24/7,Est nisi non tenetur aut.,2024-07-21T10:39:42.121+00:00,2024-07-21T10:39:42.121+00:00,false,cold,"football-fan, manager",15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Leslie_Deckow@yahoo.com,1-615-897-3442 x957,, +320,Fannie,Rohan,female,Customized,Sequi enim reprehenderit id architecto nesciunt eligendi.,2024-03-19T10:19:36.721+00:00,2024-07-21T10:30:44.847+00:00,true,warm,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Fannie.Rohan51@hotmail.com,,(365) 574-8114,590-880-6730 +316,Joann,Robel,female,Virtual,Dolorem ab non in maxime dicta placeat culpa.,2024-05-16T00:05:06.016+00:00,2024-07-20T20:28:52.771+00:00,false,in-contract,,27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Joann6@hotmail.com,,884.655.6027,961.844.9146 x7277 +319,Julie,Abbott,female,Extensible,Necessitatibus at sit ex.,2024-04-19T02:20:15.267+00:00,2024-07-20T13:25:46.442+00:00,true,hot,holiday-card,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Julie51@gmail.com,384-601-9560,, +323,Justin,Willms,male,Cross-media,Numquam architecto iste quaerat fugiat nobis et repellendus.,2023-12-26T15:19:39.547+00:00,2024-07-20T08:30:07.892+00:00,true,hot,,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Justin_Willms@yahoo.com,781-966-4720,1-623-206-1295, +322,Mervin,Hansen,nonbinary,Seamless,Quasi debitis culpa sequi dolores vel rem culpa dicta.,2024-07-20T06:01:22.111+00:00,2024-07-20T06:01:22.111+00:00,false,hot,,44,1,,Tremblay - Rutherford,0,Tremblay - Rutherford,Jane Doe,,,Mervin38@gmail.com,,,1-619-390-7926 +328,Stephen,Price,male,E-business,Labore sit dolorem nam veniam reprehenderit.,2024-07-14T05:05:18.42+00:00,2024-07-20T04:38:49.665+00:00,true,cold,influencer,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Stephen5@gmail.com,(920) 630-6309,279.302.7909 x387, +321,Omar,Larson,male,Killer,Quam omnis natus.,2024-01-15T21:00:51.275+00:00,2024-07-20T01:22:34.322+00:00,false,cold,vip,3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Omar_Larson19@hotmail.com,,1-526-699-9733,460.866.4526 x3281 +324,Eric,Rogahn,male,Collaborative,Architecto alias dolore.,2023-11-30T06:00:58.317+00:00,2024-07-19T19:10:48.138+00:00,false,in-contract,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Eric.Rogahn16@yahoo.com,,(311) 726-0472,963.992.8309 x2959 +325,Osvaldo,McLaughlin,nonbinary,24/7,Qui quidem aspernatur tempore quia amet voluptatem.,2024-01-14T19:41:03.458+00:00,2024-07-18T06:35:54.348+00:00,false,warm,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Osvaldo8@yahoo.com,,,(423) 586-3084 +330,Jermaine,Flatley,male,Magnetic,Explicabo consectetur odio animi.,2024-07-10T14:37:21.459+00:00,2024-07-18T02:57:07.479+00:00,true,in-contract,,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Jermaine.Flatley20@hotmail.com,934-770-2086,789-745-0180 x967, +327,Mossie,Walker,nonbinary,Sticky,Eius enim ullam sit.,2024-01-20T07:17:12.923+00:00,2024-07-17T10:47:48.141+00:00,true,cold,"football-fan, manager",21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Mossie.Walker66@gmail.com,,1-378-653-4888,1-333-593-3270 +326,Eldridge,Cremin,nonbinary,User-centric,Et itaque qui eos quas ut aut.,2024-01-18T04:18:41.768+00:00,2024-07-16T15:16:45.004+00:00,false,cold,holiday-card,32,1,,Davis - Hilpert,0,Davis - Hilpert,Jane Doe,,,Eldridge.Cremin37@yahoo.com,(670) 888-5158,,1-794-637-0735 +329,Jermaine,Pagac,male,Out-of-the-box,Ipsam illo et.,2024-03-28T23:09:42.356+00:00,2024-07-16T13:13:19.026+00:00,true,warm,musician,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Jermaine15@yahoo.com,1-969-753-0415 x0605,(568) 907-8875 x81644, +331,Lora,Metz,female,Transparent,Architecto rerum enim debitis.,2024-04-16T01:25:50.957+00:00,2024-07-16T09:20:31.035+00:00,false,warm,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Lora10@yahoo.com,1-994-372-0136 x943,,1-240-899-2228 x5559 +333,Cory,Leuschke,male,Distributed,Voluptates est ipsam ut doloribus corporis et iusto commodi dolorum.,2024-05-06T01:34:27.275+00:00,2024-07-16T03:27:07.669+00:00,true,in-contract,,41,1,,Tillman - Senger,0,Tillman - Senger,Jane Doe,,,Cory23@gmail.com,785-421-1281 x840,,202.990.3554 x92251 +332,Curtis,Purdy,male,Sticky,Eaque possimus ut occaecati nam voluptatem reiciendis impedit.,2024-06-19T01:01:29.301+00:00,2024-07-15T15:41:16.555+00:00,false,in-contract,influencer,45,1,,"Blick, Krajcik and Schneider",0,"Blick, Krajcik and Schneider",Jane Doe,,,Curtis_Purdy14@hotmail.com,,748-508-1819, +334,Magdalena,Hudson,nonbinary,Clicks-and-mortar,Veniam earum deserunt rem fugiat ut sit rerum esse voluptatem.,2023-12-21T19:20:06.458+00:00,2024-07-15T11:57:49.462+00:00,false,hot,"football-fan, musician",24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Magdalena_Hudson54@hotmail.com,(836) 327-2827,871.728.2183 x67860, +336,Imelda,Wyman,nonbinary,Transparent,Officia aut reiciendis dolorem sunt deleniti.,2022-12-04T15:13:47.729+00:00,2024-07-15T06:16:54.519+00:00,false,hot,"holiday-card, musician",20,1,,Stracke Inc,0,Stracke Inc,Jane Doe,,,Imelda.Wyman@yahoo.com,,(358) 457-9282 x7164, +335,Trevor,Parker,male,Killer,Eum et corporis voluptatem tempore.,2024-06-16T06:41:43.994+00:00,2024-07-15T02:21:43.377+00:00,false,hot,"football-fan, musician",27,1,,Hahn LLC,0,Hahn LLC,Jane Doe,,,Trevor.Parker@gmail.com,,1-915-290-8636 x976,915.892.9374 +337,Percy,Witting,male,Clicks-and-mortar,Cupiditate laudantium similique ut.,2024-02-23T01:31:39.497+00:00,2024-07-14T19:07:48.299+00:00,false,cold,holiday-card,38,1,,Langosh and Sons,0,Langosh and Sons,Jane Doe,,,Percy.Witting@hotmail.com,,784-699-9150 x53805, +338,Sam,Gusikowski,male,Holistic,Rem sunt consequuntur reprehenderit qui rerum voluptatem quo qui aliquid.,2023-04-04T11:01:34.411+00:00,2024-07-14T02:12:04.813+00:00,true,hot,musician,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Sam.Gusikowski20@yahoo.com,,(949) 511-9009 x97278, +340,Lewis,Nicolas,male,Open-source,Mollitia fugit facilis corporis est harum autem aspernatur expedita.,2024-03-25T16:05:39.842+00:00,2024-07-13T02:30:43.471+00:00,false,warm,football-fan,34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Lewis_Nicolas@yahoo.com,,444-230-7731 x490, +339,Rosemarie,Terry,female,Mission-critical,Aut perferendis laudantium.,2023-09-19T03:27:47.067+00:00,2024-07-12T10:35:52.761+00:00,false,cold,,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Rosemarie4@yahoo.com,291.539.6511 x5737,,(473) 328-7675 +341,Shannon,Wiegand,female,Revolutionary,Molestiae delectus sit assumenda.,2023-04-21T06:18:43.829+00:00,2024-07-12T04:03:47.716+00:00,true,warm,influencer,34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Shannon.Wiegand48@yahoo.com,1-223-844-3230,,1-469-457-6654 x0899 +342,Ahmed,Leuschke,nonbinary,Next-generation,Doloremque delectus harum animi velit.,2023-11-26T19:54:29.992+00:00,2024-07-11T15:23:20.209+00:00,false,warm,,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Ahmed_Leuschke@hotmail.com,(715) 686-2992,1-277-744-3733 x0865, +343,Laurence,Hansen,male,Interactive,Labore fugiat dicta odio error perspiciatis voluptates saepe aut.,2023-09-26T06:48:33.656+00:00,2024-07-11T03:33:35.212+00:00,false,hot,vip,46,1,,Ortiz - Gaylord,0,Ortiz - Gaylord,Jane Doe,,,Laurence33@yahoo.com,(790) 540-1444,,613-273-5519 x520 +345,Nadine,Becker,female,Compelling,A quis ab nostrum.,2023-06-03T17:30:07.402+00:00,2024-07-11T02:01:50.794+00:00,false,in-contract,musician,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Nadine.Becker@hotmail.com,,,1-202-203-0747 x88555 +344,Pamela,Larkin,female,Granular,Ad autem ullam aut dolor occaecati et quo corrupti.,2023-01-25T03:57:35.627+00:00,2024-07-10T22:42:05.124+00:00,false,in-contract,musician,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Pamela_Larkin@hotmail.com,,520-541-9188, +348,Kim,Klocko,male,Vertical,Eum aut neque nostrum ut cumque.,2024-06-08T14:24:12.109+00:00,2024-07-10T21:42:46.904+00:00,false,warm,,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Kim28@gmail.com,1-262-678-3299,209-202-2432, +346,Pamela,Goodwin,female,Turn-key,Non aut tempore hic asperiores est.,2024-05-21T22:56:53.412+00:00,2024-07-10T19:23:28.049+00:00,false,warm,,11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Pamela.Goodwin@yahoo.com,,1-867-650-1287 x49674,(300) 626-0988 x142 +347,Terry,Graham,male,Rich,Voluptate dolores doloremque magnam aut.,2024-06-08T12:34:14.053+00:00,2024-07-10T19:00:03.819+00:00,true,hot,,19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Terry_Graham@yahoo.com,,,1-983-459-9101 +349,Ronnie,Beier,male,Integrated,Repudiandae earum consequuntur quia.,2023-06-01T12:42:58.729+00:00,2024-07-10T08:13:23.339+00:00,false,cold,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Ronnie57@gmail.com,1-335-544-4074 x38106,,983-928-5619 x741 +350,Autumn,Emmerich,nonbinary,Dynamic,Dignissimos fugit nihil quia nisi.,2024-04-15T22:16:06.33+00:00,2024-07-09T22:29:54.736+00:00,false,cold,,19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Autumn_Emmerich11@yahoo.com,439.558.6975 x387,,215-789-4853 x03832 +351,Eileen,Welch,female,Holistic,Rerum est mollitia similique dolores.,2024-03-02T05:34:01.643+00:00,2024-07-09T06:18:25.727+00:00,false,in-contract,"football-fan, manager",41,1,,Tillman - Senger,0,Tillman - Senger,Jane Doe,,,Eileen16@yahoo.com,,,541.799.4930 +353,Domingo,Dare,male,Out-of-the-box,Exercitationem ut doloremque harum maiores distinctio.,2024-05-03T07:08:07.929+00:00,2024-07-07T14:56:55.392+00:00,false,warm,influencer,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Domingo73@yahoo.com,714-764-5626,,(404) 773-8956 x961 +354,Gwen,Rosenbaum,female,Visionary,Et voluptas et nemo et voluptas.,2024-01-07T04:16:29.031+00:00,2024-07-07T00:05:38.122+00:00,false,warm,"holiday-card, manager",39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Gwen_Rosenbaum@yahoo.com,,924.435.8498, +356,Joey,Bosco,male,Collaborative,Sit non velit omnis necessitatibus eos.,2024-04-25T08:56:45.907+00:00,2024-07-06T18:04:25.203+00:00,true,warm,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Joey_Bosco44@yahoo.com,,931.472.3187,(750) 549-1497 x82680 +355,Lynette,Strosin,female,Global,Qui voluptas doloribus excepturi porro id quos.,2024-03-10T08:32:15.871+00:00,2024-07-06T15:53:01.254+00:00,true,hot,"manager, musician",24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Lynette98@gmail.com,(337) 665-6384 x39836,766-208-1851 x338, +359,Vincenzo,Collier,nonbinary,Open-source,Rerum sunt id aut vitae laudantium.,2023-12-26T18:52:08.157+00:00,2024-07-06T07:36:14.548+00:00,true,cold,holiday-card,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Vincenzo8@hotmail.com,(508) 796-0748 x5249,744-707-7627 x706, +352,Yolanda,Parisian,female,Plug-and-play,Soluta esse unde sapiente nesciunt laudantium est quia.,2023-11-03T21:25:11.809+00:00,2024-07-03T17:32:39.055+00:00,false,hot,,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Yolanda_Parisian94@yahoo.com,245.829.3988 x797,1-969-754-1065 x28520, +358,Jaycee,Vandervort,nonbinary,Rich,Animi necessitatibus ea quisquam qui aliquam cupiditate doloremque vero.,2024-01-31T20:50:19.563+00:00,2024-07-03T17:12:20.082+00:00,false,cold,"holiday-card, musician",34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Jaycee_Vandervort@hotmail.com,695-789-6528 x558,, +357,Debra,Batz,female,Next-generation,Qui velit sed et minus.,2023-11-16T14:08:58.166+00:00,2024-07-02T04:29:02.732+00:00,false,in-contract,,42,1,,Daugherty - Beier,0,Daugherty - Beier,Jane Doe,,,Debra_Batz58@yahoo.com,,1-781-638-9320 x00226,1-647-640-4111 +360,Alexis,Okuneva,female,Revolutionary,Dolorem est rerum ratione in iste magnam velit.,2024-05-16T06:19:42.351+00:00,2024-07-02T02:55:15.098+00:00,true,cold,,3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Alexis.Okuneva@hotmail.com,,664.314.4906 x684,286-840-7572 x1862 +361,Angelina,Aufderhar,female,One-to-one,Unde possimus rerum odio voluptatem vel impedit aut fuga corporis.,2023-08-02T00:28:07.395+00:00,2024-07-02T02:10:42.731+00:00,false,cold,,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Angelina_Aufderhar@yahoo.com,216-247-2431 x690,, +362,Karlee,Murazik,nonbinary,Intuitive,Perspiciatis ipsa et.,2023-10-16T07:44:45.814+00:00,2024-07-01T22:56:11.902+00:00,false,warm,manager,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Karlee.Murazik@gmail.com,(969) 385-2391,,598.289.9082 +363,Ollie,Daniel,female,Seamless,Totam excepturi provident mollitia occaecati.,2024-01-31T19:50:55.888+00:00,2024-07-01T15:07:38.312+00:00,false,warm,manager,24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Ollie.Daniel@yahoo.com,532.713.4635,,(998) 414-6390 +365,Bridget,Waters,female,Front-end,Quia fugit omnis quia ea iste consequatur rem perferendis assumenda.,2024-06-30T21:02:22.774+00:00,2024-06-30T21:02:22.774+00:00,true,cold,,12,1,,"West, Oberbrunner and Koss",0,"West, Oberbrunner and Koss",Jane Doe,,,Bridget.Waters@yahoo.com,,,1-744-902-1961 +364,Carlos,Von,male,Innovative,Maiores eum ex sit.,2024-01-11T10:34:10.289+00:00,2024-06-29T04:19:00.505+00:00,true,cold,,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Carlos.Von@gmail.com,,,(859) 720-1116 x49636 +367,Lloyd,Keebler,male,Open-source,Optio illum quia corrupti porro eius minus corporis fugit rerum.,2024-01-14T00:16:58.256+00:00,2024-06-29T01:27:21.759+00:00,false,hot,,30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Lloyd.Keebler48@yahoo.com,,1-940-820-3988 x02123, +366,Ruby,Dibbert,female,Frictionless,Quo ea tenetur quia vel pariatur.,2023-09-17T16:45:49.436+00:00,2024-06-28T23:07:35.484+00:00,false,cold,,39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Ruby18@gmail.com,426-990-6699,,745.314.2349 x68226 +369,Evan,Cremin,male,Customized,Aperiam neque numquam ut praesentium et maxime deserunt dolor.,2024-05-20T15:32:28.113+00:00,2024-06-28T00:43:49.468+00:00,false,warm,vip,19,1,,Konopelski Inc,0,Konopelski Inc,Jane Doe,,,Evan24@yahoo.com,,(351) 235-0678 x5347, +368,Noel,Grant,male,Proactive,Et cum nihil mollitia qui odit cumque quas.,2023-08-26T13:42:30.12+00:00,2024-06-27T10:57:07.495+00:00,false,hot,"influencer, vip",39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Noel.Grant@yahoo.com,,363-730-6041 x45689,517-636-4484 x689 +370,Betty,Mueller,female,User-centric,Deserunt quibusdam ut eum mollitia ut sed ab.,2024-06-05T00:38:31.161+00:00,2024-06-27T10:12:54.939+00:00,false,warm,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Betty7@hotmail.com,,1-653-729-4205 x429, +371,Harvey,Keebler,male,Cross-media,Eum voluptatibus non beatae nemo illo et suscipit molestiae.,2024-04-25T03:30:23.401+00:00,2024-06-27T09:04:49.837+00:00,true,in-contract,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Harvey19@gmail.com,(956) 421-8430,,833.342.1820 +373,Karla,Kuhlman,female,Innovative,Quasi nulla omnis quia qui dolore facilis esse ut ut.,2024-06-27T00:20:29.551+00:00,2024-06-27T00:20:29.551+00:00,false,warm,,8,1,,Schowalter and Sons,0,Schowalter and Sons,Jane Doe,,,Karla26@gmail.com,(503) 702-8671 x5944,,(376) 761-4813 x1197 +372,Hubert,Shields,male,Seamless,Ut qui consequatur sint rerum dignissimos voluptatum.,2024-06-26T07:06:56.45+00:00,2024-06-26T07:06:56.45+00:00,false,in-contract,holiday-card,2,1,,"Brekke, Dietrich and Klein",0,"Brekke, Dietrich and Klein",Jane Doe,,,Hubert37@gmail.com,477.586.2385 x5365,,(423) 975-2309 x39168 +375,Jackie,Jacobson,female,Bleeding-edge,Qui et amet reiciendis enim qui veniam vitae et.,2023-09-07T09:07:44.045+00:00,2024-06-25T13:48:46.887+00:00,false,cold,"football-fan, influencer",6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Jackie.Jacobson@yahoo.com,1-213-585-5969 x91442,,1-267-918-2572 x69752 +377,Rosie,Carter,female,Cross-platform,Nobis perferendis aliquam ipsa ad in libero enim fugit.,2023-04-14T03:28:31.497+00:00,2024-06-25T08:11:04.144+00:00,false,in-contract,vip,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Rosie60@gmail.com,,475.616.4510 x567, +376,Vernice,Grant,nonbinary,Distributed,Voluptate tempore et rem aliquam.,2024-03-31T03:58:03.323+00:00,2024-06-23T23:39:58.931+00:00,false,warm,manager,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Vernice64@gmail.com,,1-321-743-9939 x6103, +374,Bill,Ratke,male,Cross-platform,Harum inventore deleniti vel.,2024-06-23T07:36:17.634+00:00,2024-06-23T07:36:17.634+00:00,false,warm,influencer,15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Bill73@gmail.com,,(466) 947-7655 x59616,807-816-0131 x67030 +379,Brielle,Schinner,nonbinary,Vertical,Soluta possimus quisquam laudantium iste voluptatem quia occaecati repellat.,2023-08-11T20:38:35.885+00:00,2024-06-23T06:10:52.099+00:00,false,cold,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Brielle10@hotmail.com,,,1-760-935-0530 +378,Carmine,Howell,nonbinary,Seamless,Sapiente neque enim ad ut repellat.,2024-06-20T00:03:11.069+00:00,2024-06-20T00:03:11.069+00:00,true,hot,"manager, musician",11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Carmine.Howell35@yahoo.com,(393) 210-1139,,626.341.9238 x37840 +380,Judith,Daniel,female,Integrated,Hic nam maxime ut autem quo omnis est dolor sunt.,2024-02-12T10:59:58.349+00:00,2024-06-18T18:21:36.169+00:00,false,warm,holiday-card,18,1,,Steuber - Smitham,0,Steuber - Smitham,Jane Doe,,,Judith.Daniel@yahoo.com,,(873) 878-2878 x233,1-753-484-5540 +382,Rosa,Feeney,female,Rich,Modi quam omnis aut illo porro rem blanditiis omnis iusto.,2024-03-12T03:14:16.413+00:00,2024-06-18T03:01:16.174+00:00,true,in-contract,,39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Rosa.Feeney60@gmail.com,,,413.831.3619 +381,Adah,Abbott,nonbinary,Distributed,Et ut voluptas veniam.,2023-02-10T04:36:46.197+00:00,2024-06-17T18:48:24.822+00:00,true,cold,holiday-card,34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Adah71@hotmail.com,,1-359-493-6844 x1752, +383,Valerie,Braun,female,Cutting-edge,Laudantium a id quis sit voluptate qui vitae.,2024-06-17T15:14:48.22+00:00,2024-06-17T15:14:48.22+00:00,true,cold,"football-fan, vip",11,1,,Abernathy - Bahringer,0,Abernathy - Bahringer,Jane Doe,,,Valerie.Braun15@gmail.com,(906) 446-9900,1-772-315-1833, +386,Tyler,Graham,male,Magnetic,Autem tempore vitae et sapiente dolor at repellat ducimus modi.,2024-06-08T11:32:23.9+00:00,2024-06-16T18:49:37.745+00:00,false,hot,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Tyler63@gmail.com,514.410.9930 x141,371.216.4180, +385,Cassidy,Kovacek,nonbinary,Synergistic,Est eius ut.,2023-08-10T08:39:32.574+00:00,2024-06-16T08:12:53.313+00:00,false,in-contract,,9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Cassidy.Kovacek76@gmail.com,383.778.6936 x246,, +387,Mark,O'Keefe,male,Bleeding-edge,Maiores ducimus doloribus labore omnis.,2022-07-02T21:37:15.212+00:00,2024-06-16T00:41:44.8+00:00,true,hot,,28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Mark_OKeefe33@gmail.com,298-971-0182 x170,,1-910-519-1530 x923 +384,Cornelius,Smith,male,Holistic,Maxime repudiandae harum ipsam exercitationem.,2023-04-04T05:53:07.237+00:00,2024-06-15T05:20:49.561+00:00,false,cold,musician,42,1,,Daugherty - Beier,0,Daugherty - Beier,Jane Doe,,,Cornelius23@hotmail.com,,571.557.0773,(980) 939-7478 x0642 +388,Marvin,Rosenbaum,male,Magnetic,Nemo voluptas quis rerum blanditiis qui excepturi earum.,2022-04-03T10:55:31.225+00:00,2024-06-14T13:10:43.206+00:00,true,warm,manager,39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Marvin83@yahoo.com,1-938-209-9744 x15304,1-732-330-4667, +390,Merle,Connelly,male,Open-source,A et dicta architecto placeat aut id sed perspiciatis dolore.,2023-08-16T12:47:54.635+00:00,2024-06-14T10:26:35.565+00:00,false,warm,,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Merle17@yahoo.com,829.710.7021,(320) 799-0286 x5407, +389,Allison,Conn,female,B2C,Illum eaque dolorem numquam blanditiis consequatur et et.,2024-06-13T15:39:36.704+00:00,2024-06-13T15:39:36.704+00:00,false,hot,vip,24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Allison.Conn92@gmail.com,(624) 676-5138,,(539) 940-6042 +392,Darwin,Hegmann,nonbinary,Real-time,Aut pariatur voluptatem.,2024-02-08T05:13:10.798+00:00,2024-06-13T06:47:27.018+00:00,false,hot,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Darwin.Hegmann@hotmail.com,,(212) 654-3476 x885, +391,Doug,Tromp,male,Magnetic,Magnam ex aut sequi nulla.,2023-12-28T23:30:45.928+00:00,2024-06-11T21:49:32.84+00:00,false,warm,,30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Doug.Tromp52@hotmail.com,1-782-550-0627,1-592-903-6376, +393,Monica,Blick,female,Robust,Voluptatem numquam sint aspernatur aliquid et fugiat totam et.,2024-01-15T03:36:36.359+00:00,2024-06-11T16:50:49.675+00:00,false,cold,"holiday-card, influencer",13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Monica2@hotmail.com,,1-212-648-3908 x7816,1-687-615-9075 +394,Myrtle,Toy,female,Virtual,Eos dolorem amet facilis reiciendis.,2024-05-05T22:33:32.087+00:00,2024-06-11T14:59:27.473+00:00,false,hot,,30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Myrtle_Toy@yahoo.com,510-554-8054 x4041,, +395,Darnell,Feil,male,Best-of-breed,Enim qui repellat architecto sit.,2023-05-28T05:42:58.316+00:00,2024-06-11T07:08:39.168+00:00,false,cold,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Darnell_Feil@gmail.com,(763) 919-9018,917-318-4282 x254, +396,Lionel,Herman,male,Innovative,Cupiditate et sunt omnis.,2024-02-24T21:22:46.652+00:00,2024-06-10T23:22:45.125+00:00,false,warm,"musician, vip",13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Lionel28@hotmail.com,,461.951.2882 x957,755-952-8623 x8183 +398,Claudia,D'Amore,female,Frictionless,Non nam animi porro autem dolore hic fugit amet.,2022-04-15T01:25:03.271+00:00,2024-06-10T21:44:55.937+00:00,true,warm,,18,1,,Steuber - Smitham,0,Steuber - Smitham,Jane Doe,,,Claudia16@hotmail.com,,1-984-653-6173 x72881, +399,Martha,Hilpert,female,Enterprise,Eum suscipit beatae qui sit doloribus pariatur cumque consequatur maiores.,2021-11-16T19:13:56.184+00:00,2024-06-10T17:07:51.077+00:00,false,in-contract,,28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Martha_Hilpert30@gmail.com,,,486-709-4393 +397,Edmund,Feeney,male,Dot-com,Tempora qui est qui eius.,2024-06-10T16:25:09.976+00:00,2024-06-10T16:25:09.976+00:00,false,cold,vip,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Edmund.Feeney@hotmail.com,,839-778-7536 x748,800-639-2583 +400,Ora,Metz,female,Revolutionary,Officia aliquam veniam velit nihil corrupti exercitationem aut quaerat.,2023-06-02T21:03:50.771+00:00,2024-06-09T14:06:00.653+00:00,true,cold,"football-fan, holiday-card",21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Ora_Metz10@yahoo.com,,(742) 915-2036,1-742-900-8658 x2539 +401,Darlene,Armstrong,female,Turn-key,Quia expedita mollitia a perspiciatis est.,2024-02-04T18:19:56.227+00:00,2024-06-07T13:49:14.028+00:00,false,cold,vip,47,1,,Predovic and Sons,0,Predovic and Sons,Jane Doe,,,Darlene_Armstrong@hotmail.com,400.611.2970,,232.522.4882 x9655 +402,Nathaniel,Ryan,male,Compelling,Excepturi sit ut ducimus accusantium omnis.,2022-03-20T21:11:00.317+00:00,2024-06-07T02:36:33.924+00:00,true,warm,football-fan,20,1,,Stracke Inc,0,Stracke Inc,Jane Doe,,,Nathaniel89@yahoo.com,569-493-2998 x85498,,(907) 753-7635 +404,Leroy,Reinger,male,Out-of-the-box,Quia rerum est nostrum nisi.,2023-03-02T16:07:22.832+00:00,2024-06-06T08:43:32.618+00:00,true,cold,,9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Leroy.Reinger@hotmail.com,,,1-417-564-2461 +403,Brett,Lebsack,male,User-centric,Dolorum aut recusandae.,2024-06-05T14:42:11.97+00:00,2024-06-05T14:42:11.97+00:00,false,in-contract,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Brett50@yahoo.com,(860) 952-6614 x17409,(292) 244-5466 x25933, +406,Vernice,Crooks,nonbinary,Open-source,Praesentium nemo et dolore voluptatum.,2024-02-03T04:34:15.449+00:00,2024-06-05T05:36:48.889+00:00,true,warm,,9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Vernice.Crooks22@gmail.com,,,(280) 930-5190 x7697 +405,Leroy,Hermiston,male,Ubiquitous,Provident id quos minima et.,2023-12-28T08:38:07.631+00:00,2024-06-04T12:02:13.568+00:00,false,warm,,28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Leroy_Hermiston27@gmail.com,1-452-808-8997 x069,1-594-782-8460, +407,Jaqueline,Mertz,nonbinary,Distributed,Earum eum eum vero similique veritatis assumenda.,2024-01-10T16:05:18.353+00:00,2024-06-04T11:09:40.315+00:00,false,cold,,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Jaqueline_Mertz92@gmail.com,,835-986-7924,(289) 223-9158 +409,Jana,Thompson,female,Enterprise,Et consequuntur nihil molestiae est eos et eum.,2024-01-12T01:20:16.608+00:00,2024-06-03T12:45:04.358+00:00,false,cold,,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Jana_Thompson3@hotmail.com,,1-974-824-1412,615.741.4974 x494 +410,Tyreek,Pouros,nonbinary,Proactive,Vel aut fugiat assumenda et veritatis nemo explicabo.,2023-01-05T16:11:34.109+00:00,2024-06-03T05:24:02.764+00:00,false,cold,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Tyreek.Pouros@hotmail.com,,,582.215.2447 +408,Stewart,Ruecker,male,Front-end,Aut cupiditate rem suscipit et.,2023-09-01T17:35:04.76+00:00,2024-06-03T05:23:12.38+00:00,false,hot,,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Stewart.Ruecker61@gmail.com,,789-717-3443 x371, +411,Gloria,Crist,female,Magnetic,In fuga voluptas reprehenderit perferendis perferendis porro illum laborum.,2021-12-22T11:36:10.697+00:00,2024-06-01T02:17:13.407+00:00,false,in-contract,,44,1,,Tremblay - Rutherford,0,Tremblay - Rutherford,Jane Doe,,,Gloria_Crist@gmail.com,471.739.3104 x256,588.331.4110 x13523, +412,Sidney,Lebsack,nonbinary,Integrated,Ab quod voluptatem ipsam et.,2024-02-09T21:31:04.011+00:00,2024-06-01T00:52:44.816+00:00,false,cold,"holiday-card, manager",39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Sidney_Lebsack@hotmail.com,469-929-7599 x3169,,1-927-397-9134 +413,Ismael,Hahn,male,Dynamic,Et placeat excepturi a.,2023-12-28T21:01:14.418+00:00,2024-05-30T22:56:53.109+00:00,false,warm,,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Ismael.Hahn18@yahoo.com,,,(411) 544-7404 +414,Jennie,Sawayn,female,Back-end,Alias commodi iusto.,2023-09-28T07:37:52.184+00:00,2024-05-29T22:29:00.985+00:00,false,cold,holiday-card,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Jennie80@gmail.com,252-527-5999 x71536,,1-674-347-2880 +416,Maxine,Schulist,female,Integrated,Quidem voluptatibus repudiandae voluptas aliquid labore odio.,2024-04-13T02:35:42.219+00:00,2024-05-29T07:55:17.905+00:00,false,in-contract,"holiday-card, musician",3,1,,Dibbert and Sons,0,Dibbert and Sons,Jane Doe,,,Maxine.Schulist8@yahoo.com,,411-894-3884,836.309.4157 +415,Miranda,McDermott,female,E-business,Possimus sunt sit ea dolor omnis numquam sed odio.,2023-05-07T13:13:39.986+00:00,2024-05-28T10:31:27.377+00:00,false,hot,football-fan,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Miranda.McDermott@yahoo.com,1-508-200-4926 x17177,(650) 815-6564 x413, +418,Rodney,Von,male,Integrated,Dolore possimus et.,2023-03-19T20:07:45.582+00:00,2024-05-28T00:54:19.3+00:00,true,in-contract,,28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Rodney_Von@gmail.com,908-758-7327 x117,203-421-9792, +417,Clifton,Conroy,male,Enterprise,Nisi aut corporis.,2024-01-06T05:55:20.624+00:00,2024-05-26T06:47:21.407+00:00,false,hot,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Clifton.Conroy79@gmail.com,,(712) 644-6585,671-490-7191 x170 +419,Harold,Ullrich,male,Cross-media,Ut quia eum esse expedita enim harum enim aperiam.,2023-10-18T04:02:00.233+00:00,2024-05-25T22:13:52.937+00:00,true,warm,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Harold17@gmail.com,416-938-1108,, +420,Georgianna,Waters,nonbinary,Sexy,Sed nulla consectetur.,2023-12-02T02:28:25.81+00:00,2024-05-25T04:49:16.871+00:00,false,cold,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Georgianna.Waters3@gmail.com,,(690) 263-0351, +421,Danny,Runte,male,Mission-critical,A voluptatem quam recusandae enim qui error.,2022-10-28T05:47:47.868+00:00,2024-05-25T01:26:06.102+00:00,false,cold,manager,34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Danny_Runte24@gmail.com,,,858-819-3526 x699 +422,Fernando,Gerlach,male,Innovative,Quo qui sit quae minus enim neque.,2022-04-25T12:35:26.875+00:00,2024-05-24T19:05:10+00:00,false,in-contract,,28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Fernando_Gerlach53@hotmail.com,357-618-8400 x722,256.772.9032 x14148, +423,Hope,Collier,female,Bricks-and-clicks,Sit est ratione omnis labore est.,2024-01-28T17:09:45.339+00:00,2024-05-23T05:49:54.225+00:00,false,hot,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Hope_Collier95@yahoo.com,,(575) 361-2307,(912) 373-8551 x238 +424,Bertha,O'Reilly,female,Cross-media,Sunt consequatur cum ipsa.,2023-01-28T13:55:56.573+00:00,2024-05-22T11:26:46.48+00:00,true,in-contract,,48,1,,"O'Reilly, McClure and Dach",0,"O'Reilly, McClure and Dach",Jane Doe,,,Bertha_OReilly@gmail.com,,720-526-0934,1-949-413-0150 x18396 +425,Oren,Rice,nonbinary,Real-time,Tempora repudiandae totam deserunt labore rerum quos vitae.,2023-12-09T09:39:04.949+00:00,2024-05-22T04:06:47.164+00:00,false,cold,,24,1,,Skiles Group,0,Skiles Group,Jane Doe,,,Oren2@yahoo.com,,(860) 856-2407,245-777-7848 x263 +426,Lavonne,Gibson,nonbinary,Viral,Eveniet et nam vero non voluptas sed tenetur est.,2024-05-22T00:44:27.435+00:00,2024-05-22T00:44:27.435+00:00,false,in-contract,football-fan,38,1,,Langosh and Sons,0,Langosh and Sons,Jane Doe,,,Lavonne91@hotmail.com,798.700.7872,, +427,Brittany,Gerhold,female,End-to-end,Quod maxime est sed autem aliquid eaque.,2024-03-12T19:22:18.981+00:00,2024-05-19T14:57:50.518+00:00,true,in-contract,"football-fan, manager",35,1,,"Boyer, Hackett and Durgan",0,"Boyer, Hackett and Durgan",Jane Doe,,,Brittany.Gerhold@gmail.com,,456.329.5060 x79946,567-478-0322 x18688 +428,Santiago,West,male,User-centric,Deserunt sit laboriosam exercitationem illum quae aut dignissimos.,2024-03-22T06:10:01.392+00:00,2024-05-16T23:54:20.792+00:00,true,in-contract,,49,1,,Watsica - Nader,0,Watsica - Nader,Jane Doe,,,Santiago43@yahoo.com,,202.285.4620, +430,Lori,Lind,female,Clicks-and-mortar,Dolor animi quod voluptatem.,2023-07-24T00:45:33.185+00:00,2024-05-14T16:50:38.906+00:00,false,in-contract,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Lori_Lind@hotmail.com,1-435-547-2407,,286.729.3181 +429,Jocelyn,Connelly,nonbinary,Scalable,Voluptatem est voluptas.,2024-04-05T10:09:13.426+00:00,2024-05-14T06:59:57.636+00:00,false,in-contract,musician,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Jocelyn_Connelly@yahoo.com,,,1-533-919-4253 x30818 +431,Jerald,Schamberger,nonbinary,Enterprise,Non numquam earum dolorum accusantium animi nesciunt.,2024-05-14T06:05:23.551+00:00,2024-05-14T06:05:23.551+00:00,false,hot,holiday-card,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Jerald_Schamberger@yahoo.com,,,(471) 750-7326 +433,Gilbert,Corwin,male,Wireless,Eligendi iusto voluptatem consectetur culpa est ad.,2023-07-02T17:51:52.699+00:00,2024-05-12T23:29:13.906+00:00,true,warm,,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Gilbert_Corwin97@hotmail.com,,,(650) 825-2868 x74483 +432,Hubert,Hoppe,male,Seamless,Aut atque quia excepturi aut.,2024-03-09T02:43:28.239+00:00,2024-05-11T21:52:36.36+00:00,true,cold,,30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Hubert28@gmail.com,,,(214) 383-1081 x5559 +436,Jonathan,Gutkowski,male,Cross-platform,Aut velit officiis necessitatibus cum facilis accusantium.,2023-06-15T14:17:13.022+00:00,2024-05-09T10:09:52.621+00:00,true,cold,,44,1,,Tremblay - Rutherford,0,Tremblay - Rutherford,Jane Doe,,,Jonathan.Gutkowski@hotmail.com,(469) 395-0015 x131,,1-998-590-6250 x1842 +434,Pamela,Crist,female,Virtual,Ut assumenda saepe cumque similique.,2023-05-31T06:43:47.838+00:00,2024-05-08T11:49:05.736+00:00,false,cold,,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Pamela_Crist56@yahoo.com,773.215.4164 x22738,361.385.0706, +438,Yvette,Bechtelar,female,Sexy,In ut et sit tempore saepe suscipit.,2023-09-17T11:47:35.821+00:00,2024-05-06T04:26:06.795+00:00,false,warm,"holiday-card, manager",6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Yvette_Bechtelar@gmail.com,(275) 371-8872 x80799,1-466-421-8299 x779, +437,Madaline,Pfeffer,nonbinary,24/7,Consequatur et ab rerum et quidem ab commodi.,2022-11-18T20:51:57.057+00:00,2024-05-04T20:11:03.229+00:00,false,cold,manager,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Madaline_Pfeffer@yahoo.com,1-607-755-8065 x952,,(413) 631-8988 x2377 +440,Dorothy,Gusikowski,female,Out-of-the-box,Temporibus aliquam et quis.,2023-11-16T19:59:23.776+00:00,2024-05-04T12:27:58.635+00:00,true,cold,football-fan,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Dorothy58@yahoo.com,590-439-8971,1-936-325-1169 x23078, +435,Dock,Lynch,nonbinary,Dynamic,Ut voluptatum laudantium.,2023-05-03T23:20:20.718+00:00,2024-05-01T08:48:42.155+00:00,true,hot,holiday-card,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Dock7@gmail.com,,,255-233-0478 x8917 +439,Pablo,Dibbert,male,Transparent,Dolorem autem ipsa aut distinctio repellat qui labore recusandae.,2024-04-30T18:11:11.158+00:00,2024-04-30T18:11:11.158+00:00,false,hot,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Pablo30@yahoo.com,,,440.218.0767 +441,Angelina,Stanton,female,Compelling,Laudantium qui labore possimus ducimus ut nostrum reprehenderit ad ut.,2023-09-15T23:08:12.997+00:00,2024-04-29T05:59:02.033+00:00,true,in-contract,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Angelina_Stanton@yahoo.com,,,497-869-1786 x2726 +442,Levi,Erdman,male,B2B,Maxime ad adipisci veniam sint.,2023-02-20T09:32:29.864+00:00,2024-04-24T16:19:23.316+00:00,true,cold,holiday-card,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Levi_Erdman@hotmail.com,485-836-8898,,(968) 235-0437 x3316 +443,Gonzalo,Rempel,nonbinary,Proactive,Aspernatur quibusdam eum quia reiciendis aliquam eum maxime dolorem.,2023-08-24T11:08:59.567+00:00,2024-04-23T09:41:35.84+00:00,true,warm,,39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Gonzalo.Rempel@gmail.com,463.708.3443 x9111,, +450,Alfredo,Schiller,nonbinary,24/365,Aut eveniet repudiandae necessitatibus nostrum aut aut laboriosam.,2024-01-24T12:15:59.119+00:00,2024-04-23T00:33:24.621+00:00,true,cold,,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Alfredo.Schiller@gmail.com,(524) 566-1732,,947.722.6148 +445,Mervin,Cassin,nonbinary,Sexy,Qui dolorem est commodi.,2022-11-08T09:35:30.71+00:00,2024-04-20T19:59:44.675+00:00,false,warm,manager,39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Mervin.Cassin@gmail.com,269-706-6403 x76158,,223.931.7764 x3556 +448,Lynette,Beer,female,Enterprise,Maxime facilis iusto qui.,2023-09-04T07:04:00.934+00:00,2024-04-18T07:13:46.327+00:00,false,cold,,30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Lynette_Beer@hotmail.com,299-702-9179,1-312-222-0744, +444,Rae,Littel,nonbinary,Dynamic,Molestias exercitationem quos distinctio omnis quod laudantium.,2023-10-20T08:57:28.632+00:00,2024-04-17T02:03:24.164+00:00,false,warm,,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Rae.Littel44@gmail.com,,(278) 975-2250 x1294,431.603.1928 +446,Brittany,Greenholt,female,Wireless,Eum consequatur iure.,2023-10-04T07:06:04.362+00:00,2024-04-12T22:35:13.713+00:00,false,warm,holiday-card,29,1,,Bauch Group,0,Bauch Group,Jane Doe,,,Brittany.Greenholt70@hotmail.com,,387-223-6610,(916) 263-9413 x54645 +447,Ed,Schmitt,male,One-to-one,Impedit fugiat cum tempore aliquid.,2022-12-01T01:57:10.588+00:00,2024-04-07T04:32:21.964+00:00,false,warm,football-fan,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Ed39@yahoo.com,(574) 692-9976 x7479,1-309-286-1473 x871, +449,Zetta,Lebsack,nonbinary,Cross-platform,A assumenda ullam rerum fugiat et.,2024-04-02T05:39:47.572+00:00,2024-04-02T05:39:47.572+00:00,false,warm,holiday-card,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Zetta.Lebsack@gmail.com,,(534) 701-1689 x0447, +451,Michel,Beahan,nonbinary,Synergistic,Ex dolorem quaerat consequatur sint.,2023-05-29T16:47:07.051+00:00,2024-04-01T10:49:42.79+00:00,false,hot,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Michel.Beahan85@gmail.com,,,344-448-7309 x812 +453,Sedrick,Bergnaum,nonbinary,Collaborative,Est perspiciatis voluptatem adipisci nemo error.,2023-07-21T11:43:01.442+00:00,2024-03-28T17:03:15.517+00:00,false,warm,influencer,23,1,,Hoppe - Orn,0,Hoppe - Orn,Jane Doe,,,Sedrick_Bergnaum@gmail.com,748.758.1363 x9778,,496-736-5683 x358 +454,Bryon,Mraz,nonbinary,Ubiquitous,Qui accusamus ullam quae quasi deleniti assumenda ex qui.,2023-10-28T09:17:44.396+00:00,2024-03-27T00:16:31.216+00:00,true,cold,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Bryon_Mraz71@yahoo.com,,(205) 219-7865,462.257.5217 +452,Cale,Beatty,nonbinary,Back-end,Dolorem eius ipsa omnis nisi tempore.,2023-08-09T13:30:05.242+00:00,2024-03-19T21:56:01.412+00:00,false,cold,"manager, vip",13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Cale_Beatty@gmail.com,1-492-285-4397,1-686-899-4695, +455,Taylor,VonRueden,male,Visionary,Eum ducimus quo ratione omnis tempora modi dolorem vel id.,2023-09-01T05:10:26.591+00:00,2024-03-18T00:55:26.686+00:00,false,in-contract,,44,1,,Tremblay - Rutherford,0,Tremblay - Rutherford,Jane Doe,,,Taylor.VonRueden@hotmail.com,1-445-872-6909 x10583,, +456,Sonja,Heathcote,female,B2B,Dolores sed dolor perspiciatis quia commodi quaerat voluptatem consequatur voluptatem.,2024-03-16T09:43:52.345+00:00,2024-03-16T09:43:52.345+00:00,false,cold,,50,1,,"Spinka, Sawayn and Cartwright",0,"Spinka, Sawayn and Cartwright",Jane Doe,,,Sonja79@yahoo.com,,(851) 240-5302,847.648.1227 +457,Melody,Hermann,female,Magnetic,Ullam dolorem nulla aut nobis.,2022-03-09T01:56:52.136+00:00,2024-03-15T04:22:43.348+00:00,true,warm,"holiday-card, influencer",28,1,,"Cummings, Bednar and Hagenes",0,"Cummings, Bednar and Hagenes",Jane Doe,,,Melody46@yahoo.com,(497) 607-0407 x57450,718.800.5428, +458,Lester,Borer,male,24/7,Et maiores saepe odit qui tempora suscipit deserunt aut sunt.,2024-03-09T03:40:14.797+00:00,2024-03-09T03:40:14.797+00:00,false,in-contract,,4,1,,Schmitt and Sons,0,Schmitt and Sons,Jane Doe,,,Lester.Borer@hotmail.com,692.549.5758,1-736-819-2365, +460,Domingo,Zboncak,male,Cross-platform,Commodi modi sequi.,2023-09-25T19:42:37.219+00:00,2024-03-08T04:01:52.269+00:00,true,warm,,30,1,,Hansen Inc,0,Hansen Inc,Jane Doe,,,Domingo42@gmail.com,239-601-2355,(717) 370-6929 x128, +459,Shana,O'Keefe,nonbinary,Magnetic,Ex dolorem eaque eaque ullam.,2023-10-28T10:50:58.814+00:00,2024-03-07T08:00:52.079+00:00,false,hot,,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Shana35@yahoo.com,835-877-1027,,304.381.6868 x9195 +461,Jorge,Legros,male,Plug-and-play,Alias magnam doloremque unde.,2022-08-28T19:10:21.473+00:00,2024-03-06T04:39:04.257+00:00,false,hot,holiday-card,39,1,,Aufderhar and Sons,0,Aufderhar and Sons,Jane Doe,,,Jorge25@yahoo.com,979-612-6550,1-450-697-8200, +463,Randal,Fritsch,nonbinary,Front-end,Illo iste tempore delectus voluptas quia quam et adipisci enim.,2022-10-16T20:58:35.225+00:00,2024-03-03T01:48:45.189+00:00,false,warm,vip,51,1,,"Zulauf, Durgan and Jakubowski",0,"Zulauf, Durgan and Jakubowski",Jane Doe,,,Randal_Fritsch@yahoo.com,(285) 496-3503 x8726,,438.882.8217 +462,Kelsi,Moore,nonbinary,Magnetic,Quis deserunt quod qui dolore aspernatur esse iusto ex sed.,2022-08-20T22:27:51.395+00:00,2024-02-29T07:56:16.009+00:00,false,warm,"musician, vip",21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Kelsi51@gmail.com,,(892) 386-3082 x318,(313) 997-5578 x83448 +464,Brenda,Block,nonbinary,Holistic,Cum aut commodi soluta excepturi dicta libero iusto.,2023-05-03T14:05:49.302+00:00,2024-02-28T05:22:47.722+00:00,false,warm,"manager, musician",37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Brenda.Block@hotmail.com,,922.560.4130 x088,1-343-383-8243 +466,Immanuel,Haley,nonbinary,B2C,Dolor qui et molestiae voluptate.,2023-05-16T16:48:31.026+00:00,2024-02-22T19:19:29.936+00:00,false,in-contract,"football-fan, musician",6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Immanuel61@gmail.com,898.234.5085,,1-779-927-7068 x026 +465,Verla,Ledner,nonbinary,Synergistic,Inventore aut impedit et cupiditate mollitia qui impedit.,2022-09-01T12:48:28.953+00:00,2024-02-22T17:44:36.458+00:00,false,hot,"football-fan, holiday-card",34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Verla.Ledner40@gmail.com,(531) 651-6316 x409,,(967) 443-2653 x13041 +470,Karl,Waters,male,Sexy,Iure eos blanditiis et explicabo ut.,2022-03-29T14:56:16.588+00:00,2024-02-21T00:06:42.968+00:00,false,hot,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Karl.Waters89@hotmail.com,(619) 335-0780 x96031,(479) 688-9774, +469,Debbie,Thompson,female,Frictionless,Voluptate culpa dignissimos sit corporis.,2023-05-11T07:25:34.57+00:00,2024-02-19T05:23:30.398+00:00,false,cold,,49,1,,Watsica - Nader,0,Watsica - Nader,Jane Doe,,,Debbie23@gmail.com,,1-226-617-3130 x164, +467,Roman,Auer,male,Plug-and-play,Quae laboriosam molestias atque aut.,2023-06-05T19:38:37.06+00:00,2024-02-17T21:31:10.851+00:00,false,cold,,13,1,,Breitenberg - Murray,0,Breitenberg - Murray,Jane Doe,,,Roman.Auer@gmail.com,1-595-298-4536 x6155,1-691-991-7673 x397, +468,Pablo,Hoeger,male,Turn-key,Occaecati earum distinctio incidunt iure.,2023-10-11T21:15:10.091+00:00,2024-02-17T04:37:25.878+00:00,true,cold,"manager, musician",52,1,,Watsica - Huel,0,Watsica - Huel,Jane Doe,,,Pablo_Hoeger23@gmail.com,737.974.5720 x267,,(993) 387-2422 x3450 +472,Alberta,Hessel,nonbinary,Visionary,Ea inventore vitae officiis est ipsam eos.,2022-03-04T22:30:43.36+00:00,2024-02-15T09:16:56.958+00:00,false,in-contract,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Alberta.Hessel32@hotmail.com,(827) 231-6348 x3545,,(690) 298-2618 x350 +473,Jody,Rogahn,female,Real-time,Corporis vitae atque et assumenda itaque dolorem eligendi et.,2023-06-06T23:31:03.558+00:00,2024-02-07T02:50:30.003+00:00,false,hot,musician,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Jody_Rogahn@yahoo.com,(236) 798-1463 x47255,1-244-421-6415, +471,Andre,Donnelly,male,Robust,Temporibus ad ut qui.,2023-07-26T13:46:49.415+00:00,2024-02-04T09:54:46.121+00:00,false,in-contract,musician,14,1,,Little - Keeling,0,Little - Keeling,Jane Doe,,,Andre.Donnelly61@yahoo.com,1-279-507-6714,1-580-882-5062, +474,Rodolfo,Padberg,male,Out-of-the-box,Ut atque nostrum incidunt.,2023-04-26T01:20:16.583+00:00,2024-01-25T16:16:12.864+00:00,false,warm,musician,34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Rodolfo61@yahoo.com,(405) 985-7270 x3615,,1-870-903-2400 x9883 +475,Jane,Botsford,nonbinary,Granular,Dolorem quos velit beatae ipsa.,2023-04-29T05:45:20.27+00:00,2024-01-24T20:01:55.447+00:00,false,warm,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Jane_Botsford49@hotmail.com,(517) 316-1333 x405,,1-752-455-1058 +476,Jonathon,McKenzie,nonbinary,Front-end,Quos aspernatur velit nobis.,2024-01-21T17:25:52.168+00:00,2024-01-21T17:25:52.168+00:00,false,hot,,26,1,,"Bins, Effertz and Heller",0,"Bins, Effertz and Heller",Jane Doe,,,Jonathon2@yahoo.com,(490) 514-4167,226.677.6054, +477,Alison,Lowe,female,Innovative,Neque aut quos at distinctio aut.,2023-05-23T01:23:58.518+00:00,2024-01-18T09:33:47.972+00:00,false,in-contract,"holiday-card, influencer",34,1,,Schultz Inc,0,Schultz Inc,Jane Doe,,,Alison.Lowe@yahoo.com,(789) 957-9778 x0404,,1-755-370-2344 x0074 +480,Kendra,O'Conner,female,Best-of-breed,Maxime ducimus consectetur doloribus facere molestias voluptatibus consequatur quia quos.,2024-01-17T15:53:25.441+00:00,2024-01-17T15:53:25.441+00:00,true,warm,musician,9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Kendra.OConner2@yahoo.com,,443-849-3353,680.497.4902 x31355 +478,Tyrone,Wyman,male,Interactive,Reiciendis dolores molestiae veniam corporis consectetur consectetur totam cupiditate.,2022-12-21T00:11:48.239+00:00,2024-01-15T02:19:46.059+00:00,true,warm,influencer,53,1,,"Wilkinson, Yundt and Hoeger",0,"Wilkinson, Yundt and Hoeger",Jane Doe,,,Tyrone_Wyman@hotmail.com,,(670) 271-8689,985.469.5500 x34159 +479,Cheryl,Lemke,female,Impactful,Aut asperiores consequatur culpa aut enim velit.,2024-01-03T18:59:13.224+00:00,2024-01-03T18:59:13.224+00:00,false,cold,football-fan,15,1,,Schulist - Hand,0,Schulist - Hand,Jane Doe,,,Cheryl99@gmail.com,663.627.6635,,307-971-3484 x93083 +481,Elmer,Weissnat,nonbinary,24/7,Est voluptatem debitis.,2023-07-10T12:07:02.831+00:00,2023-12-27T20:47:25.07+00:00,false,warm,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Elmer_Weissnat@yahoo.com,,1-553-630-4212,686.261.1055 x032 +482,Troy,Shanahan,male,Next-generation,Alias ullam aut hic et.,2023-12-20T20:48:31.202+00:00,2023-12-20T20:48:31.202+00:00,false,cold,,32,1,,Davis - Hilpert,0,Davis - Hilpert,Jane Doe,,,Troy_Shanahan@yahoo.com,,,(465) 388-9843 x9465 +483,Dwayne,Spinka,male,Proactive,Quia ipsum sit eum sit sunt rerum voluptatum aspernatur.,2023-09-10T02:47:57.228+00:00,2023-12-11T19:54:49.447+00:00,false,hot,,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Dwayne.Spinka@yahoo.com,,408.937.5552,835.422.3580 +484,Grady,Bernier,male,Front-end,Eum est minima blanditiis quo cum fugiat suscipit et aut.,2021-08-10T01:39:36.741+00:00,2023-12-03T04:37:30.062+00:00,false,cold,"football-fan, manager",49,1,,Watsica - Nader,0,Watsica - Nader,Jane Doe,,,Grady.Bernier@hotmail.com,956-347-8881 x56960,,1-322-607-3163 +485,Gwen,Berge,female,Cross-media,Fugiat alias id facere harum enim qui.,2023-06-11T00:18:46.41+00:00,2023-11-23T09:23:14.405+00:00,false,warm,"influencer, musician",54,1,,"Morar, Kuphal and Kohler",0,"Morar, Kuphal and Kohler",Jane Doe,,,Gwen20@yahoo.com,,,504.776.0611 +486,Darlene,Cassin,female,Sexy,Eius consectetur doloribus temporibus sed et.,2023-07-15T02:04:49.328+00:00,2023-11-19T06:13:34.487+00:00,false,in-contract,,55,1,,Jerde and Sons,0,Jerde and Sons,Jane Doe,,,Darlene_Cassin@yahoo.com,,238-887-2337,862.329.7976 x40606 +490,Joey,Dickens,male,Dot-com,Ut dolores unde numquam quia.,2023-11-13T19:45:34.31+00:00,2023-11-13T19:45:34.31+00:00,true,hot,"football-fan, influencer",42,1,,Daugherty - Beier,0,Daugherty - Beier,Jane Doe,,,Joey26@hotmail.com,,(330) 743-4830, +489,Toni,Hudson,female,Collaborative,Et corrupti ratione fugit quas eum eum consequatur dolor.,2023-01-23T01:32:49.307+00:00,2023-11-07T07:26:18.431+00:00,false,hot,influencer,9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Toni_Hudson@yahoo.com,,1-621-991-9962 x060, +487,Nellie,Conroy,female,Sticky,Ad quis ut saepe iusto et magni consequatur aut non.,2023-05-31T05:06:52.771+00:00,2023-10-26T06:09:29.193+00:00,true,cold,football-fan,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Nellie.Conroy@yahoo.com,,591.862.9058 x428, +488,Dominique,Schiller,nonbinary,World-class,Aut vero hic.,2023-08-20T22:55:43.577+00:00,2023-10-14T08:45:22.193+00:00,false,in-contract,,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Dominique68@gmail.com,1-750-200-5758,,1-452-906-6980 x0461 +491,Kenya,Rau,nonbinary,Innovative,Dolor alias enim quia laborum consectetur.,2023-08-01T11:21:57.408+00:00,2023-10-14T04:21:33.108+00:00,false,hot,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Kenya16@gmail.com,,1-570-434-8375, +492,Merritt,Hettinger,nonbinary,Real-time,Quia ea eos.,2021-01-10T16:24:31.533+00:00,2023-09-19T13:18:58.557+00:00,false,warm,vip,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Merritt.Hettinger97@yahoo.com,(607) 480-3490 x6087,850-229-0494 x2269, +493,Bernice,Jakubowski,female,Front-end,Dignissimos molestiae nobis ea animi dolor molestias ut in.,2023-03-13T07:50:31.191+00:00,2023-08-29T09:27:26.636+00:00,false,warm,,49,1,,Watsica - Nader,0,Watsica - Nader,Jane Doe,,,Bernice_Jakubowski69@hotmail.com,603-885-4034 x14679,,1-585-939-2887 +494,Teri,Kulas,female,One-to-one,Ut ratione quo assumenda doloremque velit omnis.,2023-08-18T10:35:21.737+00:00,2023-08-18T10:35:21.737+00:00,true,in-contract,,6,1,,Quigley Inc,0,Quigley Inc,Jane Doe,,,Teri_Kulas79@yahoo.com,904-424-4565,,(591) 350-8811 x962 +500,Jamar,Breitenberg,nonbinary,24/7,Sunt molestias enim quo deleniti repellat ut quas qui.,2022-09-21T16:11:38.003+00:00,2023-06-21T21:24:00.86+00:00,true,hot,influencer,21,1,,Wolff Group,0,Wolff Group,Jane Doe,,,Jamar53@yahoo.com,918.665.3486 x6689,1-904-649-3997 x5447, +495,Arch,Hettinger,nonbinary,Open-source,Quos quasi ut voluptates cum ex possimus.,2022-03-17T09:06:03.603+00:00,2023-06-08T02:14:37.719+00:00,false,in-contract,football-fan,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Arch.Hettinger@yahoo.com,214-672-2509,461-616-7768, +497,Marion,Howe,female,Out-of-the-box,Ipsum voluptatem dolores eos dolores eos.,2022-07-01T06:57:50.765+00:00,2023-04-16T06:56:27.212+00:00,false,hot,holiday-card,16,1,,"Koch, Casper and Bosco",0,"Koch, Casper and Bosco",Jane Doe,,,Marion.Howe@gmail.com,,,1-704-444-5049 x579 +499,Ken,Ruecker,nonbinary,Robust,Esse ut quas ut.,2021-06-11T18:46:55.035+00:00,2023-01-29T05:52:39.836+00:00,true,warm,,18,1,,Steuber - Smitham,0,Steuber - Smitham,Jane Doe,,,Ken_Ruecker@hotmail.com,,1-390-600-2468 x5663, +496,Diane,Balistreri,female,Collaborative,Quo in saepe.,2022-08-20T14:09:58.048+00:00,2022-08-20T14:09:58.048+00:00,false,warm,,37,1,,"Weber, Brekke and Feil",0,"Weber, Brekke and Feil",Jane Doe,,,Diane48@hotmail.com,383.389.9464,, +498,Beatrice,Roob,female,Mission-critical,Repudiandae et ut.,2022-04-17T14:50:32.766+00:00,2022-04-17T14:50:32.766+00:00,false,hot,vip,9,1,,"Mitchell, Kirlin and Lind",0,"Mitchell, Kirlin and Lind",Jane Doe,,,Beatrice.Roob13@hotmail.com,(862) 305-9661 x153,,642.531.3177 \ No newline at end of file From 65c49b69ed42ebb4107a873b4385dc6bf6f1cbeb Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 16:18:10 +0100 Subject: [PATCH 14/20] fix PR template --- .github/pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 5e6ad79..195ce57 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -13,6 +13,6 @@ _Describe the steps required to test the changes_ ## Additional Checks - [ ] The **documentation** is up to date -- [ ] Tested with **fakerest** provider (see [related documentation](../doc/data-providers.md)) +- [ ] Tested with **fakerest** provider (see [related documentation](../doc/developer/data-providers.md)) Also, please make sure to read the [contributing guidelines](https://github.com/marmelab/atomic-crm#contributing). \ No newline at end of file From b8783fd9e900021bc14ea73268bd4443740026e1 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 16:30:39 +0100 Subject: [PATCH 15/20] fix SingleFieldList direction --- src/contacts/ContactAside.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/contacts/ContactAside.tsx b/src/contacts/ContactAside.tsx index 4f99dc8..ca04986 100644 --- a/src/contacts/ContactAside.tsx +++ b/src/contacts/ContactAside.tsx @@ -44,7 +44,7 @@ export const ContactAside = ({ link = 'edit' }: { link?: 'edit' | 'show' }) => { Personal info - + { )} - + From 0353acfcc9cefac4c0d96be54f783e7780a046a7 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Mon, 13 Jan 2025 17:07:18 +0100 Subject: [PATCH 16/20] fix contact creation in inbound email --- supabase/functions/postmark/addNoteToContact.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supabase/functions/postmark/addNoteToContact.ts b/supabase/functions/postmark/addNoteToContact.ts index e11858c..e1af4d7 100644 --- a/supabase/functions/postmark/addNoteToContact.ts +++ b/supabase/functions/postmark/addNoteToContact.ts @@ -93,7 +93,7 @@ export const addNoteToContact = async ({ .insert({ first_name: firstName, last_name: lastName, - email: [email], + email_jsonb: [{ email, type: 'Work' }], company_id: company.id, sales_id: sales.id, first_seen: new Date(), From ae4015d58d81f92463ad1de3c6082e628f2b99d8 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Tue, 14 Jan 2025 09:40:16 +0100 Subject: [PATCH 17/20] export email_jsonb and phone_jsonb --- src/contacts/ContactList.tsx | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/src/contacts/ContactList.tsx b/src/contacts/ContactList.tsx index 1120a64..dcd8f24 100644 --- a/src/contacts/ContactList.tsx +++ b/src/contacts/ContactList.tsx @@ -103,28 +103,30 @@ const exporter: Exporter = async (records, fetchRelatedRecords) => { sales[contact.sales_id].last_name }`, tags: contact.tags.map(tagId => tags[tagId].name).join(', '), - email_work: contact.email_jsonb.find(email => email.type === 'Work') - ?.email, - email_home: contact.email_jsonb.find(email => email.type === 'Home') - ?.email, - email_other: contact.email_jsonb.find( + email_work: contact.email_jsonb?.find( + email => email.type === 'Work' + )?.email, + email_home: contact.email_jsonb?.find( + email => email.type === 'Home' + )?.email, + email_other: contact.email_jsonb?.find( email => email.type === 'Other' )?.email, - email_jsonb: undefined, + email_jsonb: JSON.stringify(contact.email_jsonb), email_fts: undefined, - phone_work: contact.phone_jsonb.find(phone => phone.type === 'Work') - ?.number, - phone_home: contact.phone_jsonb.find(phone => phone.type === 'Home') - ?.number, - phone_other: contact.phone_jsonb.find( + phone_work: contact.phone_jsonb?.find( + phone => phone.type === 'Work' + )?.number, + phone_home: contact.phone_jsonb?.find( + phone => phone.type === 'Home' + )?.number, + phone_other: contact.phone_jsonb?.find( phone => phone.type === 'Other' )?.number, - phone_jsonb: undefined, + phone_jsonb: JSON.stringify(contact.phone_jsonb), phone_fts: undefined, }; - delete exportedContact.email_jsonb; delete exportedContact.email_fts; - delete exportedContact.phone_jsonb; delete exportedContact.phone_fts; return exportedContact; }); From af5571455a928e40e8aaedc362039a5528c8f2d3 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Tue, 14 Jan 2025 10:01:14 +0100 Subject: [PATCH 18/20] use flexbox instead of a space --- src/contacts/ContactAside.tsx | 122 ++++++++++++++++------------------ 1 file changed, 58 insertions(+), 64 deletions(-) diff --git a/src/contacts/ContactAside.tsx b/src/contacts/ContactAside.tsx index ca04986..f203609 100644 --- a/src/contacts/ContactAside.tsx +++ b/src/contacts/ContactAside.tsx @@ -26,6 +26,7 @@ import { TagsListEdit } from './TagsListEdit'; import { useLocation } from 'react-router'; import { useConfigurationContext } from '../root/ConfigurationContext'; import { Contact, Sale } from '../types'; +import { ReactNode } from 'react'; export const ContactAside = ({ link = 'edit' }: { link?: 'edit' | 'show' }) => { const location = useLocation(); @@ -45,27 +46,11 @@ export const ContactAside = ({ link = 'edit' }: { link?: 'edit' | 'show' }) => { - - - - {' '} - - row.type !== 'Other' && ( - - ) - } - /> - - + } + primary={} + showType + /> {record.has_newsletter && ( @@ -75,58 +60,41 @@ export const ContactAside = ({ link = 'edit' }: { link?: 'edit' | 'show' }) => { )} {record.linkedin_url && ( - - - - + } + primary={ + + } + /> )} - - - - {' '} - - row.type !== 'Other' && ( - - ) - } - /> - - + } + primary={} + showType + /> ( - - - {choice.label} - + + } + primary={{choice.label}} + /> )} optionValue="value" /> @@ -201,3 +169,29 @@ export const ContactAside = ({ link = 'edit' }: { link?: 'edit' | 'show' }) => { ); }; + +const PersonalInfoRow = ({ + icon, + primary, + showType, +}: { + icon: ReactNode; + primary: ReactNode; + showType?: boolean; +}) => ( + + {icon} + + {primary} + {showType ? ( + + row.type !== 'Other' && ( + + ) + } + /> + ) : null} + + +); From 137fb957b3a223823da2d7b96a2499fb02f8b176 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Tue, 14 Jan 2025 10:02:39 +0100 Subject: [PATCH 19/20] extract personalInfoTypes --- src/contacts/ContactInputs.tsx | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/contacts/ContactInputs.tsx b/src/contacts/ContactInputs.tsx index 6bb828e..6159835 100644 --- a/src/contacts/ContactInputs.tsx +++ b/src/contacts/ContactInputs.tsx @@ -167,11 +167,7 @@ const ContactPersonalInformationInputs = () => { source="type" helperText={false} optionText="id" - choices={[ - { id: 'Work' }, - { id: 'Home' }, - { id: 'Other' }, - ]} + choices={personalInfoTypes} defaultValue="Work" fullWidth={false} sx={{ width: 100, minWidth: 100 }} @@ -189,11 +185,7 @@ const ContactPersonalInformationInputs = () => { source="type" helperText={false} optionText="id" - choices={[ - { id: 'Work' }, - { id: 'Home' }, - { id: 'Other' }, - ]} + choices={personalInfoTypes} defaultValue="Work" fullWidth={false} sx={{ width: 100, minWidth: 100 }} @@ -210,6 +202,8 @@ const ContactPersonalInformationInputs = () => { ); }; +const personalInfoTypes = [{ id: 'Work' }, { id: 'Home' }, { id: 'Other' }]; + const ContactMiscInputs = () => { return ( From a49d83834e5fde44d6f99fcc73442989e7bcfe9d Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kaiser Date: Tue, 14 Jan 2025 11:26:51 +0100 Subject: [PATCH 20/20] [no ci] fix PR template link again --- .github/pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 195ce57..7e68575 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -13,6 +13,6 @@ _Describe the steps required to test the changes_ ## Additional Checks - [ ] The **documentation** is up to date -- [ ] Tested with **fakerest** provider (see [related documentation](../doc/developer/data-providers.md)) +- [ ] Tested with **fakerest** provider (see [related documentation](https://github.com/marmelab/atomic-crm/blob/main/doc/developer/data-providers.md)) Also, please make sure to read the [contributing guidelines](https://github.com/marmelab/atomic-crm#contributing). \ No newline at end of file